ST_GetFaceEdges — 返回一组有序的边,这些边界绑定了aface
。
getfaceedges_returntype ST_GetFaceEdges(
varchar atopology, integer aface)
;
返回一组有序的边,这些边界绑定了aface
。每个输出包括一个序列号和边ID。序列号从1开始。
每个环边的枚举从具有最小标识符的边开始。 边的顺序遵循左手定则(合界面位于每个有向边的左侧)。
可用性:2.0
该方法实现了SQL/MM规范。 SQL-MM 3 Topo-Geo 和 Topo-Net 3: 详细例程: X.3.5
-- Returns the edges bounding face 1 SELECT (topology.ST_GetFaceEdges('tt', 1)).*; -- result -- sequence | edge ----------+------ 1 | -4 2 | 5 3 | 7 4 | -6 5 | 1 6 | 2 7 | 3 (7 rows)
-- Returns the sequence, edge id -- and geometry of the edges that bound face 1 -- If you just need geom and seq, can use ST_GetFaceGeometry SELECT t.seq, t.edge, geom FROM topology.ST_GetFaceEdges('tt',1) As t(seq,edge) INNER JOIN tt.edge AS e ON abs(t.edge) = e.edge_id;