Skip to main content

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.

Construct a Point from X and Y

Signatures

ST_Point (X: Double, Y: Double)

Parameters

X
Double
required
The X coordinate (longitude).
Y
Double
required
The Y coordinate (latitude).

Return type

The resulting geometry.

Example

SELECT ST_Point(double(1.2345), 2.3456)
POINT (1.2345 2.3456)