> ## 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_PointFromGeoHash

Generates a Point geometry representing the center of the GeoHash cell defined by the input string. If `precision` is not specified, the full GeoHash precision is used. Providing a `precision` value limits the GeoHash characters used to determine the Point coordinates.

## Signatures

```sql theme={"system"}
ST_PointFromGeoHash(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_PointFromGeoHash('s00twy01mt', 4)
```

```
POINT (0.87890625 0.966796875)
```
