aixm 1.3.4 → 1.4.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 +24 -0
- data/lib/aixm/classes.rb +1 -0
- data/lib/aixm/component/helipad.rb +11 -0
- data/lib/aixm/component/runway.rb +84 -23
- data/lib/aixm/document.rb +3 -6
- data/lib/aixm/feature/airspace.rb +15 -0
- data/lib/aixm/feature/obstacle.rb +2 -2
- data/lib/aixm/l.rb +61 -0
- data/lib/aixm/refinements.rb +18 -3
- data/lib/aixm/version.rb +1 -1
- data/lib/aixm/xy.rb +34 -2
- data/lib/aixm.rb +1 -0
- data/schemas/ofmx/0.1/OFMX-DataTypes.xsd +12 -195
- data/schemas/ofmx/0.1/OFMX-Features.xsd +79 -721
- data/schemas/ofmx/0.1/OFMX-Snapshot.xsd +7 -43
- data.tar.gz.sig +0 -0
- metadata +4 -3
- metadata.gz.sig +0 -0
@@ -8,7 +8,7 @@ This is a fork of AIXM 4.5 to accomodate extensions and backports for
|
|
8
8
|
open flightmaps.
|
9
9
|
|
10
10
|
AIXM: copyright (c) 2006, EUROCONTROL (BSD license)
|
11
|
-
OFMX:
|
11
|
+
OFMX: copyright (c) 2018, open flightmaps (BSD license)
|
12
12
|
|
13
13
|
Redistribution and use in source and binary forms, with or without modification,
|
14
14
|
are permitted provided that the following conditions are met:
|
@@ -18,9 +18,9 @@ are permitted provided that the following conditions are met:
|
|
18
18
|
* Redistributions in binary form must reproduce the above copyright notice,
|
19
19
|
this list of conditions and the following disclaimer in the documentation
|
20
20
|
and/or other materials provided with the distribution.
|
21
|
-
* Neither the name of EUROCONTROL nor the names of its
|
22
|
-
used to endorse or promote products derived from this
|
23
|
-
specific prior written permission.
|
21
|
+
* Neither the name of EUROCONTROL, open flightmaps nor the names of its
|
22
|
+
contributors may be used to endorse or promote products derived from this
|
23
|
+
software without specific prior written permission.
|
24
24
|
|
25
25
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
26
26
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
@@ -331,11 +331,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
331
331
|
</xsd:complexType>
|
332
332
|
<xsd:simpleType name="codeCatOilBase">
|
333
333
|
<xsd:restriction base="xsd:string">
|
334
|
-
<xsd:enumeration value="AVIA">
|
335
|
-
<xsd:annotation>
|
336
|
-
<xsd:appinfo>DEPRECATED-4.5</xsd:appinfo>
|
337
|
-
</xsd:annotation>
|
338
|
-
</xsd:enumeration>
|
339
334
|
<xsd:enumeration value="PISTON"/>
|
340
335
|
<xsd:enumeration value="TURBO"/>
|
341
336
|
<xsd:enumeration value="HYD"/>
|
@@ -1609,11 +1604,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1609
1604
|
<xsd:enumeration value="FRI"/>
|
1610
1605
|
<xsd:enumeration value="SAT"/>
|
1611
1606
|
<xsd:enumeration value="SUN"/>
|
1612
|
-
<xsd:enumeration value="MOFRI">
|
1613
|
-
<xsd:annotation>
|
1614
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
1615
|
-
</xsd:annotation>
|
1616
|
-
</xsd:enumeration>
|
1617
1607
|
<xsd:enumeration value="WD"/>
|
1618
1608
|
<xsd:enumeration value="PWD"/>
|
1619
1609
|
<xsd:enumeration value="AWD"/>
|
@@ -2217,28 +2207,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2217
2207
|
</xsd:extension>
|
2218
2208
|
</xsd:simpleContent>
|
2219
2209
|
</xsd:complexType>
|
2220
|
-
<xsd:simpleType name="codeOprBase">
|
2221
|
-
<xsd:annotation>
|
2222
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
2223
|
-
</xsd:annotation>
|
2224
|
-
<xsd:restriction base="xsd:string">
|
2225
|
-
<xsd:enumeration value="BASE"/>
|
2226
|
-
<xsd:enumeration value="UNION"/>
|
2227
|
-
<xsd:enumeration value="INTERS"/>
|
2228
|
-
<xsd:enumeration value="SUBTR"/>
|
2229
|
-
</xsd:restriction>
|
2230
|
-
</xsd:simpleType>
|
2231
|
-
<xsd:complexType name="codeOpr">
|
2232
|
-
<xsd:annotation>
|
2233
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
2234
|
-
<xsd:documentation>An 'operator' in coded form according to which two 'operants' will be 'associated' in order to produce a result.</xsd:documentation>
|
2235
|
-
</xsd:annotation>
|
2236
|
-
<xsd:simpleContent>
|
2237
|
-
<xsd:extension base="codeOprBase">
|
2238
|
-
<xsd:attributeGroup ref="Changes"/>
|
2239
|
-
</xsd:extension>
|
2240
|
-
</xsd:simpleContent>
|
2241
|
-
</xsd:complexType>
|
2242
2210
|
<xsd:simpleType name="codeOprAsBase">
|
2243
2211
|
<xsd:restriction base="xsd:string">
|
2244
2212
|
<xsd:enumeration value="UNION"/>
|
@@ -2693,27 +2661,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2693
2661
|
</xsd:extension>
|
2694
2662
|
</xsd:simpleContent>
|
2695
2663
|
</xsd:complexType>
|
2696
|
-
<xsd:simpleType name="codeStrengthSfcBase">
|
2697
|
-
<xsd:annotation>
|
2698
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
2699
|
-
</xsd:annotation>
|
2700
|
-
<xsd:restriction base="xsd:string">
|
2701
|
-
<xsd:enumeration value="SIWL"/>
|
2702
|
-
<xsd:enumeration value="PCN"/>
|
2703
|
-
<xsd:enumeration value="LCN"/>
|
2704
|
-
</xsd:restriction>
|
2705
|
-
</xsd:simpleType>
|
2706
|
-
<xsd:complexType name="codeStrengthSfc">
|
2707
|
-
<xsd:annotation>
|
2708
|
-
<xsd:documentation>[Deprecated] A code indicating the convention used to measure the strength of a surface. Eg: PCN, SIWL, etc..</xsd:documentation>
|
2709
|
-
<xsd:appinfo>DEPRECATED-4.5</xsd:appinfo>
|
2710
|
-
</xsd:annotation>
|
2711
|
-
<xsd:simpleContent>
|
2712
|
-
<xsd:extension base="codeStrengthSfcBase">
|
2713
|
-
<xsd:attributeGroup ref="Changes"/>
|
2714
|
-
</xsd:extension>
|
2715
|
-
</xsd:simpleContent>
|
2716
|
-
</xsd:complexType>
|
2717
2664
|
<xsd:simpleType name="codeStsSfcBase">
|
2718
2665
|
<xsd:restriction base="xsd:string">
|
2719
2666
|
<xsd:enumeration value="WIP"/>
|
@@ -2921,11 +2868,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2921
2868
|
<xsd:simpleType name="codeTypeAirspaceVertexBase">
|
2922
2869
|
<xsd:restriction base="xsd:string">
|
2923
2870
|
<xsd:enumeration value="ABE"/>
|
2924
|
-
<xsd:enumeration value="CIR">
|
2925
|
-
<xsd:annotation>
|
2926
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
2927
|
-
</xsd:annotation>
|
2928
|
-
</xsd:enumeration>
|
2929
2871
|
<xsd:enumeration value="GRC"/>
|
2930
2872
|
<xsd:enumeration value="RHL"/>
|
2931
2873
|
<xsd:enumeration value="CCA"/>
|
@@ -3051,37 +2993,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3051
2993
|
</xsd:complexType>
|
3052
2994
|
<xsd:simpleType name="codeTypeAsBase">
|
3053
2995
|
<xsd:restriction base="xsd:string">
|
3054
|
-
<xsd:enumeration value="ICAO">
|
3055
|
-
<xsd:annotation>
|
3056
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3057
|
-
</xsd:annotation>
|
3058
|
-
</xsd:enumeration>
|
3059
|
-
<xsd:enumeration value="ECAC">
|
3060
|
-
<xsd:annotation>
|
3061
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3062
|
-
</xsd:annotation>
|
3063
|
-
</xsd:enumeration>
|
3064
|
-
<xsd:enumeration value="CFMU">
|
3065
|
-
<xsd:annotation>
|
3066
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3067
|
-
</xsd:annotation>
|
3068
|
-
</xsd:enumeration>
|
3069
|
-
<xsd:enumeration value="IFPS">
|
3070
|
-
<xsd:annotation>
|
3071
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3072
|
-
</xsd:annotation>
|
3073
|
-
</xsd:enumeration>
|
3074
|
-
<xsd:enumeration value="TACT">
|
3075
|
-
<xsd:annotation>
|
3076
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3077
|
-
</xsd:annotation>
|
3078
|
-
</xsd:enumeration>
|
3079
2996
|
<xsd:enumeration value="NAS"/>
|
3080
|
-
<xsd:enumeration value="NAS-P">
|
3081
|
-
<xsd:annotation>
|
3082
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3083
|
-
</xsd:annotation>
|
3084
|
-
</xsd:enumeration>
|
3085
2997
|
<xsd:enumeration value="FIR"/>
|
3086
2998
|
<xsd:enumeration value="FIR-P"/>
|
3087
2999
|
<xsd:enumeration value="UIR"/>
|
@@ -3096,26 +3008,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3096
3008
|
<xsd:enumeration value="TMA-P"/>
|
3097
3009
|
<xsd:enumeration value="CTR"/>
|
3098
3010
|
<xsd:enumeration value="CTR-P"/>
|
3099
|
-
<xsd:enumeration value="ATZ">
|
3100
|
-
<xsd:annotation>
|
3101
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3102
|
-
</xsd:annotation>
|
3103
|
-
</xsd:enumeration>
|
3104
|
-
<xsd:enumeration value="ATZ-P">
|
3105
|
-
<xsd:annotation>
|
3106
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3107
|
-
</xsd:annotation>
|
3108
|
-
</xsd:enumeration>
|
3109
|
-
<xsd:enumeration value="MNPSA">
|
3110
|
-
<xsd:annotation>
|
3111
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3112
|
-
</xsd:annotation>
|
3113
|
-
</xsd:enumeration>
|
3114
|
-
<xsd:enumeration value="MNPSA-P">
|
3115
|
-
<xsd:annotation>
|
3116
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3117
|
-
</xsd:annotation>
|
3118
|
-
</xsd:enumeration>
|
3119
3011
|
<xsd:enumeration value="OTA"/>
|
3120
3012
|
<xsd:enumeration value="SECTOR"/>
|
3121
3013
|
<xsd:enumeration value="SECTOR-C"/>
|
@@ -3123,53 +3015,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3123
3015
|
<xsd:enumeration value="CBA"/>
|
3124
3016
|
<xsd:enumeration value="RCA"/>
|
3125
3017
|
<xsd:enumeration value="RAS"/>
|
3126
|
-
<xsd:enumeration value="CDA">
|
3127
|
-
<xsd:annotation>
|
3128
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3129
|
-
</xsd:annotation>
|
3130
|
-
</xsd:enumeration>
|
3131
3018
|
<xsd:enumeration value="AWY"/>
|
3132
|
-
<xsd:enumeration value="RTECL">
|
3133
|
-
<xsd:annotation>
|
3134
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3135
|
-
</xsd:annotation>
|
3136
|
-
</xsd:enumeration>
|
3137
3019
|
<xsd:enumeration value="P"/>
|
3138
3020
|
<xsd:enumeration value="R"/>
|
3139
3021
|
<xsd:enumeration value="D"/>
|
3140
3022
|
<xsd:enumeration value="R-AMC"/>
|
3141
3023
|
<xsd:enumeration value="D-AMC"/>
|
3142
|
-
<xsd:enumeration value="MIL">
|
3143
|
-
<xsd:annotation>
|
3144
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3145
|
-
</xsd:annotation>
|
3146
|
-
</xsd:enumeration>
|
3147
3024
|
<xsd:enumeration value="ADIZ"/>
|
3148
|
-
<xsd:enumeration value="HTZ">
|
3149
|
-
<xsd:annotation>
|
3150
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3151
|
-
</xsd:annotation>
|
3152
|
-
</xsd:enumeration>
|
3153
|
-
<xsd:enumeration value="OIL">
|
3154
|
-
<xsd:annotation>
|
3155
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3156
|
-
</xsd:annotation>
|
3157
|
-
</xsd:enumeration>
|
3158
|
-
<xsd:enumeration value="BIRD">
|
3159
|
-
<xsd:annotation>
|
3160
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3161
|
-
</xsd:annotation>
|
3162
|
-
</xsd:enumeration>
|
3163
|
-
<xsd:enumeration value="SPORT">
|
3164
|
-
<xsd:annotation>
|
3165
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3166
|
-
</xsd:annotation>
|
3167
|
-
</xsd:enumeration>
|
3168
|
-
<xsd:enumeration value="LMA">
|
3169
|
-
<xsd:annotation>
|
3170
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3171
|
-
</xsd:annotation>
|
3172
|
-
</xsd:enumeration>
|
3173
3025
|
<xsd:enumeration value="NO-FIR"/>
|
3174
3026
|
<xsd:enumeration value="PART"/>
|
3175
3027
|
<xsd:enumeration value="CLASS"/>
|
@@ -3193,27 +3045,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3193
3045
|
</xsd:extension>
|
3194
3046
|
</xsd:simpleContent>
|
3195
3047
|
</xsd:complexType>
|
3196
|
-
<xsd:simpleType name="codeTypeAssocAsBase">
|
3197
|
-
<xsd:annotation>
|
3198
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3199
|
-
</xsd:annotation>
|
3200
|
-
<xsd:restriction base="xsd:string">
|
3201
|
-
<xsd:enumeration value="BOM"/>
|
3202
|
-
<xsd:enumeration value="ABOVE-BELOW"/>
|
3203
|
-
<xsd:enumeration value="TIME-DIST"/>
|
3204
|
-
</xsd:restriction>
|
3205
|
-
</xsd:simpleType>
|
3206
|
-
<xsd:complexType name="codeTypeAssocAs">
|
3207
|
-
<xsd:annotation>
|
3208
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3209
|
-
<xsd:documentation>The values indicating the type of association between two airspaces.</xsd:documentation>
|
3210
|
-
</xsd:annotation>
|
3211
|
-
<xsd:simpleContent>
|
3212
|
-
<xsd:extension base="codeTypeAssocAsBase">
|
3213
|
-
<xsd:attributeGroup ref="Changes"/>
|
3214
|
-
</xsd:extension>
|
3215
|
-
</xsd:simpleContent>
|
3216
|
-
</xsd:complexType>
|
3217
3048
|
<xsd:simpleType name="codeTypeAssocOrgBase">
|
3218
3049
|
<xsd:restriction base="xsd:string">
|
3219
3050
|
<xsd:enumeration value="OWN"/>
|
@@ -3586,28 +3417,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3586
3417
|
</xsd:extension>
|
3587
3418
|
</xsd:simpleContent>
|
3588
3419
|
</xsd:complexType>
|
3589
|
-
<xsd:simpleType name="codeTypeMilOpsBase">
|
3590
|
-
<xsd:annotation>
|
3591
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3592
|
-
</xsd:annotation>
|
3593
|
-
<xsd:restriction base="xsd:string">
|
3594
|
-
<xsd:enumeration value="CIV"/>
|
3595
|
-
<xsd:enumeration value="JOINT"/>
|
3596
|
-
<xsd:enumeration value="MILEXT"/>
|
3597
|
-
<xsd:enumeration value="MIL"/>
|
3598
|
-
</xsd:restriction>
|
3599
|
-
</xsd:simpleType>
|
3600
|
-
<xsd:complexType name="codeTypeMilOps">
|
3601
|
-
<xsd:annotation>
|
3602
|
-
<xsd:documentation>A code indicating if a facility is to be used for military, civil or both types of operations.</xsd:documentation>
|
3603
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
3604
|
-
</xsd:annotation>
|
3605
|
-
<xsd:simpleContent>
|
3606
|
-
<xsd:extension base="codeTypeMilOpsBase">
|
3607
|
-
<xsd:attributeGroup ref="Changes"/>
|
3608
|
-
</xsd:extension>
|
3609
|
-
</xsd:simpleContent>
|
3610
|
-
</xsd:complexType>
|
3611
3420
|
<xsd:simpleType name="codeTypeNavAidLimitBase">
|
3612
3421
|
<xsd:restriction base="xsd:string">
|
3613
3422
|
<xsd:enumeration value="CVR"/>
|
@@ -4477,6 +4286,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4477
4286
|
</xsd:extension>
|
4478
4287
|
</xsd:simpleContent>
|
4479
4288
|
</xsd:complexType>
|
4289
|
+
<xsd:simpleType name="dateTimeZulu">
|
4290
|
+
<xsd:annotation>
|
4291
|
+
<xsd:documentation>A xsd:dateTime expressed as UTC.</xsd:documentation>
|
4292
|
+
</xsd:annotation>
|
4293
|
+
<xsd:restriction base="xsd:dateTime">
|
4294
|
+
<xsd:pattern value=".*(Z|[+-]00:00)"/>
|
4295
|
+
</xsd:restriction>
|
4296
|
+
</xsd:simpleType>
|
4480
4297
|
<xsd:simpleType name="dateYearBase">
|
4481
4298
|
<xsd:restriction base="xsd:string">
|
4482
4299
|
<xsd:pattern value="\d\d\d\d"/>
|