ST_MakePoint — Creates a Point given its coordinates.
geometry ST_MakePoint(
double precision
X, double precision
Y)
;
geometry ST_MakePoint(
double precision
X, double precision
Y, double precision
Z)
;
geometry ST_MakePoint(
double precision
X, double precision
Y, double precision
Z, double precision
M)
;
Creates a Point given its coordinates. The point can be 2D (X,Y), 3D (X,Y,Z) or 4D (X,Y,Z,M) where M is a measure.
The OGC function is ST_PointFromText.
2D | 3D | M |
---|---|---|
OGC SFS for SQL. 1.1 (1999) | OGC SFS for SQL. 1.1.0 (2005) | OGC SFS for SQL. 1.2.0 (2006) | SQL-MM Part 3 |
---|---|---|---|
- | - | - | - |