Versions Compared

Key

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

...

Info
for hindcastYear in hindcastYears
for hindcastMonth in hindcastMonths
for hindcastDay in hindcastDays
hindcastDate = HindcastYear-hindcastMonth-hindcastDay
S2S-request(hindcastDate)

Web-API examples:

A BoM reforecast request for

...

Info

The request below is for all members of the perturbed forecast, 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-01-01

Code Block
languagepy
#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer

modelVersionDate = "2014-01-01"  # This is the first model version for BoM (ammc)
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": "500/700/850/925/1000",
    "origin": "ammc",
    "param": "130/156",
    "step": "24/to/720/by/24",
    "stream": "enfh",
    "target": "data.pf.sfc",
    "time": "00",
    "number": "1/to/32/by/1",
    "type": "pf",
})

A BoM reforecast request for all the available hindcastDates

...