We are currently trying to retrieve all available CAMS from the cams-global-atmospheric-composition-forecasts dataset which match our needs (twice a day with specific variables, from 2017 to now).
To do so, we've been sending several requests every day, each aiming to retrieve one NetCDF file per day per hour we need (00:00 and 12:00). Since it's taking a long time and it seems that our requests are often QUEUED, we tried to retrieve a large period with one single request by using the start/end date keys and then extracting the information we need.
However, by doing so and by comparing to the information we got by only requesting one day+hour at a time, we noticed that the information for the same day and hour were different. For instance, here are some max differences between variables from the same day and hour, retrieved by requesting a period and extracting the date and hour in question, and then requesting this very same day and hour (we subtracted the two values of the variables to get these differences) :
Variable |
Difference |
bcaod550 |
6.6 e-6 |
duaod550 |
4.8 e-5 |
omaod550 |
3.1 e-5 |
ssaod550 |
2.0 e-5 |
The precise date requested was 2019-05-01T00:00:00 and the period went from 2019-05-01T00:00:00 to 2019-05-05T00:00:00.
Since the values should be the same (after all it's the same day and hour !), we are wondering if you would be so kind as to explain these differences, and how we should proceed to obtain the correct data.
Thanks for your help