cedadev / cmip6-object-store

CMIP6 Object Store Library
BSD 3-Clause "New" or "Revised" License
4 stars 4 forks source link

cmip6-object-store

Introduction

Pypi

Travis

Documentation

The CMIP6 Object Store Library holds a collection of different sub-packages for dealing with CMIP6 data in (the CEDA Caringo) Object Store:

Package: cmip6_zarr

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"
}

Generate batches of CMIP6 datasets to process

python cmip6_object_store/cmip6_zarr/cli.py create-batches

Run batch 1 on the local server

python cmip6_object_store/cmip6_zarr/cli.py run --project cmip6 --run-mode local --batches 1

Run batches 1-100 on LOTUS

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.

Run all batches on LOTUS

python cmip6_object_store/cmip6_zarr/cli.py run --project cmip6 --run-mode lotus

Show all errors detected when creating Zarr files

python cmip6_object_store/cmip6_zarr/cli.py show-errors -p cmip6

Show a count of all the datasets converted so far

python cmip6_object_store/cmip6_zarr/cli.py list -p cmip6 --count-only

Verify some of the Zarr files already processed

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.

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.