Browseable Online Website: https://pangeo-data.github.io/pangeo-datastore/
This repository is where Pangeo's official cloud data catalog lives. This catalog is an Intake catalog. Most of the data is stored in Zarr format and meant to be opened with Xarray.
The master intake catalog URL is
https://raw.githubusercontent.com/pangeo-data/pangeo-datastore/master/intake-catalogs/master.yaml
Using this catalog requires package versions that are quite recent as of April, 2019.
To open the catalog and load a dataset from python, you can run the following code
import intake
cat_url = 'https://raw.githubusercontent.com/pangeo-data/pangeo-datastore/master/intake-catalogs/master.yaml'
cat = intake.Catalog(cat_url)
ds = cat.atmosphere.gmet_v1.to_dask()To explore the whole catalog, you can try
cat.walk(depth=5)To suggest adding a new dataset, please open an issue.