...
Info |
---|
In general it is organised, as a huge tree, with the indentation below, showing different levels down that tree:
|
...
Info | ||
---|---|---|
| ||
for HindcastYear in HindcastYears |
...
Info | ||
---|---|---|
| ||
for HindcastYear from 2010 to 2014 |
...
Code Block | ||
---|---|---|
| ||
#!/usr/bin/env python from ecmwfapi import ECMWFDataServer server = ECMWFDataServer() server.retrieve({ "class": "s2", "dataset": "s2s", "date": ModelVersionDate, (ie "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", }) |
...