aipp 2.1.7 → 2.1.9.pre1
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 +5 -0
- data/lib/aipp/regions/LS/notam/ENR.rb +1 -0
- data/lib/aipp/regions/LS/shoot/shooting_grounds.rb +5 -2
- data/lib/aipp/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +20 -6
- 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: 0307bb285aef2596ac6f60d3a3c6a444d8cadc38ad57d017f38d723f0116dbb2
|
|
4
|
+
data.tar.gz: d18c31ccc9920ef227fc95767cc45022b52dd1878d3a2d3f7434ad55cf8c811b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40a5090e16fdb0f50a48f5007e2479ac95c7dfadf788c123ec84aa7baace1875c11eae33dd9dd2860b578b2591fb947627e8187df0cbd751a60ade5b87fc929a
|
|
7
|
+
data.tar.gz: 8e1097ca18cfe5b61aa6a52e89dbdcab8fea449b426b6d3e3e971e7ffc330de1e05550e4d78fbe8307184f4f7d0daa9f6b968b19e9485baa1adca1d7237e94f2
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,7 @@ module AIPP::LS::NOTAM
|
|
|
12
12
|
fail "malformed JSON received from API" unless json.has_key?(:queryNOTAMs)
|
|
13
13
|
added_notam_ids = []
|
|
14
14
|
json[:queryNOTAMs].each do |row|
|
|
15
|
+
puts row[:notamRaw][0,9]
|
|
15
16
|
next unless row[:notamRaw].match? /^Q\) LS/ # only parse national NOTAM
|
|
16
17
|
|
|
17
18
|
# HACK: try to add missing commas to D-item of A- and B-series NOTAM
|
|
@@ -35,7 +35,7 @@ module AIPP::LS::SHOOT
|
|
|
35
35
|
end
|
|
36
36
|
end
|
|
37
37
|
shooting_grounds.each do |id, data|
|
|
38
|
-
data in csv_line:, details:, url:, upper_z:, schedules:, dabs:, feature: { geometry: polygons, properties: { bezeichnung: name, infotelefonnr: phone, infoemail: email } }
|
|
38
|
+
data in csv_line:, details:, url:, upper_z:, schedules:, dabs:, feature: { geometry: polygons, properties: { bezeichnung: name, infobezeichnung: contact, infotelefonnr: phone, infoemail: email } }
|
|
39
39
|
schedules = consolidate(schedules)
|
|
40
40
|
if schedules.any?
|
|
41
41
|
geometries = geometries_for polygons
|
|
@@ -43,6 +43,7 @@ module AIPP::LS::SHOOT
|
|
|
43
43
|
geometries.each_with_index do |geometry, index|
|
|
44
44
|
remarks = {
|
|
45
45
|
details: details,
|
|
46
|
+
contact: contact,
|
|
46
47
|
phone: phone,
|
|
47
48
|
email: email,
|
|
48
49
|
bulletin: url
|
|
@@ -124,7 +125,9 @@ module AIPP::LS::SHOOT
|
|
|
124
125
|
times_array.each do |times|
|
|
125
126
|
timetable.add_timesheet(
|
|
126
127
|
AIXM.timesheet(
|
|
127
|
-
|
|
128
|
+
# HACK: Temporarily produce UTC instead of UTCW
|
|
129
|
+
# adjust_to_dst: true,
|
|
130
|
+
adjust_to_dst: false,
|
|
128
131
|
dates: (date..date)
|
|
129
132
|
# TODO: transform to...
|
|
130
133
|
# dates: AIXM.date(date)
|
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.9.pre1
|
|
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-
|
|
32
|
+
date: 2023-09-01 00:00:00.000000000 Z
|
|
33
33
|
dependencies:
|
|
34
34
|
- !ruby/object:Gem::Dependency
|
|
35
35
|
name: airac
|
|
@@ -119,6 +119,20 @@ dependencies:
|
|
|
119
119
|
- - "~>"
|
|
120
120
|
- !ruby/object:Gem::Version
|
|
121
121
|
version: '0'
|
|
122
|
+
- !ruby/object:Gem::Dependency
|
|
123
|
+
name: graphql
|
|
124
|
+
requirement: !ruby/object:Gem::Requirement
|
|
125
|
+
requirements:
|
|
126
|
+
- - "<"
|
|
127
|
+
- !ruby/object:Gem::Version
|
|
128
|
+
version: '2.1'
|
|
129
|
+
type: :runtime
|
|
130
|
+
prerelease: false
|
|
131
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
132
|
+
requirements:
|
|
133
|
+
- - "<"
|
|
134
|
+
- !ruby/object:Gem::Version
|
|
135
|
+
version: '2.1'
|
|
122
136
|
- !ruby/object:Gem::Dependency
|
|
123
137
|
name: graphql-client
|
|
124
138
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -266,7 +280,7 @@ dependencies:
|
|
|
266
280
|
- !ruby/object:Gem::Version
|
|
267
281
|
version: '0'
|
|
268
282
|
- !ruby/object:Gem::Dependency
|
|
269
|
-
name: minitest-
|
|
283
|
+
name: minitest-flash
|
|
270
284
|
requirement: !ruby/object:Gem::Requirement
|
|
271
285
|
requirements:
|
|
272
286
|
- - ">="
|
|
@@ -438,11 +452,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
438
452
|
version: 3.1.0
|
|
439
453
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
440
454
|
requirements:
|
|
441
|
-
- - "
|
|
455
|
+
- - ">"
|
|
442
456
|
- !ruby/object:Gem::Version
|
|
443
|
-
version:
|
|
457
|
+
version: 1.3.1
|
|
444
458
|
requirements: []
|
|
445
|
-
rubygems_version: 3.4.
|
|
459
|
+
rubygems_version: 3.4.19
|
|
446
460
|
signing_key:
|
|
447
461
|
specification_version: 4
|
|
448
462
|
summary: Parser for aeronautical information publications
|
metadata.gz.sig
CHANGED
|
Binary file
|