aixm 0.3.7 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +72 -6
- data/README.md +191 -53
- data/exe/ckmid +11 -0
- data/exe/mkmid +11 -0
- data/lib/aixm/association.rb +367 -0
- data/lib/aixm/classes.rb +44 -0
- data/lib/aixm/component/fato.rb +44 -52
- data/lib/aixm/component/frequency.rb +13 -14
- data/lib/aixm/component/geometry/arc.rb +2 -2
- data/lib/aixm/component/geometry/border.rb +14 -5
- data/lib/aixm/component/geometry/circle.rb +8 -2
- data/lib/aixm/component/geometry/point.rb +10 -3
- data/lib/aixm/component/geometry/rhumb_line.rb +54 -0
- data/lib/aixm/component/geometry.rb +38 -38
- data/lib/aixm/component/helipad.rb +29 -37
- data/lib/aixm/component/layer.rb +28 -19
- data/lib/aixm/component/lighting.rb +11 -12
- data/lib/aixm/component/runway.rb +46 -53
- data/lib/aixm/{feature → component}/service.rb +36 -35
- data/lib/aixm/component/surface.rb +3 -3
- data/lib/aixm/component/timetable.rb +5 -3
- data/lib/aixm/component/{vertical_limits.rb → vertical_limit.rb} +12 -6
- data/lib/aixm/config.rb +6 -3
- data/lib/aixm/document.rb +31 -49
- data/lib/aixm/executables.rb +85 -0
- data/lib/aixm/f.rb +28 -0
- data/lib/aixm/feature/address.rb +20 -15
- data/lib/aixm/feature/airport.rb +113 -129
- data/lib/aixm/feature/airspace.rb +54 -23
- data/lib/aixm/feature/navigational_aid/designated_point.rb +12 -14
- data/lib/aixm/feature/navigational_aid/dme.rb +10 -11
- data/lib/aixm/feature/navigational_aid/marker.rb +6 -2
- data/lib/aixm/feature/navigational_aid/ndb.rb +6 -2
- data/lib/aixm/feature/navigational_aid/tacan.rb +6 -2
- data/lib/aixm/feature/navigational_aid/vor.rb +22 -14
- data/lib/aixm/feature/navigational_aid.rb +7 -9
- data/lib/aixm/feature/obstacle.rb +22 -20
- data/lib/aixm/feature/obstacle_group.rb +30 -30
- data/lib/aixm/feature/organisation.rb +20 -4
- data/lib/aixm/feature/unit.rb +35 -45
- data/lib/aixm/feature.rb +13 -3
- data/lib/aixm/memoize.rb +89 -0
- data/lib/aixm/object.rb +9 -0
- data/lib/aixm/payload_hash.rb +114 -0
- data/lib/aixm/refinements.rb +34 -50
- data/lib/aixm/shortcuts.rb +6 -43
- data/lib/aixm/version.rb +1 -1
- data/lib/aixm/xy.rb +9 -1
- data/lib/aixm.rb +18 -7
- data/schemas/ofmx/{0 → 0.1}/OFMX-CSV-Obstacle.json +0 -0
- data/schemas/ofmx/{0 → 0.1}/OFMX-CSV.json +0 -0
- data/schemas/ofmx/{0 → 0.1}/OFMX-DataTypes.xsd +52 -2
- data/schemas/ofmx/{0 → 0.1}/OFMX-Features.xsd +225 -14
- data/schemas/ofmx/{0 → 0.1}/OFMX-Snapshot.xsd +0 -5
- data.tar.gz.sig +0 -0
- metadata +116 -164
- metadata.gz.sig +0 -0
- data/.gitignore +0 -6
- data/.ruby-version +0 -1
- data/.travis.yml +0 -8
- data/.yardopts +0 -3
- data/Guardfile +0 -8
- data/aixm.gemspec +0 -35
- data/gems.rb +0 -3
- data/lib/aixm/component.rb +0 -6
- data/rakefile.rb +0 -22
- data/spec/factory.rb +0 -559
- data/spec/lib/aixm/a_spec.rb +0 -203
- data/spec/lib/aixm/component/fato_spec.rb +0 -260
- data/spec/lib/aixm/component/frequency_spec.rb +0 -75
- data/spec/lib/aixm/component/geometry/arc_spec.rb +0 -75
- data/spec/lib/aixm/component/geometry/border_spec.rb +0 -33
- data/spec/lib/aixm/component/geometry/circle_spec.rb +0 -70
- data/spec/lib/aixm/component/geometry/point_spec.rb +0 -39
- data/spec/lib/aixm/component/geometry_spec.rb +0 -321
- data/spec/lib/aixm/component/helipad_spec.rb +0 -187
- data/spec/lib/aixm/component/layer_spec.rb +0 -137
- data/spec/lib/aixm/component/lighting_spec.rb +0 -88
- data/spec/lib/aixm/component/runway_spec.rb +0 -472
- data/spec/lib/aixm/component/surface_spec.rb +0 -124
- data/spec/lib/aixm/component/timetable_spec.rb +0 -49
- data/spec/lib/aixm/component/vertical_limits_spec.rb +0 -97
- data/spec/lib/aixm/config_spec.rb +0 -41
- data/spec/lib/aixm/d_spec.rb +0 -150
- data/spec/lib/aixm/document_spec.rb +0 -1875
- data/spec/lib/aixm/errors_spec.rb +0 -14
- data/spec/lib/aixm/f_spec.rb +0 -85
- data/spec/lib/aixm/feature/address_spec.rb +0 -55
- data/spec/lib/aixm/feature/airport_spec.rb +0 -770
- data/spec/lib/aixm/feature/airspace_spec.rb +0 -390
- data/spec/lib/aixm/feature/navigational_aid/designated_point_spec.rb +0 -98
- data/spec/lib/aixm/feature/navigational_aid/dme_spec.rb +0 -92
- data/spec/lib/aixm/feature/navigational_aid/marker_spec.rb +0 -79
- data/spec/lib/aixm/feature/navigational_aid/ndb_spec.rb +0 -89
- data/spec/lib/aixm/feature/navigational_aid/tacan_spec.rb +0 -88
- data/spec/lib/aixm/feature/navigational_aid/vor_spec.rb +0 -245
- data/spec/lib/aixm/feature/navigational_aid_spec.rb +0 -52
- data/spec/lib/aixm/feature/obstacle_group_spec.rb +0 -326
- data/spec/lib/aixm/feature/obstacle_spec.rb +0 -279
- data/spec/lib/aixm/feature/organisation_spec.rb +0 -77
- data/spec/lib/aixm/feature/service_spec.rb +0 -59
- data/spec/lib/aixm/feature/unit_spec.rb +0 -230
- data/spec/lib/aixm/feature_spec.rb +0 -38
- data/spec/lib/aixm/p_spec.rb +0 -189
- data/spec/lib/aixm/refinements_spec.rb +0 -381
- data/spec/lib/aixm/version_spec.rb +0 -7
- data/spec/lib/aixm/w_spec.rb +0 -150
- data/spec/lib/aixm/xy_spec.rb +0 -180
- data/spec/lib/aixm/z_spec.rb +0 -94
- data/spec/macros/marking.rb +0 -12
- data/spec/macros/organisation.rb +0 -11
- data/spec/macros/remarks.rb +0 -12
- data/spec/macros/timetable.rb +0 -11
- data/spec/macros/xy.rb +0 -11
- data/spec/macros/z_qnh.rb +0 -11
- data/spec/sounds/failure.mp3 +0 -0
- data/spec/sounds/success.mp3 +0 -0
- data/spec/spec_helper.rb +0 -55
@@ -45,6 +45,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
45
45
|
<xsd:documentation>Optional, could be used to exchange generated UID values</xsd:documentation>
|
46
46
|
</xsd:annotation>
|
47
47
|
</xsd:attribute>
|
48
|
+
<xsd:attribute name="region" type="codeRegion">
|
49
|
+
<xsd:annotation>
|
50
|
+
<xsd:documentation>Region this feature belongs to</xsd:documentation>
|
51
|
+
</xsd:annotation>
|
52
|
+
</xsd:attribute>
|
48
53
|
<xsd:attribute name="source" type="codeSource">
|
49
54
|
<xsd:annotation>
|
50
55
|
<xsd:documentation>Reference to the source AIP document</xsd:documentation>
|
@@ -122,6 +127,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
122
127
|
</xsd:annotation>
|
123
128
|
</xsd:element>
|
124
129
|
</xsd:sequence>
|
130
|
+
<xsd:attribute ref="source"/>
|
125
131
|
</xsd:complexType>
|
126
132
|
<xsd:complexType name="AerodromeHeliportCollocationUidType">
|
127
133
|
<xsd:annotation>
|
@@ -157,6 +163,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
157
163
|
</xsd:annotation>
|
158
164
|
</xsd:element>
|
159
165
|
</xsd:sequence>
|
166
|
+
<xsd:attribute ref="source"/>
|
160
167
|
</xsd:complexType>
|
161
168
|
<xsd:complexType name="AerodromeHeliportNavaidUidType">
|
162
169
|
<xsd:annotation>
|
@@ -214,6 +221,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
214
221
|
</xsd:annotation>
|
215
222
|
</xsd:element>
|
216
223
|
</xsd:sequence>
|
224
|
+
<xsd:attribute ref="source"/>
|
217
225
|
</xsd:complexType>
|
218
226
|
<xsd:complexType name="AerodromeHeliportObstacleUidType">
|
219
227
|
<xsd:annotation>
|
@@ -249,6 +257,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
249
257
|
</xsd:annotation>
|
250
258
|
</xsd:element>
|
251
259
|
</xsd:sequence>
|
260
|
+
<xsd:attribute ref="source"/>
|
252
261
|
</xsd:complexType>
|
253
262
|
<xsd:complexType name="AerodromeHeliportServiceUidType">
|
254
263
|
<xsd:annotation>
|
@@ -511,6 +520,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
511
520
|
</xsd:element>
|
512
521
|
</xsd:sequence>
|
513
522
|
<xsd:attribute ref="mid"/>
|
523
|
+
<xsd:attribute ref="region" use="required"/>
|
514
524
|
</xsd:complexType>
|
515
525
|
<xsd:complexType name="AerodromeHeliportUsageType">
|
516
526
|
<xsd:annotation>
|
@@ -547,6 +557,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
547
557
|
</xsd:complexType>
|
548
558
|
</xsd:element>
|
549
559
|
</xsd:sequence>
|
560
|
+
<xsd:attribute ref="source"/>
|
550
561
|
</xsd:complexType>
|
551
562
|
<xsd:complexType name="AerodromeHeliportUsageUidType">
|
552
563
|
<xsd:annotation>
|
@@ -637,6 +648,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
637
648
|
</xsd:annotation>
|
638
649
|
</xsd:element>
|
639
650
|
</xsd:sequence>
|
651
|
+
<xsd:attribute ref="source"/>
|
640
652
|
</xsd:complexType>
|
641
653
|
<xsd:complexType name="AeronauticalGroundLightUidType">
|
642
654
|
<xsd:annotation>
|
@@ -705,6 +717,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
705
717
|
</xsd:annotation>
|
706
718
|
</xsd:element>
|
707
719
|
</xsd:sequence>
|
720
|
+
<xsd:attribute ref="source"/>
|
708
721
|
</xsd:complexType>
|
709
722
|
<xsd:complexType name="AirspaceAssociationUidType">
|
710
723
|
<xsd:annotation>
|
@@ -761,6 +774,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
761
774
|
</xsd:annotation>
|
762
775
|
</xsd:element>
|
763
776
|
</xsd:sequence>
|
777
|
+
<xsd:attribute ref="source"/>
|
764
778
|
</xsd:complexType>
|
765
779
|
<xsd:complexType name="AirspaceAssocUidType">
|
766
780
|
<xsd:annotation>
|
@@ -802,6 +816,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
802
816
|
</xsd:annotation>
|
803
817
|
</xsd:element>
|
804
818
|
</xsd:sequence>
|
819
|
+
<xsd:attribute ref="source"/>
|
805
820
|
</xsd:complexType>
|
806
821
|
<xsd:complexType name="AirspaceAuthorityUidType">
|
807
822
|
<xsd:annotation>
|
@@ -870,6 +885,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
870
885
|
</xsd:element>
|
871
886
|
</xsd:choice>
|
872
887
|
</xsd:sequence>
|
888
|
+
<xsd:attribute ref="source"/>
|
873
889
|
</xsd:complexType>
|
874
890
|
<xsd:complexType name="AirspaceBorderUidType">
|
875
891
|
<xsd:annotation>
|
@@ -1114,6 +1130,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1114
1130
|
</xsd:annotation>
|
1115
1131
|
</xsd:element>
|
1116
1132
|
</xsd:sequence>
|
1133
|
+
<xsd:attribute ref="source"/>
|
1117
1134
|
</xsd:complexType>
|
1118
1135
|
<xsd:complexType name="AirspaceCorridorUidType">
|
1119
1136
|
<xsd:annotation>
|
@@ -1171,6 +1188,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1171
1188
|
</xsd:annotation>
|
1172
1189
|
</xsd:element>
|
1173
1190
|
</xsd:sequence>
|
1191
|
+
<xsd:attribute ref="source"/>
|
1174
1192
|
</xsd:complexType>
|
1175
1193
|
<xsd:complexType name="AirspaceDerivedGeometryUidType">
|
1176
1194
|
<xsd:annotation>
|
@@ -1201,6 +1219,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1201
1219
|
</xsd:annotation>
|
1202
1220
|
</xsd:element>
|
1203
1221
|
</xsd:sequence>
|
1222
|
+
<xsd:attribute ref="source"/>
|
1204
1223
|
</xsd:complexType>
|
1205
1224
|
<xsd:complexType name="AirspaceObstacleUidType">
|
1206
1225
|
<xsd:annotation>
|
@@ -1236,6 +1255,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1236
1255
|
</xsd:annotation>
|
1237
1256
|
</xsd:element>
|
1238
1257
|
</xsd:sequence>
|
1258
|
+
<xsd:attribute ref="source"/>
|
1239
1259
|
</xsd:complexType>
|
1240
1260
|
<xsd:complexType name="AirspaceServiceUidType">
|
1241
1261
|
<xsd:annotation>
|
@@ -1275,11 +1295,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1275
1295
|
<xsd:documentation>Airspace is requiring for FPL-MSG the use of Unit contact address</xsd:documentation>
|
1276
1296
|
</xsd:annotation>
|
1277
1297
|
</xsd:element>
|
1278
|
-
<xsd:element name="txtLocalType" type="txtName" minOccurs="0">
|
1279
|
-
<xsd:annotation>
|
1280
|
-
<xsd:documentation>Local type designator</xsd:documentation>
|
1281
|
-
</xsd:annotation>
|
1282
|
-
</xsd:element>
|
1283
1298
|
<xsd:element name="txtName" type="txtName" minOccurs="0">
|
1284
1299
|
<xsd:annotation>
|
1285
1300
|
<xsd:documentation>Name</xsd:documentation>
|
@@ -1403,8 +1418,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1403
1418
|
<xsd:documentation>Coded identifier</xsd:documentation>
|
1404
1419
|
</xsd:annotation>
|
1405
1420
|
</xsd:element>
|
1421
|
+
<xsd:element name="txtLocalType" type="txtName" minOccurs="0">
|
1422
|
+
<xsd:annotation>
|
1423
|
+
<xsd:documentation>Local type designator</xsd:documentation>
|
1424
|
+
</xsd:annotation>
|
1425
|
+
</xsd:element>
|
1406
1426
|
</xsd:sequence>
|
1407
1427
|
<xsd:attribute ref="mid"/>
|
1428
|
+
<xsd:attribute ref="region" use="required"/>
|
1408
1429
|
</xsd:complexType>
|
1409
1430
|
<xsd:complexType name="ApronGeometryPointType">
|
1410
1431
|
<xsd:annotation>
|
@@ -1495,6 +1516,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1495
1516
|
</xsd:annotation>
|
1496
1517
|
</xsd:element>
|
1497
1518
|
</xsd:sequence>
|
1519
|
+
<xsd:attribute ref="source"/>
|
1498
1520
|
</xsd:complexType>
|
1499
1521
|
<xsd:complexType name="ApronGeometryUidType">
|
1500
1522
|
<xsd:annotation>
|
@@ -1550,6 +1572,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1550
1572
|
</xsd:annotation>
|
1551
1573
|
</xsd:element>
|
1552
1574
|
</xsd:sequence>
|
1575
|
+
<xsd:attribute ref="source"/>
|
1553
1576
|
</xsd:complexType>
|
1554
1577
|
<xsd:complexType name="ApronLightingSystemUidType">
|
1555
1578
|
<xsd:annotation>
|
@@ -1614,6 +1637,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1614
1637
|
</xsd:annotation>
|
1615
1638
|
</xsd:element>
|
1616
1639
|
</xsd:sequence>
|
1640
|
+
<xsd:attribute ref="source"/>
|
1617
1641
|
</xsd:complexType>
|
1618
1642
|
<xsd:complexType name="ApronUidType">
|
1619
1643
|
<xsd:annotation>
|
@@ -1672,6 +1696,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1672
1696
|
</xsd:annotation>
|
1673
1697
|
</xsd:element>
|
1674
1698
|
</xsd:sequence>
|
1699
|
+
<xsd:attribute ref="source"/>
|
1675
1700
|
</xsd:complexType>
|
1676
1701
|
<xsd:complexType name="CheckpointUidType">
|
1677
1702
|
<xsd:annotation>
|
@@ -1719,6 +1744,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1719
1744
|
</xsd:annotation>
|
1720
1745
|
</xsd:element>
|
1721
1746
|
</xsd:sequence>
|
1747
|
+
<xsd:attribute ref="source"/>
|
1722
1748
|
</xsd:complexType>
|
1723
1749
|
<xsd:complexType name="CruisingLevelsColumnUidType">
|
1724
1750
|
<xsd:annotation>
|
@@ -1769,6 +1795,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1769
1795
|
</xsd:annotation>
|
1770
1796
|
</xsd:element>
|
1771
1797
|
</xsd:sequence>
|
1798
|
+
<xsd:attribute ref="source"/>
|
1772
1799
|
</xsd:complexType>
|
1773
1800
|
<xsd:complexType name="CruisingLevelsTableUidType">
|
1774
1801
|
<xsd:annotation>
|
@@ -1850,6 +1877,26 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1850
1877
|
<xsd:documentation>Name</xsd:documentation>
|
1851
1878
|
</xsd:annotation>
|
1852
1879
|
</xsd:element>
|
1880
|
+
<xsd:element name="valElev" type="valDistVer" minOccurs="0">
|
1881
|
+
<xsd:annotation>
|
1882
|
+
<xsd:documentation>Elevation</xsd:documentation>
|
1883
|
+
</xsd:annotation>
|
1884
|
+
</xsd:element>
|
1885
|
+
<xsd:element name="uomElev" type="uomElev" minOccurs="0">
|
1886
|
+
<xsd:annotation>
|
1887
|
+
<xsd:documentation>Unit of measurement [elevation]</xsd:documentation>
|
1888
|
+
</xsd:annotation>
|
1889
|
+
</xsd:element>
|
1890
|
+
<xsd:element name="valTrueBrg" type="valAngleBrg" minOccurs="0">
|
1891
|
+
<xsd:annotation>
|
1892
|
+
<xsd:documentation>True bearing</xsd:documentation>
|
1893
|
+
</xsd:annotation>
|
1894
|
+
</xsd:element>
|
1895
|
+
<xsd:element name="valMagBrg" type="valAngleBrg" minOccurs="0">
|
1896
|
+
<xsd:annotation>
|
1897
|
+
<xsd:documentation>Magnetic bearing</xsd:documentation>
|
1898
|
+
</xsd:annotation>
|
1899
|
+
</xsd:element>
|
1853
1900
|
<xsd:element name="txtRmk" type="txtRmk" minOccurs="0">
|
1854
1901
|
<xsd:annotation>
|
1855
1902
|
<xsd:documentation>Remark</xsd:documentation>
|
@@ -1880,6 +1927,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1880
1927
|
</xsd:element>
|
1881
1928
|
</xsd:sequence>
|
1882
1929
|
<xsd:attribute ref="mid"/>
|
1930
|
+
<xsd:attribute ref="region" use="required"/>
|
1883
1931
|
</xsd:complexType>
|
1884
1932
|
<xsd:complexType name="DirectFlightClassType">
|
1885
1933
|
<xsd:annotation>
|
@@ -1980,6 +2028,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1980
2028
|
</xsd:annotation>
|
1981
2029
|
</xsd:element>
|
1982
2030
|
</xsd:sequence>
|
2031
|
+
<xsd:attribute ref="source"/>
|
1983
2032
|
</xsd:complexType>
|
1984
2033
|
<xsd:complexType name="DmeLimitationUidType">
|
1985
2034
|
<xsd:annotation>
|
@@ -2160,6 +2209,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2160
2209
|
</xsd:element>
|
2161
2210
|
</xsd:sequence>
|
2162
2211
|
<xsd:attribute ref="mid"/>
|
2212
|
+
<xsd:attribute ref="region" use="required"/>
|
2163
2213
|
</xsd:complexType>
|
2164
2214
|
<xsd:complexType name="DmeUsageLimitationType">
|
2165
2215
|
<xsd:annotation>
|
@@ -2178,6 +2228,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2178
2228
|
</xsd:element>
|
2179
2229
|
<xsd:element name="UsageLimit" type="NavaidLimitationType" minOccurs="0" maxOccurs="unbounded"/>
|
2180
2230
|
</xsd:sequence>
|
2231
|
+
<xsd:attribute ref="source"/>
|
2181
2232
|
</xsd:complexType>
|
2182
2233
|
<xsd:complexType name="DmeUsageLimitationUidType">
|
2183
2234
|
<xsd:annotation>
|
@@ -2213,6 +2264,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2213
2264
|
</xsd:annotation>
|
2214
2265
|
</xsd:element>
|
2215
2266
|
</xsd:sequence>
|
2267
|
+
<xsd:attribute ref="source"/>
|
2216
2268
|
</xsd:complexType>
|
2217
2269
|
<xsd:complexType name="EnrouteRouteUidType">
|
2218
2270
|
<xsd:annotation>
|
@@ -2293,6 +2345,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2293
2345
|
</xsd:annotation>
|
2294
2346
|
</xsd:element>
|
2295
2347
|
</xsd:sequence>
|
2348
|
+
<xsd:attribute ref="source"/>
|
2296
2349
|
</xsd:complexType>
|
2297
2350
|
<xsd:complexType name="FatoCentreLinePositionUidType">
|
2298
2351
|
<xsd:annotation>
|
@@ -2366,6 +2419,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2366
2419
|
</xsd:annotation>
|
2367
2420
|
</xsd:element>
|
2368
2421
|
</xsd:sequence>
|
2422
|
+
<xsd:attribute ref="source"/>
|
2369
2423
|
</xsd:complexType>
|
2370
2424
|
<xsd:complexType name="FatoDirectionApproachLightingUidType">
|
2371
2425
|
<xsd:annotation>
|
@@ -2411,6 +2465,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2411
2465
|
</xsd:annotation>
|
2412
2466
|
</xsd:element>
|
2413
2467
|
</xsd:sequence>
|
2468
|
+
<xsd:attribute ref="source"/>
|
2414
2469
|
</xsd:complexType>
|
2415
2470
|
<xsd:complexType name="FatoDirectionDeclaredDistanceUidType">
|
2416
2471
|
<xsd:annotation>
|
@@ -2486,6 +2541,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2486
2541
|
</xsd:annotation>
|
2487
2542
|
</xsd:element>
|
2488
2543
|
</xsd:sequence>
|
2544
|
+
<xsd:attribute ref="source"/>
|
2489
2545
|
</xsd:complexType>
|
2490
2546
|
<xsd:complexType name="FatoDirectionObstacleUidType">
|
2491
2547
|
<xsd:annotation>
|
@@ -2521,6 +2577,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2521
2577
|
</xsd:annotation>
|
2522
2578
|
</xsd:element>
|
2523
2579
|
</xsd:sequence>
|
2580
|
+
<xsd:attribute ref="source"/>
|
2524
2581
|
</xsd:complexType>
|
2525
2582
|
<xsd:complexType name="FatoDirectionStarUidType">
|
2526
2583
|
<xsd:annotation>
|
@@ -2611,12 +2668,63 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2611
2668
|
<xsd:documentation>Unit of measurement [minimum eye height over threshold]</xsd:documentation>
|
2612
2669
|
</xsd:annotation>
|
2613
2670
|
</xsd:element>
|
2671
|
+
<xsd:element name="codeRearTakeOffSectorAvbl" type="codeYesNo" minOccurs="0">
|
2672
|
+
<xsd:annotation>
|
2673
|
+
<xsd:documentation>Rear take-off sector available?</xsd:documentation>
|
2674
|
+
</xsd:annotation>
|
2675
|
+
</xsd:element>
|
2676
|
+
<xsd:element name="valRearTakeOffSectorTrueBrg" type="valAngleBrg" minOccurs="0">
|
2677
|
+
<xsd:annotation>
|
2678
|
+
<xsd:documentation>True bearing of rear take-off sector</xsd:documentation>
|
2679
|
+
</xsd:annotation>
|
2680
|
+
</xsd:element>
|
2681
|
+
<xsd:element name="valRearTakeOffSectorSlopeAngle" type="valAngle" minOccurs="0">
|
2682
|
+
<xsd:annotation>
|
2683
|
+
<xsd:documentation>Rear take-off sector slope angle</xsd:documentation>
|
2684
|
+
</xsd:annotation>
|
2685
|
+
</xsd:element>
|
2686
|
+
<xsd:element name="codeCodingMode" type="codeCodingMode" minOccurs="0">
|
2687
|
+
<xsd:annotation>
|
2688
|
+
<xsd:documentation>Coding mode</xsd:documentation>
|
2689
|
+
</xsd:annotation>
|
2690
|
+
</xsd:element>
|
2691
|
+
<xsd:element name="geoLatIap" type="geoLat" minOccurs="0">
|
2692
|
+
<xsd:annotation>
|
2693
|
+
<xsd:documentation>Initial approach point latitude</xsd:documentation>
|
2694
|
+
</xsd:annotation>
|
2695
|
+
</xsd:element>
|
2696
|
+
<xsd:element name="geoLongIap" type="geoLong" minOccurs="0">
|
2697
|
+
<xsd:annotation>
|
2698
|
+
<xsd:documentation>Initial approach point longitude</xsd:documentation>
|
2699
|
+
</xsd:annotation>
|
2700
|
+
</xsd:element>
|
2701
|
+
<xsd:element name="valAltIap" type="valDistVer" minOccurs="0">
|
2702
|
+
<xsd:annotation>
|
2703
|
+
<xsd:documentation>Initial approach point altitude</xsd:documentation>
|
2704
|
+
</xsd:annotation>
|
2705
|
+
</xsd:element>
|
2706
|
+
<xsd:element name="uomAltIap" type="uomDistVer" minOccurs="0">
|
2707
|
+
<xsd:annotation>
|
2708
|
+
<xsd:documentation>Unit of measurement [initial approach point altitude]</xsd:documentation>
|
2709
|
+
</xsd:annotation>
|
2710
|
+
</xsd:element>
|
2711
|
+
<xsd:element name="bezierSectorExtent" type="bezierCurve" minOccurs="0">
|
2712
|
+
<xsd:annotation>
|
2713
|
+
<xsd:documentation>Longitude</xsd:documentation>
|
2714
|
+
</xsd:annotation>
|
2715
|
+
</xsd:element>
|
2716
|
+
<xsd:element name="bezierSectorCentreLine" type="bezierCurve" minOccurs="0">
|
2717
|
+
<xsd:annotation>
|
2718
|
+
<xsd:documentation>Longitude</xsd:documentation>
|
2719
|
+
</xsd:annotation>
|
2720
|
+
</xsd:element>
|
2614
2721
|
<xsd:element name="txtRmk" type="txtRmk" minOccurs="0">
|
2615
2722
|
<xsd:annotation>
|
2616
2723
|
<xsd:documentation>Remark</xsd:documentation>
|
2617
2724
|
</xsd:annotation>
|
2618
2725
|
</xsd:element>
|
2619
2726
|
</xsd:sequence>
|
2727
|
+
<xsd:attribute ref="source"/>
|
2620
2728
|
</xsd:complexType>
|
2621
2729
|
<xsd:complexType name="FatoDirectionUidType">
|
2622
2730
|
<xsd:annotation>
|
@@ -2685,6 +2793,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2685
2793
|
</xsd:annotation>
|
2686
2794
|
</xsd:element>
|
2687
2795
|
</xsd:sequence>
|
2796
|
+
<xsd:attribute ref="source"/>
|
2688
2797
|
</xsd:complexType>
|
2689
2798
|
<xsd:complexType name="FatoLightingSystemUidType">
|
2690
2799
|
<xsd:annotation>
|
@@ -2769,6 +2878,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2769
2878
|
</xsd:annotation>
|
2770
2879
|
</xsd:element>
|
2771
2880
|
</xsd:sequence>
|
2881
|
+
<xsd:attribute ref="source"/>
|
2772
2882
|
</xsd:complexType>
|
2773
2883
|
<xsd:complexType name="FatoOldUidType">
|
2774
2884
|
<xsd:annotation>
|
@@ -2873,6 +2983,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2873
2983
|
</xsd:annotation>
|
2874
2984
|
</xsd:element>
|
2875
2985
|
</xsd:sequence>
|
2986
|
+
<xsd:attribute ref="source"/>
|
2876
2987
|
</xsd:complexType>
|
2877
2988
|
<xsd:complexType name="FatoProtectionAreaGeometryUidType">
|
2878
2989
|
<xsd:annotation>
|
@@ -2929,6 +3040,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2929
3040
|
</xsd:annotation>
|
2930
3041
|
</xsd:element>
|
2931
3042
|
</xsd:sequence>
|
3043
|
+
<xsd:attribute ref="source"/>
|
2932
3044
|
</xsd:complexType>
|
2933
3045
|
<xsd:complexType name="FatoProtectionAreaUidType">
|
2934
3046
|
<xsd:annotation>
|
@@ -2974,6 +3086,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2974
3086
|
<xsd:documentation>Width</xsd:documentation>
|
2975
3087
|
</xsd:annotation>
|
2976
3088
|
</xsd:element>
|
3089
|
+
<xsd:element name="valMaxDim" type="valDistHorz" minOccurs="0">
|
3090
|
+
<xsd:annotation>
|
3091
|
+
<xsd:documentation>Largest overall dimension as defined in ICAO annex 14</xsd:documentation>
|
3092
|
+
</xsd:annotation>
|
3093
|
+
</xsd:element>
|
2977
3094
|
<xsd:element name="uomDim" type="uomDistHorz" minOccurs="0">
|
2978
3095
|
<xsd:annotation>
|
2979
3096
|
<xsd:documentation>Unit of measurement [horizontal dimension]</xsd:documentation>
|
@@ -3014,6 +3131,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3014
3131
|
</xsd:element>
|
3015
3132
|
</xsd:sequence>
|
3016
3133
|
<xsd:attribute ref="mid"/>
|
3134
|
+
<xsd:attribute ref="source"/>
|
3017
3135
|
</xsd:complexType>
|
3018
3136
|
<xsd:complexType name="FatoUidType">
|
3019
3137
|
<xsd:annotation>
|
@@ -3393,6 +3511,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3393
3511
|
</xsd:annotation>
|
3394
3512
|
</xsd:element>
|
3395
3513
|
</xsd:sequence>
|
3514
|
+
<xsd:attribute ref="source"/>
|
3396
3515
|
</xsd:complexType>
|
3397
3516
|
<xsd:complexType name="FrequencyUidType">
|
3398
3517
|
<xsd:annotation>
|
@@ -3433,6 +3552,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3433
3552
|
</xsd:annotation>
|
3434
3553
|
</xsd:element>
|
3435
3554
|
</xsd:sequence>
|
3555
|
+
<xsd:attribute ref="source"/>
|
3436
3556
|
</xsd:complexType>
|
3437
3557
|
<xsd:complexType name="FuelUidType">
|
3438
3558
|
<xsd:annotation>
|
@@ -3533,6 +3653,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3533
3653
|
</xsd:annotation>
|
3534
3654
|
</xsd:element>
|
3535
3655
|
</xsd:sequence>
|
3656
|
+
<xsd:attribute ref="source"/>
|
3536
3657
|
</xsd:complexType>
|
3537
3658
|
<xsd:complexType name="GateStandUidType">
|
3538
3659
|
<xsd:annotation>
|
@@ -3578,6 +3699,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3578
3699
|
</xsd:annotation>
|
3579
3700
|
</xsd:element>
|
3580
3701
|
</xsd:sequence>
|
3702
|
+
<xsd:attribute ref="source"/>
|
3581
3703
|
</xsd:complexType>
|
3582
3704
|
<xsd:complexType name="GeographicalBorderUidType">
|
3583
3705
|
<xsd:annotation>
|
@@ -3661,6 +3783,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3661
3783
|
</xsd:annotation>
|
3662
3784
|
</xsd:element>
|
3663
3785
|
</xsd:sequence>
|
3786
|
+
<xsd:attribute ref="source"/>
|
3664
3787
|
</xsd:complexType>
|
3665
3788
|
<xsd:complexType name="GroundServiceAddressUidType">
|
3666
3789
|
<xsd:annotation>
|
@@ -3721,6 +3844,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3721
3844
|
</xsd:annotation>
|
3722
3845
|
</xsd:element>
|
3723
3846
|
</xsd:sequence>
|
3847
|
+
<xsd:attribute ref="source"/>
|
3724
3848
|
</xsd:complexType>
|
3725
3849
|
<xsd:complexType name="GroundServiceUidType">
|
3726
3850
|
<xsd:annotation>
|
@@ -3756,6 +3880,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3756
3880
|
</xsd:annotation>
|
3757
3881
|
</xsd:element>
|
3758
3882
|
</xsd:sequence>
|
3883
|
+
<xsd:attribute ref="source"/>
|
3759
3884
|
</xsd:complexType>
|
3760
3885
|
<xsd:complexType name="HoldingProcedureServiceUidType">
|
3761
3886
|
<xsd:annotation>
|
@@ -3801,6 +3926,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3801
3926
|
</xsd:annotation>
|
3802
3927
|
</xsd:element>
|
3803
3928
|
</xsd:sequence>
|
3929
|
+
<xsd:attribute ref="source"/>
|
3804
3930
|
</xsd:complexType>
|
3805
3931
|
<xsd:complexType name="HoldingProcedureUidType">
|
3806
3932
|
<xsd:annotation>
|
@@ -4122,6 +4248,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4122
4248
|
</xsd:annotation>
|
4123
4249
|
</xsd:element>
|
4124
4250
|
</xsd:sequence>
|
4251
|
+
<xsd:attribute ref="source"/>
|
4125
4252
|
</xsd:complexType>
|
4126
4253
|
<xsd:complexType name="InstrumentApproachServiceUidType">
|
4127
4254
|
<xsd:annotation>
|
@@ -4209,6 +4336,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4209
4336
|
</xsd:annotation>
|
4210
4337
|
</xsd:element>
|
4211
4338
|
</xsd:sequence>
|
4339
|
+
<xsd:attribute ref="source"/>
|
4212
4340
|
</xsd:complexType>
|
4213
4341
|
<xsd:complexType name="InstrumentApproachUidType">
|
4214
4342
|
<xsd:annotation>
|
@@ -4259,6 +4387,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4259
4387
|
</xsd:annotation>
|
4260
4388
|
</xsd:element>
|
4261
4389
|
</xsd:sequence>
|
4390
|
+
<xsd:attribute ref="source"/>
|
4262
4391
|
</xsd:complexType>
|
4263
4392
|
<xsd:complexType name="InstrumentApproachUsageConditionUidType">
|
4264
4393
|
<xsd:annotation>
|
@@ -4491,6 +4620,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4491
4620
|
</xsd:element>
|
4492
4621
|
</xsd:sequence>
|
4493
4622
|
<xsd:attribute ref="mid"/>
|
4623
|
+
<xsd:attribute ref="region" use="required"/>
|
4494
4624
|
</xsd:complexType>
|
4495
4625
|
<xsd:complexType name="MlsAzimuthType">
|
4496
4626
|
<xsd:annotation>
|
@@ -4744,6 +4874,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4744
4874
|
</xsd:annotation>
|
4745
4875
|
</xsd:element>
|
4746
4876
|
</xsd:sequence>
|
4877
|
+
<xsd:attribute ref="source"/>
|
4747
4878
|
</xsd:complexType>
|
4748
4879
|
<xsd:complexType name="MlsUidType">
|
4749
4880
|
<xsd:annotation>
|
@@ -4796,6 +4927,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4796
4927
|
</xsd:annotation>
|
4797
4928
|
</xsd:element>
|
4798
4929
|
</xsd:sequence>
|
4930
|
+
<xsd:attribute ref="source"/>
|
4799
4931
|
</xsd:complexType>
|
4800
4932
|
<xsd:complexType name="MsaGroupUidType">
|
4801
4933
|
<xsd:annotation>
|
@@ -4880,6 +5012,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4880
5012
|
</xsd:annotation>
|
4881
5013
|
</xsd:element>
|
4882
5014
|
</xsd:sequence>
|
5015
|
+
<xsd:attribute ref="source"/>
|
4883
5016
|
</xsd:complexType>
|
4884
5017
|
<xsd:complexType name="NavaidAngularReferenceUidType">
|
4885
5018
|
<xsd:annotation>
|
@@ -4946,6 +5079,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4946
5079
|
</xsd:annotation>
|
4947
5080
|
</xsd:element>
|
4948
5081
|
</xsd:sequence>
|
5082
|
+
<xsd:attribute ref="source"/>
|
4949
5083
|
</xsd:complexType>
|
4950
5084
|
<xsd:complexType name="NavaidDistanceIndicationUidType">
|
4951
5085
|
<xsd:annotation>
|
@@ -5087,6 +5221,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5087
5221
|
</xsd:annotation>
|
5088
5222
|
</xsd:element>
|
5089
5223
|
</xsd:sequence>
|
5224
|
+
<xsd:attribute ref="source"/>
|
5090
5225
|
</xsd:complexType>
|
5091
5226
|
<xsd:complexType name="NdbLimitationUidType">
|
5092
5227
|
<xsd:annotation>
|
@@ -5262,6 +5397,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5262
5397
|
</xsd:element>
|
5263
5398
|
</xsd:sequence>
|
5264
5399
|
<xsd:attribute ref="mid"/>
|
5400
|
+
<xsd:attribute ref="region" use="required"/>
|
5265
5401
|
</xsd:complexType>
|
5266
5402
|
<xsd:complexType name="NdbUsageLimitationType">
|
5267
5403
|
<xsd:annotation>
|
@@ -5280,6 +5416,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5280
5416
|
</xsd:element>
|
5281
5417
|
<xsd:element name="UsageLimit" type="NavaidLimitationType" minOccurs="0" maxOccurs="unbounded"/>
|
5282
5418
|
</xsd:sequence>
|
5419
|
+
<xsd:attribute ref="source"/>
|
5283
5420
|
</xsd:complexType>
|
5284
5421
|
<xsd:complexType name="NdbUsageLimitationUidType">
|
5285
5422
|
<xsd:annotation>
|
@@ -5315,6 +5452,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5315
5452
|
</xsd:annotation>
|
5316
5453
|
</xsd:element>
|
5317
5454
|
</xsd:sequence>
|
5455
|
+
<xsd:attribute ref="source"/>
|
5318
5456
|
</xsd:complexType>
|
5319
5457
|
<xsd:complexType name="NitrogenUidType">
|
5320
5458
|
<xsd:annotation>
|
@@ -5442,6 +5580,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5442
5580
|
</xsd:element>
|
5443
5581
|
</xsd:sequence>
|
5444
5582
|
<xsd:attribute ref="mid"/>
|
5583
|
+
<xsd:attribute ref="region" use="required"/>
|
5445
5584
|
</xsd:complexType>
|
5446
5585
|
<xsd:complexType name="ObstacleType">
|
5447
5586
|
<xsd:annotation>
|
@@ -5569,6 +5708,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5569
5708
|
</xsd:annotation>
|
5570
5709
|
</xsd:element>
|
5571
5710
|
</xsd:sequence>
|
5711
|
+
<xsd:attribute ref="source"/>
|
5572
5712
|
</xsd:complexType>
|
5573
5713
|
<xsd:complexType name="ObstacleUidType">
|
5574
5714
|
<xsd:annotation>
|
@@ -5614,6 +5754,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5614
5754
|
</xsd:annotation>
|
5615
5755
|
</xsd:element>
|
5616
5756
|
</xsd:sequence>
|
5757
|
+
<xsd:attribute ref="source"/>
|
5617
5758
|
</xsd:complexType>
|
5618
5759
|
<xsd:complexType name="OilUidType">
|
5619
5760
|
<xsd:annotation>
|
@@ -5654,6 +5795,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5654
5795
|
</xsd:annotation>
|
5655
5796
|
</xsd:element>
|
5656
5797
|
</xsd:sequence>
|
5798
|
+
<xsd:attribute ref="source"/>
|
5657
5799
|
</xsd:complexType>
|
5658
5800
|
<xsd:complexType name="OrganisationAuthorityAddressUidType">
|
5659
5801
|
<xsd:annotation>
|
@@ -5694,6 +5836,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5694
5836
|
</xsd:annotation>
|
5695
5837
|
</xsd:element>
|
5696
5838
|
</xsd:sequence>
|
5839
|
+
<xsd:attribute ref="source"/>
|
5697
5840
|
</xsd:complexType>
|
5698
5841
|
<xsd:complexType name="OrganisationAuthorityAssociationUidType">
|
5699
5842
|
<xsd:annotation>
|
@@ -5758,6 +5901,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5758
5901
|
</xsd:element>
|
5759
5902
|
</xsd:sequence>
|
5760
5903
|
<xsd:attribute ref="mid"/>
|
5904
|
+
<xsd:attribute ref="region" use="required"/>
|
5761
5905
|
</xsd:complexType>
|
5762
5906
|
<xsd:complexType name="OxygenType">
|
5763
5907
|
<xsd:annotation>
|
@@ -5775,6 +5919,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5775
5919
|
</xsd:annotation>
|
5776
5920
|
</xsd:element>
|
5777
5921
|
</xsd:sequence>
|
5922
|
+
<xsd:attribute ref="source"/>
|
5778
5923
|
</xsd:complexType>
|
5779
5924
|
<xsd:complexType name="OxygenUidType">
|
5780
5925
|
<xsd:annotation>
|
@@ -5815,6 +5960,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5815
5960
|
</xsd:annotation>
|
5816
5961
|
</xsd:element>
|
5817
5962
|
</xsd:sequence>
|
5963
|
+
<xsd:attribute ref="source"/>
|
5818
5964
|
</xsd:complexType>
|
5819
5965
|
<xsd:complexType name="PassengerFacilityUidType">
|
5820
5966
|
<xsd:annotation>
|
@@ -6108,6 +6254,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6108
6254
|
</xsd:annotation>
|
6109
6255
|
</xsd:element>
|
6110
6256
|
</xsd:sequence>
|
6257
|
+
<xsd:attribute ref="source"/>
|
6111
6258
|
</xsd:complexType>
|
6112
6259
|
<xsd:complexType name="RouteSegmentServiceUidType">
|
6113
6260
|
<xsd:annotation>
|
@@ -6308,6 +6455,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6308
6455
|
</xsd:annotation>
|
6309
6456
|
</xsd:element>
|
6310
6457
|
</xsd:sequence>
|
6458
|
+
<xsd:attribute ref="source"/>
|
6311
6459
|
</xsd:complexType>
|
6312
6460
|
<xsd:complexType name="RouteSegmentUidType">
|
6313
6461
|
<xsd:annotation>
|
@@ -6355,6 +6503,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6355
6503
|
</xsd:annotation>
|
6356
6504
|
</xsd:element>
|
6357
6505
|
</xsd:sequence>
|
6506
|
+
<xsd:attribute ref="source"/>
|
6358
6507
|
</xsd:complexType>
|
6359
6508
|
<xsd:complexType name="RouteSegmentUsageUidType">
|
6360
6509
|
<xsd:annotation>
|
@@ -6445,6 +6594,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6445
6594
|
</xsd:annotation>
|
6446
6595
|
</xsd:element>
|
6447
6596
|
</xsd:sequence>
|
6597
|
+
<xsd:attribute ref="source"/>
|
6448
6598
|
</xsd:complexType>
|
6449
6599
|
<xsd:complexType name="RunwayCentreLinePositionUidType">
|
6450
6600
|
<xsd:annotation>
|
@@ -6510,6 +6660,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6510
6660
|
</xsd:annotation>
|
6511
6661
|
</xsd:element>
|
6512
6662
|
</xsd:sequence>
|
6663
|
+
<xsd:attribute ref="source"/>
|
6513
6664
|
</xsd:complexType>
|
6514
6665
|
<xsd:complexType name="RunwayDirectionApproachLightingSystemUidType">
|
6515
6666
|
<xsd:annotation>
|
@@ -6555,6 +6706,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6555
6706
|
</xsd:annotation>
|
6556
6707
|
</xsd:element>
|
6557
6708
|
</xsd:sequence>
|
6709
|
+
<xsd:attribute ref="source"/>
|
6558
6710
|
</xsd:complexType>
|
6559
6711
|
<xsd:complexType name="RunwayDirectionDeclaredDistanceUidType">
|
6560
6712
|
<xsd:annotation>
|
@@ -6625,6 +6777,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6625
6777
|
</xsd:annotation>
|
6626
6778
|
</xsd:element>
|
6627
6779
|
</xsd:sequence>
|
6780
|
+
<xsd:attribute ref="source"/>
|
6628
6781
|
</xsd:complexType>
|
6629
6782
|
<xsd:complexType name="RunwayDirectionLightingSystemUidType">
|
6630
6783
|
<xsd:annotation>
|
@@ -6690,6 +6843,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6690
6843
|
</xsd:annotation>
|
6691
6844
|
</xsd:element>
|
6692
6845
|
</xsd:sequence>
|
6846
|
+
<xsd:attribute ref="source"/>
|
6693
6847
|
</xsd:complexType>
|
6694
6848
|
<xsd:complexType name="RunwayDirectionObstacleUidType">
|
6695
6849
|
<xsd:annotation>
|
@@ -6725,6 +6879,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6725
6879
|
</xsd:annotation>
|
6726
6880
|
</xsd:element>
|
6727
6881
|
</xsd:sequence>
|
6882
|
+
<xsd:attribute ref="source"/>
|
6728
6883
|
</xsd:complexType>
|
6729
6884
|
<xsd:complexType name="RunwayDirectionStarUidType">
|
6730
6885
|
<xsd:annotation>
|
@@ -6856,6 +7011,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6856
7011
|
</xsd:annotation>
|
6857
7012
|
</xsd:element>
|
6858
7013
|
</xsd:sequence>
|
7014
|
+
<xsd:attribute ref="source"/>
|
6859
7015
|
</xsd:complexType>
|
6860
7016
|
<xsd:complexType name="RunwayDirectionUidType">
|
6861
7017
|
<xsd:annotation>
|
@@ -6964,6 +7120,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6964
7120
|
</xsd:annotation>
|
6965
7121
|
</xsd:element>
|
6966
7122
|
</xsd:sequence>
|
7123
|
+
<xsd:attribute ref="source"/>
|
6967
7124
|
</xsd:complexType>
|
6968
7125
|
<xsd:complexType name="RunwayProtectionAreaGeometryUidType">
|
6969
7126
|
<xsd:annotation>
|
@@ -7020,6 +7177,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7020
7177
|
</xsd:annotation>
|
7021
7178
|
</xsd:element>
|
7022
7179
|
</xsd:sequence>
|
7180
|
+
<xsd:attribute ref="source"/>
|
7023
7181
|
</xsd:complexType>
|
7024
7182
|
<xsd:complexType name="RunwayProtectionAreaUidType">
|
7025
7183
|
<xsd:annotation>
|
@@ -7123,6 +7281,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7123
7281
|
</xsd:annotation>
|
7124
7282
|
</xsd:element>
|
7125
7283
|
</xsd:sequence>
|
7284
|
+
<xsd:attribute ref="source"/>
|
7126
7285
|
</xsd:complexType>
|
7127
7286
|
<xsd:complexType name="RunwayUidType">
|
7128
7287
|
<xsd:annotation>
|
@@ -7269,6 +7428,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7269
7428
|
</xsd:annotation>
|
7270
7429
|
</xsd:element>
|
7271
7430
|
</xsd:sequence>
|
7431
|
+
<xsd:attribute ref="source"/>
|
7272
7432
|
</xsd:complexType>
|
7273
7433
|
<xsd:complexType name="SidServiceUidType">
|
7274
7434
|
<xsd:annotation>
|
@@ -7346,6 +7506,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7346
7506
|
</xsd:annotation>
|
7347
7507
|
</xsd:element>
|
7348
7508
|
</xsd:sequence>
|
7509
|
+
<xsd:attribute ref="source"/>
|
7349
7510
|
</xsd:complexType>
|
7350
7511
|
<xsd:complexType name="SidUidType">
|
7351
7512
|
<xsd:annotation>
|
@@ -7396,6 +7557,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7396
7557
|
</xsd:annotation>
|
7397
7558
|
</xsd:element>
|
7398
7559
|
</xsd:sequence>
|
7560
|
+
<xsd:attribute ref="source"/>
|
7399
7561
|
</xsd:complexType>
|
7400
7562
|
<xsd:complexType name="SidUsageUidType">
|
7401
7563
|
<xsd:annotation>
|
@@ -7436,6 +7598,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7436
7598
|
</xsd:annotation>
|
7437
7599
|
</xsd:element>
|
7438
7600
|
</xsd:sequence>
|
7601
|
+
<xsd:attribute ref="source"/>
|
7439
7602
|
</xsd:complexType>
|
7440
7603
|
<xsd:complexType name="SignificantPointAirspaceUidType">
|
7441
7604
|
<xsd:annotation>
|
@@ -7478,6 +7641,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7478
7641
|
</xsd:annotation>
|
7479
7642
|
</xsd:element>
|
7480
7643
|
</xsd:sequence>
|
7644
|
+
<xsd:attribute ref="source"/>
|
7481
7645
|
</xsd:complexType>
|
7482
7646
|
<xsd:complexType name="SpecialDateUidType">
|
7483
7647
|
<xsd:annotation>
|
@@ -7608,6 +7772,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7608
7772
|
</xsd:annotation>
|
7609
7773
|
</xsd:element>
|
7610
7774
|
</xsd:sequence>
|
7775
|
+
<xsd:attribute ref="source"/>
|
7611
7776
|
</xsd:complexType>
|
7612
7777
|
<xsd:complexType name="SpecialNavigationSystemStationUidType">
|
7613
7778
|
<xsd:annotation>
|
@@ -7653,6 +7818,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7653
7818
|
</xsd:annotation>
|
7654
7819
|
</xsd:element>
|
7655
7820
|
</xsd:sequence>
|
7821
|
+
<xsd:attribute ref="source"/>
|
7656
7822
|
</xsd:complexType>
|
7657
7823
|
<xsd:complexType name="SpecialNavigationSystemUidType">
|
7658
7824
|
<xsd:annotation>
|
@@ -7701,6 +7867,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7701
7867
|
</xsd:annotation>
|
7702
7868
|
</xsd:element>
|
7703
7869
|
</xsd:sequence>
|
7870
|
+
<xsd:attribute ref="source"/>
|
7704
7871
|
</xsd:complexType>
|
7705
7872
|
<xsd:complexType name="StarServiceUidType">
|
7706
7873
|
<xsd:annotation>
|
@@ -7766,6 +7933,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7766
7933
|
</xsd:annotation>
|
7767
7934
|
</xsd:element>
|
7768
7935
|
</xsd:sequence>
|
7936
|
+
<xsd:attribute ref="source"/>
|
7769
7937
|
</xsd:complexType>
|
7770
7938
|
<xsd:complexType name="StarUidType">
|
7771
7939
|
<xsd:annotation>
|
@@ -7816,6 +7984,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7816
7984
|
</xsd:annotation>
|
7817
7985
|
</xsd:element>
|
7818
7986
|
</xsd:sequence>
|
7987
|
+
<xsd:attribute ref="source"/>
|
7819
7988
|
</xsd:complexType>
|
7820
7989
|
<xsd:complexType name="StarUsageUidType">
|
7821
7990
|
<xsd:annotation>
|
@@ -7894,6 +8063,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7894
8063
|
</xsd:annotation>
|
7895
8064
|
</xsd:element>
|
7896
8065
|
</xsd:sequence>
|
8066
|
+
<xsd:attribute ref="source"/>
|
7897
8067
|
</xsd:complexType>
|
7898
8068
|
<xsd:complexType name="StopwayUidType">
|
7899
8069
|
<xsd:annotation>
|
@@ -7965,6 +8135,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7965
8135
|
</xsd:annotation>
|
7966
8136
|
</xsd:element>
|
7967
8137
|
</xsd:sequence>
|
8138
|
+
<xsd:attribute ref="source"/>
|
7968
8139
|
</xsd:complexType>
|
7969
8140
|
<xsd:complexType name="TacanLimitationUidType">
|
7970
8141
|
<xsd:annotation>
|
@@ -8150,6 +8321,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8150
8321
|
</xsd:element>
|
8151
8322
|
</xsd:sequence>
|
8152
8323
|
<xsd:attribute ref="mid"/>
|
8324
|
+
<xsd:attribute ref="region" use="required"/>
|
8153
8325
|
</xsd:complexType>
|
8154
8326
|
<xsd:complexType name="TacanUsageLimitationType">
|
8155
8327
|
<xsd:annotation>
|
@@ -8168,6 +8340,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8168
8340
|
</xsd:element>
|
8169
8341
|
<xsd:element name="UsageLimit" type="NavaidLimitationType" minOccurs="0" maxOccurs="unbounded"/>
|
8170
8342
|
</xsd:sequence>
|
8343
|
+
<xsd:attribute ref="source"/>
|
8171
8344
|
</xsd:complexType>
|
8172
8345
|
<xsd:complexType name="TacanUsageLimitationUidType">
|
8173
8346
|
<xsd:annotation>
|
@@ -8258,6 +8431,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8258
8431
|
</xsd:annotation>
|
8259
8432
|
</xsd:element>
|
8260
8433
|
</xsd:sequence>
|
8434
|
+
<xsd:attribute ref="source"/>
|
8261
8435
|
</xsd:complexType>
|
8262
8436
|
<xsd:complexType name="TaxiwayCentreLinePositionUidType">
|
8263
8437
|
<xsd:annotation>
|
@@ -8308,6 +8482,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8308
8482
|
</xsd:annotation>
|
8309
8483
|
</xsd:element>
|
8310
8484
|
</xsd:sequence>
|
8485
|
+
<xsd:attribute ref="source"/>
|
8311
8486
|
</xsd:complexType>
|
8312
8487
|
<xsd:complexType name="TaxiwayHoldingPositionUidType">
|
8313
8488
|
<xsd:annotation>
|
@@ -8363,6 +8538,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8363
8538
|
</xsd:annotation>
|
8364
8539
|
</xsd:element>
|
8365
8540
|
</xsd:sequence>
|
8541
|
+
<xsd:attribute ref="source"/>
|
8366
8542
|
</xsd:complexType>
|
8367
8543
|
<xsd:complexType name="TaxiwayLightingSystemUidType">
|
8368
8544
|
<xsd:annotation>
|
@@ -8436,6 +8612,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8436
8612
|
</xsd:annotation>
|
8437
8613
|
</xsd:element>
|
8438
8614
|
</xsd:sequence>
|
8615
|
+
<xsd:attribute ref="source"/>
|
8439
8616
|
</xsd:complexType>
|
8440
8617
|
<xsd:complexType name="TaxiwayUidType">
|
8441
8618
|
<xsd:annotation>
|
@@ -8483,12 +8660,22 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8483
8660
|
</xsd:element>
|
8484
8661
|
<xsd:element name="dateValidWef" type="dateMonthDay">
|
8485
8662
|
<xsd:annotation>
|
8486
|
-
<xsd:documentation>Yearly start date</xsd:documentation>
|
8663
|
+
<xsd:documentation>(Yearly) start date</xsd:documentation>
|
8664
|
+
</xsd:annotation>
|
8665
|
+
</xsd:element>
|
8666
|
+
<xsd:element name="dateYearValidWef" type="dateYear" minOccurs="0">
|
8667
|
+
<xsd:annotation>
|
8668
|
+
<xsd:documentation>Year of start date</xsd:documentation>
|
8487
8669
|
</xsd:annotation>
|
8488
8670
|
</xsd:element>
|
8489
8671
|
<xsd:element name="dateValidTil" type="dateMonthDay">
|
8490
8672
|
<xsd:annotation>
|
8491
|
-
<xsd:documentation>Yearly end date</xsd:documentation>
|
8673
|
+
<xsd:documentation>(Yearly) end date</xsd:documentation>
|
8674
|
+
</xsd:annotation>
|
8675
|
+
</xsd:element>
|
8676
|
+
<xsd:element name="dateYearValidTil" type="dateYear" minOccurs="0">
|
8677
|
+
<xsd:annotation>
|
8678
|
+
<xsd:documentation>Year of end date</xsd:documentation>
|
8492
8679
|
</xsd:annotation>
|
8493
8680
|
</xsd:element>
|
8494
8681
|
<xsd:element name="codeDay" type="codeDay">
|
@@ -8575,12 +8762,22 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8575
8762
|
</xsd:element>
|
8576
8763
|
<xsd:element name="dateValidWef" type="dateMonthDay">
|
8577
8764
|
<xsd:annotation>
|
8578
|
-
<xsd:documentation>Yearly start date</xsd:documentation>
|
8765
|
+
<xsd:documentation>(Yearly) start date</xsd:documentation>
|
8766
|
+
</xsd:annotation>
|
8767
|
+
</xsd:element>
|
8768
|
+
<xsd:element name="dateYearValidWef" type="dateYear" minOccurs="0">
|
8769
|
+
<xsd:annotation>
|
8770
|
+
<xsd:documentation>Year of start date</xsd:documentation>
|
8579
8771
|
</xsd:annotation>
|
8580
8772
|
</xsd:element>
|
8581
8773
|
<xsd:element name="dateValidTil" type="dateMonthDay">
|
8582
8774
|
<xsd:annotation>
|
8583
|
-
<xsd:documentation>Yearly end date</xsd:documentation>
|
8775
|
+
<xsd:documentation>(Yearly) end date</xsd:documentation>
|
8776
|
+
</xsd:annotation>
|
8777
|
+
</xsd:element>
|
8778
|
+
<xsd:element name="dateYearValidTil" type="dateYear" minOccurs="0">
|
8779
|
+
<xsd:annotation>
|
8780
|
+
<xsd:documentation>Year of end date</xsd:documentation>
|
8584
8781
|
</xsd:annotation>
|
8585
8782
|
</xsd:element>
|
8586
8783
|
<xsd:element name="codeDay" type="codeDay">
|
@@ -8733,6 +8930,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8733
8930
|
</xsd:annotation>
|
8734
8931
|
</xsd:element>
|
8735
8932
|
</xsd:sequence>
|
8933
|
+
<xsd:attribute ref="source"/>
|
8736
8934
|
</xsd:complexType>
|
8737
8935
|
<xsd:complexType name="TlofGeometryUidType">
|
8738
8936
|
<xsd:annotation>
|
@@ -8788,6 +8986,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8788
8986
|
</xsd:annotation>
|
8789
8987
|
</xsd:element>
|
8790
8988
|
</xsd:sequence>
|
8989
|
+
<xsd:attribute ref="source"/>
|
8791
8990
|
</xsd:complexType>
|
8792
8991
|
<xsd:complexType name="TlofLightingSystemUidType">
|
8793
8992
|
<xsd:annotation>
|
@@ -8896,6 +9095,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8896
9095
|
</xsd:annotation>
|
8897
9096
|
</xsd:element>
|
8898
9097
|
</xsd:sequence>
|
9098
|
+
<xsd:attribute ref="source"/>
|
8899
9099
|
</xsd:complexType>
|
8900
9100
|
<xsd:complexType name="TlofSafeAreaGeometryUidType">
|
8901
9101
|
<xsd:annotation>
|
@@ -8952,6 +9152,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
8952
9152
|
</xsd:annotation>
|
8953
9153
|
</xsd:element>
|
8954
9154
|
</xsd:sequence>
|
9155
|
+
<xsd:attribute ref="source"/>
|
8955
9156
|
</xsd:complexType>
|
8956
9157
|
<xsd:complexType name="TlofSafeAreaUidType">
|
8957
9158
|
<xsd:annotation>
|
@@ -9090,6 +9291,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9090
9291
|
</xsd:annotation>
|
9091
9292
|
</xsd:element>
|
9092
9293
|
</xsd:sequence>
|
9294
|
+
<xsd:attribute ref="source"/>
|
9093
9295
|
</xsd:complexType>
|
9094
9296
|
<xsd:complexType name="TlofUidType">
|
9095
9297
|
<xsd:annotation>
|
@@ -9155,6 +9357,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9155
9357
|
</xsd:annotation>
|
9156
9358
|
</xsd:element>
|
9157
9359
|
</xsd:sequence>
|
9360
|
+
<xsd:attribute ref="source"/>
|
9158
9361
|
</xsd:complexType>
|
9159
9362
|
<xsd:complexType name="TrafficFlowRestrictionUidType">
|
9160
9363
|
<xsd:annotation>
|
@@ -9190,6 +9393,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9190
9393
|
</xsd:annotation>
|
9191
9394
|
</xsd:element>
|
9192
9395
|
</xsd:sequence>
|
9396
|
+
<xsd:attribute ref="source"/>
|
9193
9397
|
</xsd:complexType>
|
9194
9398
|
<xsd:complexType name="UnitAssociationUidType">
|
9195
9399
|
<xsd:annotation>
|
@@ -9235,6 +9439,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9235
9439
|
</xsd:annotation>
|
9236
9440
|
</xsd:element>
|
9237
9441
|
</xsd:sequence>
|
9442
|
+
<xsd:attribute ref="source"/>
|
9238
9443
|
</xsd:complexType>
|
9239
9444
|
<xsd:complexType name="UnitContactAddressUidType">
|
9240
9445
|
<xsd:annotation>
|
@@ -9279,11 +9484,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9279
9484
|
<xsd:documentation>Organisation unit providing services is located at Aerodrome / Heliport</xsd:documentation>
|
9280
9485
|
</xsd:annotation>
|
9281
9486
|
</xsd:element>
|
9282
|
-
<xsd:element name="codeType" type="codeTypeUnit">
|
9283
|
-
<xsd:annotation>
|
9284
|
-
<xsd:documentation>Type</xsd:documentation>
|
9285
|
-
</xsd:annotation>
|
9286
|
-
</xsd:element>
|
9287
9487
|
<xsd:element name="codeClass" type="codeClassUnit">
|
9288
9488
|
<xsd:annotation>
|
9289
9489
|
<xsd:documentation>Classification</xsd:documentation>
|
@@ -9327,8 +9527,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9327
9527
|
<xsd:documentation>Name</xsd:documentation>
|
9328
9528
|
</xsd:annotation>
|
9329
9529
|
</xsd:element>
|
9530
|
+
<xsd:element name="codeType" type="codeTypeUnit">
|
9531
|
+
<xsd:annotation>
|
9532
|
+
<xsd:documentation>Type</xsd:documentation>
|
9533
|
+
</xsd:annotation>
|
9534
|
+
</xsd:element>
|
9330
9535
|
</xsd:sequence>
|
9331
9536
|
<xsd:attribute ref="mid"/>
|
9537
|
+
<xsd:attribute ref="region" use="required"/>
|
9332
9538
|
</xsd:complexType>
|
9333
9539
|
<xsd:complexType name="VorLimitationType">
|
9334
9540
|
<xsd:annotation>
|
@@ -9387,6 +9593,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9387
9593
|
</xsd:annotation>
|
9388
9594
|
</xsd:element>
|
9389
9595
|
</xsd:sequence>
|
9596
|
+
<xsd:attribute ref="source"/>
|
9390
9597
|
</xsd:complexType>
|
9391
9598
|
<xsd:complexType name="VorLimitationUidType">
|
9392
9599
|
<xsd:annotation>
|
@@ -9577,6 +9784,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9577
9784
|
</xsd:element>
|
9578
9785
|
</xsd:sequence>
|
9579
9786
|
<xsd:attribute ref="mid"/>
|
9787
|
+
<xsd:attribute ref="region" use="required"/>
|
9580
9788
|
</xsd:complexType>
|
9581
9789
|
<xsd:complexType name="VorUsageLimitationType">
|
9582
9790
|
<xsd:annotation>
|
@@ -9595,6 +9803,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9595
9803
|
</xsd:element>
|
9596
9804
|
<xsd:element name="UsageLimit" type="NavaidLimitationType" minOccurs="0" maxOccurs="unbounded"/>
|
9597
9805
|
</xsd:sequence>
|
9806
|
+
<xsd:attribute ref="source"/>
|
9598
9807
|
</xsd:complexType>
|
9599
9808
|
<xsd:complexType name="VorUsageLimitationUidType">
|
9600
9809
|
<xsd:annotation>
|
@@ -9674,6 +9883,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9674
9883
|
</xsd:complexType>
|
9675
9884
|
</xsd:element>
|
9676
9885
|
</xsd:sequence>
|
9886
|
+
<xsd:attribute ref="source"/>
|
9677
9887
|
</xsd:complexType>
|
9678
9888
|
<xsd:complexType name="LabelMarkerUidType">
|
9679
9889
|
<xsd:annotation>
|
@@ -9692,6 +9902,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9692
9902
|
</xsd:element>
|
9693
9903
|
</xsd:sequence>
|
9694
9904
|
<xsd:attribute ref="mid"/>
|
9905
|
+
<xsd:attribute ref="region" use="required"/>
|
9695
9906
|
</xsd:complexType>
|
9696
9907
|
<xsd:group name="SectorOfCircle">
|
9697
9908
|
<xsd:sequence>
|