Hi I try to download the dataset with the following code:
dataset = "reanalysis-era5-single-levels"
request = {
"product_type": ["reanalysis"],
"variable": ["total_precipitation"],
"year": [
"2015"
],
"month": [
"01",
],
"day": [
"01", "02", "03",
"04", "05", "06",
"07", "08", "09",
"10", "11", "12",
"13", "14", "15",
"16", "17", "18",
"19", "20", "21",
"22", "23", "24",
"25", "26", "27",
"28", "29", "30",
"31"
],
"time": [
"00:00", "01:00", "02:00",
"03:00", "04:00", "05:00",
"06:00", "07:00", "08:00",
"09:00", "10:00", "11:00",
"12:00", "13:00", "14:00",
"15:00", "16:00", "17:00",
"18:00", "19:00", "20:00",
"21:00", "22:00", "23:00"
],
"data_format": "netcdf_legacy",
"download_format": "unarchived",
"area": [26, -81, 25, -80]
}
client = c
client.retrieve(dataset, request).download()
with the following response:
2024-10-16 00:27:38,720 WARNING [2024-10-10T00:00:00] The final validated ERA5 differs from ERA5T in July 2024 - please refer to our
[Forum announcement](https://prod.ecmwf-forum-prod.compute.cci2.ecmwf.int/t/final-validated-era5-product-to-differ-from-era5t-in-july-2024/6685)
for details and watch it for further updates on this.
WARNING:cads_api_client.legacy_api_client:[2024-10-10T00:00:00] The final validated ERA5 differs from ERA5T in July 2024 - please refer to our
[Forum announcement](https://prod.ecmwf-forum-prod.compute.cci2.ecmwf.int/t/final-validated-era5-product-to-differ-from-era5t-in-july-2024/6685)
for details and watch it for further updates on this.
2024-10-16 00:27:38,724 INFO Request ID is 9a829cc0-b988-4caa-a487-c8516ab283db
INFO:cads_api_client.legacy_api_client:Request ID is 9a829cc0-b988-4caa-a487-c8516ab283db
2024-10-16 00:27:38,905 INFO status has been updated to accepted
INFO:cads_api_client.legacy_api_client:status has been updated to accepted
2024-10-16 00:27:46,467 INFO status has been updated to running
INFO:cads_api_client.legacy_api_client:status has been updated to running
2024-10-16 00:30:30,964 INFO The 'netcdf_legacy' format is deprecated and no longer supported. Users are encouraged to update workflows to use the updated, and CF compliant, 'netcdf' option.
INFO:cads_api_client.legacy_api_client:The 'netcdf_legacy' format is deprecated and no longer supported. Users are encouraged to update workflows to use the updated, and CF compliant, 'netcdf' option.
2024-10-16 00:30:30,968 INFO status has been updated to successful
INFO:cads_api_client.legacy_api_client:status has been updated to successful
635eec33abd7aa1b0446cb83d2ae16ef.nc
however it seems that mostly are api request information and there is no link for me to download from my google colab notebook. how do i fix this?