Please be aware that on 26 September 2024 the CDS legacy system has been decommissioned. Although some of the functionalities are common to the new CDS system we invite you to read the quick guide and additional information on some of the changes: Please read: CDS and ADS migrating to new infrastructure: Common Data Store (CDS) Engine .
IMPORTANT: New CDS API is designed to be backward compatible which means that once your .cdsapirc is updated, your API script may run successfully immediately, downloading data from the new CDS.
The content of the page below will be updated in due course to include new CDS information.
Introduction
The Climate Data Store (CDS) is the cornerstone infrastructure which supports the implementation of the Copernicus Climate Change Service (C3S). It enables the provision of Essential Climate Variables (ECVs), climate analyses, reanalyses, projections and indicators at temporal and spatial scales relevant to adaptation and mitigation strategies for various sectoral and societal benefit areas.
The CDS is designed as a distributed system which provides improved access to local and remote datasets via a powerful service-oriented architecture.
The CDS offers seamless web-based and API-based search and retrieve facilities to access climate data and information. In addition, the CDS also provides a generic software toolbox that allows users to develop web-based applications that make use of the datasets available in the CDS.
The data provided by the CDS are free and open data, subject to the user agreeing to the relevant dataset licence(s). For further details, please see this article from the ECMWF Newsletter 151.
How the CDS works
The CDS provides a Catalogue which lists C3S data and products, including observations, reanalyses, seasonal forecasts and climate projections. Users can search through the catalogue, and can filter the entries by means of both faceted search (Product type, Variable domain, Spatial coverage, or Temporal coverage) and textual search.
Users can request data from the CDS using a variety of methods:
- the CDS web interface
- the CDS Application Programming Interface (API)
1) The CDS web interface is an interactive system: the user fills a web form to construct their valid query and can then choose between three options:
- submit the form and download the result of the query;
- show the query as an API request;
Please make sure that you select all the mandatory fields before submitting a request.
This is shown in the following figures:
Figure 1: Web interface | Figure 2: Request options on the web interface |
2) The CDS API is a service providing programmatic access to CDS data in Python (using the CDS API client). Users need to have a CDS account to use it with their related CDS API credentials. For a full description and some useful examples, please see How to use the CDS API.
If users have more than one CDS API key (e.g. you also have a Atmosphere Data Store (ADS) account), you have to pass credentials in explicitly and the following method can be used:
import cdsapi import yaml with open('/path/to/ads/cdsapirc', 'r') as f: credentials = yaml.safe_load(f) c = cdsapi.Client(url=credentials['url'], key=credentials['key']) c.retrieve("dataset-short-name", {... sub-selection request ...}, "target-file")
We strongly suggest to construct CDS API requests by using the CDS web interface of the relevant dataset and using the 'Show API request' button to get the code.
For the most common CDS API issues, please see Common Error Messages for CDS Requests.
Users can also set the PROXY within the CDS API script:
import requests import cdsapi session = requests.Session() session.proxies = { 'http': 'http://10.10.10.10:8000', 'https': 'http://10.10.10.10:8000', } client = cdsapi.Client(session=session)
Please note: CDS datasets are covered by one or more licences, and users have to accept them in order to download datasets (whether through the web interface, or the CDS API, or the toolbox). At the time this article was written, the acceptance of the relevant licences can only be carried out through the CDS web interface for the relevant dataset.
In some cases, data can has multiple licenses because it comes from different providers.
As the CDS is a distributed platform, CDS datasets are hosted at a number of different locations. Some data are stored on the CDS disks; others are hosted on the data providers' storage systems, e.g. the ECMWF Meteorological Archival and Retrieval System (MARS).
Table 2 presents the ERA5 family datasets which are available on CDS disks ('MARS internal)'. Table 3 shows the CDS datasets which are stored in the tape library (referred to as 'MARS external'). The rest of the datasets are stored in the data providers archives.
The way the user selects the items to include in a single CDS request can make a significant difference in terms of performance. Please see the page Efficiency tips for how to build an efficient request.
On the CDS, requests and relevant results are generally cached and the period depends on the user load on the CDS system. Thereafter, files are deleted starting from the oldest. Please note that cached data is used to fulfil a CDS request only if a given CDS request is exactly identical to a previous one.
Request states
After sending a request, the user can track its state on the 'Your Requests' page of the CDS web interface. Users can also check the status of the CDS system at the live page. There are five different states of a request:
- Accepted. Each request is assigned a unique ID and a priority. The priority is chosen according to different criteria, such as the origin of the request (CDS web interface/API/Toolbox). For example, the CDS web interface usually has higher priority because it is an interactive application and users expect an immediate response to their request..
- In progress. The request is being fulfilled and the data is being collected from the archive.
- Failed. The request encountered problems.
- Unavailable. The data has expired from cache and therefore cannot be retrieved at the current time. In this case the request should be resubmitted.
- Succeded. The resulting data file is ready to download.
User can check the live status of the CDS system here https://cds.climate.copernicus.eu/live
Please note:
- Users can also follow the status of their CDS API request on the 'Your Requests' CDS web page, while the request is running.
- If the CDS API request completes successfully, the data file will be automatically downloaded to the user's computer. The details of this request will be available from the 'Your Requests' CDS web page.
- If the request fails, the details of this CDS API request will remain on the 'Your Requests' CDS web page, for further investigation.
Limits
Limits are set on usage of CDS resources to ensure an appropriate level of performance for users.
Please note that these limits are changed from time to time according to the current workload of the system and number of concurrent tasks.
The CDS will queue requests which would otherwise cause any of these limits to be exceeded.
When a user CDS web request exceeds the number of fields limit, an information message appears at the bottom of the web interface page.
Figure 4: Information message when a user CDS web request exceeds the number of fields limit.
Please note, that these limits are also enforced for requests sent via the CDS API.
Datasets
The tables below summarise the number of fields and volume size limits, as well as the major features of all CDS datasets. Table 2 shows the datasets stored in 'MARS internal', whereas Table 3 presents the datasets stored in 'MARS external'. The rest of the CDS datasets are stored in the data providers archives.
Data hosted on the CDS/'MARS internal'
Data hosted on 'MARS external'
Efficiency tips
- Where the data are actually stored can make a significant difference in performance. CDS data hosted in 'MARS internal' is stored on CDS disks, and so is faster to retrieve. The 'MARS external' datasets are stored in the ECMWF MARS (tape) archive, and in this case it is important to request as much data as possible from the same tape file in your CDS request.
- Submit small requests over very large and heavy requests. This will ensure your requests are not penalised in the CDS request queue. In particular:
For ERA5 data requests, please see: How to download ERA5. The first example in CDS API examples section below shows how to efficiently download a whole year of hourly data for 2m temperature (grib format, for an area subset) from the CDS, by asking for one month of data per request.
- For C3S seasonal forecast data requests, please see: Recommendations and efficiency tips for C3S seasonal forecast datasets.
- For UERRA data requests, please see: UERRA retrieval efficiency.
- When using the CDS API or the CDS Toolbox, it is advised that users take as an example the API request or toolbox request script shown at the bottom of the CDS web 'Download data' page for the dataset of interest, and use this as the basis for your request.
- Some ERA5 datasets, such as
reanalysis-era5-complete
, do not appear in the CDS catalogue on the web interface, but users can still retrieve the data through the CDS API. In these cases, users can make use of a subset of the ECMWF MARS keywords in their CDS API request, and should also follow the MARS efficiency rule of thumb (the idea is to request as much data as possible from the same tape file or to reduce the number of tapes involved.). - Users are strongly advised to check the allowed and not allowed keywords from the relevant dataset webform.
CDS API examples
CDS API Request for hourly data of one variable looping though months and years ( e.g 2m temperature for all months in 2018 and 2019)
CDS API Request for Temperature data from the ERA5 hourly dataset on pressure levels ('renalysis-era5-pressure-levels') on 11-10-2018, from 08:00 to 18:00 UTC on pressure level 1000 hPa.
CDS API request for Temperature data from ERA5 complete dataset ('reanalysis-era5-complete') for 01-01-2013 on all model levels (1-137) on 1 degree grid for a specific area