ST_AsText (A: Geometry)
SELECT ST_AsText(ST_SetSRID(ST_Point(1.0,1.0), 3021))
POINT (1 1)
SELECT ST_AsText(ST_MakePointM(1.0, 1.0, 1.0))
POINT M(1 1 1)
SELECT ST_AsText(ST_MakePoint(1.0, 1.0, 1.0, 1.0))
POINT ZM(1 1 1 1)
Was this page helpful?