aixm 1.3.4 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -66,12 +66,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
66
66
|
<xsd:element name="Dli" type="DmeUsageLimitationType"/>
|
67
67
|
<xsd:element name="Dme" type="DmeType"/>
|
68
68
|
<xsd:element name="Dpn" type="DesignatedPointType"/>
|
69
|
-
<xsd:element name="Fao" type="FatoOldType">
|
70
|
-
<xsd:annotation>
|
71
|
-
<xsd:appinfo>DEPRECATED-4.5</xsd:appinfo>
|
72
|
-
<xsd:documentation>[Deprecated]</xsd:documentation>
|
73
|
-
</xsd:annotation>
|
74
|
-
</xsd:element>
|
75
69
|
<xsd:element name="Fto" type="FatoType"/>
|
76
70
|
<xsd:element name="Fcp" type="FatoCentreLinePositionType"/>
|
77
71
|
<xsd:element name="Fda" type="FatoDirectionApproachLightingType"/>
|
@@ -157,36 +151,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
157
151
|
<xsd:element name="Vli" type="VorUsageLimitationType"/>
|
158
152
|
<xsd:element name="Vor" type="VorType"/>
|
159
153
|
<xsd:element name="Lbm" type="LabelMarkerType"/>
|
160
|
-
<xsd:element name="Aac" type="AirspaceAssocType">
|
161
|
-
<xsd:annotation>
|
162
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
163
|
-
<xsd:documentation>[Deprecated]</xsd:documentation>
|
164
|
-
</xsd:annotation>
|
165
|
-
</xsd:element>
|
166
|
-
<xsd:element name="Dln" type="DmeLimitationType">
|
167
|
-
<xsd:annotation>
|
168
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
169
|
-
<xsd:documentation>[Deprecated]</xsd:documentation>
|
170
|
-
</xsd:annotation>
|
171
|
-
</xsd:element>
|
172
|
-
<xsd:element name="Nln" type="NdbLimitationType">
|
173
|
-
<xsd:annotation>
|
174
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
175
|
-
<xsd:documentation>[Deprecated]</xsd:documentation>
|
176
|
-
</xsd:annotation>
|
177
|
-
</xsd:element>
|
178
|
-
<xsd:element name="Tln" type="TacanLimitationType">
|
179
|
-
<xsd:annotation>
|
180
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
181
|
-
<xsd:documentation>[Deprecated]</xsd:documentation>
|
182
|
-
</xsd:annotation>
|
183
|
-
</xsd:element>
|
184
|
-
<xsd:element name="Vln" type="VorLimitationType">
|
185
|
-
<xsd:annotation>
|
186
|
-
<xsd:appinfo>DEPRECATED-4.0</xsd:appinfo>
|
187
|
-
<xsd:documentation>[Deprecated]</xsd:documentation>
|
188
|
-
</xsd:annotation>
|
189
|
-
</xsd:element>
|
190
154
|
</xsd:choice>
|
191
155
|
<xsd:attribute name="version" type="xsd:string" use="required">
|
192
156
|
<xsd:annotation>
|
@@ -208,17 +172,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
208
172
|
<xsd:documentation>Regions used throughout this document</xsd:documentation>
|
209
173
|
</xsd:annotation>
|
210
174
|
</xsd:attribute>
|
211
|
-
<xsd:attribute name="created" type="
|
175
|
+
<xsd:attribute name="created" type="dateTimeZulu" use="required">
|
212
176
|
<xsd:annotation>
|
213
177
|
<xsd:documentation>The date and time when the message was created</xsd:documentation>
|
214
178
|
</xsd:annotation>
|
215
179
|
</xsd:attribute>
|
216
|
-
<xsd:attribute name="effective" type="
|
180
|
+
<xsd:attribute name="effective" type="dateTimeZulu" use="required">
|
217
181
|
<xsd:annotation>
|
218
182
|
<xsd:documentation>The beginning date and time used as criteria to select valid versions included in the message</xsd:documentation>
|
219
183
|
</xsd:annotation>
|
220
184
|
</xsd:attribute>
|
221
|
-
<xsd:attribute name="expiration" type="
|
185
|
+
<xsd:attribute name="expiration" type="dateTimeZulu">
|
222
186
|
<xsd:annotation>
|
223
187
|
<xsd:documentation>The optional end date and time used as criteria to select valid versions included in the message</xsd:documentation>
|
224
188
|
</xsd:annotation>
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aixm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sven Schwyn
|
@@ -29,7 +29,7 @@ cert_chain:
|
|
29
29
|
kAyiRqgxF4dJviwtqI7mZIomWL63+kXLgjOjMe1SHxfIPo/0ji6+r1p4KYa7o41v
|
30
30
|
fwIwU1MKlFBdsjkd
|
31
31
|
-----END CERTIFICATE-----
|
32
|
-
date: 2023-01-
|
32
|
+
date: 2023-01-22 00:00:00.000000000 Z
|
33
33
|
dependencies:
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: nokogiri
|
@@ -259,6 +259,7 @@ files:
|
|
259
259
|
- lib/aixm/feature/obstacle_group.rb
|
260
260
|
- lib/aixm/feature/organisation.rb
|
261
261
|
- lib/aixm/feature/unit.rb
|
262
|
+
- lib/aixm/l.rb
|
262
263
|
- lib/aixm/object.rb
|
263
264
|
- lib/aixm/p.rb
|
264
265
|
- lib/aixm/payload_hash.rb
|
@@ -312,7 +313,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
312
313
|
- !ruby/object:Gem::Version
|
313
314
|
version: '0'
|
314
315
|
requirements: []
|
315
|
-
rubygems_version: 3.4.
|
316
|
+
rubygems_version: 3.4.5
|
316
317
|
signing_key:
|
317
318
|
specification_version: 4
|
318
319
|
summary: Builder for AIXM/OFMX aeronautical information
|
metadata.gz.sig
CHANGED
Binary file
|