To be able to download data from ECMWF you first need to create an account with ECMWF. To do that go on the following site:
https://www.ecmwf.int/user/login
Click on "Register" at the bottom. Fill the form and click on the big "Register" button at the end.
Next you need to setup your CDS API personal access token. To do that follow the steps on the following page:
https://cds.climate.copernicus.eu/how-to-api
Log in to your account.
You need to follow the steps for the "Linux users". All you need to do is step 1.3. :
"Once logged in, copy the code displayed below to the file $HOME/.cdsapirc".
You need to create this file in the home of any of our internal servers. If you do not see a long (more than 30 character) string with numbers, letters and dashes in the blackish box you are probably not logged in. You need to be logged in to see this string. Then just create the file $HOME/.cdsapirc and copy-paste the full content of the blackish box into it.
Step 2. is already done. See below how to use our already installed CDS API client.
When you download data for the first time you will be asked to accept a license. You need to to this just once.
To be able to use our common CDF API client you need to load:
module load python3/miniconda312 source activate cdsapi |
To download data from ECMWF with Python you have to write a Python script with a specific format. Have a look at point "3. Use the CDS API client for data access" of the following page for guidance:
https://cds.climate.copernicus.eu/how-to-api
Another way to find out what to put in the script is to go on the web site, for example:
https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels?tab=download
Select everything or an example of what you would like to download, scroll to the end of the page and click on "Show API request code". You can just copy paste the code you will see into your script and modify it to your liking.
Remember to load the Python environment above before executing your Python script!
Note there is a limit for the number of "items" you can download in one request. According to Anabelle from the Copernicus User Support team:
"This limit varies from dataset to dataset, as it depends on the granularity of the data served. For ERA5, 1 'item' corresponds to 1 variable on a (2D) field at 1 level at 1 timestep. Any request submitted to the CDS which is larger than the limit for that dataset will be rejected by the system, so you will need to modify you selection until it is smaller than the limit. If you go to the 'Download data' tab for a given dataset (e.g. ERA5), you can build a request interactively and you will get a warning if it exceeds the limit. Please note that these limits can change over time in order to balance the load on the system."
If your request gets too large you will have to split it up into multiple requests.