This data store allows xcube to read data via OGC API - Coverages.
xcube-ogccov is an xcube data store which allows xcube to read data from a server implementing the OGC API - Coverages API. The data store maps its data opener parameters to OGC API parameters, fetches a NetCDF of the requested coverage, and makes it available to the caller as an xcube dataset.
At the time of writing, OGC API - Coverages is still in a draft state, so compatibility with all implementing servers cannot be guaranteed. xcube-ogccov has mainly been tested with xcube’s own OGC API - Coverages server implementation.
- Clone the github repository
- Set the current directory to the root directory of the repository
- Use conda or an equivalent tool (we recommend mamba) to create a new Python environment with the required dependencies
- Run the
setup.py
script to install the package
git clone https://github.com/dcs4cop/xcube-ogccov.git
cd xcube-ogccov
mamba env create
mamba activate xcube-ogccov
python setup.py install
TODO