Skip to main content

Resolution Table

IGEO7 has 21 resolution levels (0–20). At every resolution, the grid contains exactly 12 pentagons (at icosahedron vertices) and all remaining cells are hexagons.

CLS (Characteristic Length Scale) is the diameter of a circle with the same area as a cell — the most intuitive way to relate IGEO7 resolutions to traditional raster pixel sizes.

Full Table

ResTotal CellsHexagonsPentagonsArea (km²)Area (m²)CLS (km)CLS (m)
01201251,006,562.17251,006,562,172,408.98,199.5008,199,500.4
17260127,286,651.7397,286,651,738,915.63,053.2233,053,223.2
2492480121,040,950.2481,040,950,248,416.51,151.6431,151,643.0
33,4323,42012148,707.178148,707,178,345.2435.153435,153.1
424,01224,0001221,243.88321,243,882,620.7164.466164,465.6
5168,072168,060123,034.8403,034,840,374.462.16262,161.8
61,176,4921,176,48012433.549433,548,624.923.49523,494.9
78,235,4328,235,4201261.93661,935,517.88.8808,880.2
857,648,01257,648,000128.8488,847,931.13.3563,356.4
9403,536,072403,536,060121.2641,263,990.21.2691,268.6
102,824,752,4922,824,752,480120.181180,570.00.479479.5
1119,773,267,43219,773,267,420120.02625,795.70.181181.2
12138,412,872,012138,412,872,000120.0043,685.10.06868.5
13968,890,104,072968,890,104,06012~0526.4~0.02625.9
146,782,230,728,4926,782,230,728,48012~075.2~0.0109.8
1547,475,615,099,43247,475,615,099,42012~010.7~0.0043.7
16332,329,305,696,012332,329,305,696,00012~01.5~0.0011.4
172,326,305,139,872,0722,326,305,139,872,06012~00.2~00.528
1816,284,135,979,104,49212~0~0.032~00.200
19113,988,951,853,731,43212~0~0.005~00.076
20797,922,662,976,120,01212~0~0.001~00.029
Area values for resolutions 18–20

Cell areas at resolutions 18–20 are below IEEE 754 double precision representation in km². The m² values shown are approximations. CLS values from the authoritative IGEO7.jl implementation.

Landmark Resolutions

These resolutions are particularly useful reference points:

ResolutionCLSComparable to
5~62 kmCountry-level analysis, climate zones
7~8.9 kmUrban areas, municipalities
8~3.4 kmNeighbourhoods, large parks
9~1.3 km"Kilometre grid" — comparable to 1 km raster
10~480 mStreets, large buildings
11~181 mIndividual fields, city blocks
12~68 mParcels, small fields
14~9.8 mComparable to 10 m Sentinel-2 resolution
15~3.7 mHigh-resolution aerial imagery
17~53 cmSub-metre precision
18~20 cmCentimetre-scale (LiDAR point clouds)
20~2.9 cmEngineering precision

Cell Count Formula

The total number of cells at resolution rr is:

c(r)=2+(7r+17)×107c(r) = 2 + \frac{(7^{r+1} - 7) \times 10}{7}

Equivalently: start with 12 cells at resolution 0. At each subsequent resolution, every hexagon subdivides into 7 children. Pentagons also subdivide but only into 6 actual new children (they share one child with neighbours).

At every resolution:

  • 12 pentagons (centred on the 12 icosahedron vertices)
  • All other cells are hexagons

Comparison with H3

PropertyIGEO7H3
Resolution levels21 (0–20)16 (0–15)
Finest resolution CLS~2.9 cm (res 20)~0.9 m² area (res 15)
Coarsest resolution cells12 (res 0)122 (res 0)
Cell area variation0% (equal area)±50%

IGEO7 has 5 more resolution levels than H3 because it starts from a pure icosahedral base (12 pentagonal base cells) rather than H3's mixed aperture 4→3 pre-subdivision (122 base cells).

Generate the stats with dggrid4py

from dggrid4py import DGGRIDv7
import os

dggrid = DGGRIDv7(
executable=os.environ.get("DGGRID_PATH", "/usr/local/bin/dggrid"),
working_dir="/tmp",
silent=True,
)

df = dggrid.grid_stats_table("IGEO7", 20)
print(df.to_string())