Hi ,
I am using the API and the web GUI to download 2m temperature daily maximum using the daily statistics (ERA5-Land post-processed daily statistics from 1950 to present) but it is giving hourly values… when I use daily_mean instead of daily_maximum, I do obtain daily values as expected.
I wonder if this is a known behaviour in ERA5-land or how to solve it?
See an example API request that gives me hourly data instead of daily maximum:
import cdsapi
dataset = "derived-era5-land-daily-statistics"
request = {
"variable": ["2m_temperature"],
"year": "2021",
"month": "02",
"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"
],
"daily_statistic": "daily_maximum",
"time_zone": "utc+00:00",
"frequency": "1_hourly"
}
client = cdsapi.Client()
client.retrieve(dataset, request).download()