GEOHASH_DECODE
Converts a Geohash-encoded string into latitude/longitude coordinates.
Analyze Syntax
func.geohash_decode('<geohashed-string\>')
Analyze Examples
func.geohash_decode('ezs42')
┌─────────────────────────────────┐
│ func.geohash_decode('ezs42') │
├─────────────────────────────────┤
│ (-5.60302734375,42.60498046875) │
└─────────────────────────────────┘
SQL Syntax
GEOHASH_DECODE('<geohashed-string\>')
SQL Examples
SELECT GEOHASH_DECODE('ezs42');
┌─────────────────────────────────┐
│ geohash_decode('ezs42') │
├─────────────────────────────────┤
│ (-5.60302734375,42.60498046875) │
└─────────────────────────────────┘
Last modified April 22, 2024 at 9:20 PM EST: updating h3 functions (5e2f42f)