使用给定的坐标值构造Point对象。
语法
geometry ST_Point(float xLon , float yLat);
参数
参数名称 | 描述 |
---|---|
xLon | 经度。 |
yLat | 纬度。 |
描述
该函数是OGC标准中ST_MakePoint函数的别名,仅包含x和y。
示例
SELECT ST_AsText(ST_Point(116,40));
st_astext
---------------
POINT(116 40)
(1 row)
使用给定的坐标值构造Point对象。
geometry ST_Point(float xLon , float yLat);
参数名称 | 描述 |
---|---|
xLon | 经度。 |
yLat | 纬度。 |
该函数是OGC标准中ST_MakePoint函数的别名,仅包含x和y。
SELECT ST_AsText(ST_Point(116,40));
st_astext
---------------
POINT(116 40)
(1 row)