Data sources

Todo

List the built-in ones. Explain fields.to_xarray() and obs.to_pandas(). Explain data[0]

A Data Source is an object created using cml.load_source(name, *args, **kwargs) with the appropriate name and arguments, which provides data and additional functionalities.

>>> import climetlab as cml
>>> source = cml.load_source(name, "argument1", "argument2", ...)
  • The name is a string that uniquely identifies the source type.

  • The arguments are used to specify the data location to access the data. They can include additional parameters to access the data.

  • The additional functionalities include caching, plotting and interaction with other data.

CliMetLab has built-in sources and some additional sources can be made available as plugins.

Built-in data sources:

  • file source: Load data from a file.

  • url source: Load data from a URL.

  • url-pattern source: Load data from list of URL created from a pattern.

  • cds source: Load data from the Copernicus Data Store (CDS).

  • mars source: Load data from the Meteorological Archival and Retrieval System at ECMWF (MARS).

  • multi source: Aggregate multiple sources.

  • zenodo source (experimental): Load data from Zenodo.

  • indexed_urls source (experimental): Load data from GRIB urls with partial download.

The data source object provides methods to access and use its data, such as to_xarray() or to_pandas() or other. Depending on the data, some of these methods are or are not available.

>>> source.to_xarray() # for gridded data
>>> source.to_pandas() # for non-gridded data
>>> source.to_numpy() # Experimental
>>> source.to_tfrecord() # Experimental

Todo

add here more details about these methods.


file

The simplest data source is the file source that accesses a local file.

>>> import climetlab as cml
>>> data = cml.load_source("file", "path/to/file")
>>> data.to_xarray() # for gridded data
>>> data.to_pandas() # for non-gridded data

CliMetLab will inspect the content of the file to check for any of the supported data formats listed below:

Examples

>>> import climetlab as cml
>>> data = cml.load_source("file", "examples/test.grib")
>>> data.to_xarray()
<xarray.Dataset>
Dimensions:     (number: 1, time: 1, step: 1, surface: 1, latitude: 11, longitude: 19)
Coordinates:
  * number      (number) int64 0
  * time        (time) datetime64[ns] 2020-05-13T12:00:00
  * step        (step) timedelta64[ns] 00:00:00
  * surface     (surface) float64 0.0
  * latitude    (latitude) float64 73.0 69.0 65.0 61.0 ... 45.0 41.0 37.0 33.0
  * longitude   (longitude) float64 -27.0 -23.0 -19.0 -15.0 ... 37.0 41.0 45.0
    valid_time  (time, step) datetime64[ns] ...
Data variables:
    t2m         (number, time, step, surface, latitude, longitude) float32 ...
    msl         (number, time, step, surface, latitude, longitude) float32 ...
Attributes:
    GRIB_edition:            1
    GRIB_centre:             ecmf
    GRIB_centreDescription:  European Centre for Medium-Range Weather Forecasts
    GRIB_subCentre:          0
    Conventions:             CF-1.7
    institution:             European Centre for Medium-Range Weather Forecasts
    history:                 2022-02-08T10:50 GRIB to CDM+CF via cfgrib-0.9.1...
>>> import climetlab as cml
>>> data = cml.load_source("file", "examples/test.nc")
>>> data.to_xarray()
<xarray.Dataset>
Dimensions:     (number: 1, time: 1, step: 1, surface: 1, latitude: 11, longitude: 19)
Coordinates:
  * number      (number) int64 0
  * time        (time) datetime64[ns] 2020-05-13T12:00:00
  * step        (step) timedelta64[ns] 00:00:00
  * surface     (surface) float64 0.0
  * latitude    (latitude) float64 73.0 69.0 65.0 61.0 ... 45.0 41.0 37.0 33.0
  * longitude   (longitude) float64 -27.0 -23.0 -19.0 -15.0 ... 37.0 41.0 45.0
    valid_time  (time, step) datetime64[ns] ...
