This page is under construction!
To help users to improve S2S CMA MARS requests performance. A good understanding of the MARS efficiency issues is essential especially for users that are interested in downloading large amounts of data. |
In general it is organised, as a huge tree, with the indentation below, showing different levels down that tree:
|
Following the previous paragraph, the natural way to group requests would be:
|
for Hdate in Hdate-list |
for each Hdate from 2010-03-01 to 2010-03-31 |
Retrieving 1 field (10m U wind) for all time steps
The best approach is to iterate over the Hyears you wish. For each Hyear iterate over all Hmonths and for each Hmonth iterate over all its Hdays. your-s2S-request(Hdate) |
for Hyear in Hyears Hdate = Hyear-Hmonth-Hday your-S2S-request(Hdate) |
for each Hyear from 2010 to 2014 for Hmonth in April, June for Hday in Hmonth Hdate = Hyear-Hmonth-Hday your-S2S-request(Hdate) |