Hello,
When downloading ERA5Land data, it seems like request for “unarchived” is not adhered to? Is everything zipped by default now?
Here’s an example of a script that downloads a single zip file although the expectation is that it should be a single grib file. When the zip file is unzipped, there is only a single file inside name “data.grib”.
import cdsapi
dataset = "reanalysis-era5-land"
request = {
    "variable": ["2m_temperature"],
    "year": "2025",
    "month": "01",
    "day": ["01"],
    "time": ["00:00"],
    "data_format": "grib",
    "download_format": "unarchived"
}
client = cdsapi.Client()
client.retrieve(dataset, request).download()
Thanks and any help would be greatly appreciated!
Joseph
             
            
              2 Likes 
            
            
           
          
            
            
              Having the same problem. It started 3 days ago.
             
            
              
            
           
          
            
            
              Same issue, also I found ERA5-land data from 1950-1958 is not available anymore. Strange:(
             
            
              
            
           
          
            
            
              I’m experiencing the same issue on my end today, any updates would be greatly appreciated.
             
            
              
            
           
          
            
            
              I have the same issue. I tried for netcdf format.
Also the data for 20 Jan 2025 seems incomplete.
             
            
              
            
           
          
            
            
              Same problem here but only with Hourly data, the daily aggregated statistic products keep downloading a non-zipped output.
             
            
              
            
           
          
            
            
              Hi,
             
            
              
            
           
          
            
            
              Forbidden for url: https://cds.climate.copernicus.eu/api/retrieve/v1/processes/reanalysis-era5-land/execution 
             
            
              
            
           
          
            
            
              Hi,
             
            
              
            
           
          
            
            
              The request is now submitted and runs, but it keeps downloading a zip file instead of a netcdf
             
            
              
            
           
          
            
            
              Hi,
  
  
    If a user runs exactly the same CDS API request several times, and the data from the first time the request is submitted is still in the CDS cache. then the same data are retrieved from the cache, rather than being re-extracted from the dataset.  
For datasets which are updated on a daily basis (such as ERA5T), this can cause issues, as the later request may not be returned the data as expected.  
To avoid this, we suggest users to add the keyword 'nocache' in their CDS API request, with a rando…
   
 
Thanks
             
            
              
            
           
          
            
            
              Now it seems to be downloading a netcdf file, so the issue seems to be solved
             
            
              
            
           
          
            
            
              Thanks @Michela  - this seems to be resolved. Thanks for the quick fix!
With regards to the GRIB file generated, was there a change in the GRIB format? It seems like the data that is downloaded is GRIB version 1.
             
            
              
            
           
          
            
              
                cd123  
              
                  
                    27 January 2025 15:16
                   
                  14 
               
             
            
              Even with nocache, I am still receiving a *.zip file for the following request:
{'name': 'reanalysis-era5-land', 
'request': {
    'product_type': 'reanalysis',
    'variable': ['2m_temperature'], 
    'year': ['2025'], 
    'month': ['01'], 
    'day': ['21'], 
    'time': ['00:00', '01:00', '02:00', '3: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'], 
    'area': [90, -180, -90, 180], 
    'grid': [0.1, 0.1], 
    'nocache': '22190722'
}}
 
            
              
            
           
          
            
            
              Hi,ERA5-Land: data documentation - Copernicus Knowledge Base - ECMWF Confluence Wiki 
Thanks
             
            
              1 Like 
            
            
           
          
            
            
              We are also getting zip files despite using format=grib and nocache. Is this an expected change in behavior?
             
            
              
            
           
          
            
            
              Hi,
I specifying format=‘netcdf’ in the request,  but the downloaded files seem to be compressed ‘GRIB’ format. 
I’ve also still  seeing  downloaded  files actually containing  compressed data,   despite  specifying  the ‘nocache’ key with a random 3 digit string value. 
 
mv era5land_d2m_27_2025_01.nc era5land_d2m_27_2025_01.nc.gz
 
This happened yesterday, Jan 29th at about 5pm.
             
            
              
            
           
          
            
            
              Have you check this? I used also format as parameter and was getting a zip file containing a grib file.
  
  
    I was having the issue of not getting the proper .nc file until I discovered which is the issue. 
Before, the API parameter was format: 'netcdf'. Now, in order to get the same result, you need to specify  data_format: 'netcdf', download_format: 'unarchived'.
   
 
             
            
              2 Likes 
            
            
           
          
            
            
              For the year 2024, it persists as zip files. For other years, it is OK.
             
            
              
            
           
          
            
            
              Thanks for the extra pointer - these changes have fixed the download .
             
            
              1 Like