How to work with ERA5 single levels on Earth Data Hub: climatological analysis of temperature in Germany¶

Earth Data Hub (EDH) offers an innovative and super-efficient way to access earth related data. This notebook will provide you guidance on how to access and use the https://data.earthdatahub.destine.eu/era5/reanalysis-era5-single-levels-v0.zarr dataset.

Goal of this tutorial¶

The first goal of this tutorial is to compute the 2 metre temperature anomaly for the month of October 2023, in the Germany area, against the 1991-2020 reference period.

The second goal of this tutorial is to compute the 2 metre temperature climatology (monthly means and standard deviations) in Berlin for the same reference period and compare it with the monthly averages of 2023.

What you will learn:¶

  • how to access the dataset
  • select and reduce the data
  • plot the results

To access datasets on Earth Data Hub you need to instruct your tools (xarray, Zarr, etc.) to use EDH personal access token when downloading the data.

To obtain a personal access token you first need to register to the Destination Earth platform. Then you can go to Earth Data Hub account settings where you can find your default personal access token or create others. After retrieving your personal access token, please cut and paste it below: ⤵

In [1]:
PAT = "your_personal_access_token"

#e.g. PAT="edh_pat_44bbb7e9192a4c6bb47ddf07d07564eee5d17de8dfc48f7118f88e3bc4a4157f8fe2403f5aa0a2d53441b6922ea9a33a"

We will use it later when accessing the dataset.

Working with EDH data¶

Datasets on Earth Data Hub are often very large and remotely hosted. Typical use imply a selection of the data followed by one or more reduction steps to be performed in a local or distributed Dask environment.

The structure of a workflow that uses EDH data tipically looks like this:

  • data access
  • data selection
  • (optional) data reduction
  • data download
  • further operations and visualization

Xarray and Dask work together following a lazy principle. This means that when you access and manipulate a Zarr store the data is in not immediately downloaded and loaded in memory. Instead, Dask constructs a task graph that represents the operations to be performed. A smart user will first reduce the amount of data that needs to be downloaded and explicitly call compute() on it. Once the compute() operation is complete the data is loaded into memory and available for subsequent fast processing.

1. Data access¶

To access the data, only the dataset metadata must be downloaded. Xarray does this automatically when you access a Zarr dataset:

In [2]:
import xarray as xr

ds = xr.open_dataset(
    f"https://edh:{PAT}@data.earthdatahub.destine.eu/era5/reanalysis-era5-single-levels-v0.zarr",
    chunks={},
    engine="zarr",
)
ds
Out[2]:
<xarray.Dataset> Size: 256TB
Dimensions:           (valid_time: 742824, latitude: 721, longitude: 1440)
Coordinates:
    entireAtmosphere  float32 4B ...
  * latitude          (latitude) float64 6kB 90.0 89.75 89.5 ... -89.75 -90.0
  * longitude         (longitude) float64 12kB 0.0 0.25 0.5 ... 359.5 359.8
    number            int64 8B ...
    surface           float64 8B ...
  * valid_time        (valid_time) datetime64[ns] 6MB 1940-01-01 ... 2024-09-...
