I don't want the global data.
Hi Xiaobo,
it is not yet possible to get a geographical subset of a dataset on the Climate Data Store web download interface but this should soon be implemented.
However, this functionality is now available through the Climate Data Store API.
To start using the CDS-API, please refer to the following documentation in our Knowledge Base:
https://cds.climate.copernicus.eu/api-how-to
and then please check the script example given in the following knowledge base article, where it shows how to set the keyword to select a geographical area ('AREA'):
This page has a number of example requests for ERA5 data stored on the CDS itself, as well as for ERA5 data in the MARS archive.
Thanks,
Kevin
Copernicus User Support team
OK, so the line in a CDS API Python request script below will do the job.
'area'
:
'80/-50/-25/0'
, # North, West, South, East. Default: global
- If you want 120E to 100W, then you can define west as 120 and east as -100 (notice you can only do this using a Python script, but not on the web interface, i.e. the CDS download from)
- If you want 100W to 120E, then you can define west as -100 and east er 120