OGC API Coverages for Open Data Cube

Once an Open Data Cube implementation is set up on a computer, accessing the data typically requires running Python or R scripts on that same machine. This can pose a challenge for users who either lack the technical skills to write such scripts or do not have direct access to the server where the Open Data Cube instance is hosted. 

In the AD4GD project, we developed a front-end implementation of the OGC API – Coverages in Python, tailored for integration with the Open Data Cube. Python code that implements a CGI in python that allows accessing the data of a Data Cube. OF A This interface acts as a translator between OGC API requests and the underlying Python code, which is executed on the server to retrieve and return the requested data in a standardized way. 

The developement started as a WCS and WMS implementation, a simplified version of GetMap and GetCoverage operations, but evolved to support OGC APIs. 

What is a coverage?

Acording to the W3C/OGC Spatial Data on the Web Best Practice, a coverage is a function that describe characteristics of real-world phenomena that vary over space and/or time. Typical examples are temperature, elevation and precipitation. A coverage is typically represented as a data structure containing a set of such values, each associated with one of the positions in a spatial, temporal or spatiotemporal domain. 

What is Open Data Cube?

The Open Data Cube is a piece of software designed to store multidimensional data, meaning it can hold values across multiple spatial dimensions, as well as temporal, elevation, temperature, or other related properties simultaneously.  

What is OGC API – Coverages?

OGC API – Coverages is an specification that defines the fundamental API building blocks for interacting with coverages.

Component led by:

MIT License

Copyright (c) 2023 Joan Masó

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.