Versions Compared

Key

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

...

Code Block
languagepy
titleWeb API request
collapsetrue
#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer
server = ECMWFDataServer()
server.retrieve({
    "class": "ti",
    "dataset": "tigge",
    "date": "2019-01-01/to/2019-01-31",
    "expver": "prod",
    "grid": "0.5/0.5",
    "levtype": "sfc",
    "origin": "ecmf",
    "param": "228228",
    "step": "24",
    "time": "00:00:00",
    "type": "fc",
    "target": "output",
})
  • What is the differences between Control Forecasts and Forecasts in your data portal?

The "forecast" means high-resolution forecast interpolated to TIGGE resolution  (type=fc in MARS). You can check which models do provide it for TIGGE in the page Models.  For some models the control forecast (cf) is the high-resolution product for TIGGE.

...