Versions Compared

Key

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

...

Excerpt
hiddentrue

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

How to write my first Web-API script?

Step-by-step guide

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

...

Code Block
languagepy
 #!/usr/bin/env python
from ecmwfapi import ECMWFDataServer
  
server = ECMWFDataServer()
  

server.retrieve({    
    "stream": "oper",
    "levtype" : "sfc",
    "param": "165.128/41.128",
    "dataset" : "interim",
    "step":"0",
    "grid" : "0.75/0.75",
    "time" : "00",
    "date" : "2013-09-01/to/2013-09-30",
    "type" : "an",
    "class" : "ei",       
    "target" : "data.grib"
    })

Content by Label
showLabelsfalse
max5
spaces~usa
showSpacefalse
sortmodified
reversetrue
typepage
cqllabel = "kb-how-to-article" and type = "page" and space = "~usa"
labelskb-how-to-article

...