Geographic Element Type Enum | |
Enumération des types d'élément géographique |
Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
---|---|---|---|---|
IfcGeographicElementTypeEnum | ADDED |
This enumeration defines the different predefined types of geographic elements that can further specify an IfcGeographicElement or an IfcGeographicElementType.
NOTE Cuurently no other predefined types beside terrain are defined.
HISTORY New enumeration in IFC2x2.
Constant | Description |
---|---|
TERRAIN | |
USERDEFINED | |
NOTDEFINED |
<xs:simpleType name="IfcGeographicElementTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="terrain"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcGeographicElementTypeEnum = ENUMERATION OF (
TERRAIN,
USERDEFINED,
NOTDEFINED);
END_TYPE;