Table of Contents |
---|
Note | ||
---|---|---|
| ||
Because the current ECMWF online tools available for post-processing the data (area subsetting and regridding) do not use a mass conserving interpolation algorithm we advise against using |
Info |
---|
See Brief request syntax to understand each keyword. |
...
Code Block | ||
---|---|---|
| ||
#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer
server = ECMWFDataServer()
server.retrieve({
"class": "mc",
"dataset": "cams_gfas",
"date": "2003-01-01/to/2003-01-31",
"expver": "0001",
"levtype": "sfc",
"param": "80.210",
"step": "0-24",
"stream": "gfas",
"area": "70/-130/30/-60", # N/W/S/E area boundaries
"target": "cams_gfas_co2fire.nc",
"format": "netcdf",
"time": "00",
"type": "ga",
})
|