Versions Compared

Key

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

Table of Contents

Re-forecasts

The re-forecasts start on the 1st/6th/11th/16th/21st/26th of each month from 1981 to 2013.

The BoM re-forecasts dataset is a "fixed" dataset which means that the re-forecasts are produced once from a "frozen" version of the model and are used for a number of years to calibrate real-time forecast. The BoM re-forecasts consist of a 33-member ensemble run 6 times a month (1st/6th/11th/16th/21st/26th of each month) from1981 to 2013. The S2S database contains the full BoM re-forecast dataset.

...

  • hdate which corresponds to the actual starting date of the re-forecast
  • date which correspond tot he ModelVersionDate.Since the BoM re-forecasts are "fixed" re-forecasts this ModelVersiondate is the same for all the re-forecasts and equal to 20140101. This variable will change when a new version of the model will be implemented.

2.1 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",
})

...