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

Construct a Point from X and Y

## Signatures

```sql theme={"system"}
ST_Point (X: Double, Y: Double)
```

## Parameters

<ParamField body="X" type="Double" required>
  The X coordinate (longitude).
</ParamField>

<ParamField body="Y" type="Double" required>
  The Y coordinate (latitude).
</ParamField>

## Return type

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

## Example

```sql theme={"system"}
SELECT ST_Point(double(1.2345), 2.3456)
```

```
POINT (1.2345 2.3456)
```
