Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ST_MakePoint (X: Double, Y: Double, Z: Double, M: Double)
SELECT ST_AsText(ST_MakePoint(1.2345, 2.3456));
POINT (1.2345 2.3456)
SELECT ST_AsText(ST_MakePoint(1.2345, 2.3456, 3.4567));
POINT Z (1.2345 2.3456 3.4567)
SELECT ST_AsText(ST_MakePoint(1.2345, 2.3456, 3.4567, 4));
POINT ZM (1.2345 2.3456 3.4567 4)
Was this page helpful?