Name

TopoElement — 一个由 2 个整数组成的数组,用于表示简单或分层拓扑几何的一个组件。

描述

一个由 2 个整数组成的数组,用于表示简单或分层TopoGeometry的一个组件。

对于简单的 TopoGeometry,数组的第一个元素表示拓扑基元的标识符,第二个元素表示其类型(1:节点、2:边、3:面)。 在分层 TopoGeometry 的情况下,数组的第一个元素表示子 TopoGeometry 的标识符,第二个元素表示其层标识符。

[Note]

对于任何给定的层次结构 TopoGeometry,所有子 TopoGeometry 元素都将来自同一子层,如所定义的 TopoGeometry 层的 topology.layer 记录中所指定。

示例

SELECT te[1] AS id, te[2] AS type FROM
( SELECT ARRAY[1,2]::topology.topoelement AS te ) f;
 id | type
----+------
  1 |    2
                 
SELECT ARRAY[1,2]::topology.topoelement;
  te
-------
 {1,2}
                 
--Example of what happens when you try to case a 3 element array to topoelement
-- NOTE: topoement has to be a 2 element array so fails dimension check
SELECT ARRAY[1,2,3]::topology.topoelement;
ERROR:  value for domain topology.topoelement violates check constraint "dimensions"