> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ST_GeomFromGeoHash

Create Geometry from geohash string and optional precision

## Signatures

```sql theme={"system"}
ST_GeomFromGeoHash(geohash: String, precision: Integer)
```

## Parameters

<ParamField body="geohash" type="String" required>
  A GeoHash string.
</ParamField>

<ParamField body="precision" type="Integer" required>
  The number of decimal places.
</ParamField>

## Return type

<ResponseField type="Geometry">
  The resulting geometry.
</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_GeomFromGeoHash('s00twy01mt', 4)
```

```
POLYGON ((0.703125 0.87890625, 0.703125 1.0546875, 1.0546875 1.0546875, 1.0546875 0.87890625, 0.703125 0.87890625))
```
