geom 为几何图形的坐标集合
1、长度量测 ST_Length(geometry)
ST_Length(geom::geography)
2、获取边界 ST_Boundary(geometry)
ST_Boundary(geom)
3、获取两个几何对象不相交的部分(A、B可互换)ST_SymDifference(geometry A, geometry B)
4、从A去除和B相交的部分后返回ST_Difference(geometry A, geometry B)
5、返回两个几何对象的合并结果 ST_Union(geometry,geometry)
6、返回一系列几何对象的合并结果 ST_Union(geometryset)
7、获取多几何对象中第N个对象ST_GeometryN(geometry,int)
8、获取几何对象的第N个点ST_PointN(geometry,integer)
9、获取线的终点 ST_EndPoint(geometry)
10、获取线的起始点 ST_StartPoint(geometry)
时间: 2024-10-08 04:05:28