Introduction
The TIGGE and S2S datasets are migrated to the new ECMWF Data Store (ECDS) based on the Common Data Store Engine (CDS-E).
- The current access method WEB-API will be changed to the analogical CDS-API.
- For more details about the migration schedule, visit Decommissioning of ECMWF Public Datasets Service
- Purpose of this page is to describe the current and future access tools to both datasets.
The current TIGGE and S2S users can easily adapt their retrieval requests following the new CDS-API, MARS like, syntax (see in the table below with the examples).
All users are encouraged to try the new, ECDS dedicated, version of the retrieval requests, which some may find more user friendly (see new CDS-API ("beautified") example).
|
Overview of current and future tools
| current | new | |
|---|---|---|
| data retrieval |
|
|
| data discovery | dedicated web portals * | 1) dedicated ECDS portal
2) dedicated MARS catalogues |
| data history | the same as before | |
| main web portal | the same as before |
* these tools will be discontinued
**direct access to MARS is not publicly available
Data access
For data discovery (understanding which data is available) and generation of sample retrieval codes, the dedicated data discovery tools are available (see table above).
For programmatic bigger data retrievals, the python API or direct access to MARS should be used (the direct access to MARS is not publicly available).
Data discovery
Users have two options to browse the available S2S or TIGGE data - new dedicated ECDS portal and new dedicated MARS catalogues.
See exact links in table above with the overview of all available tools.
Data retrievals
Until now, there have been 2 options how to access programmatically S2S or TIGGE data:
- direct MARS access (custome language)
- WEB-API (Python)
The required data specification has been analogical in both options (using MARS syntax).
In the new ECDS, those options are similar:
- direct MARS access (custome language)
- CDS-API (Python)
The CDS-API requests can be using:
- MARS like syntax
- CDS-API native syntax
- which should be more self-explaining ("beautified") for users
- dictionaries used to translate MARS like to CDS beautified requests
- which should be more self-explaining ("beautified") for users
Be aware of the difference how date ranges are specified in the current WEB-API and CDS-API MARS like syntax:
|
Registration
As the ECDS portal shares similar infrastructure as the Copernicus Climate Data Store, the existing user tokens (CDS-API keys) can be reused in ECDS. After first log in, a user must accept the ECDS terms and conditions and TIGGE/S2S licence to get the access to the data.
Be aware that currently to access different data stores (cds.ecmwf.int, ecds.ecmwf.int, etc.) the user must have separate .cdsapirc files with the correct URL for given data store (this can change in near future). Alternatively the URL and user token can be part of the Python client definition as per Examples below. |
Users are asked to pay attention to state correctly details about Affiliation, Thematic activities and Activity sectors during the registration as that information helps to understand users needs and interests, which can trigger future changes of TIGGE or S2S datasets.
Examples of the current and future retrieval requests
| example | MARS language | current WEB-API | new CDS-API (MARS like) | new CDS-API ("beautified" - generated by ECDS) * |
|---|---|---|---|---|
| request | | | | #!/usr/bin/env python |
| API key | Direct access to MARS database needed (not publicly available) | --> cat ~/.ecmwfapirc
{
"url" : "https://api.ecmwf.int/v1",
"key" : "<personal token>",
"email" : "<personal email>"
} | --> cat $HOME/.cdsapirc url: https://ecds.ecmwf.int/api key: <personal token> | --> cat $HOME/.cdsapirc url: https://ecds.ecmwf.int/api key: <personal token> |
Alternatively the url and token can be part of the Python client definition: client = cdsapi.Client(url="https://ecds.ecmwf.int/api", | Alternatively the url and token can be part of the Python client definition: client = cdsapi.Client(url="https://ecds.ecmwf.int/api", |
(*) The example of dictionary used to translate MARS like to CDS beautified requests for TIGGE dataset is ecds-tigge.yaml