python3 <<EOF
import cdsapi
dataset = "reanalysis-era5-single-levels"
request = {
"product_type": ["reanalysis"],
"variable": [
"2m_temperature",
"2m_dewpoint_temperature",
"surface_pressure",
"10m_u_component_of_wind",
"10m_v_component_of_wind",
"total_precipitation",
"total_cloud_cover",
"mean_surface_net_long_wave_radiation_flux",
"mean_surface_downward_long_wave_radiation_flux",
"total_sky_direct_solar_radiation_at_surface",
"surface_solar_radiation_downwards",
"land_sea_mask"
],
"year": ["${YEAR}"],
"month": ["${MONTH}"],
"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": "grib",
"download_format": "zip",
"area": [-12, 112, -28, 130]
}
client = cdsapi.Client()
client.retrieve(dataset, request, "${OUTFILE}").download()
EOF
--
You received this message because you are subscribed to the Google Groups "NicheMapR" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nichemapr+...@googlegroups.com.
To view this discussion, visit https://groups.google.com/d/msgid/nichemapr/fd52a84c-1d21-4c6b-bbdd-e73d4e928a7dn%40googlegroups.com.