Versions Compared

Key

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

...

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, RichardRichard  richard@catinsight.co.uk


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')