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 …
geohashes_in_box(…) → StringKind · scalar
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 geohashes as a JSON string array.
Part of the Geospatial family.
geohash_encode
Encodes latitude/longitude into a geohash string at a specified precision. Use argument order `(latitude, longitude, [precision])` with precision defaulting to 12.
great_circle_angle
Computes the central angle (in radians) between two geographic points on a sphere. Multiply by Earth radius to convert the angle to linear distance.