Versions Compared

Key

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

I receive an error trying to download some variables of CERRA single level reanalysis using CDS toolbox using the suggested toolbox request. For example, the following request for "2m_temperature":

import cdstoolbox as ct
@ct.application(title='Download data')
@ct.output.download()
def download_application():
    data = ct.catalogue.retrieve(
        'reanalysis-cerra-single-levels',
        {
            'variable': '2m_temperature',
            'level_type': 'surface_or_atmosphere',
            'data_type': 'reanalysis',
            'product_type': 'analysis',
            'year': '2020',
            'month': '01',
            'day': '01',
            'time': '00:00',
        }
    )
    return data
Returns the following error:
Traceback (most recent call last):

...