Hi, Kevin!
There is a problem with interpreting monthly precipitation data for Ukraine for the period 2006-2020 -Total precipitation. The value of monthly precipitation in “m” is very small and when converted to “mm” by multiplying by 1000. For Ukraine, the standard value is 80-120 mm per month. We get from 0.4 to 1.2. Maybe I interpret this data incorrectly? Can you help me? Thank you very much. My API request code:
import cdsapi
dataset = “reanalysis-era5-land-monthly-means”
request = {
“product_type”: [“monthly_averaged_reanalysis”],
“variable”: [
“2m_temperature”,
“skin_temperature”,
“soil_temperature_level_1”,
“soil_temperature_level_2”,
“soil_temperature_level_3”,
“soil_temperature_level_4”,
“snow_depth”,
“volumetric_soil_water_layer_1”,
“volumetric_soil_water_layer_2”,
“volumetric_soil_water_layer_3”,
“volumetric_soil_water_layer_4”,
“surface_solar_radiation_downwards”,
“total evaporation”,
“total precipitation”,
“leaf_area_index_high_vegetation”,
“leaf_area_index_low_vegetation”
],
“year”: [“2019”],
“month”: [
“04”, “05”, “06”,
“07”, “08”, “09”,
“10”
],
“time”: [
“00:00”, “06:00”, “12:00”,
“18:00”
],
“data_format”: “netcdf”,
“download_format”: “zip”,
“area”: [51.8, 26, 50.2, 31.04]
}
client = cdsapi.Client()
client.retrieve(dataset, request).download()