ST_GEOMFROMGEOHASH (Lakehouse v1)
Returns a GEOMETRY object for the polygon that represents the boundaries of a geohash.
SQL Syntax
Section titled “SQL Syntax”ST_GEOMFROMGEOHASH(<geohash>)Arguments
Section titled “Arguments”| Arguments | Description |
|---|---|
<geohash> | The argument must be a geohash. |
Return Type
Section titled “Return Type”Geometry.
SQL Examples
Section titled “SQL Examples”SELECT ST_GEOMFROMGEOHASH( '9q60y60rhs' ) AS pipeline_geometry;
┌──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐│ st_geomfromgeohash('9q60y60rhs') │├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤│ POLYGON((-120.66230535507202 35.30029535293579,-120.66230535507202 35.30030071735382,-120.66229462623596 35.30030071735382,-120.66229462623596 35.30029535293579,-120.66230535507202 35.30029535293579)) │└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