GEOHASH_DECODE (Lakehouse v1)
Converts a Geohash-encoded string into latitude/longitude coordinates.
Analyze Syntax
Section titled “Analyze Syntax”func.geohash_decode('<geohashed-string\>')Analyze Examples
Section titled “Analyze Examples”func.geohash_decode('ezs42')
┌─────────────────────────────────┐│ func.geohash_decode('ezs42') │├─────────────────────────────────┤│ (-5.60302734375,42.60498046875) │└─────────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”GEOHASH_DECODE('<geohashed-string\>')SQL Examples
Section titled “SQL Examples”SELECT GEOHASH_DECODE('ezs42');
┌─────────────────────────────────┐│ geohash_decode('ezs42') │├─────────────────────────────────┤│ (-5.60302734375,42.60498046875) │└─────────────────────────────────┘