Thermal Comport indices derived from ERA5 reanalysis data are available for global coverage. To reduce the download time and size of data, I need extraction of data only my region. I try to download sample data by CDSAPI set up my region using python. But downloading only whole globe. How I do it by CDSAPI using python?
Example of python script:
import cdsapi
c = cdsapi.Client()
c.retrieve(
'derived-utci-historical',
{
'product_type': 'consolidated_dataset',
'year': '2020',
'month': '01',
'day': '01',
'area': [
15, 75, 3,
85,
],
'format': 'tgz',
'variable': 'universal_thermal_climate_index',
},
'download.tar.gz')