geo_point_to_geohash()

Learn how to use the geo_point_to_geohash() function to calculate the geohash string value of a geographic location.

Calculates the geohash string value of a geographic location.

Read more about geohash.

Syntax

geo_point_to_geohash(longitude, latitude,[ accuracy ])

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].
accuracyintDefines the requested accuracy. Supported values are in the range [1, 18]. If unspecified, the default value 5 is used.

Returns

The geohash string value of a given geographic location with requested accuracy length. If the coordinate or accuracy is invalid, the query produces an empty result.

Geohash rectangular area coverage per accuracy value:

AccuracyWidthHeight
15000 km5000 km
21250 km625 km
3156.25 km156.25 km
439.06 km19.53 km
54.88 km4.88 km
61.22 km0.61 km
7152.59 m152.59 m
838.15 m19.07 m
94.77 m4.77 m
101.19 m0.59 m
11149.01 mm149.01 mm
1237.25 mm18.63 mm
134.66 mm4.66 mm
141.16 mm0.58 mm
15145.52 μ145.52 μ
1636.28 μ18.19 μ
174.55 μ4.55 μ
181.14 μ0.57 μ

See also geo_point_to_s2cell(), geo_point_to_h3cell().

Examples

The following example finds US storm events aggregated by geohash.

StormEvents
| project BeginLon, BeginLat
| summarize by hash=geo_point_to_geohash(BeginLon, BeginLat, 3)
| project geo_geohash_to_central_point(hash)
| render scatterchart with (kind=map)

Output

Screenshot of US storm events grouped by geohash.

The following example calculates and returns the geohash string value.

print geohash = geo_point_to_geohash(-80.195829, 25.802215, 8)

Output

geohash
dhwfz15h

The following example finds groups of coordinates. Every pair of coordinates in the group resides in a rectangular area of 4.88 km by 4.88 km.

datatable(location_id:string, longitude:real, latitude:real)
[
  "A", double(-122.303404), 47.570482,
  "B", double(-122.304745), 47.567052,
  "C", double(-122.278156), 47.566936,
]
| summarize count = count(),                                          // items per group count
            locations = make_list(location_id)                        // items in the group
            by geohash = geo_point_to_geohash(longitude, latitude)    // geohash of the group

Output

geohashcountlocations
c23n82[“A”, “B”]
c23n91[“C”]

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

print geohash = geo_point_to_geohash(200,1,8)

Output

geohash

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

print geohash = geo_point_to_geohash(1,1,int(null))

Output

geohash