...
Info | ||
---|---|---|
| ||
for Hdate in Hdate-list |
An example to request Control forecast, pressure levels from 2010-03-01 to 2010-03-31
Info | ||
---|---|---|
| ||
for each Hdate from 2010-03-01 to 2010-03-31 |
An example of "your-API-S2S-request"
...
Info | ||
---|---|---|
| ||
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) |
What is the best approach to get all Hdays for several Hyears and Hmonths and for several hindcasts ?
Info | ||
---|---|---|
| ||
for Hyear in Hyears Hdate = Hyear-Hmonth-Hday your-S2Ss2S-request(Hdate) |
An example to request Control forecast, sfc, for Hyears 2010-2014 for 2 Hmonths (eg April and June)
Info | ||
---|---|---|
| ||
for each Hyear from 2010 to 2014 for Hmonth in April, June for Hday in Hmonth Hdate = Hyear-Hmonth-Hday your-S2Ss2S-request(Hdate) |