Hello,
There seems to have been some change in how ERA5T data requests are processed. In short, CDS requests that used to run smoothly now fail with "UserError: Restricted access to ERA5T. Please, check that that your date selection is valid." Has this change been implemented accidentally or is this a restriction that one has to work with going forward?
In detail: Since I am not aware of an API that gives information regarding available timestamps (let alone which timestamps are ERA5 and ERA5T), I used to periodically query a time series at a single pixel for e.g. the last few days. It's meant to be a lightweight process that finds out for which timestamps data exists. E.g.:
{ "area": "0.1/-0.1/-0.1/0.1", "day": [ "24", "25", "26", "27", "28", "29", "30", "31" ], "format": "grib", "month": [ "05" ], "product_type": "reanalysis", "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" ], "variable": "2m_temperature", "year": [ "2022" ] }
Now (I'm writing this on 5/31/2022; around 6pm UTC), the above suddenly fails. I suspect this is due to the query looking for data e.g. on 05/31, 05/30, .... Sadly, it's not even clear what valid timestamps are. UTC "now" - 5 days (which is what is described here) MARS access restrictions#era5tRestrictedaccesstoERA5T would mean that only 2022/05/26 18:00 Z is available. At the same time the web interface suggests that 2022/05/26 21:00 Z is available.
So to repeat my question:
- Is the above access restriction now permanent?
- Will there be an API to learn what timestamps are available and whether the data is ERA5/ERA5T?
Thanks!
Johannes Schmude