5.2.3. Bias in precipitation-based indices for impact models#
Production date: 29-05-2024
Produced by: CMCC foundation - Euro-Mediterranean Center on Climate Change. Albert Martinez Boti.
🌍 Use case: Verification of precipitation indices used as proxies for rainfall erosivity in Europe under future climate scenarios.#
❓ Quality assessment question#
How well do CORDEX projections represent climatology and trends of precipitation-based indices in Europe?
Soil erosion stands as one of the primary environmental concerns in Europe [1]. Its accelerated occurrence can precipitate a decline in ecosystem stability, land productivity, and overall land degradation, resulting in diminished income for farmers [2]. This notebook is designed to evaluate the effectiveness of a specific set of models from CORDEX Regional Climate Models (RCMs) in accurately replicating historical precipitation extreme indices. These selected rainfall indicators are recognised as valuable proxies for rainfall erosivity, a factor directly linked to empirical calculations of soil loss, as outlined in an application available through the old CDS platform (dataset documentation). The five precipitation-based indices used here are calculated using the icclim package, them being:
Spell length of days with precipitation greater than 1 mm (also known as “Maximum consecutive wet days” - “CWD”)
Number of heavy precipitation days (Precip >= 20mm - “R20mm”)
Number of wet days (Precip >= 1mm - “RR1”)
Maximum 1-day total precipitation (“RX1day”)
Maximum 5-day total precipitation (“RX5day”).
Within this notebook, these calculations are performed over the temporal aggregation of DJF and for the historical period spanning from 1971 to 2000. It is important to note that the results presented here pertain to a specific subset of the CORDEX ensemble and may not be generalisable to the entire dataset. Also note that a separate assessment examines the representation of trends of these indices for the same models during a fixed future period (2015-2099).
📢 Quality assessment statement#
These are the key outcomes of this assessment
The assessment of CORDEX projections regarding the climatology and trend of precipitation-based indices across Europe requires a comprehensive evaluation of the historical period.
The subset of Regional Climate Models (RCMs) considered in this notebook for the seasonal aggregation of DJF generally struggle to replicate both the observed climatology and historical trends of the selected precipitation-based indices, with particular difficulty in capturing the trends. However, the models manage to accurately capture the climatology and trend directions for certain regions and indices. For instance, the models reflect an increasing trend for the CWD index in the western part of the Iberian Peninsula and an upward trend for RR1 in central Europe. Users should take into account these regional variations, the specific indices they intend to use, the differing bias behaviours between climatology and trends, and the necessity of bias-correcting data before using it for hydrological applications [3].
Precipitation trends in observational and reanalysis datasets are generally less robust and more challenging to detect compared to temperature trends. This limitation is also evident in model simulations.
While ERA5 serves as a reference dataset in this notebook, it is important to recognise its inherent uncertainties. Although uncertainties exist for all variables, these biases are especially relevant for variables like surface wind or precipitation, as shown in [4] and [5]. This highlights the need for cautious interpretation, particularly in the context of precipitation extremes.
A larger GCM-RCM matrix should be considered when addressing specific cases to enhance the robustness of the analysis and account for uncertainties [6][7].

