aipp 2.1.9 → 2.1.10
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 +3 -1
- data/CHANGELOG.md +8 -0
- data/lib/aipp/regions/LS/README.md +1 -0
- data/lib/aipp/regions/LS/helpers/base.rb +3 -3
- data/lib/aipp/regions/LS/notam/ENR.rb +8 -8
- data/lib/aipp/runner.rb +1 -0
- data/lib/aipp/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +13 -7
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 990f2f967ee3dba62bb824e80229908985520e95c0797fc53cba5fee30e704d1
|
|
4
|
+
data.tar.gz: 37104d39d21f4e35e7cc9730bb0b9edcf3b383ff2fe46a2feb965d20f02882f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d854f0ec0d98ad690ef43c0a504e8a85cd22fbd392181073a35a9c4541995610c217a064e4d37192e4e526316e1f2db96581fd8ef1b10a14426973f71424191
|
|
7
|
+
data.tar.gz: 7ed179844f5093236aee066d03a4330e61054397769ae78a885033955bb19596966880ef9076aceae17082e7dc932330776c2dae9dc28e8111499403a2cc12b3
|
checksums.yaml.gz.sig
CHANGED
|
@@ -1 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
����s����RR.��`q�됔�CZ�b{i1�yg'��q9�[z����}e�k���x�$�De]-���^��� *GQXð�&l
|
|
2
|
+
���Y{�)/�D�[Lf�X��^9�A3/����������K|ɁP?eU!q%|P�&/z�:
|
|
3
|
+
�ә�7������Zs˸�
|
data/CHANGELOG.md
CHANGED
|
@@ -118,6 +118,7 @@ Any output on STDERR should trigger an alert.
|
|
|
118
118
|
## References
|
|
119
119
|
|
|
120
120
|
* [skybriefing](https://www.skybriefing.com)
|
|
121
|
+
* [skybriefing contact (aka: LS NOF)](https://www.skybriefing.com/support)
|
|
121
122
|
* [AIM Data Catalogue](https://www.aerodatacat.ch)
|
|
122
123
|
* [DABS](https://www.skybriefing.com/de/dabs)
|
|
123
124
|
* [NOTAM Info](https://notaminfo.com/switzerlandmap)
|
|
@@ -74,9 +74,9 @@ module AIPP
|
|
|
74
74
|
|
|
75
75
|
# Templates
|
|
76
76
|
|
|
77
|
-
def
|
|
78
|
-
unless AIPP.cache.
|
|
79
|
-
AIPP.cache.
|
|
77
|
+
def organisation_ls
|
|
78
|
+
unless AIPP.cache.organisation_ls
|
|
79
|
+
AIPP.cache.organisation_ls = AIXM.organisation(
|
|
80
80
|
source: source(position: 1, document: "GEN-3.1"),
|
|
81
81
|
name: 'SWITZERLAND',
|
|
82
82
|
type: 'S'
|
|
@@ -15,13 +15,13 @@ module AIPP::LS::NOTAM
|
|
|
15
15
|
next unless row[:notamRaw].match? /^Q\) LS/ # only parse national NOTAM
|
|
16
16
|
|
|
17
17
|
# HACK: try to add missing commas to D-item of A- and B-series NOTAM
|
|
18
|
-
if row[:notamRaw].match? /\A[AB]/
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
end
|
|
18
|
+
# if row[:notamRaw].match? /\A[AB]/
|
|
19
|
+
# if row[:notamRaw].gsub!(/(#{NOTAM::Schedule::HOUR_RE.decapture}-#{NOTAM::Schedule::HOUR_RE.decapture})/, '\1,')
|
|
20
|
+
# row[:notamRaw].gsub!(/,+/, ',')
|
|
21
|
+
# row[:notamRaw].sub!(/,\n/, "\n")
|
|
22
|
+
# warn("HACK: added missing commas to D item")
|
|
23
|
+
# end
|
|
24
|
+
# end
|
|
25
25
|
|
|
26
26
|
# HACK: remove braindead years from D-item of W-series NOTAM
|
|
27
27
|
if row[:notamRaw].match? /\AW/
|
|
@@ -105,7 +105,7 @@ end
|
|
|
105
105
|
case notam.data[:content]
|
|
106
106
|
when /(?<type>TMA) ((SECT )?(?<section>\d+) )?ACT/
|
|
107
107
|
'Ase:has(codeType:contains("%s") + codeId:contains("%s %s"))' % [$~['type'], notam.data[:locations].first, $~['section']]
|
|
108
|
-
when /[DR].AREA (?<name>LS
|
|
108
|
+
when /[DR].AREA (?<name>LS-?[DR]\d+[A-Z]?).+ACT/
|
|
109
109
|
'Ase:has(codeId:matches("^%s( .+)?$"))' % [$~['name']]
|
|
110
110
|
else
|
|
111
111
|
return
|
data/lib/aipp/runner.rb
CHANGED
data/lib/aipp/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aipp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sven Schwyn
|
|
@@ -27,7 +27,7 @@ cert_chain:
|
|
|
27
27
|
k/QvZU05f6HMYBrPogJgIzHC/C5N/yeE4BVEuBDn+10Zb1iu3aDk8sd0uMgukCY8
|
|
28
28
|
TUmlP5A6NeGdeDJIoLgromAKs+nvI7TWzhQq9ODs51XhxgUFRCvBqUTpjTQigw==
|
|
29
29
|
-----END CERTIFICATE-----
|
|
30
|
-
date: 2024-
|
|
30
|
+
date: 2024-03-08 00:00:00.000000000 Z
|
|
31
31
|
dependencies:
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: airac
|
|
@@ -121,16 +121,16 @@ dependencies:
|
|
|
121
121
|
name: graphql
|
|
122
122
|
requirement: !ruby/object:Gem::Requirement
|
|
123
123
|
requirements:
|
|
124
|
-
- - "
|
|
124
|
+
- - "~>"
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
|
-
version: '2
|
|
126
|
+
version: '2'
|
|
127
127
|
type: :runtime
|
|
128
128
|
prerelease: false
|
|
129
129
|
version_requirements: !ruby/object:Gem::Requirement
|
|
130
130
|
requirements:
|
|
131
|
-
- - "
|
|
131
|
+
- - "~>"
|
|
132
132
|
- !ruby/object:Gem::Version
|
|
133
|
-
version: '2
|
|
133
|
+
version: '2'
|
|
134
134
|
- !ruby/object:Gem::Dependency
|
|
135
135
|
name: graphql-client
|
|
136
136
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -138,6 +138,9 @@ dependencies:
|
|
|
138
138
|
- - "~>"
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
140
|
version: '0'
|
|
141
|
+
- - ">="
|
|
142
|
+
- !ruby/object:Gem::Version
|
|
143
|
+
version: 0.19.0
|
|
141
144
|
type: :runtime
|
|
142
145
|
prerelease: false
|
|
143
146
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -145,6 +148,9 @@ dependencies:
|
|
|
145
148
|
- - "~>"
|
|
146
149
|
- !ruby/object:Gem::Version
|
|
147
150
|
version: '0'
|
|
151
|
+
- - ">="
|
|
152
|
+
- !ruby/object:Gem::Version
|
|
153
|
+
version: 0.19.0
|
|
148
154
|
- !ruby/object:Gem::Dependency
|
|
149
155
|
name: nokogiri
|
|
150
156
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -468,7 +474,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
468
474
|
- !ruby/object:Gem::Version
|
|
469
475
|
version: '0'
|
|
470
476
|
requirements: []
|
|
471
|
-
rubygems_version: 3.5.
|
|
477
|
+
rubygems_version: 3.5.6
|
|
472
478
|
signing_key:
|
|
473
479
|
specification_version: 4
|
|
474
480
|
summary: Parser for aeronautical information publications
|
metadata.gz.sig
CHANGED
|
Binary file
|