Skip to main content

OGC API DGGS

The OGC API – Discrete Global Grid Systems is an open standard from the Open Geospatial Consortium (OGC) for accessing, querying, and sharing data referenced to a DGGS.

What It Defines

The standard defines a family of REST API building blocks:

Building blockDescription
DGGSDescribe available grid reference systems
ZonesAccess individual cells (zones) and their data
Zone QuerySpatial and attribute queries over cells
Data RetrievalRetrieve data values for a cell or zone list

Requests identify cells by their native DGGS address (e.g. Z7 string for IGEO7) — no coordinate conversion needed by the client.

IGEO7 as a DGGS Reference System

Within the OGC API DGGS framework, IGEO7 is identified as:

DGGS Reference System: ISEA7H_Z7
Zone address format: Z7_STRING

A request for data at a specific IGEO7 cell looks like:

GET /dggs/IGEO7/zones/0900264253

pydggsapi: IGEO7-Native Implementation

pydggsapi implements OGC API DGGS with IGEO7 as a first-class supported grid system. It is the reference implementation for IGEO7 OGC API DGGS access.

Further Reading