On 25th June 2021, the  variable "Orography" was renamed "Geopotential" on the following ERA5 catalogue entries in the Climate Data Store (CDS):

This change was necessary to be in line with the definition of terms and to remove confusion.

There is no change in the data themselves.

Previous API requests asking for "Orography" will however fail now and need to be updated.

To download the corresponding data, the API request should ask for "Geopotential" e.g.

import cdsapi

c = cdsapi.Client()

c.retrieve(
    'reanalysis-era5-single-levels',
    {
        'product_type': 'reanalysis',
        'format': 'grib',
        'year': '2018',
        'variable': 'geopotential',
        'day': '01',
        'time': '00:00',
        'month': '01',
    },
    'download.grib')


ECMWF Support