ST_SetSRID — 在几何体上设置 SRID。
geometry ST_SetSRID(
geometry geom, integer srid)
;
将几何图形的 SRID 设置为特定的整数值。 用于为查询生成边界框。
此函数不会变换几何,它仅设置定义几何所需的空间参考系统的元数据。 如果要将几何图形转换为新投影,请使用ST_Transform 。 |
此方法实现了 SQL 1.1 的 OGC 简单功能规范。
此方法支持圆形字符串和曲线。
-- 将点设置为 WGS84 经纬度 --
SELECT ST_SetSRID(ST_Point(-123.365556, 48.428611),4326) As wgs84long_lat; -- the ewkt representation (wrap with ST_AsEWKT) - SRID=4326;POINT(-123.365556 48.428611)
-- 将点设置为 WGS84 经纬度,并将其转换为web mercator(球面墨卡托) --
SELECT ST_Transform(ST_SetSRID(ST_Point(-123.365556, 48.428611),4326),3785) As spere_merc; -- the ewkt representation (wrap with ST_AsEWKT) - SRID=3785;POINT(-13732990.8753491 6178458.96425423)