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.

Wiki Markupcode
import cdsapi
c = cdsapi.Client()
c.retrieve(
    'cems-fire-seasonal',
    {
        'product_type': 'ensemble_mean',
        'variable': 'danger_severity_rating',
        'year': '2019',
        'month': [
            '01', '07',
        ],
        'leadtime': '1_month',
        'format': 'zip',
    },
    'download.zip')

Plotting data using the CDS toolbox

...