Name

ST_Point — Returns an ST_Point with the given coordinate values. OGC alias for ST_MakePoint.

Synopsis

geometry ST_Point(float x_lon, float y_lat);

Description

Returns an ST_Point with the given coordinate values. MM compliant alias for ST_MakePoint that takes just an x and y.

This method implements the SQL/MM specification: SQL-MM 3: 6.1.2

Examples

SELECT ST_SetSRID(ST_Point(-71.1043443253471, 42.3150676015829),4326)

See Also

ST_MakePoint, ST_SetSRID