geo_point_to_s2cell()

Learn how to use the geo_point_to_s2cell() function to calculate the S2 cell token string value of a geographic location.

Calculates the S2 cell token string value of a geographic location.

Read more about S2 cell hierarchy. S2 cell can be a useful geospatial clustering tool. An S2 cell is a cell on a spherical surface and it has geodesic edges. S2 cells are part of a hierarchy dividing up the Earth’s surface. They have a maximum of 31 levels, ranging from zero to 30, which define the number of times a cell is subdivided. Levels range from the largest coverage on level zero with area coverage of 85,011,012.19km², to the lowest coverage of 0.44 cm² at level 30. As S2 cells are subdivided at higher levels, the cell center is preserved well. Two geographic locations can be very close to each other but they have different S2 cell tokens.

Read more about S2 cell hierarchy.

Syntax

geo_point_to_s2cell(longitude, latitude, [ level ])

Parameters

NameTypeRequiredDescription
longitudereal✔️Geospatial coordinate, longitude value in degrees. Valid value is a real number and in the range [-180, +180].
latitudereal✔️Geospatial coordinate, latitude value in degrees. Valid value is a real number and in the range [-90, +90].
levelintDefines the requested cell level. Supported values are in the range [0, 30]. If unspecified, the default value 11 is used.

Returns

The S2 cell token string value of a given geographic location. If the coordinates or levels are invalid, the query produces an empty result.

S2 cell approximate area coverage per level value

For every level, the size of the S2 cell is similar but not exactly equal. Nearby cell sizes tend to be more equal.

LevelMinimum random cell edge length (UK)Maximum random cell edge length (US)
07842 km7842 km
13921 km5004 km
21825 km2489 km
3840 km1310 km
4432 km636 km
5210 km315 km
6108 km156 km
754 km78 km
827 km39 km
914 km20 km
107 km10 km
113 km5 km
121699 m2 km
13850 m1225 m
14425 m613 m
15212 m306 m
16106 m153 m
1753 m77 m
1827 m38 m
1913 m19 m
207 m10 m
213 m5 m
22166 cm2 m
2383 cm120 cm
2441 cm60 cm
2521 cm30 cm
2610 cm15 cm
275 cm7 cm
282 cm4 cm
2912 mm18 mm
306 mm9 mm

The table source can be found in this S2 Cell statistical resource.

Examples

US storm events aggregated by S2 cell

The following example finds US storm events aggregated by S2 cells.

StormEvents
| project BeginLon, BeginLat
| summarize by hash=geo_point_to_s2cell(BeginLon, BeginLat, 5)
| project geo_s2cell_to_central_point(hash)
| render scatterchart with (kind=map)

Output

Screenshot of a map rendering of US storm events aggregated by S2 cell.

The following example calculates the S2 cell ID.

print s2cell = geo_point_to_s2cell(-80.195829, 25.802215, 8)

Output

s2cell
88d9b

Find a group of coordinates

The following example finds groups of coordinates. Every pair of coordinates in the group resides in the S2 cell with a maximum area of 1632.45 km².

datatable(location_id:string, longitude:real, latitude:real)
[
  "A", 10.1234, 53,
  "B", 10.3579, 53,
  "C", 10.6842, 53,
]
| summarize count = count(),                                        // items per group count
            locations = make_list(location_id)                      // items in the group
            by s2cell = geo_point_to_s2cell(longitude, latitude, 8) // s2 cell of the group

Output

s2cellcountlocations
47b1d2[“A”,“B”]
47ae31[“C”]

Empty results

The following example produces an empty result because of the invalid coordinate input.

print s2cell = geo_point_to_s2cell(300,1,8)

Output

s2cell

The following example produces an empty result because of the invalid level input.

print s2cell = geo_point_to_s2cell(1,1,35)

Output

s2cell

The following example produces an empty result because of the invalid level input.

print s2cell = geo_point_to_s2cell(1,1,int(null))

Output

s2cell