Table of Contents |
---|
Re-forecasts
...
1. Re- forecasts: 1 param, 1 date
Retrieving 1 field (10m U wind) for all time steps and for the 14 May 2014
...
Code Block | ||
---|---|---|
| ||
#!/usr/bin/env python from ecmwfapi import ECMWFDataServer server = ECMWFDataServer() server.retrieve({ "class": "s2", "dataset": "s2s", "hdate": "2014-05-14", "date": "2015-05-14", "expver": "prod", "levtype": "sfc", "origin": "ecmf", "param": "165", "step": "0/to/1104/by/24", "stream": "enfh", "target": "CHANGEME", "time": "00", "number": "1/to/10", "type": "pf", }) |
2. Re- forecasts used to calibrate a real-time forecast:
Retrieving 1 param (10m U wind) for all time steps and used to calibrate the 14 May 2015 real-time forecast.
...