...
Info | ||
---|---|---|
| ||
for HindcastYear in HindcastYears |
An example to request Control forecast,
...
sfc, for HindcastYears 2010 to 2014 for 2 HindcastMonths (eg April and June)
Info | ||
---|---|---|
| ||
for each HindcastYear from 2010 to 2014 |
...
A Control forecast, sfc, S2S-request example
Code Block | ||
---|---|---|
| ||
#!/usr/bin/env python from ecmwfapi import ECMWFDataServer server = ECMWFDataServer() server.retrieve({ "class": "s2", "dataset": "s2s", "date": "2014-05-01", "expver": "prod", "hdate": HindcastDate, (ie the selected HindcastDate eg "2014-04-01"), "levtype": "sfc", "origin": "babj", "param": "165", "step": "0", "stream": "enfh", "target": "CHANGEME", "time": "00", "type": "cf", }) |
...