Categories:

Geospatial Functions

ST_MAKEGEOMPOINT , ST_GEOM_POINT¶

Constructs a GEOMETRY object that represents a Point with the specified longitude and latitude.

See also:

TO_GEOMETRY

Syntax¶

ST_MAKEGEOMPOINT( <longitude> , <latitude> )
Copy

Arguments¶

longitude

A REAL that represents the longitude.

latitude

A REAL that represents the latitude.

Returns¶

The function returns a value of type GEOMETRY.

Usage Notes¶

  • ST_GEOM_POINT is an alias for ST_MAKEGEOMPOINT.

Examples¶