Hi there, I’ve been downloading ERA5-Land reanalysis data for the coverage of USA using cdsapi
, and I tried with only one variable and one day, but the procedure stucked at “status has been updated to accepted”.
It seems that the authentication has passed but there is some issue in queuing or processing. Would you have any experiences or ideas with this? Thank you
Below is my script, very simple and small request.
dataset = "reanalysis-era5-land"
request = {
'variable': ['2m_temperature'],
'year': '1980',
'month': '01',
'day': ['01'],
'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',
'download_format': 'unarchived',
'area': [53, -125, 25, -67]
}
client = cdsapi.Client()
client.retrieve(dataset, request).download()
And below is all I got from the terminal:
2024-09-05 11:37:01,105 INFO Request ID is **** (P.S., hidden by me)
2024-09-05 11:37:01,226 INFO status has been updated to accepted