ECMWF ERA5-Land

Summary Description

ERA5-Land is a high-resolution global land surface reanalysis dataset produced by the European Centre for Medium-Range Weather Forecasts (ECMWF). It provides detailed historical climate and weather data, focusing on land surface variables with enhanced spatial and temporal resolution compared to the standard ERA5 dataset. ERA5-Land is generated using the same land surface model as ERA5 but with higher resolution and no atmospheric data assimilation to improve consistency in land-related processes.

ToDo: Add referencec, data access

ERA5-Land Example

ERA5-Land data over North America (Source: PAVICS)

Dataset Characteristics

Strengths and Limitations

Key Strengths of ERA5-Land

Strength Description
High Spatial Resolution ~9 km grid improves detail over land compared to ERA5 (~31 km).
Long-Term Consistency Extends back to 1950, enabling long-term climate studies.
Hourly Data Availability Supports high-frequency climate and hydrological applications.
Improved Land Surface Processes Enhanced representation of soil moisture, snow, and vegetation dynamics.
Global Coverage Provides consistent land surface data across all continents.

Limitations of ERA5-Land

Limitation Description
No Atmospheric Data Assimilation Unlike ERA5, does not assimilate atmospheric observations, which may introduce biases.
Precipitation Uncertainties Forced by ERA5 atmospheric fields, which can lead to regional biases in precipitation estimates.
Limited Ocean Representation. Focuses on land; coastal interactions may be less accurate.
Computationally Intensive. High-resolution data requires significant storage and processing resources.
Lack of Direct Observations. Some variables are entirely model-based, potentially differing from ground-based observations.

Expert Guidance

Lorem ipsum.

Example Applications

links to Electricity Sector Applications

Variables available in ERA5-Land

For details click on variable group to uncollapse

  • 2m air temperature
  • 2m dew point temperature
  • Surface pressure
  • 10m wind speed and direction
  • Surface (skin) temperature
  • Total precipitation
  • Rainfall rate
  • Snowfall rate
  • Snow water equivalent (SWE)
  • Evaporation
  • Soil moisture content (multiple layers)
  • Surface net solar radiation
  • Surface net thermal radiation
  • Latent heat flux
  • Sensible heat flux
  • Snow depth
  • Soil temperature (multiple layers)
  • Soil moisture (multiple layers)
  • Surface runoff
  • Ground heat flux
  • Albedo
  • Surface roughness length
  • Vegetation fraction

Data Access

References

1.
Muñoz-Sabater, J. ERA5-land hourly data from 1950 to present. Copernicus Climate Change Service (C3S) Climate Data Store (CDS) https://cds.climate.copernicus.eu/datasets/reanalysis-era5-land?tab=overview (2019) doi:10.24381/cds.e2161bac.
2.
Muñoz-Sabater, J. et al. ERA5-land: A state-of-the-art global reanalysis dataset for land applications. Earth System Science Data 13, 4349–4383 (2021).

Instructions for Data Access on PAVICS

To access ERA5-Land data hosted on PAVICS via a Python script, locate the the OpenDAP Data URL of the dataset by clicking on the Threads Catalog link. Using the Xarray Python Library the dataset can be easily read. The output from the following code allows to interactively browse the content of the dataset:

Code
import xarray as xr

# the OpenDAP URL for hourly ERA5-Land data
url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/dodsC/datasets/reanalyses/day_ERA5-Land_NAM.ncml"

# open the dataset
ds = xr.open_dataset(url, chunks={'time': -1, 'lat': 50, 'lon': 50}, decode_timedelta=False)
print("The ERA5-Land dataset:")
ds
The ERA5-Land dataset:
<xarray.Dataset> Size: 715GB
Dimensions:  (lat: 800, lon: 1700, time: 26298)
Coordinates:
  * lat      (lat) float32 3kB 10.0 10.1 10.2 10.3 10.4 ... 89.6 89.7 89.8 89.9
  * lon      (lon) float32 7kB -179.9 -179.8 -179.7 -179.6 ... -10.2 -10.1 -10.0
  * time     (time) datetime64[ns] 210kB 1950-01-01 1950-01-02 ... 2021-12-31
Data variables:
    tas      (time, lat, lon) float32 143GB dask.array<chunksize=(26298, 50, 50), meta=np.ndarray>
    tasmin   (time, lat, lon) float32 143GB dask.array<chunksize=(26298, 50, 50), meta=np.ndarray>
    tasmax   (time, lat, lon) float32 143GB dask.array<chunksize=(26298, 50, 50), meta=np.ndarray>
    pr       (time, lat, lon) float32 143GB dask.array<chunksize=(26298, 50, 50), meta=np.ndarray>
    prsn     (time, lat, lon) float32 143GB dask.array<chunksize=(26298, 50, 50), meta=np.ndarray>
Attributes: (12/26)
    Conventions:          CF-1.8
    cell_methods:         time: mean (interval: 1 day)
    data_specs_version:   00.00.07
    domain:               NAM
    format:               netcdf
    frequency:            day
    ...                   ...
    dataset_description:  https://www.ecmwf.int/en/era5-land
    license_type:         permissive
    license:              Please acknowledge the use of ERA5-Land as stated i...
    attribution:          Contains modified Copernicus Climate Change Service...
    citation:             Muñoz Sabater, J., (2021): ERA5-Land hourly data fr...
    doi:                  https://doi.org/10.24381/cds.e2161bac

A quicklook visualization of the data is shown below.

Code
ds.tas.sel(time="2019-01-16").plot()