Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Re-forecasts

...

:  1 param, 1 date

Code Block
languagepy
 #!/usr/bin/env python
from ecmwfapi import ECMWFDataServer
server = ECMWFDataServer()
server.retrieve({
    "class": "s2",
    "dataset": "s2s",
    "hdate": "1981-01-01",
    "date": "2014-01-01", 
    "expver": "prod",
    "levtype": "sfc",
    "origin": "ammc",
    "param": "tp",
    "step": "24/to/1488/by/24",
    "stream": "enfh",
    "target": "CHANGEME",
    "time": "00",
    "type": "cf",
})

...

Code Block
languagepy
  #!/usr/bin/env python
from ecmwfapi import ECMWFDataServer
server = ECMWFDataServer()
server.retrieve({
    "class": "s2",
    "dataset": "s2s",
    "hdate": "1981-01-01",
    "date": "2014-01-01", 
    "expver": "prod",
    "levtype": "sfc",
    "origin": "ammc",
    "param": "tp",
    "step": "24/to/1488/by/24",
    "stream": "enfh",
    "target": "CHANGEME",
    "time": "00",
    "type": "pf",
    "number": "1/to/32",
})

...

...

Re- forecasts used to calibrate a  real-time forecast:

Retrieving one field (total precipitation here) for all time steps and  for all the re-forecast used to calibrate the real-time forecast starting on 8 February 2015. For this request, all the re-forecasts starting on 6 February 1981-2013 and11 February 1981-2013 are retrieved

...