Skip to content

Commit

Permalink
Starting the news page (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
jodemaey authored Nov 4, 2024
1 parent 2075d14 commit a5e9c23
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 9 deletions.
Binary file added content/images/ESSD.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/images/ESSD_news.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/images/EUPP_domain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/images/precip.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/images/precip_reforecast.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions content/news/essd_publication_20230719.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
Publication of the new EUMETNET postprocessing benchmark dataset in ESSD !
==========================================================================

:date: 2023-07-19 11:20
:author: Jonathan Demaeyer
:summary: The EUMETNET postprocessing (PP) module has just published its first dataset paper to date in Earth System Science Data (ESSD).
:slug: essd-publication
:tags: dataset, benchmark
:category: dataset

.. image:: /images/ESSD.png
:alt: A map showing EUPPBench CRPSS results for all stations over the domain and for all methods.

The EUMETNET postprocessing (PP) module has just published its first dataset paper to date in `Earth System Science Data <https://www.earth-system-science-data.net/>`_.

This paper is about EUPPBench, the first version of an open postprocessing benchmark dataset which can be used in many different ways by the scientific community
to benchmark new and old postprocessing methods. This dataset and the description article are the result of the hard work of the many module participants.

The dataset includes both gridded and station-point ECMWF forecasts along with the observations, time-paired together to obtain an 'analysis-ready dataset' that
can be used directly by the statistical and machine learning community.

.. figure:: /images/precip.png
:align: center
:alt: A gridded forecast of the total precipitation at various lead time issued on the 13 January 2017, and its ERA5 observation fields, both part of the gridded dataset.

A gridded forecast of the total precipitation at various lead time issued on the 13 January 2017, and its ERA5 observation fields, both part of the gridded dataset.

Many past forecasts (reforecasts) are also included to enable training of postprocessing algorithm, representing 20 years of data.

.. figure:: /images/precip_reforecast.png
:align: center
:alt: A gridded reforecast of the total precipitation at various lead time issued on the 13 January 1997, and its ERA5 observation fields, both part of the gridded dataset.

A gridded reforecast of the total precipitation at various lead time issued on the 13 January 1997, and its ERA5 observation fields, both part of the gridded dataset.

The gridded observations corresponding to the gridded forecasts have been obtained by using the ERA5 reanalysis data (see https://climate.copernicus.eu/climate-reanalysis)
and cover a portion of central Europe. The station data include forecasts and observations of 100+ stations inside this domain.

.. figure:: /images/EUPP_domain.png
:align: center
:alt: The domain and weather stations of the EUPPBench dataset.

The domain and weather stations of the EUPPBench dataset.

On the practical side, the recommended way to download the data is through a ECMWF climetlab plugin (available at https://github.com/EUPP-benchmark/climetlab-eumetnet-postprocessing-benchmark),
returning xarray datasets which can then be used directly or converted to netCDF files. But other ways are possible, see the Supplementary Information in the paper.

The data are stored on the ECMWF European Weather Cloud (EWC). Many thanks to them for their support.

Many more scientific activities will be organized in the future around this dataset, so stay tuned if you are interested !
Our wish with the PP module participants is that this first step will foster many interesting developments in the field of postprocessing
and verification of weather forecasts in the future.

.. _essd_link: https://essd.copernicus.org/articles/15/2635/2023/
.. |essd_link| replace:: **https://essd.copernicus.org/articles/15/2635/2023/**

**See** |essd_link|_ **for the full article !**
30 changes: 21 additions & 9 deletions pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,22 @@
DEFAULT_LANG = 'en'

# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# FEED_ALL_ATOM = None
# CATEGORY_FEED_ATOM = None
# TRANSLATION_FEED_ATOM = None
# AUTHOR_FEED_ATOM = None
# AUTHOR_FEED_RSS = None

# Feed Items
FEED_MAX_ITEMS = 15
FEED_ALL_ATOM = 'feeds/all.atom.xml'
CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'


# Blogroll
LINKS = (
("Datasets documentation", "https://eupp-benchmark.github.io/EUPPBench-doc/"),
# ("Pelican", "https://getpelican.com/"),
# ("Python.org", "https://www.python.org/"),
# ("Jinja2", "https://palletsprojects.com/p/jinja/"),
# ("You can modify those links in your config file", "#"),
("News", SITEURL + "news.html"),
)

# Social widget
Expand Down Expand Up @@ -88,4 +91,13 @@

GITHUB_CORNER_URL = "https://github.com/EUPP-benchmark"

# move the original article index elsewhere:
INDEX_SAVE_AS = 'news.html'

# ordering page
PAGE_ORDER_BY = "page-order"

# news path
ARTICLE_PATHS = ['news']
ARTICLE_SAVE_AS = '{date:%Y}/{slug}.html'
ARTICLE_URL = '{date:%Y}/{slug}.html'

0 comments on commit a5e9c23

Please sign in to comment.