Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

covjson/specification

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

CoverageJSON

NOTE: All further development continues in https://github.com/opengeospatial/CoverageJSON within the OGC. This repository will remain for future reference only.

What is CoverageJSON?

CoverageJSON is a data format for publishing coverage data to the web in a web-friendly way.

What is a coverage?

A coverage represents one or more spatio-temporal phenomenon. Some examples are:

  • measurements from fixed weather stations over time (time series coverage)
  • GPX sensor data like heart rate from a running tour (trajectory coverage)
  • satellite images of different wavelengths (grid coverage)
  • soil moisture measurements every 10cm from 0cm to 100cm depth at a fixed location (profile coverage)
  • single average water salinity for a given area (polygon coverage)
  • single water salinity measurement at a fixed location (point coverage)
  • ...

Why develop a new data format?

Consuming coverage data and visualizing it interactively in web clients is still not straight-forward. One reason is that existing formats are either unsuitable for the web (like netCDF files) or hard to interpret independently due to missing standard structures and metadata (e.g. the OPeNDAP protocol).

Increasingly, GeoJSON is used in various ways to attach coverage-like data to simple geometries (mostly points or polygons). However, such attempts often seem to bend the semantics of GeoJSON (using properties to attach data to inner geometry points, even though the geometry is meant as a single entity) and face the limits of it quite quickly (no grid geometry, no time coordinates, bad efficiency for big coverage domains).

With the advent of linked data, some measurement data is directly represented as RDF triples, typically accessible via a (Geo)SPARQL endpoint. While that approach is perfectly fine, there is still the question on how to represent big coverages (like grids) as triples, the current consensus being that it doesn't make much sense to do that. Another challenge is the flexibility of RDF and a missing standard vocabulary for coverage data, making it hard to write generic clients for it.

For all these reasons, the CoverageJSON format was developed which tries to fill these gaps, while being linked-data friendly, space-efficient, and easy to produce and consume.

How can I use CoverageJSON?

While the format is still in development and changing, a range of libraries are developed for reading and visualizing CoverageJSON documents:

However, as the format is so simple, it is easy to prototype an application from scratch. If you think the format is not simple enough, please open an issue and explain why you feel that way - it's a priority for us to make it simple!

Alignment to existing standards

We consider a conceptual alignment with the Coverage Implementation Schema (successor of "GMLCOV") important and follow its development closely.

Acknowledgments

This specification is developed within the MELODIES project. The format was inspired by an initial idea by Joan Masó of CREAF who also coined the name CoverageJSON.