Versions Compared

Key

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

...

Excerpt
hiddentrue

You may start with the examples available on TIGGE sample scripts or by creating your request using our Datasets Web Interface.

Table of Contents

Public users

...

You may start with the examples available on TIGGE sample scripts or by creating your request using our Datasets Web Interface . Please note the following:

...

You can use the 'mars' script with the MARS syntax or you can request it from Python using this class:

Code Block
languagepy
#!/usr/bin/env python
from ecmwfapi import ECMWFService
  
server = ECMWFService("mars")
server.execute(
    {
    "class": "od",
    "date": "20150101",
    "expver": "1",
    "levtype": "sfc",
    "param": "167.128",
    "step": "0/to/240/by/12",
    "stream": "oper",
    "time": "00",
    "type": "fc"
    },
    "target.grib")

...