Fig. 5.2.3.1 Number of wet days (Precip >= 1mm) (‘RRI’) for the temporal aggreggtion of ‘DJF’. Mean bias for the historical period (1971 - 2000) of each individual CORDEX model.#
It is important to note that using seasonal temporal aggregations offers only partial insights into the dynamics. For more comprehensive results, it is advisable to also consider other seasons and annual aggregations. However, for the sake of efficiency and to avoid making the notebook too heavy, we have opted to prioritise seasonal aggregations.
📋 Methodology#
This notebook provides an assessment of the systematic errors (trend and climatology) in a subset of 9 models from CORDEX. The analysis involves comparing model predictions with ERA5 reanalysis data using several precipitation-based indices. These indices, calculated over the DJF period for the historical period spanning from 1971 to 2000, include:
Spell length of days with precipitation greater than 1 mm (also known as “Maximum consecutive wet days” - “CWD”)
Number of heavy precipitation days (Precip >= 20mm - “R20mm”)
Number of wet days (Precip >= 1mm - “RR1”)
Maximum 1-day total precipitation (“RX1day”)
Maximum 5-day total precipitation (“RX5day”).
In particular, spatial patterns of climate mean and trend, along with biases, are examined and displayed for each model and the ensemble median (calculated for each grid cell). Additionally, spatially-averaged trend values are analysed and presented using box plots to provide an overview of trend behavior across the distribution of the chosen subset of models when averaged across Europe.
The analysis and results follow the next outline:
1. Parameters, requests and functions definition
📈 Analysis and results#
1. Parameters, requests and functions definition#
1.1. Import packages#
1.2. Define Parameters#
In the “Define Parameters” section, various customisable options for the notebook are specified:
The initial and ending year used for the historical period can be specified by changing the parameters
year_start
andyear_stop
(1971-2000 is chosen for consistency between CORDEX and CMIP6).The
timeseries
set the temporal aggregation. For instance, selecting “DJF” implies considering only the winter season.collection_id
provides the choice between Global Climate Models CMIP6 or Regional Climate Models CORDEX. Although the code allows choosing between CMIP6 or CORDEX, the example provided in this notebook deals with CORDEX RCMs.area
allows specifying the geographical domain of interest.The
interpolation_method
parameter allows selecting the interpolation method when regridding is performed over the indices.The
chunk
selection allows the user to define if dividing into chunks when downloading the data on their local machine. Although it does not significantly affect the analysis, it is recommended to keep the default value for optimal performance.
1.3. Define models#
The following climate analyses are performed considering a subset of GCMs from CMIP6. Models names are listed in the parameters below. Some variable-dependent parameters are also selected, as the index_names
parameter, which specifies the precipitation-based indices (‘CWD’, ‘R20mm’, ‘RR1’, ‘RX1day’ and ‘RX5day’ in our case) from the icclim Python package.
When choosing Cordex models, it is crucial to consider the availability of RCMs for the selected GCM and the specified region. The listed RCMs, for instance, are accessible for the GCM “mpi_m_mpi_esm_lr” in the “europe” cordex_domain. To confirm the available combinations, refer to the CORDEX CDS catalogue entry.
1.4. Define ERA5 request#
Within this notebook, ERA5 serves as the reference product. In this section, we set the required parameters for the cds-api data-request of ERA5.
1.5. Define model requests#
In this section we set the required parameters for the cds-api data-request.
The get_cordex_years
function is employed to choose suitable data chunks for CORDEX data requests.
When Weights = True
, spatial weighting is applied for calculations requiring spatial data aggregation. This is particularly relevant for CMIP6 GCMs with regular lon-lat grids that do not consider varying surface extensions at different latitudes. In contrast, CORDEX RCMs, using rotated grids, inherently account for different cell surfaces based on latitude, eliminating the need for a latitude cosine multiplicative factor (Weights = False
).
1.6. Functions to cache#
In this section, functions that will be executed in the caching phase are defined. Caching is the process of storing copies of files in a temporary storage location, so that they can be accessed more quickly. This process also checks if the user has already downloaded a file, avoiding redundant downloads.
Functions description:
The
select_timeseries
function subsets the dataset based on the chosentimeseries
parameter.The
compute_indices
function utilises the icclim package to calculate the precipitation-based indices.The
compute_trends
function employs the Mann-Kendall test for trend calculation.Finally, the
compute_indices_and_trends
accumulates the daily precipitation (only if we are dealing with ERA5), calculates the precipitation-based indices for the corresponding temporal aggregation using thecompute_indices
function, determines the indices mean over the historical period (1971-2000), obtain the trends using thecompute_trends
function, and offers an option for regridding to ERA5 if required.
2. Downloading and processing#
2.1. Download and transform ERA5#
In this section, the download.download_and_transform
function from the ‘c3s_eqc_automatic_quality_control’ package is employed to download ERA5 reference data, accumulate daily precipitation from hourly data, compute the precipitation-based indices for the selected temporal aggregation (“DJF” in this example), calculate the mean and trend over the historical period (1971-2000) and cache the result (to avoid redundant downloads and processing).
2.2. Download and transform models#
In this section, the download.download_and_transform
function from the ‘c3s_eqc_automatic_quality_control’ package is employed to download daily data from the CORDEX models, compute the precipitation-based indices for the selected temporal aggregation, calculate the mean and trend over the historical period (1971-2005), interpolate to ERA5’s grid (only for the cases in which it is specified, in the other cases, the original model’s grid is mantained), and cache the result (to avoid redundant downloads and processing).
model='clmcom_clm_cclm4_8_17'
model='clmcom_eth_cosmo_crclim'
model='cnrm_aladin63'
model='dmi_hirham5'
model='knmi_racmo22e'
model='mohc_hadrem3_ga7_05'
model='mpi_csc_remo2009'
model='smhi_rca4'
model='uhoh_wrf361h'
2.3. Apply land-sea mask, change attributes and cut the region to show#
This section performs the following tasks:
Cut the region of interest.
Downloads the sea mask for ERA5.
Applies the sea mask to both ERA5 data and the model data, which were previously regridded to ERA5’s grid (i.e., it applies the ERA5 sea mask to
ds_interpolated
).Regrids the ERA5 land-sea mask to the model’s grid and applies it to them.
Change some variable attributes for plotting purposes.
Note: ds_interpolated
contains data from the models (mean and trend over the historical period, p-value of the trends…) regridded to ERA5. model_datasets
contain the same data but in the original grid of each model.
3. Plot and describe results#
This section will display the following results:
Maps representing the spatial distribution of the historical mean values (1971-2000) of the indices (‘CWD’, ‘R20mm’, ‘RR1’, ‘RX1day’ and ‘RX5day’) for ERA5, each model individually, the ensemble median (understood as the median of the mean values of the chosen subset of models calculated for each grid cell), and the ensemble spread (derived as the standard deviation of the distribution of the chosen subset of models).
Maps representing the spatial distribution of the historical trends (1971-2000) of the considered indices. Similar to the first analysis, this includes ERA5, each model individually, the ensemble median (understood as the median of the trend values of the chosen subset of models calculated for each grid cell), and the ensemble spread (derived as the standard deviation of the distribution of the chosen subset of models).
Bias maps of the historical mean values.
Trend bias maps.
Boxplots representing statistical distributions (PDF) built on the spatially-averaged historical trends from each considered model, displayed together with ERA5.
3.1. Define plotting functions#
The functions presented here are used to plot the mean values and trends calculated over the historical period (1971-2000) for each of the indices (‘CWD’, ‘R20mm’, ‘RR1’, ‘RX1day’ and ‘RX5day’).
For a selected index, three layout types can be displayed, depending on the chosen function:
Layout including the reference ERA5 product, the ensemble median, the bias of the ensemble median, and the ensemble spread:
plot_ensemble()
is used.Layout including every model (for the trend and mean values):
plot_models()
is employed.Layout including the bias of every model (for the trend and mean values):
plot_models()
is used again.
trend==True
argument allows displaying trend values over the historical period, while trend==False
will show mean values. When the trend
argument is set to True
, regions with no significance are hatched. For individual models and ERA5, a grid point is considered to have a statistically significant trend when the p-value is lower than 0.05 (in such cases, no hatching is shown). However, for determining trend significance for the ensemble median (understood as the median of the trend values of the chosen subset of models calculated for each grid cell), reliance is placed on agreement categories, following the advanced approach proposed in AR6 IPCC on pages 1945-1950. The hatch_p_value_ensemble()
function is used to distinguish, for each grid point, between three possible cases:
If more than 66% of the models are statistically significant (p-value < 0.05) and more than 80% of the models share the same sign, we consider the ensemble median trend to be statistically significant, and there is agreement on the sign. To represent this, no hatching is used.
If less than 66% of the models are statistically significant, regardless of agreement on the sign of the trend, hatching is applied (indicating that the ensemble median trend is not statistically significant).
If more than 66% of the models are statistically significant but less than 80% of the models share the same sign, we consider the ensemble median trend to be statistically significant, but there is no agreement on the sign of the trend. This is represented using crosses.
3.2. Plot ensemble maps#
In this section, we invoke the plot_ensemble()
function to visualise the mean values and trends calculated over the historical period (1971-2000) for the model ensemble and ERA5 reference product across Europe. Note that the model data used in this section has previously been interpolated to the ERA5 grid.
Specifically, for each of the indices (‘CWD’, ‘R20mm’, ‘RR1’, ‘RX1day’ and ‘RX5day’), this section presents two layouts:
Mean values of the historical period (1971-2000) for: (a) the reference ERA5 product, (b) the ensemble median (understood as the median of the mean values of the chosen subset of models calculated for each grid cell), (c) the bias of the ensemble median, and (d) the ensemble spread (derived as the standard deviation of the distribution of the chosen subset of models).
Trend values of the historical period (1971-2000) for: (a) the reference ERA5 product, (b) the ensemble median (understood as the median of the trend values of the chosen subset of models calculated for each grid cell), (c) the bias of the ensemble median, and (d) the ensemble spread (derived as the standard deviation of the distribution of the chosen subset of models).










