2026-09-01 –, Ran1
We present Z7 Explorer, a web application that computes IGEO7/Z7 grid indexes entirely client-side using a pure JavaScript port of DGGAL's ISEA projection engine. We demonstrate why IGEO7 — an equal-area, pole-seamless hexagonal DGGS — addresses fundamental limitations of H3 and conventional coordinate systems.
Hexagonal grids have gained traction as a spatial indexing primitive across industry. H3, developed by Uber for ride pricing optimization, is now widely adopted in logistics, telecommunications, and platforms such as Snowflake, BigQuery, DuckDB, and CARTO. Yet H3 carries fundamental trade-offs. Its gnomonic projection is not equal-area: the area ratio between the largest and smallest hexagon at the same resolution grows from 1.2× at res 0 to nearly 2× at res 5 and above [1], with cell sizes varying by up to ±50% across the globe [4] — the distortion worsens with increasing resolution, precisely where spatial consistency matters most. Its 64-bit index spends 19 bits on metadata, leaving only 45 bits for spatial addressing, while Z7 implements a full 64-bit index pushing its maximum resolution to 20 and 6cm², which is 1,500× finer than H3 at max resolution of 15.
The coordinate systems underpinning most geospatial workflows introduce further artifacts. WGS84 (EPSG:4326) suffers from polar compression and a discontinuity at the ±180° antimeridian that splits geometries spanning the Pacific. Web Mercator (EPSG:3857) inflates areas dramatically at high latitudes, excludes the poles beyond ±85.06°, and inherits the same antimeridian seam.
IGEO7 sidesteps all of these problems [4]. The ISEA projection [2] maps the globe onto an icosahedron, guaranteeing equal-area cells at every resolution with no polar singularity and no antimeridian discontinuity. The Z7 indexing scheme devotes all 64 bits to spatial hierarchy — a 4-bit base cell plus 20 three-bit direction digits — encoding resolution implicitly with no wasted bits.
Despite these advantages, IGEO7 adoption has been limited by tooling: computing Z7 indexes requires the full ISEA forward projection, historically available only through native C libraries (DGGAL [3], DGGRID). To lower this barrier, we ported DGGAL's ISEA projection engine and aperture-7 quantization to pure JavaScript, enabling Z7 lookups entirely in the browser.
Z7 Explorer is the resulting open-source web application (Vue 3, D3.js). It provides interactive coordinate-to-Z7 lookup, resolution navigation (0–20), a 64-bit index visualizer, cell ID search, and vector-tiled basemap rendering — all computed client-side in a Web Worker with 100% accuracy against DGGAL reference data. By making IGEO7 accessible to a broader public, we intend to give developers and researchers a practical entry point into an equal-area DGGS that addresses H3's core limitations.
Live demo: https://z7.terraops.org
[1] Uber, "Tables of Cell Statistics Across Resolutions," H3 Docs. https://h3geo.org/docs/core-library/restable/
[2] Snyder, "An Equal-Area Map Projection for Polyhedral Globes," Cartographica, 29(1), 1992.
[3] Ecere, "DGGAL — Discrete Global Grid Abstraction Library." https://github.com/ecere/dggal
[4] Kmoch et al., "IGEO7: A new hierarchically indexed hexagonal equal-area DGGS," AGILE GIScience Ser., 6, 32, 2025.
[1] Uber Technologies, "Tables of Cell Statistics Across Resolutions," H3 Documentation. https://h3geo.org/docs/core-library/restable/
[2] J. P. Snyder, "An Equal-Area Map Projection for Polyhedral Globes," Cartographica, vol. 29, no. 1, pp. 10–21, 1992.
[3] Ecere Corporation, "DGGAL — Discrete Global Grid Abstraction Library." https://github.com/ecere/dggal
[4] A. Kmoch, K. Sahr, W. T. Chan, and E. Uuemaa, "IGEO7: A new hierarchically indexed hexagonal equal-area discrete global grid system," AGILE GIScience Ser., 6, 32, 2025.
DGGAL, the Discrete Global Grid Abstraction Library (https://github.com/ecere/dggal)
I make my conference contribution available under the CC BY 4.0 license. The conference contribution comprises the abstract, the text contribution for the conference proceedings, the presentation materials as well as the video recording and live transmission of the presentation: