...
| Info |
|---|
In general it is organised, as a huge tree, with the indentation below, showing different levels down that tree:
|
What would be the natural way to group requests?
...
| Info |
|---|
The request below is for all members of the perturbed forecast, 10 meter U and V wind components, for all time-steps for Geopotential height and temperature, for the pressure levels 500/700/850/925/1000, for time-steps 24/to/720/by/24 and for model version 2014-0501-01 |
| Code Block | ||
|---|---|---|
| ||
#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer
modelVersionDate = "2014-01-01" # This is the first model version for BoM (babj)
hindcastDate = "2013-09-01" # The selected hindcast date
server = ECMWFDataServer()
server.retrieve({
"class": "s2",
"dataset": "s2s",
"date": modelVersionDate,
"expver": "prod",
"hdate": hindcastDate,
"levtype": "pl",
"levelist": "10/50/100/200/300/500/700/850/925/1000",
"origin": "ammc",
"param": "130/131/132/133/135/156",
"step": "24/to/720/by/24",
"stream": "enfh",
"target": "data.pf.sfc",
"time": "00",
"number": "1/2/3",
"type": "pf",
}) |
...