1. 程式人生 > >postgrep 獲取幾何圖形相關信息

postgrep 獲取幾何圖形相關信息

postgrep 獲取幾何圖形相關信息

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)


本文出自 “簡單可依賴” 博客,轉載請與作者聯系!

postgrep 獲取幾何圖形相關信息