...
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 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:horizontalProjection_linearExtent>
<aixm:ElevatedCurve srsName="urn:ogc:def:crs:EPSG::4326" gml:id="crv1242">
<gml:segments>
<gml:GeodesicString>
<gml:posList>46.82722222 -27.99166667 46.80555556 -27.98638889</gml:posList>
</gml:GeodesicString>
</gml:segments>
<aixm:horizontalAccuracy uom="M">50</aixm:horizontalAccuracy>
<!-- elevation is not applicable for the catenary as it not a constant value. -->
<aixm:elevation xsi:nil="true" nilReason="inapplicable"/>
<aixm:verticalDatum xsi:nil="true" nilReason="inapplicable"/>
<aixm:verticalAccuracy xsi:nil="true" nilReason="inapplicable"/>
</aixm:ElevatedCurve>
</aixm:horizontalProjection_linearExtent>
</aixm:VerticalStructurePart>
</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>
... |