Below script generates instead of a netcdf file a zip file that contains one file for each time instead of one netcdf file that contains all times. Anyway to change this?
Thanks
Axel
import cdsapi
c = cdsapi.Client()
c.retrieve(
'reanalysis-carra-single-levels',
{
'format': 'netcdf',
'domain': 'west_domain',
'level_type': 'surface_or_atmosphere',
'variable': 'surface_solar_radiation_downwards',
'product_type': 'forecast',
'time': [
'00:00', '03:00', '06:00',
'09:00', '12:00', '15:00',
'18:00', '21:00',
],
'leadtime_hour': [
'1', '2', '3',
],
'year': '1998',
'month': '06',
'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',
],
},
'ssrd.1998.06.nc')