Small library that integrates NASA's Common Metadata Repository (CMR) with pangeo-forge-recipes. The goal is to help make pangeo-forge recipes that use CMR for getting raw data.
You can install this from PyPI with pip install pangeo-forge-cmr
.
from pangeo_forge_recipes.recipes import XarrayZarrRecipe
from pangeo_forge_cmr import files_from_cmr
# Get the GPM IMERG Late Precipitation Daily data
shortname = 'GPM_3IMERGDL'
recipe = XarrayZarrRecipe( # We are making Zarr, could be something else too
files_from_cmr( # Provide a list of files by querying CMR
shortname,
nitems_per_file=1,
concat_dim='time', # Describe how the dataset is chunked
),
inputs_per_chunk=12,
)
Most of the CMR code was developed by Brianna Pagán in this PR