I am using Carra West data and was updating my files for the year 2025.
I noticed that the snow water equivalent file seems to have changed when new data was added to it.
The gribfile (I am asking for analysis all data for the year) I get has a bizzare time ordering.
It starts with february and ends with march with other months irregularly orderd in between.
Files I picked earlier this year did not have this issue.
Halldór
The request code for the api is:
import cdsapi
dataset = "reanalysis-carra-single-levels"
request = {
"domain": "west_domain",
"level_type": "surface_or_atmosphere",
"variable": ["snow_depth_water_equivalent"],
"product_type": "analysis",
"time": [
"00:00", "03:00", "06:00",
"09:00", "12:00", "15:00",
"18:00", "21:00"
],
"year": ["2025"],
"month": [
"01", "02", "03",
"04", "05", "06",
"07", "08", "09",
"10"
],
"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"
],
"data_format": "grib"
}
client = cdsapi.Client()
client.retrieve(dataset, request).download()