Provides a dataset convention and example datasets for the AVL project.
Requires a conda Python environment with latest versions of
pyproj
s3fs
(optional)xarray
zarr
$ python setup.py develop
Verify a dataset is compliant to AVL convention.
CLI:
$ avl verify <path or url>
Python API:
import s3fs
from avl.verify import verify_dataset
s3 = s3fs.S3FileSystem(anon=True)
store = s3fs.S3Map('agriculture-vlab-data-staging/avl/l3b/2020/bel/S2_L3B_LAI_31UFS.zarr', s3=s3)
dataset = xr.open_zarr(store)
issues = verify_dataset(dataset)
Generate a set of AVL sample datasets:
CLI:
$ avl new