Data variables: (12/83)
    alnid             (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    alnip             (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    aluvd             (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    aluvp             (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    blh               (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    cdir              (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    ...                ...
    viiwe             (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    viiwn             (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    vilwd             (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    vilwe             (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    vilwn             (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
    z                 (valid_time, latitude, longitude) float32 3TB dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
Attributes:
    Conventions:             CF-1.7
    GRIB_centre:             ecmf
    GRIB_centreDescription:  European Centre for Medium-Range Weather Forecasts
    GRIB_edition:            1
    GRIB_subCentre:          0
    history:                 2024-10-02T12:52 GRIB to CDM+CF via cfgrib-0.9.1...
    institution:             European Centre for Medium-Range Weather Forecasts
xarray.Dataset
    • valid_time: 742824
    • latitude: 721
    • longitude: 1440
    • entireAtmosphere
      ()
      float32
      ...
      long_name :
      original GRIB coordinate for key: level(entireAtmosphere)
      units :
      1
      [1 values with dtype=float32]
    • latitude
      (latitude)
      float64
      90.0 89.75 89.5 ... -89.75 -90.0
      long_name :
      latitude
      standard_name :
      latitude
      stored_direction :
      decreasing
      units :
      degrees_north
      array([ 90.  ,  89.75,  89.5 , ..., -89.5 , -89.75, -90.  ])
    • longitude
      (longitude)
      float64
      0.0 0.25 0.5 ... 359.2 359.5 359.8
      long_name :
      longitude
      standard_name :
      longitude
      units :
      degrees_east
      array([0.0000e+00, 2.5000e-01, 5.0000e-01, ..., 3.5925e+02, 3.5950e+02,
             3.5975e+02])
    • number
      ()
      int64
      ...
      long_name :
      ensemble member numerical id
      standard_name :
      realization
      units :
      1
      [1 values with dtype=int64]
    • surface
      ()
      float64
      ...
      long_name :
      original GRIB coordinate for key: level(surface)
      units :
      1
      [1 values with dtype=float64]
    • valid_time
      (valid_time)
      datetime64[ns]
      1940-01-01 ... 2024-09-26T23:00:00
      array(['1940-01-01T00:00:00.000000000', '1940-01-01T01:00:00.000000000',
             '1940-01-01T02:00:00.000000000', ..., '2024-09-26T21:00:00.000000000',
             '2024-09-26T22:00:00.000000000', '2024-09-26T23:00:00.000000000'],
            dtype='datetime64[ns]')
    • alnid
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      alnid
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Near IR albedo for diffuse radiation (climatological)
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      18
      GRIB_shortName :
      alnid
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (0 - 1)
      last_restart_dim_updated :
      742824
      long_name :
      Near IR albedo for diffuse radiation (climatological)
      standard_name :
      unknown
      units :
      (0 - 1)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • alnip
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      alnip
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Near IR albedo for direct radiation (climatological)
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      17
      GRIB_shortName :
      alnip
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (0 - 1)
      last_restart_dim_updated :
      742824
      long_name :
      Near IR albedo for direct radiation (climatological)
      standard_name :
      unknown
      units :
      (0 - 1)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • aluvd
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      aluvd
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      UV visible albedo for diffuse radiation (climatological)
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      16
      GRIB_shortName :
      aluvd
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (0 - 1)
      last_restart_dim_updated :
      742824
      long_name :
      UV visible albedo for diffuse radiation (climatological)
      standard_name :
      unknown
      units :
      (0 - 1)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • aluvp
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      aluvp
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      UV visible albedo for direct radiation (climatological)
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      15
      GRIB_shortName :
      aluvp
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (0 - 1)
      last_restart_dim_updated :
      742824
      long_name :
      UV visible albedo for direct radiation (climatological)
      standard_name :
      unknown
      units :
      (0 - 1)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • blh
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      blh
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Boundary layer height
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      159
      GRIB_shortName :
      blh
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      last_restart_dim_updated :
      742824
      long_name :
      Boundary layer height
      standard_name :
      unknown
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • cdir
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      cdir
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface direct short-wave radiation, clear sky
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228022
      GRIB_shortName :
      cdir
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface direct short-wave radiation, clear sky
      standard_name :
      unknown
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • cl
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      cl
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Lake cover
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      26
      GRIB_shortName :
      cl
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (0 - 1)
      last_restart_dim_updated :
      742824
      long_name :
      Lake cover
      standard_name :
      unknown
      units :
      (0 - 1)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • cp
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      lwe_thickness_of_convective_precipitation_amount
      GRIB_cfVarName :
      cp
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Convective precipitation
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      143
      GRIB_shortName :
      cp
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      GRIB_uvRelativeToGrid :
      0
      last_restart_dim_updated :
      742824
      long_name :
      Convective precipitation
      standard_name :
      lwe_thickness_of_convective_precipitation_amount
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • crr
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      crr
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Convective rain rate
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228218
      GRIB_shortName :
      crr
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      kg m**-2 s**-1
      GRIB_uvRelativeToGrid :
      0
      last_restart_dim_updated :
      742824
      long_name :
      Convective rain rate
      standard_name :
      unknown
      units :
      kg m**-2 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • d2m
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      d2m
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      2 metre dewpoint temperature
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      168
      GRIB_shortName :
      2d
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      2 metre dewpoint temperature
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • dl
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      dl
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Lake total depth
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228007
      GRIB_shortName :
      dl
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      last_restart_dim_updated :
      742824
      long_name :
      Lake total depth
      standard_name :
      unknown
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • e
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      lwe_thickness_of_water_evaporation_amount
      GRIB_cfVarName :
      e
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Evaporation
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      182
      GRIB_shortName :
      e
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m of water equivalent
      last_restart_dim_updated :
      742824
      long_name :
      Evaporation
      standard_name :
      lwe_thickness_of_water_evaporation_amount
      units :
      m of water equivalent
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • fdir
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      fdir
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Total sky direct short-wave (solar) radiation at surface
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228021
      GRIB_shortName :
      fdir
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Total sky direct short-wave (solar) radiation at surface
      standard_name :
      unknown
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • flsr
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      flsr
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Forecast logarithm of surface roughness for heat
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      245
      GRIB_shortName :
      flsr
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      Numeric
      last_restart_dim_updated :
      742824
      long_name :
      Forecast logarithm of surface roughness for heat
      standard_name :
      unknown
      units :
      Numeric
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • hcc
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      hcc
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      High cloud cover
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      188
      GRIB_shortName :
      hcc
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (0 - 1)
      last_restart_dim_updated :
      742824
      long_name :
      High cloud cover
      standard_name :
      unknown
      units :
      (0 - 1)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ie
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      ie
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Instantaneous moisture flux
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      232
      GRIB_shortName :
      ie
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      kg m**-2 s**-1
      last_restart_dim_updated :
      742824
      long_name :
      Instantaneous moisture flux
      standard_name :
      unknown
      units :
      kg m**-2 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ilspf
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      ilspf
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Instantaneous large-scale surface precipitation fraction
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228217
      GRIB_shortName :
      ilspf
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (0 - 1)
      GRIB_uvRelativeToGrid :
      0
      last_restart_dim_updated :
      742824
      long_name :
      Instantaneous large-scale surface precipitation fraction
      standard_name :
      unknown
      units :
      (0 - 1)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • inss
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      inss
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Instantaneous northward turbulent surface stress
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      230
      GRIB_shortName :
      inss
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      N m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Instantaneous northward turbulent surface stress
      standard_name :
      unknown
      units :
      N m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ishf
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      ishf
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Instantaneous surface sensible heat flux
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      231
      GRIB_shortName :
      ishf
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      W m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Instantaneous surface sensible heat flux
      standard_name :
      unknown
      units :
      W m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • istl1
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      istl1
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Ice temperature layer 1
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      35
      GRIB_shortName :
      istl1
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      depthBelowLandLayer
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Ice temperature layer 1
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • istl2
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      istl2
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Ice temperature layer 2
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      36
      GRIB_shortName :
      istl2
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      depthBelowLandLayer
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Ice temperature layer 2
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • istl3
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      istl3
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Ice temperature layer 3
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      37
      GRIB_shortName :
      istl3
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      depthBelowLandLayer
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Ice temperature layer 3
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • istl4
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      istl4
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Ice temperature layer 4
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      38
      GRIB_shortName :
      istl4
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      depthBelowLandLayer
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Ice temperature layer 4
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • lblt
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      lblt
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Lake bottom temperature
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228010
      GRIB_shortName :
      lblt
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Lake bottom temperature
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • lcc
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      lcc
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Low cloud cover
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      186
      GRIB_shortName :
      lcc
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (0 - 1)
      last_restart_dim_updated :
      742824
      long_name :
      Low cloud cover
      standard_name :
      unknown
      units :
      (0 - 1)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • licd
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      licd
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Lake ice total depth
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228014
      GRIB_shortName :
      licd
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      last_restart_dim_updated :
      742824
      long_name :
      Lake ice total depth
      standard_name :
      unknown
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • lict
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      lict
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Lake ice surface temperature
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228013
      GRIB_shortName :
      lict
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Lake ice surface temperature
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • lmld
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      lmld
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Lake mix-layer depth
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228009
      GRIB_shortName :
      lmld
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      last_restart_dim_updated :
      742824
      long_name :
      Lake mix-layer depth
      standard_name :
      unknown
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • lmlt
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      lmlt
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Lake mix-layer temperature
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228008
      GRIB_shortName :
      lmlt
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Lake mix-layer temperature
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • lshf
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      lshf
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Lake shape factor
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228012
      GRIB_shortName :
      lshf
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      dimensionless
      last_restart_dim_updated :
      742824
      long_name :
      Lake shape factor
      standard_name :
      unknown
      units :
      dimensionless
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • lsp
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      lwe_thickness_of_stratiform_precipitation_amount
      GRIB_cfVarName :
      lsp
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Large-scale precipitation
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      142
      GRIB_shortName :
      lsp
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      GRIB_uvRelativeToGrid :
      0
      last_restart_dim_updated :
      742824
      long_name :
      Large-scale precipitation
      standard_name :
      lwe_thickness_of_stratiform_precipitation_amount
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • lspf
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      lspf
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Large-scale precipitation fraction
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      50
      GRIB_shortName :
      lspf
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      s
      GRIB_uvRelativeToGrid :
      0
      last_restart_dim_updated :
      742824
      long_name :
      Large-scale precipitation fraction
      standard_name :
      unknown
      units :
      s
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • lsrr
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      lsrr
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Large scale rain rate
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228219
      GRIB_shortName :
      lsrr
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      kg m**-2 s**-1
      GRIB_uvRelativeToGrid :
      0
      last_restart_dim_updated :
      742824
      long_name :
      Large scale rain rate
      standard_name :
      unknown
      units :
      kg m**-2 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ltlt
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      ltlt
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Lake total layer temperature
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228011
      GRIB_shortName :
      ltlt
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Lake total layer temperature
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • mcc
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      mcc
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Medium cloud cover
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      187
      GRIB_shortName :
      mcc
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (0 - 1)
      last_restart_dim_updated :
      742824
      long_name :
      Medium cloud cover
      standard_name :
      unknown
      units :
      (0 - 1)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • mn2t
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      mn2t
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Minimum temperature at 2 metres since previous post-processing
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      202
      GRIB_shortName :
      mn2t
      GRIB_stepType :
      max
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Minimum temperature at 2 metres since previous post-processing
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • mntpr
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      mntpr
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Minimum total precipitation rate since previous post-processing
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228227
      GRIB_shortName :
      mntpr
      GRIB_stepType :
      max
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      kg m**-2 s**-1
      GRIB_uvRelativeToGrid :
      0
      last_restart_dim_updated :
      742824
      long_name :
      Minimum total precipitation rate since previous post-processing
      standard_name :
      unknown
      units :
      kg m**-2 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • msl
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      air_pressure_at_mean_sea_level
      GRIB_cfVarName :
      msl
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Mean sea level pressure
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      151
      GRIB_shortName :
      msl
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      Pa
      last_restart_dim_updated :
      742824
      long_name :
      Mean sea level pressure
      standard_name :
      air_pressure_at_mean_sea_level
      units :
      Pa
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • mx2t
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      mx2t
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Maximum temperature at 2 metres since previous post-processing
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      201
      GRIB_shortName :
      mx2t
      GRIB_stepType :
      max
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Maximum temperature at 2 metres since previous post-processing
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • mxtpr
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      mxtpr
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Maximum total precipitation rate since previous post-processing
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228226
      GRIB_shortName :
      mxtpr
      GRIB_stepType :
      max
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      kg m**-2 s**-1
      GRIB_uvRelativeToGrid :
      0
      last_restart_dim_updated :
      742824
      long_name :
      Maximum total precipitation rate since previous post-processing
      standard_name :
      unknown
      units :
      kg m**-2 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • pev
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      pev
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Potential evaporation
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228251
      GRIB_shortName :
      pev
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      last_restart_dim_updated :
      742824
      long_name :
      Potential evaporation
      standard_name :
      unknown
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ptype
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      ptype
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/longitude
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Precipitation type
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      260015
      GRIB_shortName :
      ptype
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (Code table 4.201)
      GRIB_uvRelativeToGrid :
      0
      last_restart_dim_updated :
      742824
      long_name :
      Precipitation type
      standard_name :
      unknown
      units :
      (Code table 4.201)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ro
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      ro
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Runoff
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      205
      GRIB_shortName :
      ro
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      last_restart_dim_updated :
      742824
      long_name :
      Runoff
      standard_name :
      unknown
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • skt
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      skt
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Skin temperature
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      235
      GRIB_shortName :
      skt
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Skin temperature
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • slhf
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      surface_upward_latent_heat_flux
      GRIB_cfVarName :
      slhf
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface latent heat flux
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      147
      GRIB_shortName :
      slhf
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface latent heat flux
      standard_name :
      surface_upward_latent_heat_flux
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • sp
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      surface_air_pressure
      GRIB_cfVarName :
      sp
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface pressure
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      134
      GRIB_shortName :
      sp
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      Pa
      last_restart_dim_updated :
      742824
      long_name :
      Surface pressure
      standard_name :
      surface_air_pressure
      units :
      Pa
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • sro
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      sro
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface runoff
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      8
      GRIB_shortName :
      sro
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      last_restart_dim_updated :
      742824
      long_name :
      Surface runoff
      standard_name :
      unknown
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • sshf
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      surface_upward_sensible_heat_flux
      GRIB_cfVarName :
      sshf
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface sensible heat flux
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      146
      GRIB_shortName :
      sshf
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface sensible heat flux
      standard_name :
      surface_upward_sensible_heat_flux
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ssr
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      surface_net_downward_shortwave_flux
      GRIB_cfVarName :
      ssr
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface net short-wave (solar) radiation
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      176
      GRIB_shortName :
      ssr
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface net short-wave (solar) radiation
      standard_name :
      surface_net_downward_shortwave_flux
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ssrc
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      surface_net_downward_shortwave_flux_assuming_clear_sky
      GRIB_cfVarName :
      ssrc
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface net short-wave (solar) radiation, clear sky
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      210
      GRIB_shortName :
      ssrc
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface net short-wave (solar) radiation, clear sky
      standard_name :
      surface_net_downward_shortwave_flux_assuming_clear_sky
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ssrd
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      surface_downwelling_shortwave_flux_in_air
      GRIB_cfVarName :
      ssrd
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface short-wave (solar) radiation downwards
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      169
      GRIB_shortName :
      ssrd
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface short-wave (solar) radiation downwards
      standard_name :
      surface_downwelling_shortwave_flux_in_air
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ssrdc
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      ssrdc
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface short-wave (solar) radiation downward clear-sky
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228129
      GRIB_shortName :
      ssrdc
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface short-wave (solar) radiation downward clear-sky
      standard_name :
      unknown
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ssro
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      ssro
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Sub-surface runoff
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      9
      GRIB_shortName :
      ssro
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      last_restart_dim_updated :
      742824
      long_name :
      Sub-surface runoff
      standard_name :
      unknown
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • sst
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      sst
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Sea surface temperature
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      34
      GRIB_shortName :
      sst
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      Sea surface temperature
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • str
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      surface_net_upward_longwave_flux
      GRIB_cfVarName :
      str
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface net long-wave (thermal) radiation
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      177
      GRIB_shortName :
      str
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface net long-wave (thermal) radiation
      standard_name :
      surface_net_upward_longwave_flux
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • strc
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      surface_net_downward_longwave_flux_assuming_clear_sky
      GRIB_cfVarName :
      strc
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface net long-wave (thermal) radiation, clear sky
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      211
      GRIB_shortName :
      strc
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface net long-wave (thermal) radiation, clear sky
      standard_name :
      surface_net_downward_longwave_flux_assuming_clear_sky
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • strd
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      strd
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface long-wave (thermal) radiation downwards
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      175
      GRIB_shortName :
      strd
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface long-wave (thermal) radiation downwards
      standard_name :
      unknown
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • strdc
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      strdc
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Surface long-wave (thermal) radiation downward clear-sky
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228130
      GRIB_shortName :
      strdc
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Surface long-wave (thermal) radiation downward clear-sky
      standard_name :
      unknown
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • t2m
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      t2m
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      2 metre temperature
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      167
      GRIB_shortName :
      2t
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      K
      last_restart_dim_updated :
      742824
      long_name :
      2 metre temperature
      standard_name :
      unknown
      units :
      K
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • tcc
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      cloud_area_fraction
      GRIB_cfVarName :
      tcc
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Total cloud cover
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      164
      GRIB_shortName :
      tcc
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      (0 - 1)
      last_restart_dim_updated :
      742824
      long_name :
      Total cloud cover
      standard_name :
      cloud_area_fraction
      units :
      (0 - 1)
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • tciw
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      tciw
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Total column cloud ice water
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      79
      GRIB_shortName :
      tciw
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      kg m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Total column cloud ice water
      standard_name :
      unknown
      units :
      kg m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • tclw
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      tclw
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Total column cloud liquid water
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      78
      GRIB_shortName :
      tclw
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      kg m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Total column cloud liquid water
      standard_name :
      unknown
      units :
      kg m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • tcrw
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      tcrw
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Total column rain water
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228089
      GRIB_shortName :
      tcrw
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      kg m**-2
      GRIB_uvRelativeToGrid :
      0
      last_restart_dim_updated :
      742824
      long_name :
      Total column rain water
      standard_name :
      unknown
      units :
      kg m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • tisr
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      tisr
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      TOA incident short-wave (solar) radiation
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      212
      GRIB_shortName :
      tisr
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      TOA incident short-wave (solar) radiation
      standard_name :
      unknown
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • tp
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      tp
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Total precipitation
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228
      GRIB_shortName :
      tp
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m
      last_restart_dim_updated :
      742824
      long_name :
      Total precipitation
      standard_name :
      unknown
      units :
      m
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • tsr
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      toa_net_upward_shortwave_flux
      GRIB_cfVarName :
      tsr
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Top net short-wave (solar) radiation
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      178
      GRIB_shortName :
      tsr
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Top net short-wave (solar) radiation
      standard_name :
      toa_net_upward_shortwave_flux
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • tsrc
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      tsrc
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Top net short-wave (solar) radiation, clear sky
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      208
      GRIB_shortName :
      tsrc
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Top net short-wave (solar) radiation, clear sky
      standard_name :
      unknown
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ttr
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      toa_outgoing_longwave_flux
      GRIB_cfVarName :
      ttr
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Top net long-wave (thermal) radiation
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      179
      GRIB_shortName :
      ttr
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Top net long-wave (thermal) radiation
      standard_name :
      toa_outgoing_longwave_flux
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • ttrc
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      ttrc
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Top net long-wave (thermal) radiation, clear sky
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      209
      GRIB_shortName :
      ttrc
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Top net long-wave (thermal) radiation, clear sky
      standard_name :
      unknown
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • u10
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      u10
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      10 metre U wind component
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      165
      GRIB_shortName :
      10u
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m s**-1
      last_restart_dim_updated :
      742824
      long_name :
      10 metre U wind component
      standard_name :
      unknown
      units :
      m s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • u100
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      u100
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      100 metre U wind component
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228246
      GRIB_shortName :
      100u
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m s**-1
      last_restart_dim_updated :
      742824
      long_name :
      100 metre U wind component
      standard_name :
      unknown
      units :
      m s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • u10n
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      u10n
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      10 metre u-component of neutral wind
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228131
      GRIB_shortName :
      u10n
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m s**-1
      last_restart_dim_updated :
      742824
      long_name :
      10 metre u-component of neutral wind
      standard_name :
      unknown
      units :
      m s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • uvb
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      uvb
      GRIB_dataType :
      fc
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Downward UV radiation at the surface
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      57
      GRIB_shortName :
      uvb
      GRIB_stepType :
      accum
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      J m**-2
      last_restart_dim_updated :
      742824
      long_name :
      Downward UV radiation at the surface
      standard_name :
      unknown
      units :
      J m**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • v10
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      v10
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      10 metre V wind component
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      166
      GRIB_shortName :
      10v
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m s**-1
      last_restart_dim_updated :
      742824
      long_name :
      10 metre V wind component
      standard_name :
      unknown
      units :
      m s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • v100
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      v100
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      100 metre V wind component
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228247
      GRIB_shortName :
      100v
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m s**-1
      last_restart_dim_updated :
      742824
      long_name :
      100 metre V wind component
      standard_name :
      unknown
      units :
      m s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • v10n
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      v10n
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      10 metre v-component of neutral wind
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      228132
      GRIB_shortName :
      v10n
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m s**-1
      last_restart_dim_updated :
      742824
      long_name :
      10 metre v-component of neutral wind
      standard_name :
      unknown
      units :
      m s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • viiwd
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      viiwd
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Vertical integral of divergence of cloud frozen water flux
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      162080
      GRIB_shortName :
      viiwd
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      entireAtmosphere
      GRIB_units :
      kg m**-2 s**-1
      last_restart_dim_updated :
      742824
      long_name :
      Vertical integral of divergence of cloud frozen water flux
      standard_name :
      unknown
      units :
      kg m**-2 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • viiwe
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      viiwe
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Vertical integral of eastward cloud frozen water flux
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      162090
      GRIB_shortName :
      viiwe
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      entireAtmosphere
      GRIB_units :
      kg m**-1 s**-1
      last_restart_dim_updated :
      742824
      long_name :
      Vertical integral of eastward cloud frozen water flux
      standard_name :
      unknown
      units :
      kg m**-1 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • viiwn
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      viiwn
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Vertical integral of northward cloud frozen water flux
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      162091
      GRIB_shortName :
      viiwn
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      entireAtmosphere
      GRIB_units :
      kg m**-1 s**-1
      last_restart_dim_updated :
      742824
      long_name :
      Vertical integral of northward cloud frozen water flux
      standard_name :
      unknown
      units :
      kg m**-1 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • vilwd
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      vilwd
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Vertical integral of divergence of cloud liquid water flux
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      162079
      GRIB_shortName :
      vilwd
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      entireAtmosphere
      GRIB_units :
      kg m**-2 s**-1
      last_restart_dim_updated :
      742824
      long_name :
      Vertical integral of divergence of cloud liquid water flux
      standard_name :
      unknown
      units :
      kg m**-2 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • vilwe
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      vilwe
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Vertical integral of eastward cloud liquid water flux
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      162088
      GRIB_shortName :
      vilwe
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      entireAtmosphere
      GRIB_units :
      kg m**-1 s**-1
      last_restart_dim_updated :
      742824
      long_name :
      Vertical integral of eastward cloud liquid water flux
      standard_name :
      unknown
      units :
      kg m**-1 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • vilwn
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      unknown
      GRIB_cfVarName :
      vilwn
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Vertical integral of northward cloud liquid water flux
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      162089
      GRIB_shortName :
      vilwn
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      entireAtmosphere
      GRIB_units :
      kg m**-1 s**-1
      last_restart_dim_updated :
      742824
      long_name :
      Vertical integral of northward cloud liquid water flux
      standard_name :
      unknown
      units :
      kg m**-1 s**-1
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • z
      (valid_time, latitude, longitude)
      float32
      dask.array<chunksize=(4320, 64, 64), meta=np.ndarray>
      GRIB_NV :
      0
      GRIB_Nx :
      1440
      GRIB_Ny :
      721
      GRIB_cfName :
      geopotential
      GRIB_cfVarName :
      z
      GRIB_dataType :
      an
      GRIB_gridDefinitionDescription :
      Latitude/Longitude Grid
      GRIB_gridType :
      regular_ll
      GRIB_iDirectionIncrementInDegrees :
      0.25
      GRIB_iScansNegatively :
      0
      GRIB_jDirectionIncrementInDegrees :
      0.25
      GRIB_jPointsAreConsecutive :
      0
      GRIB_jScansPositively :
      0
      GRIB_latitudeOfFirstGridPointInDegrees :
      90.0
      GRIB_latitudeOfLastGridPointInDegrees :
      -90.0
      GRIB_longitudeOfFirstGridPointInDegrees :
      0.0
      GRIB_longitudeOfLastGridPointInDegrees :
      359.75
      GRIB_missingValue :
      3.4028234663852886e+38
      GRIB_name :
      Geopotential
      GRIB_numberOfPoints :
      1038240
      GRIB_paramId :
      129
      GRIB_shortName :
      z
      GRIB_stepType :
      instant
      GRIB_stepUnits :
      1
      GRIB_totalNumber :
      0
      GRIB_typeOfLevel :
      surface
      GRIB_units :
      m**2 s**-2
      last_restart_dim_updated :
      742824
      long_name :
      Geopotential
      standard_name :
      geopotential
      units :
      m**2 s**-2
      Array Chunk
      Bytes 2.81 TiB 67.50 MiB
      Shape (742824, 721, 1440) (4320, 64, 64)
      Dask graph 47472 chunks in 2 graph layers
      Data type float32 numpy.ndarray
      1440 721 742824
    • latitude
      PandasIndex
      PandasIndex(Index([  90.0,  89.75,   89.5,  89.25,   89.0,  88.75,   88.5,  88.25,   88.0,
              87.75,
             ...
             -87.75,  -88.0, -88.25,  -88.5, -88.75,  -89.0, -89.25,  -89.5, -89.75,
              -90.0],
            dtype='float64', name='latitude', length=721))
    • longitude
      PandasIndex
      PandasIndex(Index([   0.0,   0.25,    0.5,   0.75,    1.0,   1.25,    1.5,   1.75,    2.0,
               2.25,
             ...
              357.5, 357.75,  358.0, 358.25,  358.5, 358.75,  359.0, 359.25,  359.5,
             359.75],
            dtype='float64', name='longitude', length=1440))
    • valid_time
      PandasIndex
      PandasIndex(DatetimeIndex(['1940-01-01 00:00:00', '1940-01-01 01:00:00',
                     '1940-01-01 02:00:00', '1940-01-01 03:00:00',
                     '1940-01-01 04:00:00', '1940-01-01 05:00:00',
                     '1940-01-01 06:00:00', '1940-01-01 07:00:00',
                     '1940-01-01 08:00:00', '1940-01-01 09:00:00',
                     ...
                     '2024-09-26 14:00:00', '2024-09-26 15:00:00',
                     '2024-09-26 16:00:00', '2024-09-26 17:00:00',
                     '2024-09-26 18:00:00', '2024-09-26 19:00:00',
                     '2024-09-26 20:00:00', '2024-09-26 21:00:00',
                     '2024-09-26 22:00:00', '2024-09-26 23:00:00'],
                    dtype='datetime64[ns]', name='valid_time', length=742824, freq=None))
  • Conventions :
    CF-1.7
    GRIB_centre :
    ecmf
    GRIB_centreDescription :
    European Centre for Medium-Range Weather Forecasts
    GRIB_edition :
    1
    GRIB_subCentre :
    0
    history :
    2024-10-02T12:52 GRIB to CDM+CF via cfgrib-0.9.14.1/ecCodes-2.38.0 with {"source": ".xarray-ecmwf-cache/60b4e879cc647fea654b5515e1f182e4.grib", "filter_by_keys": {}, "encode_cf": ["parameter", "time", "geography", "vertical"]}
    institution :
    European Centre for Medium-Range Weather Forecasts

⚠ At this point, no data has been downloaded yet, nor loaded in memory.

Average 2 metre temperature in Germany, October 2023¶

2. Data selection¶

First, we perform a geographical selection corresponding to the Germany area. This greatly reduces the amount of data that will be downloaded from EDH. Also, we convert the temperature to °C.

In [3]:
xr.set_options(keep_attrs=True)

t2m = ds.t2m.astype("float32") - 273.15
t2m.attrs["units"] = "°C"
t2m_germany= t2m.sel(**{"latitude": slice(55, 47), "longitude": slice(5, 16)})
t2m_germany
Out[3]:
<xarray.DataArray 't2m' (valid_time: 742824, latitude: 33, longitude: 45)> Size: 4GB
dask.array<getitem, shape=(742824, 33, 45), dtype=float32, chunksize=(4320, 33, 44), chunktype=numpy.ndarray>
Coordinates:
    entireAtmosphere  float32 4B ...
  * latitude          (latitude) float64 264B 55.0 54.75 54.5 ... 47.25 47.0
  * longitude         (longitude) float64 360B 5.0 5.25 5.5 ... 15.5 15.75 16.0
    number            int64 8B ...
    surface           float64 8B ...
  * valid_time        (valid_time) datetime64[ns] 6MB 1940-01-01 ... 2024-09-...
Attributes: (12/31)
    GRIB_NV:                                  0
    GRIB_Nx:                                  1440
    GRIB_Ny:                                  721
    GRIB_cfName:                              unknown
    GRIB_cfVarName:                           t2m
    GRIB_dataType:                            an
    ...                                       ...
    GRIB_typeOfLevel:                         surface
    GRIB_units:                               K
    last_restart_dim_updated:                 742824
    long_name:                                2 metre temperature
    standard_name:                            unknown
    units:                                    °C
xarray.DataArray
't2m'
  • valid_time: 742824
  • latitude: 33
  • longitude: 45
  • dask.array<chunksize=(4320, 33, 44), meta=np.ndarray>
    Array Chunk
    Bytes 4.11 GiB 23.93 MiB
    Shape (742824, 33, 45) (4320, 33, 44)
    Dask graph 344 chunks in 4 graph layers
    Data type float32 numpy.ndarray
    45 33 742824
    • entireAtmosphere
      ()
      float32
      ...
      long_name :
      original GRIB coordinate for key: level(entireAtmosphere)
      units :
      1
      [1 values with dtype=float32]
    • latitude
      (latitude)
      float64
      55.0 54.75 54.5 ... 47.5 47.25 47.0
      long_name :
      latitude
      standard_name :
      latitude
      stored_direction :
      decreasing
      units :
      degrees_north
      array([55.  , 54.75, 54.5 , 54.25, 54.  , 53.75, 53.5 , 53.25, 53.  , 52.75,
             52.5 , 52.25, 52.  , 51.75, 51.5 , 51.25, 51.  , 50.75, 50.5 , 50.25,
             50.  , 49.75, 49.5 , 49.25, 49.  , 48.75, 48.5 , 48.25, 48.  , 47.75,
             47.5 , 47.25, 47.  ])
    • longitude
      (longitude)
      float64
      5.0 5.25 5.5 ... 15.5 15.75 16.0
      long_name :
      longitude
      standard_name :
      longitude
      units :
      degrees_east
      array([ 5.  ,  5.25,  5.5 ,  5.75,  6.  ,  6.25,  6.5 ,  6.75,  7.  ,  7.25,
              7.5 ,  7.75,  8.  ,  8.25,  8.5 ,  8.75,  9.  ,  9.25,  9.5 ,  9.75,
             10.  , 10.25, 10.5 , 10.75, 11.  , 11.25, 11.5 , 11.75, 12.  , 12.25,
             12.5 , 12.75, 13.  , 13.25, 13.5 , 13.75, 14.  , 14.25, 14.5 , 14.75,
             15.  , 15.25, 15.5 , 15.75, 16.  ])
    • number
      ()
      int64
      ...
      long_name :
      ensemble member numerical id
      standard_name :
      realization
      units :
      1
      [1 values with dtype=int64]
    • surface
      ()
      float64
      ...
      long_name :
      original GRIB coordinate for key: level(surface)
      units :
      1
      [1 values with dtype=float64]
    • valid_time
      (valid_time)
      datetime64[ns]
      1940-01-01 ... 2024-09-26T23:00:00
      array(['1940-01-01T00:00:00.000000000', '1940-01-01T01:00:00.000000000',
             '1940-01-01T02:00:00.000000000', ..., '2024-09-26T21:00:00.000000000',
             '2024-09-26T22:00:00.000000000', '2024-09-26T23:00:00.000000000'],
            dtype='datetime64[ns]')
    • latitude
      PandasIndex
      PandasIndex(Index([ 55.0, 54.75,  54.5, 54.25,  54.0, 53.75,  53.5, 53.25,  53.0, 52.75,
              52.5, 52.25,  52.0, 51.75,  51.5, 51.25,  51.0, 50.75,  50.5, 50.25,
              50.0, 49.75,  49.5, 49.25,  49.0, 48.75,  48.5, 48.25,  48.0, 47.75,
              47.5, 47.25,  47.0],
            dtype='float64', name='latitude'))
    • longitude
      PandasIndex
      PandasIndex(Index([  5.0,  5.25,   5.5,  5.75,   6.0,  6.25,   6.5,  6.75,   7.0,  7.25,
               7.5,  7.75,   8.0,  8.25,   8.5,  8.75,   9.0,  9.25,   9.5,  9.75,
              10.0, 10.25,  10.5, 10.75,  11.0, 11.25,  11.5, 11.75,  12.0, 12.25,
              12.5, 12.75,  13.0, 13.25,  13.5, 13.75,  14.0, 14.25,  14.5, 14.75,
              15.0, 15.25,  15.5, 15.75,  16.0],
            dtype='float64', name='longitude'))
    • valid_time
      PandasIndex
      PandasIndex(DatetimeIndex(['1940-01-01 00:00:00', '1940-01-01 01:00:00',
                     '1940-01-01 02:00:00', '1940-01-01 03:00:00',
                     '1940-01-01 04:00:00', '1940-01-01 05:00:00',
                     '1940-01-01 06:00:00', '1940-01-01 07:00:00',
                     '1940-01-01 08:00:00', '1940-01-01 09:00:00',
                     ...
                     '2024-09-26 14:00:00', '2024-09-26 15:00:00',
                     '2024-09-26 16:00:00', '2024-09-26 17:00:00',
                     '2024-09-26 18:00:00', '2024-09-26 19:00:00',
                     '2024-09-26 20:00:00', '2024-09-26 21:00:00',
                     '2024-09-26 22:00:00', '2024-09-26 23:00:00'],
                    dtype='datetime64[ns]', name='valid_time', length=742824, freq=None))
  • GRIB_NV :
    0
    GRIB_Nx :
    1440
    GRIB_Ny :
    721
    GRIB_cfName :
    unknown
    GRIB_cfVarName :
    t2m
    GRIB_dataType :
    an
    GRIB_gridDefinitionDescription :
    Latitude/Longitude Grid
    GRIB_gridType :
    regular_ll
    GRIB_iDirectionIncrementInDegrees :
    0.25
    GRIB_iScansNegatively :
    0
    GRIB_jDirectionIncrementInDegrees :
    0.25
    GRIB_jPointsAreConsecutive :
    0
    GRIB_jScansPositively :
    0
    GRIB_latitudeOfFirstGridPointInDegrees :
    90.0
    GRIB_latitudeOfLastGridPointInDegrees :
    -90.0
    GRIB_longitudeOfFirstGridPointInDegrees :
    0.0
    GRIB_longitudeOfLastGridPointInDegrees :
    359.75
    GRIB_missingValue :
    3.4028234663852886e+38
    GRIB_name :
    2 metre temperature
    GRIB_numberOfPoints :
    1038240
    GRIB_paramId :
    167
    GRIB_shortName :
    2t
    GRIB_stepType :
    instant
    GRIB_stepUnits :
    1
    GRIB_totalNumber :
    0
    GRIB_typeOfLevel :
    surface
    GRIB_units :
    K
    last_restart_dim_updated :
    742824
    long_name :
    2 metre temperature
    standard_name :
    unknown
    units :
    °C

Second, we further select the October 2023 month. This is, again, a lazy operation:

In [4]:
t2m_germany_october_2023 = t2m_germany.sel(valid_time="2023-10")
t2m_germany_october_2023
Out[4]:
<xarray.DataArray 't2m' (valid_time: 744, latitude: 33, longitude: 45)> Size: 4MB
dask.array<getitem, shape=(744, 33, 45), dtype=float32, chunksize=(480, 33, 44), chunktype=numpy.ndarray>
Coordinates:
    entireAtmosphere  float32 4B ...
  * latitude          (latitude) float64 264B 55.0 54.75 54.5 ... 47.25 47.0
  * longitude         (longitude) float64 360B 5.0 5.25 5.5 ... 15.5 15.75 16.0
    number            int64 8B ...
    surface           float64 8B ...
  * valid_time        (valid_time) datetime64[ns] 6kB 2023-10-01 ... 2023-10-...
Attributes: (12/31)
    GRIB_NV:                                  0
    GRIB_Nx:                                  1440
    GRIB_Ny:                                  721
    GRIB_cfName:                              unknown
    GRIB_cfVarName:                           t2m
    GRIB_dataType:                            an
    ...                                       ...
    GRIB_typeOfLevel:                         surface
    GRIB_units:                               K
    last_restart_dim_updated:                 742824
    long_name:                                2 metre temperature
    standard_name:                            unknown
    units:                                    °C
xarray.DataArray
't2m'
  • valid_time: 744
  • latitude: 33
  • longitude: 45
  • dask.array<chunksize=(264, 33, 44), meta=np.ndarray>
    Array Chunk
    Bytes 4.21 MiB 2.66 MiB
    Shape (744, 33, 45) (480, 33, 44)
    Dask graph 4 chunks in 5 graph layers
    Data type float32 numpy.ndarray
    45 33 744
    • entireAtmosphere
      ()
      float32
      ...
      long_name :
      original GRIB coordinate for key: level(entireAtmosphere)
      units :
      1
      [1 values with dtype=float32]
    • latitude
      (latitude)
      float64
      55.0 54.75 54.5 ... 47.5 47.25 47.0
      long_name :
      latitude
      standard_name :
      latitude
      stored_direction :
      decreasing
      units :
      degrees_north
      array([55.  , 54.75, 54.5 , 54.25, 54.  , 53.75, 53.5 , 53.25, 53.  , 52.75,
             52.5 , 52.25, 52.  , 51.75, 51.5 , 51.25, 51.  , 50.75, 50.5 , 50.25,
             50.  , 49.75, 49.5 , 49.25, 49.  , 48.75, 48.5 , 48.25, 48.  , 47.75,
             47.5 , 47.25, 47.  ])
    • longitude
      (longitude)
      float64
      5.0 5.25 5.5 ... 15.5 15.75 16.0
      long_name :
      longitude
      standard_name :
      longitude
      units :
      degrees_east
      array([ 5.  ,  5.25,  5.5 ,  5.75,  6.  ,  6.25,  6.5 ,  6.75,  7.  ,  7.25,
              7.5 ,  7.75,  8.  ,  8.25,  8.5 ,  8.75,  9.  ,  9.25,  9.5 ,  9.75,
             10.  , 10.25, 10.5 , 10.75, 11.  , 11.25, 11.5 , 11.75, 12.  , 12.25,
             12.5 , 12.75, 13.  , 13.25, 13.5 , 13.75, 14.  , 14.25, 14.5 , 14.75,
             15.  , 15.25, 15.5 , 15.75, 16.  ])
    • number
      ()
      int64
      ...
      long_name :
      ensemble member numerical id
      standard_name :
      realization
      units :
      1
      [1 values with dtype=int64]
    • surface
      ()
      float64
      ...
      long_name :
      original GRIB coordinate for key: level(surface)
      units :
      1
      [1 values with dtype=float64]
    • valid_time
      (valid_time)
      datetime64[ns]
      2023-10-01 ... 2023-10-31T23:00:00
      array(['2023-10-01T00:00:00.000000000', '2023-10-01T01:00:00.000000000',
             '2023-10-01T02:00:00.000000000', ..., '2023-10-31T21:00:00.000000000',
             '2023-10-31T22:00:00.000000000', '2023-10-31T23:00:00.000000000'],
            dtype='datetime64[ns]')
    • latitude
      PandasIndex
      PandasIndex(Index([ 55.0, 54.75,  54.5, 54.25,  54.0, 53.75,  53.5, 53.25,  53.0, 52.75,
              52.5, 52.25,  52.0, 51.75,  51.5, 51.25,  51.0, 50.75,  50.5, 50.25,
              50.0, 49.75,  49.5, 49.25,  49.0, 48.75,  48.5, 48.25,  48.0, 47.75,
              47.5, 47.25,  47.0],
            dtype='float64', name='latitude'))
    • longitude
      PandasIndex
      PandasIndex(Index([  5.0,  5.25,   5.5,  5.75,   6.0,  6.25,   6.5,  6.75,   7.0,  7.25,
               7.5,  7.75,   8.0,  8.25,   8.5,  8.75,   9.0,  9.25,   9.5,  9.75,
              10.0, 10.25,  10.5, 10.75,  11.0, 11.25,  11.5, 11.75,  12.0, 12.25,
              12.5, 12.75,  13.0, 13.25,  13.5, 13.75,  14.0, 14.25,  14.5, 14.75,
              15.0, 15.25,  15.5, 15.75,  16.0],
            dtype='float64', name='longitude'))
    • valid_time
      PandasIndex
      PandasIndex(DatetimeIndex(['2023-10-01 00:00:00', '2023-10-01 01:00:00',
                     '2023-10-01 02:00:00', '2023-10-01 03:00:00',
                     '2023-10-01 04:00:00', '2023-10-01 05:00:00',
                     '2023-10-01 06:00:00', '2023-10-01 07:00:00',
                     '2023-10-01 08:00:00', '2023-10-01 09:00:00',
                     ...
                     '2023-10-31 14:00:00', '2023-10-31 15:00:00',
                     '2023-10-31 16:00:00', '2023-10-31 17:00:00',
                     '2023-10-31 18:00:00', '2023-10-31 19:00:00',
                     '2023-10-31 20:00:00', '2023-10-31 21:00:00',
                     '2023-10-31 22:00:00', '2023-10-31 23:00:00'],
                    dtype='datetime64[ns]', name='valid_time', length=744, freq=None))
  • GRIB_NV :
    0
    GRIB_Nx :
    1440
    GRIB_Ny :
    721
    GRIB_cfName :
    unknown
    GRIB_cfVarName :
    t2m
    GRIB_dataType :
    an
    GRIB_gridDefinitionDescription :
    Latitude/Longitude Grid
    GRIB_gridType :
    regular_ll
    GRIB_iDirectionIncrementInDegrees :
    0.25
    GRIB_iScansNegatively :
    0
    GRIB_jDirectionIncrementInDegrees :
    0.25
    GRIB_jPointsAreConsecutive :
    0
    GRIB_jScansPositively :
    0
    GRIB_latitudeOfFirstGridPointInDegrees :
    90.0
    GRIB_latitudeOfLastGridPointInDegrees :
    -90.0
    GRIB_longitudeOfFirstGridPointInDegrees :
    0.0
    GRIB_longitudeOfLastGridPointInDegrees :
    359.75
    GRIB_missingValue :
    3.4028234663852886e+38
    GRIB_name :
    2 metre temperature
    GRIB_numberOfPoints :
    1038240
    GRIB_paramId :
    167
    GRIB_shortName :
    2t
    GRIB_stepType :
    instant
    GRIB_stepUnits :
    1
    GRIB_totalNumber :
    0
    GRIB_typeOfLevel :
    surface
    GRIB_units :
    K
    last_restart_dim_updated :
    742824
    long_name :
    2 metre temperature
    standard_name :
    unknown
    units :
    °C

3. Data download¶

Due to the chunked structure of the DataArray, xarray will must download every chunk that includes a portion of the selected data.

To estimate the size of the download, we can use the costing.py module. This estimate must be done before we apply any reduction operation.

In [5]:
import costing

costing.estimate_download_size(t2m, t2m_germany_october_2023)
estimated_needed_chunks: 4
estimated_memory_size: 0.283 GB
estimated_download_size: 0.028 GB

At this point the selection is small enough to call compute() on it. This will trigger the download of data from EDH and load it in memory.

Remember to assign the return of the compute() function to a new variable, so that the data is kept in memory.

We can measure the time it takes:

In [6]:
%%time

t2m_germany_october_2023_computed = t2m_germany_october_2023.compute()
CPU times: user 1.05 s, sys: 691 ms, total: 1.74 s
Wall time: 1.15 s

The data was very small, this didn't take long!

4. Data reduction¶

Now that the data is loaded in memory, we can easily compute the october 2023 monthly mean:

In [7]:
t2m_germany_october_2023_monthly_mean = t2m_germany_october_2023_computed.mean(dim="valid_time")
t2m_germany_october_2023_monthly_mean
Out[7]:
<xarray.DataArray 't2m' (latitude: 33, longitude: 45)> Size: 6kB
array([[13.325453 , 13.389966 , 13.424911 , ..., 12.257616 , 12.284496 ,
        12.304321 ],
       [13.614086 , 13.664152 , 13.679943 , ..., 12.537507 , 12.4921465,
        12.512643 ],
       [13.858366 , 13.903055 , 13.91448  , ..., 12.575477 , 12.505922 ,
        12.191089 ],
       ...,
       [13.5314245, 14.038129 , 14.431263 , ..., 10.0140505, 10.73885  ,
        11.996536 ],
       [14.110707 , 14.629511 , 15.010548 , ..., 11.550653 , 12.272733 ,
        12.732729 ],
       [14.843212 , 15.05759  , 15.260543 , ..., 13.064035 , 13.677259 ,
        13.871476 ]], dtype=float32)
Coordinates:
    entireAtmosphere  float32 4B 0.0
  * latitude          (latitude) float64 264B 55.0 54.75 54.5 ... 47.25 47.0
  * longitude         (longitude) float64 360B 5.0 5.25 5.5 ... 15.5 15.75 16.0
    number            int64 8B 0
    surface           float64 8B 0.0
Attributes: (12/31)
    GRIB_NV:                                  0
    GRIB_Nx:                                  1440
    GRIB_Ny:                                  721
    GRIB_cfName:                              unknown
    GRIB_cfVarName:                           t2m
    GRIB_dataType:                            an
    ...                                       ...
    GRIB_typeOfLevel:                         surface
    GRIB_units:                               K
    last_restart_dim_updated:                 742824
    long_name:                                2 metre temperature
    standard_name:                            unknown
    units:                                    °C
xarray.DataArray
't2m'
  • latitude: 33
  • longitude: 45
  • 13.33 13.39 13.42 13.47 13.5 13.52 ... 11.06 12.27 13.06 13.68 13.87
    array([[13.325453 , 13.389966 , 13.424911 , ..., 12.257616 , 12.284496 ,
            12.304321 ],
           [13.614086 , 13.664152 , 13.679943 , ..., 12.537507 , 12.4921465,
            12.512643 ],
           [13.858366 , 13.903055 , 13.91448  , ..., 12.575477 , 12.505922 ,
            12.191089 ],
           ...,
           [13.5314245, 14.038129 , 14.431263 , ..., 10.0140505, 10.73885  ,
            11.996536 ],
           [14.110707 , 14.629511 , 15.010548 , ..., 11.550653 , 12.272733 ,
            12.732729 ],
           [14.843212 , 15.05759  , 15.260543 , ..., 13.064035 , 13.677259 ,
            13.871476 ]], dtype=float32)
    • entireAtmosphere
      ()
      float32
      0.0
      long_name :
      original GRIB coordinate for key: level(entireAtmosphere)
      units :
      1
      array(0., dtype=float32)
    • latitude
      (latitude)
      float64
      55.0 54.75 54.5 ... 47.5 47.25 47.0
      long_name :
      latitude
      standard_name :
      latitude
      stored_direction :
      decreasing
      units :
      degrees_north
      array([55.  , 54.75, 54.5 , 54.25, 54.  , 53.75, 53.5 , 53.25, 53.  , 52.75,
             52.5 , 52.25, 52.  , 51.75, 51.5 , 51.25, 51.  , 50.75, 50.5 , 50.25,
             50.  , 49.75, 49.5 , 49.25, 49.  , 48.75, 48.5 , 48.25, 48.  , 47.75,
             47.5 , 47.25, 47.  ])
    • longitude
      (longitude)
      float64
      5.0 5.25 5.5 ... 15.5 15.75 16.0
      long_name :
      longitude
      standard_name :
      longitude
      units :
      degrees_east
      array([ 5.  ,  5.25,  5.5 ,  5.75,  6.  ,  6.25,  6.5 ,  6.75,  7.  ,  7.25,
              7.5 ,  7.75,  8.  ,  8.25,  8.5 ,  8.75,  9.  ,  9.25,  9.5 ,  9.75,
             10.  , 10.25, 10.5 , 10.75, 11.  , 11.25, 11.5 , 11.75, 12.  , 12.25,
             12.5 , 12.75, 13.  , 13.25, 13.5 , 13.75, 14.  , 14.25, 14.5 , 14.75,
             15.  , 15.25, 15.5 , 15.75, 16.  ])
    • number
      ()
      int64
      0
      long_name :
      ensemble member numerical id
      standard_name :
      realization
      units :
      1
      array(0)
    • surface
      ()
      float64
      0.0
      long_name :
      original GRIB coordinate for key: level(surface)
      units :
      1
      array(0.)
    • latitude
      PandasIndex
      PandasIndex(Index([ 55.0, 54.75,  54.5, 54.25,  54.0, 53.75,  53.5, 53.25,  53.0, 52.75,
              52.5, 52.25,  52.0, 51.75,  51.5, 51.25,  51.0, 50.75,  50.5, 50.25,
              50.0, 49.75,  49.5, 49.25,  49.0, 48.75,  48.5, 48.25,  48.0, 47.75,
              47.5, 47.25,  47.0],
            dtype='float64', name='latitude'))
    • longitude
      PandasIndex
      PandasIndex(Index([  5.0,  5.25,   5.5,  5.75,   6.0,  6.25,   6.5,  6.75,   7.0,  7.25,
               7.5,  7.75,   8.0,  8.25,   8.5,  8.75,   9.0,  9.25,   9.5,  9.75,
              10.0, 10.25,  10.5, 10.75,  11.0, 11.25,  11.5, 11.75,  12.0, 12.25,
              12.5, 12.75,  13.0, 13.25,  13.5, 13.75,  14.0, 14.25,  14.5, 14.75,
              15.0, 15.25,  15.5, 15.75,  16.0],
            dtype='float64', name='longitude'))
  • GRIB_NV :
    0
    GRIB_Nx :
    1440
    GRIB_Ny :
    721
    GRIB_cfName :
    unknown
    GRIB_cfVarName :
    t2m
    GRIB_dataType :
    an
    GRIB_gridDefinitionDescription :
    Latitude/Longitude Grid
    GRIB_gridType :
    regular_ll
    GRIB_iDirectionIncrementInDegrees :
    0.25
    GRIB_iScansNegatively :
    0
    GRIB_jDirectionIncrementInDegrees :
    0.25
    GRIB_jPointsAreConsecutive :
    0
    GRIB_jScansPositively :
    0
    GRIB_latitudeOfFirstGridPointInDegrees :
    90.0
    GRIB_latitudeOfLastGridPointInDegrees :
    -90.0
    GRIB_longitudeOfFirstGridPointInDegrees :
    0.0
    GRIB_longitudeOfLastGridPointInDegrees :
    359.75
    GRIB_missingValue :
    3.4028234663852886e+38
    GRIB_name :
    2 metre temperature
    GRIB_numberOfPoints :
    1038240
    GRIB_paramId :
    167
    GRIB_shortName :
    2t
    GRIB_stepType :
    instant
    GRIB_stepUnits :
    1
    GRIB_totalNumber :
    0
    GRIB_typeOfLevel :
    surface
    GRIB_units :
    K
    last_restart_dim_updated :
    742824
    long_name :
    2 metre temperature
    standard_name :
    unknown
    units :
    °C

5. Visualization¶

Finally, we can plot the october 2023 montly mean on a map:

In [8]:
import display
import matplotlib.pyplot as plt
from cartopy import crs
In [9]:
display.map(
    t2m_germany_october_2023_monthly_mean, 
    projection=crs.Miller(), 
    vmax=None, 
    cmap="YlOrRd", 
    title="Mean Surface Temperature, Oct 2023"
);
No description has been provided for this image

2 metre temperature anomaly in Germany, October 2023¶

We want to compute the 2 metre temperature anomaly for the month of October 2023 against the 1991-2020 reference period, once again in Germany. The same considerations done before apply here.

We fist select the relevant months in the reference period:

In [10]:
t2m_germany_octobers_1991_2020 = t2m_germany.sel(valid_time=t2m_germany["valid_time.month"] == 10).sel(valid_time=slice("1991", "2020"))
t2m_germany_octobers_1991_2020
Out[10]:
<xarray.DataArray 't2m' (valid_time: 22320, latitude: 33, longitude: 45)> Size: 133MB
dask.array<getitem, shape=(22320, 33, 45), dtype=float32, chunksize=(4318, 33, 44), chunktype=numpy.ndarray>
Coordinates:
    entireAtmosphere  float32 4B ...
  * latitude          (latitude) float64 264B 55.0 54.75 54.5 ... 47.25 47.0
  * longitude         (longitude) float64 360B 5.0 5.25 5.5 ... 15.5 15.75 16.0
    number            int64 8B ...
    surface           float64 8B ...
  * valid_time        (valid_time) datetime64[ns] 179kB 1991-10-01 ... 2020-1...
Attributes: (12/31)
    GRIB_NV:                                  0
    GRIB_Nx:                                  1440
    GRIB_Ny:                                  721
    GRIB_cfName:                              unknown
    GRIB_cfVarName:                           t2m
    GRIB_dataType:                            an
    ...                                       ...
    GRIB_typeOfLevel:                         surface
    GRIB_units:                               K
    last_restart_dim_updated:                 742824
    long_name:                                2 metre temperature
    standard_name:                            unknown
    units:                                    °C
xarray.DataArray
't2m'
  • valid_time: 22320
  • latitude: 33
  • longitude: 45
  • dask.array<chunksize=(918, 33, 44), meta=np.ndarray>
    Array Chunk
    Bytes 126.44 MiB 23.92 MiB
    Shape (22320, 33, 45) (4318, 33, 44)
    Dask graph 12 chunks in 6 graph layers
    Data type float32 numpy.ndarray
    45 33 22320
    • entireAtmosphere
      ()
      float32
      ...
      long_name :
      original GRIB coordinate for key: level(entireAtmosphere)
      units :
      1
      [1 values with dtype=float32]
    • latitude
      (latitude)
      float64
      55.0 54.75 54.5 ... 47.5 47.25 47.0
      long_name :
      latitude
      standard_name :
      latitude
      stored_direction :
      decreasing
      units :
      degrees_north
      array([55.  , 54.75, 54.5 , 54.25, 54.  , 53.75, 53.5 , 53.25, 53.  , 52.75,
             52.5 , 52.25, 52.  , 51.75, 51.5 , 51.25, 51.  , 50.75, 50.5 , 50.25,
             50.  , 49.75, 49.5 , 49.25, 49.  , 48.75, 48.5 , 48.25, 48.  , 47.75,
             47.5 , 47.25, 47.  ])
    • longitude
      (longitude)
      float64
      5.0 5.25 5.5 ... 15.5 15.75 16.0
      long_name :
      longitude
      standard_name :
      longitude
      units :
      degrees_east
      array([ 5.  ,  5.25,  5.5 ,  5.75,  6.  ,  6.25,  6.5 ,  6.75,  7.  ,  7.25,
              7.5 ,  7.75,  8.  ,  8.25,  8.5 ,  8.75,  9.  ,  9.25,  9.5 ,  9.75,
             10.  , 10.25, 10.5 , 10.75, 11.  , 11.25, 11.5 , 11.75, 12.  , 12.25,
             12.5 , 12.75, 13.  , 13.25, 13.5 , 13.75, 14.  , 14.25, 14.5 , 14.75,
             15.  , 15.25, 15.5 , 15.75, 16.  ])
    • number
      ()
      int64
      ...
      long_name :
      ensemble member numerical id
      standard_name :
      realization
      units :
      1
      [1 values with dtype=int64]
    • surface
      ()
      float64
      ...
      long_name :
      original GRIB coordinate for key: level(surface)
      units :
      1
      [1 values with dtype=float64]
    • valid_time
      (valid_time)
      datetime64[ns]
      1991-10-01 ... 2020-10-31T23:00:00
      array(['1991-10-01T00:00:00.000000000', '1991-10-01T01:00:00.000000000',
             '1991-10-01T02:00:00.000000000', ..., '2020-10-31T21:00:00.000000000',
             '2020-10-31T22:00:00.000000000', '2020-10-31T23:00:00.000000000'],
            dtype='datetime64[ns]')
    • latitude
      PandasIndex
      PandasIndex(Index([ 55.0, 54.75,  54.5, 54.25,  54.0, 53.75,  53.5, 53.25,  53.0, 52.75,
              52.5, 52.25,  52.0, 51.75,  51.5, 51.25,  51.0, 50.75,  50.5, 50.25,
              50.0, 49.75,  49.5, 49.25,  49.0, 48.75,  48.5, 48.25,  48.0, 47.75,
              47.5, 47.25,  47.0],
            dtype='float64', name='latitude'))
    • longitude
      PandasIndex
      PandasIndex(Index([  5.0,  5.25,   5.5,  5.75,   6.0,  6.25,   6.5,  6.75,   7.0,  7.25,
               7.5,  7.75,   8.0,  8.25,   8.5,  8.75,   9.0,  9.25,   9.5,  9.75,
              10.0, 10.25,  10.5, 10.75,  11.0, 11.25,  11.5, 11.75,  12.0, 12.25,
              12.5, 12.75,  13.0, 13.25,  13.5, 13.75,  14.0, 14.25,  14.5, 14.75,
              15.0, 15.25,  15.5, 15.75,  16.0],
            dtype='float64', name='longitude'))
    • valid_time
      PandasIndex
      PandasIndex(DatetimeIndex(['1991-10-01 00:00:00', '1991-10-01 01:00:00',
                     '1991-10-01 02:00:00', '1991-10-01 03:00:00',
                     '1991-10-01 04:00:00', '1991-10-01 05:00:00',
                     '1991-10-01 06:00:00', '1991-10-01 07:00:00',
                     '1991-10-01 08:00:00', '1991-10-01 09:00:00',
                     ...
                     '2020-10-31 14:00:00', '2020-10-31 15:00:00',
                     '2020-10-31 16:00:00', '2020-10-31 17:00:00',
                     '2020-10-31 18:00:00', '2020-10-31 19:00:00',
                     '2020-10-31 20:00:00', '2020-10-31 21:00:00',
                     '2020-10-31 22:00:00', '2020-10-31 23:00:00'],
                    dtype='datetime64[ns]', name='valid_time', length=22320, freq=None))
  • GRIB_NV :
    0
    GRIB_Nx :
    1440
    GRIB_Ny :
    721
    GRIB_cfName :
    unknown
    GRIB_cfVarName :
    t2m
    GRIB_dataType :
    an
    GRIB_gridDefinitionDescription :
    Latitude/Longitude Grid
    GRIB_gridType :
    regular_ll
    GRIB_iDirectionIncrementInDegrees :
    0.25
    GRIB_iScansNegatively :
    0
    GRIB_jDirectionIncrementInDegrees :
    0.25
    GRIB_jPointsAreConsecutive :
    0
    GRIB_jScansPositively :
    0
    GRIB_latitudeOfFirstGridPointInDegrees :
    90.0
    GRIB_latitudeOfLastGridPointInDegrees :
    -90.0
    GRIB_longitudeOfFirstGridPointInDegrees :
    0.0
    GRIB_longitudeOfLastGridPointInDegrees :
    359.75
    GRIB_missingValue :
    3.4028234663852886e+38
    GRIB_name :
    2 metre temperature
    GRIB_numberOfPoints :
    1038240
    GRIB_paramId :
    167
    GRIB_shortName :
    2t
    GRIB_stepType :
    instant
    GRIB_stepUnits :
    1
    GRIB_totalNumber :
    0
    GRIB_typeOfLevel :
    surface
    GRIB_units :
    K
    last_restart_dim_updated :
    742824
    long_name :
    2 metre temperature
    standard_name :
    unknown
    units :
    °C
In [11]:
import costing

costing.estimate_download_size(t2m, t2m_germany_octobers_1991_2020)   
estimated_needed_chunks: 12
estimated_memory_size: 0.849 GB
estimated_download_size: 0.085 GB

This is small enought to be computed in reasonable time:

In [12]:
%%time

t2m_germany_octobers_1991_2020_computed = t2m_germany_octobers_1991_2020.compute()
CPU times: user 16.9 s, sys: 9.91 s, total: 26.8 s
Wall time: 7.49 s

Now that the data is loaded in memory we can esily compute the 1991-2020 octobers mean:

In [13]:
t2m_germany_octobers_1991_2020_mean = t2m_germany_octobers_1991_2020_computed.mean(dim="valid_time")

And finally the anomaly:

In [14]:
anomaly = t2m_germany_october_2023_monthly_mean - t2m_germany_octobers_1991_2020_mean
anomaly
Out[14]:
<xarray.DataArray 't2m' (latitude: 33, longitude: 45)> Size: 6kB
array([[0.94561386, 0.9775305 , 0.9818058 , ..., 1.1062622 , 1.1509447 ,
        1.18295   ],
       [1.058692  , 1.0717936 , 1.0788851 , ..., 1.3152046 , 1.3094378 ,
        1.3461571 ],
       [1.1612654 , 1.169033  , 1.1861801 , ..., 1.4496317 , 1.4415836 ,
        1.3800087 ],
       ...,
       [2.637679  , 2.6654654 , 2.8324194 , ..., 3.3936133 , 3.5344958 ,
        3.6796694 ],
       [2.7071152 , 2.7365713 , 2.8895226 , ..., 3.2909975 , 3.426055  ,
        3.5746298 ],
       [2.8477697 , 2.828455  , 2.91681   , ..., 3.4293985 , 3.4998322 ,
        3.638671  ]], dtype=float32)
Coordinates:
    entireAtmosphere  float32 4B 0.0
  * latitude          (latitude) float64 264B 55.0 54.75 54.5 ... 47.25 47.0
  * longitude         (longitude) float64 360B 5.0 5.25 5.5 ... 15.5 15.75 16.0
    number            int64 8B 0
    surface           float64 8B 0.0
Attributes: (12/31)
    GRIB_NV:                                  0
    GRIB_Nx:                                  1440
    GRIB_Ny:                                  721
    GRIB_cfName:                              unknown
    GRIB_cfVarName:                           t2m
    GRIB_dataType:                            an
    ...                                       ...
    GRIB_typeOfLevel:                         surface
    GRIB_units:                               K
    last_restart_dim_updated:                 742824
    long_name:                                2 metre temperature
    standard_name:                            unknown
    units:                                    °C
xarray.DataArray
't2m'
  • latitude: 33
  • longitude: 45
  • 0.9456 0.9775 0.9818 0.9838 0.9637 ... 3.38 3.372 3.429 3.5 3.639
    array([[0.94561386, 0.9775305 , 0.9818058 , ..., 1.1062622 , 1.1509447 ,
            1.18295   ],
           [1.058692  , 1.0717936 , 1.0788851 , ..., 1.3152046 , 1.3094378 ,
            1.3461571 ],
           [1.1612654 , 1.169033  , 1.1861801 , ..., 1.4496317 , 1.4415836 ,
            1.3800087 ],
           ...,
           [2.637679  , 2.6654654 , 2.8324194 , ..., 3.3936133 , 3.5344958 ,
            3.6796694 ],
           [2.7071152 , 2.7365713 , 2.8895226 , ..., 3.2909975 , 3.426055  ,
            3.5746298 ],
           [2.8477697 , 2.828455  , 2.91681   , ..., 3.4293985 , 3.4998322 ,
            3.638671  ]], dtype=float32)
    • entireAtmosphere
      ()
      float32
      0.0
      long_name :
      original GRIB coordinate for key: level(entireAtmosphere)
      units :
      1
      array(0., dtype=float32)
    • latitude
      (latitude)
      float64
      55.0 54.75 54.5 ... 47.5 47.25 47.0
      long_name :
      latitude
      standard_name :
      latitude
      stored_direction :
      decreasing
      units :
      degrees_north
      array([55.  , 54.75, 54.5 , 54.25, 54.  , 53.75, 53.5 , 53.25, 53.  , 52.75,
             52.5 , 52.25, 52.  , 51.75, 51.5 , 51.25, 51.  , 50.75, 50.5 , 50.25,
             50.  , 49.75, 49.5 , 49.25, 49.  , 48.75, 48.5 , 48.25, 48.  , 47.75,
             47.5 , 47.25, 47.  ])
    • longitude
      (longitude)
      float64
      5.0 5.25 5.5 ... 15.5 15.75 16.0
      long_name :
      longitude
      standard_name :
      longitude
      units :
      degrees_east
      array([ 5.  ,  5.25,  5.5 ,  5.75,  6.  ,  6.25,  6.5 ,  6.75,  7.  ,  7.25,
              7.5 ,  7.75,  8.  ,  8.25,  8.5 ,  8.75,  9.  ,  9.25,  9.5 ,  9.75,
             10.  , 10.25, 10.5 , 10.75, 11.  , 11.25, 11.5 , 11.75, 12.  , 12.25,
             12.5 , 12.75, 13.  , 13.25, 13.5 , 13.75, 14.  , 14.25, 14.5 , 14.75,
             15.  , 15.25, 15.5 , 15.75, 16.  ])
    • number
      ()
      int64
      0
      long_name :
      ensemble member numerical id
      standard_name :
      realization
      units :
      1
      array(0)
    • surface
      ()
      float64
      0.0
      long_name :
      original GRIB coordinate for key: level(surface)
      units :
      1
      array(0.)
    • latitude
      PandasIndex
      PandasIndex(Index([ 55.0, 54.75,  54.5, 54.25,  54.0, 53.75,  53.5, 53.25,  53.0, 52.75,
              52.5, 52.25,  52.0, 51.75,  51.5, 51.25,  51.0, 50.75,  50.5, 50.25,
              50.0, 49.75,  49.5, 49.25,  49.0, 48.75,  48.5, 48.25,  48.0, 47.75,
              47.5, 47.25,  47.0],
            dtype='float64', name='latitude'))
    • longitude
      PandasIndex
      PandasIndex(Index([  5.0,  5.25,   5.5,  5.75,   6.0,  6.25,   6.5,  6.75,   7.0,  7.25,
               7.5,  7.75,   8.0,  8.25,   8.5,  8.75,   9.0,  9.25,   9.5,  9.75,
              10.0, 10.25,  10.5, 10.75,  11.0, 11.25,  11.5, 11.75,  12.0, 12.25,
              12.5, 12.75,  13.0, 13.25,  13.5, 13.75,  14.0, 14.25,  14.5, 14.75,
              15.0, 15.25,  15.5, 15.75,  16.0],
            dtype='float64', name='longitude'))
  • GRIB_NV :
    0
    GRIB_Nx :
    1440
    GRIB_Ny :
    721
    GRIB_cfName :
    unknown
    GRIB_cfVarName :
    t2m
    GRIB_dataType :
    an
    GRIB_gridDefinitionDescription :
    Latitude/Longitude Grid
    GRIB_gridType :
    regular_ll
    GRIB_iDirectionIncrementInDegrees :
    0.25
    GRIB_iScansNegatively :
    0
    GRIB_jDirectionIncrementInDegrees :
    0.25
    GRIB_jPointsAreConsecutive :
    0
    GRIB_jScansPositively :
    0
    GRIB_latitudeOfFirstGridPointInDegrees :
    90.0
    GRIB_latitudeOfLastGridPointInDegrees :
    -90.0
    GRIB_longitudeOfFirstGridPointInDegrees :
    0.0
    GRIB_longitudeOfLastGridPointInDegrees :
    359.75
    GRIB_missingValue :
    3.4028234663852886e+38
    GRIB_name :
    2 metre temperature
    GRIB_numberOfPoints :
    1038240
    GRIB_paramId :
    167
    GRIB_shortName :
    2t
    GRIB_stepType :
    instant
    GRIB_stepUnits :
    1
    GRIB_totalNumber :
    0
    GRIB_typeOfLevel :
    surface
    GRIB_units :
    K
    last_restart_dim_updated :
    742824
    long_name :
    2 metre temperature
    standard_name :
    unknown
    units :
    °C

We can plot the anomaly on a map:

In [15]:
display.map(
    anomaly,
    vmax=None,
    projection=crs.Miller(),
    cmap="YlOrRd", 
    title="Mean Surface Temperature anomaly (ref 1991-2020), Oct 2013"
);
No description has been provided for this image

2 metre temperature climatology (1991-2020) in Berlin vs 2023 montly mean¶

The power of Earth Data Hub is better shown when working with timeseries. We will now show how fast is to compute the 2 metre temperature climatology (monthly mean and standard deviation) in Berlin, over the reference period 1991-2020, and compare it with the 2023 monthly means.

With legacy data distributon systems you would need to download the entire world temperature for the reference time period, extract the Berlin data and do your calculations. Alternatively the data provider might do a crop and merge operation for you, but chances are that this is very slow (internally the data provider still accesses the entire world temperature, you just don't see it!). Thanks to Earth Data Hub this is not needed anymore. You only need to download the relevant chunks.

Here, we select the closest data to Berlin:

In [16]:
t2m_Berlin = t2m.sel(**{"latitude": 52.5, "longitude": 13.4}, method="nearest")
t2m_Berlin
Out[16]:
<xarray.DataArray 't2m' (valid_time: 742824)> Size: 3MB
dask.array<getitem, shape=(742824,), dtype=float32, chunksize=(4320,), chunktype=numpy.ndarray>
Coordinates:
    entireAtmosphere  float32 4B ...
    latitude          float64 8B 52.5
    longitude         float64 8B 13.5
    number            int64 8B ...
    surface           float64 8B ...
  * valid_time        (valid_time) datetime64[ns] 6MB 1940-01-01 ... 2024-09-...
Attributes: (12/31)
    GRIB_NV:                                  0
    GRIB_Nx:                                  1440
    GRIB_Ny:                                  721
    GRIB_cfName:                              unknown
    GRIB_cfVarName:                           t2m
    GRIB_dataType:                            an
    ...                                       ...
    GRIB_typeOfLevel:                         surface
    GRIB_units:                               K
    last_restart_dim_updated:                 742824
    long_name:                                2 metre temperature
    standard_name:                            unknown
    units:                                    °C
xarray.DataArray
't2m'
  • valid_time: 742824
  • dask.array<chunksize=(4320,), meta=np.ndarray>
    Array Chunk
    Bytes 2.83 MiB 16.88 kiB
    Shape (742824,) (4320,)
    Dask graph 172 chunks in 4 graph layers
    Data type float32 numpy.ndarray
    742824 1
    • entireAtmosphere
      ()
      float32
      ...
      long_name :
      original GRIB coordinate for key: level(entireAtmosphere)
      units :
      1
      [1 values with dtype=float32]
    • latitude
      ()
      float64
      52.5
      long_name :
      latitude
      standard_name :
      latitude
      stored_direction :
      decreasing
      units :
      degrees_north
      array(52.5)
    • longitude
      ()
      float64
      13.5
      long_name :
      longitude
      standard_name :
      longitude
      units :
      degrees_east
      array(13.5)
    • number
      ()
      int64
      ...
      long_name :
      ensemble member numerical id
      standard_name :
      realization
      units :
      1
      [1 values with dtype=int64]
    • surface
      ()
      float64
      ...
      long_name :
      original GRIB coordinate for key: level(surface)
      units :
      1
      [1 values with dtype=float64]
    • valid_time
      (valid_time)
      datetime64[ns]
      1940-01-01 ... 2024-09-26T23:00:00
      array(['1940-01-01T00:00:00.000000000', '1940-01-01T01:00:00.000000000',
             '1940-01-01T02:00:00.000000000', ..., '2024-09-26T21:00:00.000000000',
             '2024-09-26T22:00:00.000000000', '2024-09-26T23:00:00.000000000'],
            dtype='datetime64[ns]')
    • valid_time
      PandasIndex
      PandasIndex(DatetimeIndex(['1940-01-01 00:00:00', '1940-01-01 01:00:00',
                     '1940-01-01 02:00:00', '1940-01-01 03:00:00',
                     '1940-01-01 04:00:00', '1940-01-01 05:00:00',
                     '1940-01-01 06:00:00', '1940-01-01 07:00:00',
                     '1940-01-01 08:00:00', '1940-01-01 09:00:00',
                     ...
                     '2024-09-26 14:00:00', '2024-09-26 15:00:00',
                     '2024-09-26 16:00:00', '2024-09-26 17:00:00',
                     '2024-09-26 18:00:00', '2024-09-26 19:00:00',
                     '2024-09-26 20:00:00', '2024-09-26 21:00:00',
                     '2024-09-26 22:00:00', '2024-09-26 23:00:00'],
                    dtype='datetime64[ns]', name='valid_time', length=742824, freq=None))
  • GRIB_NV :
    0
    GRIB_Nx :
    1440
    GRIB_Ny :
    721
    GRIB_cfName :
    unknown
    GRIB_cfVarName :
    t2m
    GRIB_dataType :
    an
    GRIB_gridDefinitionDescription :
    Latitude/Longitude Grid
    GRIB_gridType :
    regular_ll
    GRIB_iDirectionIncrementInDegrees :
    0.25
    GRIB_iScansNegatively :
    0
    GRIB_jDirectionIncrementInDegrees :
    0.25
    GRIB_jPointsAreConsecutive :
    0
    GRIB_jScansPositively :
    0
    GRIB_latitudeOfFirstGridPointInDegrees :
    90.0
    GRIB_latitudeOfLastGridPointInDegrees :
    -90.0
    GRIB_longitudeOfFirstGridPointInDegrees :
    0.0
    GRIB_longitudeOfLastGridPointInDegrees :
    359.75
    GRIB_missingValue :
    3.4028234663852886e+38
    GRIB_name :
    2 metre temperature
    GRIB_numberOfPoints :
    1038240
    GRIB_paramId :
    167
    GRIB_shortName :
    2t
    GRIB_stepType :
    instant
    GRIB_stepUnits :
    1
    GRIB_totalNumber :
    0
    GRIB_typeOfLevel :
    surface
    GRIB_units :
    K
    last_restart_dim_updated :
    742824
    long_name :
    2 metre temperature
    standard_name :
    unknown
    units :
    °C
In [17]:
costing.estimate_download_size(t2m, t2m_Berlin)
estimated_needed_chunks: 172
estimated_memory_size: 12.174 GB
estimated_download_size: 1.217 GB

This is already small enought to be computed:

In [18]:
%%time

t2m_Berlin_computed = t2m_Berlin.compute()
CPU times: user 32.5 s, sys: 18.9 s, total: 51.4 s
Wall time: 14.2 s

Now that the data is loaded in memory we can easily compute the climatology for the reference period 1991-2020:

In [19]:
t2m_Berlin_climatology_mean = t2m_Berlin_computed.sel(valid_time=slice("1991", "2020")).groupby("valid_time.month").mean(dim="valid_time")
t2m_Berlin_climatology_std = t2m_Berlin_computed.sel(valid_time=slice("1991", "2020")).groupby("valid_time.month").std(dim="valid_time")

We also compute the monthly means for the year 2023:

In [20]:
t2m_Berlin_2023_monthly_means = t2m_Berlin_computed.sel(valid_time="2023").resample(valid_time="1ME").mean(dim="valid_time")
t2m_Berlin_2023_monthly_means
Out[20]:
<xarray.DataArray 't2m' (valid_time: 12)> Size: 48B
array([ 4.1796923,  3.010704 ,  5.551641 ,  7.8618503, 13.801259 ,
       19.066559 , 19.860262 , 19.305855 , 18.504393 , 11.931021 ,
        5.609091 ,  3.6396573], dtype=float32)
Coordinates:
    entireAtmosphere  float32 4B 0.0
    latitude          float64 8B 52.5
    longitude         float64 8B 13.5
    number            int64 8B 0
    surface           float64 8B 0.0
  * valid_time        (valid_time) datetime64[ns] 96B 2023-01-31 ... 2023-12-31
Attributes: (12/31)
    GRIB_NV:                                  0
    GRIB_Nx:                                  1440
    GRIB_Ny:                                  721
    GRIB_cfName:                              unknown
    GRIB_cfVarName:                           t2m
    GRIB_dataType:                            an
    ...                                       ...
    GRIB_typeOfLevel:                         surface
    GRIB_units:                               K
    last_restart_dim_updated:                 742824
    long_name:                                2 metre temperature
    standard_name:                            unknown
    units:                                    °C
xarray.DataArray
't2m'
  • valid_time: 12
  • 4.18 3.011 5.552 7.862 13.8 19.07 19.86 19.31 18.5 11.93 5.609 3.64
    array([ 4.1796923,  3.010704 ,  5.551641 ,  7.8618503, 13.801259 ,
           19.066559 , 19.860262 , 19.305855 , 18.504393 , 11.931021 ,
            5.609091 ,  3.6396573], dtype=float32)
    • entireAtmosphere
      ()
      float32
      0.0
      long_name :
      original GRIB coordinate for key: level(entireAtmosphere)
      units :
      1
      array(0., dtype=float32)
    • latitude
      ()
      float64
      52.5
      long_name :
      latitude
      standard_name :
      latitude
      stored_direction :
      decreasing
      units :
      degrees_north
      array(52.5)
    • longitude
      ()
      float64
      13.5
      long_name :
      longitude
      standard_name :
      longitude
      units :
      degrees_east
      array(13.5)
    • number
      ()
      int64
      0
      long_name :
      ensemble member numerical id
      standard_name :
      realization
      units :
      1
      array(0)
    • surface
      ()
      float64
      0.0
      long_name :
      original GRIB coordinate for key: level(surface)
      units :
      1
      array(0.)
    • valid_time
      (valid_time)
      datetime64[ns]
      2023-01-31 ... 2023-12-31
      array(['2023-01-31T00:00:00.000000000', '2023-02-28T00:00:00.000000000',
             '2023-03-31T00:00:00.000000000', '2023-04-30T00:00:00.000000000',
             '2023-05-31T00:00:00.000000000', '2023-06-30T00:00:00.000000000',
             '2023-07-31T00:00:00.000000000', '2023-08-31T00:00:00.000000000',
             '2023-09-30T00:00:00.000000000', '2023-10-31T00:00:00.000000000',
             '2023-11-30T00:00:00.000000000', '2023-12-31T00:00:00.000000000'],
            dtype='datetime64[ns]')
    • valid_time
      PandasIndex
      PandasIndex(DatetimeIndex(['2023-01-31', '2023-02-28', '2023-03-31', '2023-04-30',
                     '2023-05-31', '2023-06-30', '2023-07-31', '2023-08-31',
                     '2023-09-30', '2023-10-31', '2023-11-30', '2023-12-31'],
                    dtype='datetime64[ns]', name='valid_time', freq='ME'))
  • GRIB_NV :
    0
    GRIB_Nx :
    1440
    GRIB_Ny :
    721
    GRIB_cfName :
    unknown
    GRIB_cfVarName :
    t2m
    GRIB_dataType :
    an
    GRIB_gridDefinitionDescription :
    Latitude/Longitude Grid
    GRIB_gridType :
    regular_ll
    GRIB_iDirectionIncrementInDegrees :
    0.25
    GRIB_iScansNegatively :
    0
    GRIB_jDirectionIncrementInDegrees :
    0.25
    GRIB_jPointsAreConsecutive :
    0
    GRIB_jScansPositively :
    0
    GRIB_latitudeOfFirstGridPointInDegrees :
    90.0
    GRIB_latitudeOfLastGridPointInDegrees :
    -90.0
    GRIB_longitudeOfFirstGridPointInDegrees :
    0.0
    GRIB_longitudeOfLastGridPointInDegrees :
    359.75
    GRIB_missingValue :
    3.4028234663852886e+38
    GRIB_name :
    2 metre temperature
    GRIB_numberOfPoints :
    1038240
    GRIB_paramId :
    167
    GRIB_shortName :
    2t
    GRIB_stepType :
    instant
    GRIB_stepUnits :
    1
    GRIB_totalNumber :
    0
    GRIB_typeOfLevel :
    surface
    GRIB_units :
    K
    last_restart_dim_updated :
    742824
    long_name :
    2 metre temperature
    standard_name :
    unknown
    units :
    °C

We can finally plot the climatology in Berlin for the 1991-2020 refrence period against the 2023 montly means:

In [21]:
plt.figure(figsize=(10, 5))
t2m_Berlin_climatology_mean.plot(label="Mean", color="#3498db")
plt.errorbar(
    t2m_Berlin_climatology_mean.month, 
    t2m_Berlin_climatology_mean, 
    yerr=t2m_Berlin_climatology_std, 
    fmt="o", 
    label="Standard Deviation",
    color="#a9a9a9"
)
for month in range (1, 11):
    t2m_point = t2m_Berlin_2023_monthly_means.sel(valid_time=t2m_Berlin_2023_monthly_means["valid_time.month"]==month)
    label = None
    if month == 1:
        label = "2023"
    plt.scatter(month, t2m_point, color="#ff6600", label=label)
plt.title("Surface Temperature climatology in Berlin (DE), 1991-2020")
plt.xticks(t2m_Berlin_climatology_mean.month)
plt.xlabel("Month")
plt.ylabel("Surface Temperature [°C]")
plt.legend()
plt.grid(alpha=0.3)
plt.show()
No description has been provided for this image