3.3. Plot model maps#
In this section, we invoke the plot_models()
function to visualise the mean values and trends calculated over the historical period (1971-2000) for every model individually across Europe. Note that the model data used in this section maintains its original grid.
Specifically, for each of the indices (‘CWD’, ‘R20mm’, ‘RR1’, ‘RX1day’ and ‘RX5day’), this section presents two layouts:
A layout including the historical mean (1971-2000) of every model (only for the ‘SU’ index).
A layout including the historical trend (1971-2000) of every model.










3.4. Plot bias maps#
In this section, we invoke the plot_models()
function to visualise the bias for the mean values and trends calculated over the historical period (1971-2000) for every model individually across Europe. Note that the model data used in this section has previously been interpolated to the ERA5 grid.
Specifically, for each of the indices (‘CWD’, ‘R20mm’, ‘RR1’, ‘RX1day’ and ‘RX5day’), this section presents two layouts:
A layout including the bias for the historical mean (1971-2000) of every model (only for the ‘SU’ index).
A layout including the bias for the historical trend (1971-2000) of every model.










3.5. Boxplots of the historical trend#
In this last section, we compare the trends of the climate models with the reference trend from ERA5.
Dots represent the spatially-averaged historical trend over the selected region (change of the number of days per decade) for each model (grey), the ensemble mean (blue), and the reference product (orange). The ensemble median is shown as a green line. Note that the spatially averaged values are calculated for each model from its original grid (i.e., no interpolated data has been used here).
The boxplot visually illustrates the distribution of trends among the climate models, with the box covering the first quartile (Q1 = 25th percentile) to the third quartile (Q3 = 75th percentile), and a green line indicating the ensemble median (Q2 = 50th percentile). Whiskers extend from the edges of the box to show the full data range.





