You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Hi - in the past I've downloaded C3S seasonal forecast data using this type of API script below. 

I'd played with the "grid" option before now to download the data to different interpolations. I wanted to double check with those in the know - is the 'F320' setting the native resolution of the C3S model - and if not, what setting do I need to ensure the data I'm downloading isn't interpolated to an alternative grid. Am looking at extremes so am keen to keep the output as close to the resolution of the model as possible whereby any interpolation could potentially remove any sharp peaks/extremes. 

Many thanks, Richard


c = cdsapi.Client()

c.retrieve(
    'seasonal-original-single-levels',
    {
        'originating_centre': 'ecmwf',
        'system': '5',
        'variable': 'total_precipitation',
        'year': [
            '1991',
            '2000',
        ],
        'month': '09',
        'day': '01',
        'leadtime_hour': [
            '24', '48', '72',
            '5136', '5160',
        ],
        'area': [
            70, -30, 30,
            30,
        ],
        'format': 'grib', 'grid'  : 'F320',
    },
    '/home/19912000rain.grib')

  • No labels