GEOHASH_ENCODE

Converts a pair of latitude and longitude coordinates into a Geohash-encoded string.

Analyze Syntax

func.geohash_encode(lon, lat)

Analyze Examples

func.geohash_encode(-5.60302734375, 42.593994140625)

┌─────────────────────────────────────────────────────────┐
 func.geohash_encode((- 5.60302734375), 42.593994140625) 
├─────────────────────────────────────────────────────────┤
 ezs42d000000                                            
└─────────────────────────────────────────────────────────┘

SQL Syntax

GEOHASH_ENCODE(lon, lat)

SQL Examples

SELECT GEOHASH_ENCODE(-5.60302734375, 42.593994140625);

┌────────────────────────────────────────────────────┐
 geohash_encode((- 5.60302734375), 42.593994140625) 
├────────────────────────────────────────────────────┤
 ezs42d000000                                       
└────────────────────────────────────────────────────┘
Last modified April 22, 2024 at 9:20 PM EST: updating h3 functions (5e2f42f)