Versions Compared

Key

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

...

Downloading these data is rather straight forward using the CDS web interface. The registered user needs to tick a few boxes to specify the index, period of interest and type of data, then click on a `Download' button. For larger data requests, the use of the CDS API is recommended. Below an example script is provided.

Code Block
languagepy
linenumberstrue
collapsetrue
import cdsapi

c = cdsapi.Client()

c.retrieve(
    'cems-fire-seasonal-reforecast',
    {
        'format': 'grib',
        'variable': 'fire_daily_severity_rating',
        'system_version': '4_1',
        'year': '1985',
        'month': '09',
        'leadtime_hour': '1020',
    },
    'download.grib')

...