Data variables:
    t2m         (number, time, step, surface, latitude, longitude) float32 ...
    msl         (number, time, step, surface, latitude, longitude) float32 ...
Attributes:
    GRIB_edition:            1
    GRIB_centre:             ecmf
    GRIB_centreDescription:  European Centre for Medium-Range Weather Forecasts
    GRIB_subCentre:          0
    Conventions:             CF-1.7
    institution:             European Centre for Medium-Range Weather Forecasts
    history:                 2022-02-08T10:50 GRIB to CDM+CF via cfgrib-0.9.1...

url

The url data source will download the data from the address specified and store it in the cache. The supported data formats are the same as for the file data source above.

>>> import climetlab as cml
>>> data = cml.load_source("url", "https://www.example.com/data.csv")

When given an archive format such as .zip, .tar, .tar.gz, etc, CliMetLab will attempt to open it and extract any usable file. If you want to keep the downloaded file as is, pass unpack=False to the method.

>>> import climetlab as cml
>>> data = cml.load_source("url",
                           "https://www.example.com/data.tgz",
                           unpack=False)

url-pattern

The url-pattern data source will build urls from the pattern specified, using the other arguments to fill the pattern. Each argument can be a list to iterate and create the cartesian product of all lists. Then each url is downloaded and stored it in the cache. The supported download the data from the address data formats are the same as for the file and url data sources above.

import climetlab as cml

data = cml.load_source("url-pattern",
     "https://www.example.com/data-{foo}-{bar}-{qux}.csv",
     foo = [1,2,3],
     bar = ["a", "b"],
     qux = "unique"
     )

The code above will download and process the data from the six following urls:

  1. https://www.example.com/data-1-a-unique.csv

  2. https://www.example.com/data-2-a-unique.csv

  3. https://www.example.com/data-3-a-unique.csv

  4. https://www.example.com/data-1-b-unique.csv

  5. https://www.example.com/data-2-b-unique.csv

  6. https://www.example.com/data-3-b-unique.csv

If the urls are pointing to archive format, the data will be unpacked by url-pattern according to the unpack argument, similarly to what the source url does (see above the url source).

Once the data have been properly downloaded [and unpacked] and cached. It can can be accessed using to_xarray() or to_pandas().

To provide a unique xarray.Dataset (or pandas.DataFrame), the different datasets are merged. The default merger strategy for field data is to use xarray.open_mfdataset from xarray. This can be changed by providing a custom merger to the url-pattern source. See merging sources

cds

This data source access the Copernicus Climate Data Store (CDS), using the cdsapi package. A typical cdsapi request has the following format:

import cdsapi

client = cdsapi.Client()

client.retrieve("dataset-name",
                {"parameter1": "value1",
                 "parameter2": "value2",
                 ...})

to perform the same operation with CliMetLab, use the following code:

import climetlab as cml

data = cml.load_source("cds",
                       "dataset-name",
                       {"parameter1": "value1",
                        "parameter2": "value2",
                        ...})

Data downloaded from the CDS is stored in the the cache.

To access data from the CDS, you will need to register and retrieve an access token. The process is described here.

For more information, see the CDS knowledge base.

mars

Meteorological Archival and Retrieval System (MARS)

from ecmwfapi import ECMWFDataServer

server = ECMWFDataServer()

client.retrieve({
    "parameter1": "value1",
    "parameter2": "value2",
...})

to perform the same operation with CliMetLab, use the following code:

import climetlab as cml

data = cml.load_source("mars",
                       {"parameter1": "value1",
                        "parameter2": "value2",
                        ...})

Data downloaded from MARS is stored in the the cache.

multi

>>> ds = load_source( "multi", source1, source2, ...)

Todo

add documentation on multi-source.

zenodo

Experimental. Access data in zenodo.

indexed_urls

>>> ds = load_source( "indexed-urls", index, request), source2, ...)

Experimental. See GRIB support.