You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

See Brief request syntax to understand each keyword.

MACC Near-Realtime Surface

Total column Carbon monoxide, total column Carbon monoxide, 120 steps 11 frist days of November. ECMWF Public Dataset web interface

#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer
   
server = ECMWFDataServer()
   
server.retrieve({
    'stream'    : "oper",
    'levtype'   : "sfc",
    'param'     : "126.210/127.210",
    'dataset'   : "macc_nrealtime",
    'step'      : "0/3/6/9/12/15/18/21/24/27/30/33/36/39/42/45/48/51/54/57/60/63/66/69/72/75/78/81/84/87/90/93/96/99/102/105/108/111/114/117/120",
    'expver'    : "0001",
    'time'      : "00",
    'date'      : "2014-11-01/to/2014-11-11",
    'type'      : "fc",
    'class'     : "mc",
    'target'    : "macc_nrealtime_2014-11-01to2014-11-11_00.grib"
})

 

 

  • No labels