Hi,
I'm having trouble using the toolbox to download netcdf formats of temperature data. I used the following toolbox script to download 2m_temperature. The variable "t2m" in the returned data contains mostly missing values, whereas if I use "submit form", the "t2m" variable is correct and complete. Does anyone know how to solve this problem?
Thanks,
tori
import cdstoolbox as ct@ct.application(title=‘Download data’)
@ct.output.download()
def download_application():
data = ct.catalogue.retrieve(
‘reanalysis-era5-land’,
{
‘variable’: ‘2m_temperature’,
‘year’: ‘2012’,
‘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’,
],
‘area’: [
49, -125, 24,
-66,
],
}
)
return data