geohash_encode
Encodes latitude/longitude into a geohash string at a specified precision. Use argument order `(latitude, longitude, [precision])` with precision defaulting to 12.
geohash_encode(…) → StringKind · scalar
Encodes latitude/longitude into a geohash string at a specified precision. Use argument order (latitude, longitude, [precision]) with precision defaulting to 12.
Part of the Geospatial family.
geohash_decode
Decodes a geohash string into its approximate center coordinates and precision. Returns a JSON object string: `{\"latitude\":...,\"longitude\":...,\"precision\":...}`.
geohashes_in_box
Returns a deterministic set of geohash cells that cover a latitude/longitude bounding box at the requested precision. The V1 strategy samples a 3x3 grid (corners, edges, center) and returns unique …