TCO data#

This website serves as a starting point for accessing data from the Tropical Cloud Observations Group at the Max-Planck-Institut für Meteorologie in Hamburg. At this place, we cover data from our permanent observation site, the Barbados Cloud Observatory (BCO), as well as data acquired during various field campaigns.

using the data#

We generally make data available through an intake catalog, in a way which enables anyone to open our datasets directly (i.e. without prior subsetting and downloading). To get a quick glimpse of how this may look like, here’s a Python example to get the January 2020 surface temperature at the BCO:

import intake
cat = intake.open_catalog("https://tcodata.mpimet.mpg.de/catalog.yaml")
wxt = cat.BCO.surfacemet_wxt_v1.to_dask()
wxt["T"].sel(time="2020-01").plot(figsize=(12, 4));
_images/082c8931ecd2eb1e6053565d0e8522228220d9d86d290271d035c2e2414f7c8d.png

So in general, the steps to access the data are:

  • open the tcodata catalog

  • select and get a dataset

  • do something with the dataset

Please have a look at the description of the individual instruments and datasets to find out which data is available in our catalog.

requirements#

For the code to actually work on your machine, a few Python packages are required, which you could install e.g. using pip:

python -m pip install 'intake<2' requests aiohttp intake-xarray

This should be enough to access our datasets, but you might of course want to use further packages for data processing and presentation. In this documentation, we use e.g. matplotlib to create example plots.

Full requirements for tcodata documentation.

For reference, here’s the complete list of requirements to build the entire tcodata documentation including data access and plots:

jupyter-book
jupyter-cache
matplotlib
numpy

xarray
intake<2
intake-xarray
zarr
fsspec
requests
aiohttp

more information#