Fig 31. Boxplots illustrating the historical trends of the ensemble distribution and ERA5 for the precipitation-based indices: (a)'CWD', (b)'R20mm', (c)'RR1', (d)'RX1day' and (e)'RX5day'. The distribution is created by considering spatially averaged trends across Europe. The ensemble mean and the ensemble median trends are both included. Outliers in the distribution are denoted by a grey circle with a black contour.
3.6. Results summary and discussion#
The bias behaviour varies depending on the index and whether we are dealing with trends or climatologies. Generally speaking, the subset of models selected overestimates the magnitudes of climatologies for DJF, except in the northwest of Great Britain, the west coast of the Scandinavian Peninsula, parts of the Mediterranean Basin, and the east of Europe for the CWD index, where there is underestimation. For the RR1 index, the models also underestimate the magnitudes for the west coast of the Scandinavian Peninsula and parts of the Mediterranean Basin.
For the historical period and the seasonal aggregation of DJF, ERA5 exhibits trends that are highly dependent on the region and index. Indices like CWD, R20mm, and RX1day show scattered spatial patterns that are generally not well-reproduced by the considered models, except in some specific areas. The spatial patterns for the trends of RR1 and RX5day are less scattered and are slightly better captured than those of the other indices.
The boxplots displaying spatially-averaged values reveal diverse outcomes depending on the index under consideration. Notably, significant inter-model variability is evident for certain indices, whose interquantile range encompasses trends of varying directions, and in some cases, even exhibits a trend opposite to that shown by the ERA5 data. This discrepancy is particularly noticeable for the R20mm, RR1, and RX1day indices, where the interquantile range showcases a trend contrary to that portrayed by ERA5. Meanwhile, the RX5day index displays an interquantile range centered around zero, with the trend sign dependent on the model. In contrast, the CWD index demonstrates a trend direction consistent with ERA5.
It is crucial to emphasise that the boxplots present spatially-averaged values, and their interpretation should be approached with caution, as the outcomes can vary significantly when considering different regions across Europe. For regional analyses, it is essential to focus solely on the region of interest, as the influence of other European regions may distort the results, leading to conclusions that do not accurately reflect the specific area under study.
Although ERA5 is used as our reference dataset, it is important to be aware of its inherent uncertainties. While uncertainties affect all variables, biases are particularly pronounced for variables such as surface wind and precipitation, as demonstrated in [4] and [5]. This underscores the importance of careful interpretation, especially regarding precipitation extremes.
A larger GCM-RCM matrix should be considered when addressing specific cases to enhance the robustness of the analysis and account for uncertainties [6][7].
What do the results mean for users? Are the biases relevant?
The subset of Regional Climate Models (RCMs) considered for this notebook and for this seasonal aggregation struggle to replicate both the observed climatology and the trends during the historical period, with particular difficulty in capturing the trends.
However, for specific regions and indices, the models successfully capture the climatology and even the direction of the trend. Examples include the increasing trend for the CWD index in the western part of the Iberian Peninsula and the positive trend for RR1 in central Europe. Users should consider these regional variations, the indices they aim to use, the differences in bias behavior between climatology and trends, and the necessity of bias-correcting data before using it for hydrological applications [3].
Precipitation trends in observational and reanalysis datasets are generally less robust and more challenging to detect compared to temperature trends. This limitation is also evident in model simulations.
It is important to note that the results presented are specific to the 9 models chosen, and users should aim to assess as wide a range of models as possible before making a sub-selection.
ℹ️ If you want to know more#
Key resources#
Some key resources and further reading were linked throughout this assessment.
The CDS catalogue entries for the data used were:
CORDEX regional climate model data on single levels (Daily mean - Mean precipitation flux): https://cds.climate.copernicus.eu/datasets/projections-cordex-domains-single-levels?tab=overview
ERA5 hourly data on single levels from 1940 to present (Total precipitation): https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels?tab=overview
Code libraries used:
C3S EQC custom functions,
c3s_eqc_automatic_quality_control
, prepared by B-Openicclim Python package
References#
[1] Panagos, P., Borrelli, P., Poesen, J., Ballabio, C., Lugato, E., Meusburger, K., Montanarella, L., Alewell, C. (2015). The new assessment of soil loss by water erosion in Europe. Environ. Sci. Policy, 54, pp. 438-447. https://doi.org/10.1016/j.envsci.2015.08.012
[2] Salvati, L., Carlucci, M. (2013). The impact of mediterranean land degradation on agricultural income: a short-term scenario. Land Use Policy, 32, pp. 302-308. https://doi.org/10.1016/j.landusepol.2012.11.007
[3] Teutschbein, C., Seibert, J. (2012). Bias correction of regional climate model simulations for hydrological climate-change impact studies: Review and evaluation of different methods. Journal of Hydrology, Volumes 456–457, pp. 12-29. https://doi.org/10.1016/j.jhydrol.2012.05.052
[4] Ramon, J., Lledó L., Torralba, V., Soret, A., Doblas-Reyes, F.J. (2019). What global reanalysis best represents near-surface winds?. Q J R Meteorol Soc. 2019; 145: 3236–3251. https://doi.org/10.1002/qj.3616
[5] Hassler, B. and Lauer, A. (2021). Comparison of Reanalysis and Observational Precipitation Datasets Including ERA5 and WFDE5. Atmosphere, 12, 1462. https://doi.org/10.3390/atmos12111462
[6] Rummukainen, M. (2010). State-of-the-art with regional climate models. WIREs Clim Change, 1: 82-96. https://doi.org/10.1002/wcc.8
[7] Silje Lund Sørland et al. (2018). Bias patterns and climate change signals in GCM-RCM model chains. Environ. Res. Lett. 13 074017. https://doi.org/10.1088/1748-9326/aacc77