KB creator: Peer Reviewer: Approval date: |
Please be aware that this is an experimental catalogue entry. The dataset is derived from the CERRA-Land data and it is designed for fast access long-timeseries for a single grid point, and that it is not recommended for operational use. This entry may be temporarily disabled or completely deprecated at any point and it does not come with the same level of operational support as the parent entry. Additionally, the formats and structure of the data files are subject to change. |
The Copernicus European Regional ReAnalysis Land (CERRA-Land) provides spatially and temporally consistent historical reconstructions of surface and soil variables at the same horizontal resolution as the CERRA high-resolution reanalysis from 1984 to the present.
The CERRA-Land Analysis Ready Cloud Optimised (ARCO) data presented are a subset of surface and soil variables from the CERRA-Land sub-daily regional reanalysis on a regular latitude-longitude grid at a 0.05ºx0.05º resolution and are stored in a ARCO format. It allows direct access to the single levels variables (see below) without downloading individual files, enabling efficient and scalable data access and retrieval. The ARCO format has a dual-chunking approach to optimize data retrieval for long periods of time over small areas (geo-chunked) or short periods of time over large areas (time-chunked).
The process to generate this dataset involves:
longitude: [-60, 75]
latitude: [15, 80]
The ARCO data is stored as Zarr datacubes to provide efficient access to time-chunked and geo-chunked ERA5 pressure levels 6-hourly data:
| Variable set | Chunking strategy | URL for Zarr datacube |
|---|---|---|
Surface:
| Geo-chunked | https://arco.datastores.ecmwf.int/cadl-arco-geo-045/arco/reanalysis_cerra_land/surface/geoChunked.zarr |
| Time-chunked | https://arco.datastores.ecmwf.int/cadl-arco-time-045/arco/reanalysis_cerra_land/surface/timeChunked.zarr | |
| Geo-chunked | https://arco.datastores.ecmwf.int/cadl-arco-geo-045/arco/reanalysis_cerra_land/total-precipitation/geoChunked.zarr |
| Time-chunked | https://arco.datastores.ecmwf.int/cadl-arco-time-045/arco/reanalysis_cerra_land/total-precipitation/timeChunked.zarr | |
Soil:
| Geo-chunked | https://arco.datastores.ecmwf.int/cadl-arco-geo-045/arco/reanalysis_cerra_land/soil/geoChunked.zarr |
| Time-chunked | https://arco.datastores.ecmwf.int/cadl-arco-time-045/arco/reanalysis_cerra_land/soil/timeChunked.zarr |
Access to ARCO data is programmatic; therefore, users of these resources and this documentation are expected to have some relevant programming experience. |
The Zarr datacubes can now be accessed using your CDS API key. Below is a simple plug-and-play code snippet and a more detailed Jupyter Notebook example. For more detailed and advanced access examples, please refer to the main Analysis Ready Cloud Optimised (ARCO) Data.
import xarray as xr
# Geo-chunked data for access optimised along the time dimension (e.g. for time-series at a single point)
# Surface
geo_url = "https://arco.datastores.ecmwf.int/cadl-arco-geo-045/arco/reanalysis_cerra_land/surface/geoChunked.zarr"
# Time-chunked data for access optimised along the time dimension (e.g. for short-time period for large areas)
# Surface
time_url = "https://arco.datastores.ecmwf.int/cadl-arco-time-045/arco/reanalysis_cerra_land/surface/timeChunked.zarr"
# Open one of the Zarr objects with xarray, the default example opens the geo-chunked surface variables
ds = xr.open_zarr(
surface_geo_url,
consolidated=True,
storage_options={
"headers": {"Authorization": f"Bearer <CDS-API-KEY>"}
}
)
# Inspect the variables
print(ds) |
The CERRA-Land time-series data on single levels from 1984 to present catalogue entry allows users to download long time series for a single-point or limited area via the CDS download webform or a CDS API request that users can build from the webform. The data download via the time-series entry is as described below with additional aspects:
Please be aware when you select a "Location" on the form, the latitude and longitude values are rounded to the closest neighborhood point of the 0.05 degrees grid. Similarly, selecting an “Area” returns all points within the region defined by the nearest neighborhood corner points to the user-specified S, W, N, and E latitude/longitude values (maximum 5° x 5°). |
Please note that a request with a forecast parameter and an analysis parameter will return two separate files. |
The entry may be temporarily disabled or completely deprecated at any point and it does not come with the same level of operational support as the parent entry. Additionally, the formats and structure of the data files are subject to change. |
The parameters are on a regular horizontal grid of 0.05º.
Temporal frequency of the data is 3-hourly for surface and soil parameters and daily for total precipitation.
Data will be added half-yearly (in June and December)
Variations in delivery times may occur due to the non-operational nature of this CDS service, as issues causing delays may arise. |
Table 1 shows the surface and soil level parameters for which time-series data can be retrieved. From the available parameters in the CERRA-Land dataset, only 5 of them have been chosen to be included in this time-series dataset. Some others might be added depending on the user requirements. Apart from the total precipitation which is a variable of type analysis, the others are of type forecast.
| Name | Units | Variable name | Remarks | |
|---|---|---|---|---|
| 1 | Evaporation | kg m-2 | evaporation | type: forecast |
| 2 | Surface latent heat flux | J m-2 | surface_latent_heat_flux | type: forecast |
| 3 | Surface sensible heat flux | J m-2 | surface_sensible_heat_flux | type: forecast |
| 4 | Total precipitation | kg m-2 | total_precipitation | type: analysis |
| 5 | Volumetric soil moisture | m3 m-3 | volumetric_soil_moisture | type: forecast |
Please refer to the CERRA-Land documentation.
This document has been produced in the context of the Copernicus Climate Change Service (C3S). The activities leading to these results have been contracted by the European Centre for Medium-Range Weather Forecasts, operator of C3S on behalf of the European Union (Delegation Agreement signed on 11/11/2014 and Contribution Agreement signed on 22/07/2021). All information in this document is provided "as is" and no guarantee or warranty is given that the information is fit for any particular purpose. The users thereof use the information at their sole risk and liability. For the avoidance of all doubt , the European Commission and the European Centre for Medium - Range Weather Forecasts have no liability in respect of this document, which is merely representing the author's view. |