H3 Grids Explorer

A Web Tool for Exoploring H3 Grid Levels

What are H3 grids? Created by Uber Engineering, the H3 grid system divides the Earth’s surface into a hierarchical hexagon grid structure. Each hexagon is assigned a unique index based on its position in the hierarchy, allowing for efficient spatial indexing and querying.

{
level: 5
grid: "8529ab6bfffffff"
}

How does this compare to other geospatial grid indexing systems? The H3 docs website has several examples including comparisons to S2, Geohash, and Hexbins. In general, H3 grids offer an equal area system with reusable grid identifiers, all with an equal number of neighbors, making it useful for analyzing disparate geographic data.

When using H3 grids in a project, it is important to understand which grid hierarchy or level would be suitable for your analysis. Facing this question in a recent project, I created a simple tool for exploring H3 grid levels in an interactive web map. The tool adjusts the grid level as you zoom in and out, and allows you to ‘freeze’ the grid at a specific level. This allows you to explore how a specific H3 grid level would look over your geographic region of interest.

Newer Post
Finding Perpendicular lines with TurfJS
Older Post
Export GeoJSON from PostgreSQL using Beekeeper Studio

Related Posts