...
EUROCAE ED98C: 3.3.21 Status
Definition: Status of an obstacle(EUROCAE ED-119C / RTCA DO-291C)
Data Capture Rule: When an obstacle is being built and surveyed in the field, an indication “planned,” “under construction” or “completed” shall be provided [OBST-R041]
EUROCAE ED-119C: 3.6 OBSTACLE FEATURE CATALOG
In AIXM 5.1.1 the attribute constructionStatus of the class VerticalStructurePart can have the following values:
Name | (Proposed) Explanation | |
---|---|---|
1 | 'IN_CONSTRUCTION' | Works started on erection of the object expected to penetrate the obstacle collection surface in this location |
2 | 'COMPLETED' | Works on erection of the object penetrating the obstacle collection surface in this location is are completed and the construction equipment removed |
3 | 'DEMOLITION _PLANNED' | Plans approved for demolition of the object penetrating the obstacle collection surface in this location |
4 | 'IN_DEMOLITION' | Works started on demolition of the object penetrating the obstacle collection surface in this location |
5 | 'OTHER:PLANNED' | Plans approved for the construction of the object at the given location. This status is not considered in performance calculation application. |
6 | 'OTHER' | Any other status not listed above in following format 'OTHER:...STATUS...' |
Coding example
...
Example of construction status.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<aixm:VerticalStructure gml:id="uuid.87a585b3-0597-4f5c-974f-cddfc604dc93">
<gml:identifier codeSpace="urn:uuid:">87a585b3-0597-4f5c-974f-cddfc604dc93</gml:identifier>
...
<aixm:name>LANGTALERECKHUETTE - HOCHWILDEHAUS</aixm:name>
<aixm:type>CABLE_CAR</aixm:type>
<aixm:lighted>NO</aixm:lighted>
...
<!-- PART1: LANGTALERECKHUETTE (Ground Station) of Cable Way -->
<aixm:part>
<aixm:VerticalStructurePart gml:id="vsp0004-1">
...
<aixm:type>BUILDING</aixm:type>
<aixm:constructionStatus>COMPLETED</aixm:constructionStatus>
<aixm:designator>OBS-0004-1</aixm:designator>
...
</aixm:part>
<!-- PART2: Line (rope) between Ground Station and Top Station -->
<aixm:part>
<aixm:VerticalStructurePart gml:id="vsp0004-2">
...
<aixm:type>CATENARY</aixm:type>
<aixm:constructionStatus>COMPLETED</aixm:constructionStatus>
<aixm:designator>OBS-0004-2</aixm:designator>
...
</aixm:part>
<!-- PART3: HOCHWILDEHAUS (Top Station) of Cable Way -->
<aixm:part>
<aixm:VerticalStructurePart gml:id="vsp0004-3">
...
<aixm:type>BUILDING</aixm:type>
<aixm:constructionStatus>IN_CONSTRUCTION</aixm:constructionStatus>
<aixm:designator>OBS-0004-3</aixm:designator>
... |