Table of Contents |
---|
Info |
---|
See Brief request syntax to understand each keyword. |
TIGGE Pressure levels Control Forecast
10m u wind component, 10m v wind component, from NCEP. All pressure levels.
...
Code Block | ||
---|---|---|
| ||
#!/usr/bin/env python from ecmwfapi import ECMWFDataServer server = ECMWFDataServer() server.retrieve({ 'origin' : "kwbc", 'levelist' : "200/250/300/500/700/850/925/1000", 'levtype' : "pl", 'expver' : "prod", 'dataset' : "tigge", 'step' : "0/6/12/18/24/30", 'grid' : "0.5/0.5", 'param' : "131/132", 'time' : "00/06/12/18", 'date' : "2014-10-01", 'type' : "cf", 'class' : "ti", 'target' : "tigge_2014-10-01_00061218.grib" }) |
TIGGE Surface Perturbed Forecast
2m temperature. 01 NOV 2014, from ECMWF
...