Skip to content

Returns a GEOMETRY object for the polygon that represents the boundaries of a geohash.

ST_GEOMFROMGEOHASH(<geohash>)
ArgumentsDescription
<geohash>The argument must be a geohash.

Geometry.

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)) │
└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