adiwg-mdtranslator 2.19.0.pre.beta.9 → 2.19.0.pre.beta.10
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a8f6089b7f7d5f448405dd5d04686a1029175ab03de59ff37c0d741196c0c0c
|
4
|
+
data.tar.gz: 9177e43d4b73bb14cc11a5500b256521ea2caf5063c405e6212c0f895d4a1545
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9be8993dd7b83a8a139c246f565ac36d1523d628f2b68d2c304c6040311082206544e6bcde075847dbd1262259da0411e63c2729a2d86ab49000356ac353258f
|
7
|
+
data.tar.gz: 8650f601e36a4fc765a4daa3da0af71d6016a9c2e69d7c8644c04afe8632e11e4c59924a068d7d09c72d82e3574b9608531ffd3fa9a898c901082a7ec8b5a951
|
data/Gemfile.lock
CHANGED
@@ -82,7 +82,7 @@ module ADIWG
|
|
82
82
|
xHorizontal = xPositionalAccuracy.xpath('./horizpa')
|
83
83
|
unless xHorizontal.empty?
|
84
84
|
report = intMetadataClass.newDataQualityReport
|
85
|
-
report[:type] = '
|
85
|
+
report[:type] = 'AbsolutePositionalAccuracy'
|
86
86
|
unless xHorizontal.xpath('qhorizpa/horizpae').empty?
|
87
87
|
report[:qualityMeasure] = intMetadataClass.newQualityMeasure
|
88
88
|
report[:qualityMeasure][:description] = xHorizontal.xpath('qhorizpa/horizpae').text
|
@@ -105,7 +105,7 @@ module ADIWG
|
|
105
105
|
xVertical = xPositionalAccuracy.xpath('./vertacc')
|
106
106
|
unless xVertical.empty?
|
107
107
|
report = intMetadataClass.newDataQualityReport
|
108
|
-
report[:type] = '
|
108
|
+
report[:type] = 'AbsolutePositionalAccuracy'
|
109
109
|
unless xVertical.xpath('qvertpa/vertacce').empty?
|
110
110
|
report[:qualityMeasure] = intMetadataClass.newQualityMeasure
|
111
111
|
report[:qualityMeasure][:description] = xVertical.xpath('qvertpa/vertacce').text
|
@@ -70,7 +70,7 @@ module ADIWG
|
|
70
70
|
|
71
71
|
|
72
72
|
horizontal_positional_accuracy_report = hDataQuality[:report].find do |report|
|
73
|
-
report[:type] == '
|
73
|
+
report[:type] == 'AbsolutePositionalAccuracy' &&
|
74
74
|
report.dig(:qualityMeasure, :nameOfMeasure)&.any? { |name|
|
75
75
|
name == 'Horizontal Positional Accuracy Report'
|
76
76
|
}
|
@@ -80,7 +80,7 @@ module ADIWG
|
|
80
80
|
|
81
81
|
|
82
82
|
vertical_positional_accuracy_report = hDataQuality[:report].find do |report|
|
83
|
-
report[:type] == '
|
83
|
+
report[:type] == 'AbsolutePositionalAccuracy' &&
|
84
84
|
report.dig(:qualityMeasure, :nameOfMeasure)&.any? { |name|
|
85
85
|
name == 'Vertical Positional Accuracy Report'
|
86
86
|
}
|