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 area and grid keywords in GFAS requests. The recommended solution is to download the data at the provided resolution and perform interpolation separately. |
Info |
---|
See Brief request syntax to understand each keyword. |
...
co2fire parameter in NetCDF format, January 2003. ECMWF Public Dataset web interface
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/E/S/W area boundaries
"target": "cams_gfas_co2fire.nc",
"format": "netcdf",
"time": "00",
"type": "ga",
})
|