ClimateETFlow
ERA5-Land
ERA5-Land hourly data. 0.1° land reanalysis for hydrological forcing.
The land component of ERA5 rerun at 0.1°, with soil moisture in four layers, snow, runoff, evaporation and the near-surface weather needed to drive hydrological models. The forcing behind Caravan.
- Source
- Copernicus Programme (European Union), European Centre for Medium-Range Weather Forecasts
- Resolution
- 0.1° (about 9 km)
- Data type
- Raster
- Time span
- 1950–present
- Temporal
- Hourly and monthly
- Access type
- API (external) · Free Climate Data Store account and API key
- Formats
- GRIB, NetCDF
- Coverage
- Global land (-180, -90, 180, 90)
- Licence
- Copernicus licence (free, attribution required)
- DOI
- 10.24381/cds.e2161bac
- Provider page
- cds.climate.copernicus.eu/datasets/reanalysis-era5-land
Cite as. Muñoz-Sabater, J., et al. (2021). ERA5-Land: a state-of-the-art global reanalysis dataset for land applications. Earth System Science Data, 13, 4349–4383. https://doi.org/10.5194/essd-13-4349-2021
Access
linkreanalysis-era5-land in the Climate Data Store
https://cds.climate.copernicus.eu/datasets/reanalysis-era5-land
curl "https://hydrological.org/api/v1/datasets/era5-land/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import cdsapi # pip install cdsapi, key in ~/.cdsapirc
c = cdsapi.Client()
c.retrieve("reanalysis-era5-land", {
"variable": ["total_precipitation", "2m_temperature", "total_evaporation"],
"year": "2020",
"month": "01",
"day": [f"{d:02d}" for d in range(1, 32)],
"time": [f"{h:02d}:00" for h in range(24)],
"data_format": "netcdf",
"area": [5, -75, -20, -50],
}, "era5_land_2020_01.nc")
const res = await fetch("https://hydrological.org/api/v1/datasets/era5-land/links?bbox=-75,-20,-50,5");
const { groups } = await res.json();
for (const g of groups) g.links.forEach(l => console.log(l.url));
Also available as JSON: links · manifest · dataset record