Versions Compared

Key

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

 

Table of Contents

The dataset is covering the period from 1 March 2018 until present.

...

If you haven't done it yet you will need to create an ECMWF web account and accept the data licence.

...

Example

Altitude of plume top in NetCDF format, only European domain, 10 dates

...

Code Block
languagepy
titleNetCDF
#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer
server = ECMWFDataServer()
server.retrieve({
    "class":   "mc",
    "dataset": "cams_gfas",
    "date":    "2018-03-01/to/2018-03-10",
    "expver":  "9601",
    "levtype": "sfc",
    "param":   "120.210",       # see parameter codes at http://apps.ecmwf.int/codes/grib/param-db/
    "step":    "0-24",
    "stream":  "gfas",
    "time":    "00:00:00",
    "type":    "ga",
    "target":  "atp.nc",
    "format":  "netcdf",
    "area":    "70/-35/35/60"   # N/E/S/W area boundaries
})

...