The CMIP6 Object Store Library holds a collection of different sub-packages for dealing with CMIP6 data in (the CEDA Caringo) Object Store:
cmip6_object_store.cmip6_zarr
: a library for batch-converting archived CMIP6 netCDF files to Zarr in Caringo.cmip6_object_store.cmip6_ncrg
: a library for experimenting with the use of HTTP Range Gets to netCDF files in Caringo.cmip6_object_store.cmip6_s3nc
: a library for experimenting with writing S3-netCDF files to Caringo.The cmip6_zarr
package can be used as follows:
PRE-REQUISITE: Set up your caringo credentials as follows:
$ cat ~/.credentials/caringo-credentials.json
{
"endpoint_url": "http://cmip6-zarr-o.s3.jc.rl.ac.uk/",
"secret": "SECRET FROM CARINGO DASHBOARD",
"token": "TOKEN FROM CARINGO DASHBOARD"
}
python cmip6_object_store/cmip6_zarr/cli.py create-batches
python cmip6_object_store/cmip6_zarr/cli.py run --project cmip6 --run-mode local --batches 1
python cmip6_object_store/cmip6_zarr/cli.py run --project cmip6 --run-mode lotus --batches 1-100
NOTE: It will not re-run batch 1 if you have already run it.
python cmip6_object_store/cmip6_zarr/cli.py run --project cmip6 --run-mode lotus
python cmip6_object_store/cmip6_zarr/cli.py show-errors -p cmip6
python cmip6_object_store/cmip6_zarr/cli.py list -p cmip6 --count-only
python cmip6_object_store/cmip6_zarr/cli.py verify -p cmip6
This will verify up to 5 datasets by comparing the NetCDF to the Zarr versions.
It will keep track of all those verified in the verify_catalogue
as
specified in the config file.
This package was created with Cookiecutter
and the audreyr/cookiecutter-pypackage
project template.