atmospheric 0.5.0 → 0.5.1
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
- data/README.adoc +17 -15
- data/lib/atmospheric/export/altitude_attrs.rb +2 -5
- data/lib/atmospheric/export/altitude_convertable_model.rb +0 -4
- data/lib/atmospheric/export/altitude_table.rb +0 -2
- data/lib/atmospheric/export/hypsometrical_table.rb +1 -3
- data/lib/atmospheric/export/iso_25331975/group_one.rb +0 -3
- data/lib/atmospheric/export/iso_25331975/group_one_attrs.rb +0 -3
- data/lib/atmospheric/export/iso_25331975/group_three.rb +0 -3
- data/lib/atmospheric/export/iso_25331975/group_three_attrs.rb +0 -2
- data/lib/atmospheric/export/iso_25331975/group_two.rb +0 -3
- data/lib/atmospheric/export/iso_25331975/group_two_attrs.rb +0 -2
- data/lib/atmospheric/export/iso_25331975.rb +7 -4
- data/lib/atmospheric/export/iso_25331985/pressure_attrs.rb +0 -2
- data/lib/atmospheric/export/iso_25331985/table_five_six_attrs.rb +0 -2
- data/lib/atmospheric/export/iso_25331985.rb +3 -5
- data/lib/atmospheric/export/iso_25331997.rb +0 -2
- data/lib/atmospheric/export/iso_25332025/altitude_attrs_group.rb +1 -3
- data/lib/atmospheric/export/iso_25332025/combined_altitude_attrs_group.rb +1 -4
- data/lib/atmospheric/export/iso_25332025.rb +3 -3
- data/lib/atmospheric/export/precision_value.rb +9 -0
- data/lib/atmospheric/export/pressure_attrs.rb +1 -5
- data/lib/atmospheric/export.rb +11 -5
- data/lib/atmospheric/namespace.rb +8 -0
- data/lib/atmospheric/unit_value_float.rb +2 -3
- data/lib/atmospheric/unit_value_integer.rb +1 -2
- data/lib/atmospheric/version.rb +1 -1
- data/lib/atmospheric.rb +7 -4
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b75d1aad150ee5c55d447906a6e68ece88cb6623521c4e1499ef5e707ba2af1
|
|
4
|
+
data.tar.gz: 304e5f27c1540413da0e50e8a9e52791aa114813d02509af78ea1d0c5caf8595
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90321cfb4659bbfdaf0da2a75901d3a7b1f372ee2772e15b7b375b8c03bc97b33f4df8affdfe6987ebb41cf56f07946dfdc2eaf02af2530d57a7006150a313e7
|
|
7
|
+
data.tar.gz: b3d47bc889077add3c9a5a0bc4429c9fdbb7d510c850600b40e8502e2fc6855c582be90c5b6ae65a59bc36fcb7e9b2e02658041ac58c14ddfe264c22c04826a2
|
data/README.adoc
CHANGED
|
@@ -265,7 +265,8 @@ precision: reduced
|
|
|
265
265
|
attrs = Atmospheric::Export::AltitudeAttrs.new.set_altitude(
|
|
266
266
|
value: -2000,
|
|
267
267
|
type: :geopotential,
|
|
268
|
-
unit: :meters
|
|
268
|
+
unit: :meters,
|
|
269
|
+
precision: :normal
|
|
269
270
|
)
|
|
270
271
|
|
|
271
272
|
attrs.to_xml
|
|
@@ -273,7 +274,7 @@ attrs.to_xml
|
|
|
273
274
|
|
|
274
275
|
[source,xml]
|
|
275
276
|
----
|
|
276
|
-
<atmosphere-attributes>
|
|
277
|
+
<atmosphere-attributes xmlns="urn:iso:std:iso:2533:tech:xsd">
|
|
277
278
|
<geometric-altitude unitsml="m" type="integer">-1999</geometric-altitude>
|
|
278
279
|
<geometric-altitude unitsml="ft" type="integer">-6560</geometric-altitude>
|
|
279
280
|
<geopotential-altitude unitsml="m" type="integer">-2000</geopotential-altitude>
|
|
@@ -281,9 +282,9 @@ attrs.to_xml
|
|
|
281
282
|
<temperature unitsml="K" type="float">301.15</temperature>
|
|
282
283
|
<temperature unitsml="degC" type="float">28.0</temperature>
|
|
283
284
|
<pressure unitsml="mbar" type="float">1277.74</pressure>
|
|
284
|
-
<pressure unitsml="mm_Hg" type="float">958.
|
|
285
|
+
<pressure unitsml="mm_Hg" type="float">958.38</pressure>
|
|
285
286
|
<density unitsml="kg*m^-3" type="float">1.47808</density>
|
|
286
|
-
<acceleration unitsml="m*s^-2" type="float">9.
|
|
287
|
+
<acceleration unitsml="m*s^-2" type="float">9.81282</acceleration>
|
|
287
288
|
<ppn type="float">1.26103</ppn>
|
|
288
289
|
<rhorhon type="float">1.20659</rhorhon>
|
|
289
290
|
<sqrt-rhorhon type="float">1.09845</sqrt-rhorhon>
|
|
@@ -297,7 +298,7 @@ attrs.to_xml
|
|
|
297
298
|
<mean-speed unitsml="m*s^-1" type="float">469.18</mean-speed>
|
|
298
299
|
<frequency unitsml="s^-1" type="float">8535100000.0</frequency>
|
|
299
300
|
<mean-free-path unitsml="m" type="float">5.4971e-08</mean-free-path>
|
|
300
|
-
<precision>
|
|
301
|
+
<precision>normal</precision>
|
|
301
302
|
</atmosphere-attributes>
|
|
302
303
|
----
|
|
303
304
|
====
|
|
@@ -425,13 +426,13 @@ attrs.to_xml
|
|
|
425
426
|
|
|
426
427
|
[source,xml]
|
|
427
428
|
----
|
|
428
|
-
<hypsometrical-attributes>
|
|
429
|
+
<hypsometrical-attributes xmlns="urn:iso:std:iso:2533:tech:xsd">
|
|
429
430
|
<pressure unitsml="mbar" type="float">5.0</pressure>
|
|
430
431
|
<pressure unitsml="mm_Hg" type="float">3.7503084135</pressure>
|
|
431
|
-
<geometric-altitude unitsml="m" type="float">35979</geometric-altitude>
|
|
432
|
-
<geometric-altitude unitsml="ft" type="float">118041</geometric-altitude>
|
|
433
|
-
<geopotential-altitude unitsml="m" type="float">35776</geopotential-altitude>
|
|
434
|
-
<geopotential-altitude unitsml="ft" type="float">117377</geopotential-altitude>
|
|
432
|
+
<geometric-altitude unitsml="m" type="float">35979.0</geometric-altitude>
|
|
433
|
+
<geometric-altitude unitsml="ft" type="float">118041.0</geometric-altitude>
|
|
434
|
+
<geopotential-altitude unitsml="m" type="float">35776.5</geopotential-altitude>
|
|
435
|
+
<geopotential-altitude unitsml="ft" type="float">117377.0</geopotential-altitude>
|
|
435
436
|
</hypsometrical-attributes>
|
|
436
437
|
----
|
|
437
438
|
====
|
|
@@ -1122,6 +1123,10 @@ This table is a subset of the `table_atmosphere_meters` method.
|
|
|
1122
1123
|
An XSD schema for the XML serialization format is provided at
|
|
1123
1124
|
`schema/atmospheric.xsd`.
|
|
1124
1125
|
|
|
1126
|
+
The schema uses the XML namespace `urn:iso:std:iso:2533:tech:xsd` following
|
|
1127
|
+
the RFC 5141 pattern for ISO technical XML schema resources. All elements
|
|
1128
|
+
are namespace-qualified (`elementFormDefault="qualified"`).
|
|
1129
|
+
|
|
1125
1130
|
The schema defines the following root elements:
|
|
1126
1131
|
|
|
1127
1132
|
`atmospheric`:: Polymorphic root element. Two variants:
|
|
@@ -1139,7 +1144,7 @@ The schema defines the following root elements:
|
|
|
1139
1144
|
[source,xml]
|
|
1140
1145
|
----
|
|
1141
1146
|
<!-- Hypsometrical table variant -->
|
|
1142
|
-
<atmospheric>
|
|
1147
|
+
<atmospheric xmlns="urn:iso:std:iso:2533:tech:xsd">
|
|
1143
1148
|
<hypsometrical-attributes>
|
|
1144
1149
|
<pressure unitsml="mbar" type="float">1013.25</pressure>
|
|
1145
1150
|
<pressure unitsml="mm_Hg" type="float">760.0</pressure>
|
|
@@ -1151,7 +1156,7 @@ The schema defines the following root elements:
|
|
|
1151
1156
|
</atmospheric>
|
|
1152
1157
|
|
|
1153
1158
|
<!-- ISO 2533:2025 table variant -->
|
|
1154
|
-
<atmospheric>
|
|
1159
|
+
<atmospheric xmlns="urn:iso:std:iso:2533:tech:xsd">
|
|
1155
1160
|
<by-geometric-altitude>
|
|
1156
1161
|
<atmospheric-attributes>...</atmospheric-attributes>
|
|
1157
1162
|
</by-geometric-altitude>
|
|
@@ -1168,9 +1173,6 @@ Contains all altitude, temperature, pressure, density, and derived properties.
|
|
|
1168
1173
|
`hypsometrical-attributes`:: Pressure-to-altitude record. Contains pressure
|
|
1169
1174
|
and altitude values.
|
|
1170
1175
|
|
|
1171
|
-
`group-one-attrs`:: ISO 2533:1975 Group One record (temperature, pressure,
|
|
1172
|
-
density, acceleration). Temperature values use integer type (scaled by 1000).
|
|
1173
|
-
|
|
1174
1176
|
`attributes-group`:: Wrapper for a collection of `<atmospheric-attributes>`.
|
|
1175
1177
|
|
|
1176
1178
|
All value elements share a common pattern:
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "lutaml/model"
|
|
4
|
-
require_relative "../unit_value_float"
|
|
5
|
-
require_relative "../unit_value_integer"
|
|
6
|
-
|
|
7
3
|
module Atmospheric
|
|
8
4
|
module Export
|
|
9
5
|
class AltitudeAttrs < Lutaml::Model::Serializable
|
|
@@ -31,7 +27,7 @@ module Atmospheric
|
|
|
31
27
|
attribute :mean_speeds, UnitValueFloat, collection: true
|
|
32
28
|
attribute :frequencies, UnitValueFloat, collection: true
|
|
33
29
|
attribute :mean_free_paths, UnitValueFloat, collection: true
|
|
34
|
-
attribute :precision,
|
|
30
|
+
attribute :precision, PrecisionValue
|
|
35
31
|
|
|
36
32
|
key_value do
|
|
37
33
|
map "geometric-altitude", to: :geometric_altitudes
|
|
@@ -65,6 +61,7 @@ module Atmospheric
|
|
|
65
61
|
|
|
66
62
|
xml do
|
|
67
63
|
element "atmosphere-attributes"
|
|
64
|
+
namespace Atmospheric::Iso2533Namespace
|
|
68
65
|
map_element "geometric-altitude", to: :geometric_altitudes
|
|
69
66
|
map_element "geopotential-altitude", to: :geopotential_altitudes
|
|
70
67
|
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "lutaml/model"
|
|
4
|
-
require_relative "pressure_attrs"
|
|
5
|
-
|
|
6
3
|
module Atmospheric
|
|
7
4
|
module Export
|
|
8
5
|
class HypsometricalTable < Lutaml::Model::Serializable
|
|
@@ -10,6 +7,7 @@ module Atmospheric
|
|
|
10
7
|
|
|
11
8
|
xml do
|
|
12
9
|
element "atmospheric"
|
|
10
|
+
namespace Atmospheric::Iso2533Namespace
|
|
13
11
|
map_element "hypsometrical-attributes", to: :rows
|
|
14
12
|
end
|
|
15
13
|
|
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
module Atmospheric
|
|
4
4
|
module Export
|
|
5
5
|
module Iso25331975
|
|
6
|
+
autoload :GroupOne, "atmospheric/export/iso_25331975/group_one"
|
|
7
|
+
autoload :GroupTwo, "atmospheric/export/iso_25331975/group_two"
|
|
8
|
+
autoload :GroupThree, "atmospheric/export/iso_25331975/group_three"
|
|
9
|
+
autoload :GroupOneAttrs, "atmospheric/export/iso_25331975/group_one_attrs"
|
|
10
|
+
autoload :GroupTwoAttrs, "atmospheric/export/iso_25331975/group_two_attrs"
|
|
11
|
+
autoload :GroupThreeAttrs, "atmospheric/export/iso_25331975/group_three_attrs"
|
|
12
|
+
|
|
6
13
|
class << self
|
|
7
14
|
def table_5
|
|
8
15
|
GroupOne.new.set_attrs
|
|
@@ -19,7 +26,3 @@ module Atmospheric
|
|
|
19
26
|
end
|
|
20
27
|
end
|
|
21
28
|
end
|
|
22
|
-
|
|
23
|
-
require_relative "iso_25331975/group_one"
|
|
24
|
-
require_relative "iso_25331975/group_two"
|
|
25
|
-
require_relative "iso_25331975/group_three"
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative "hypsometrical_table"
|
|
4
|
-
require_relative "iso_25331985/pressure_attrs"
|
|
5
|
-
require_relative "iso_25331985/table_five_six_attrs"
|
|
6
|
-
require_relative "iso_25331975/group_one"
|
|
7
|
-
|
|
8
3
|
module Atmospheric
|
|
9
4
|
module Export
|
|
10
5
|
module Iso25331985
|
|
6
|
+
autoload :PressureAttrs, "atmospheric/export/iso_25331985/pressure_attrs"
|
|
7
|
+
autoload :TableFiveSixAttrs, "atmospheric/export/iso_25331985/table_five_six_attrs"
|
|
8
|
+
|
|
11
9
|
class TableOne < HypsometricalTable
|
|
12
10
|
# TODO: when Ruby's step does not create inaccurate floating point numbers
|
|
13
11
|
# This is a hack to solve a Ruby bug with floating point calcuations
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "lutaml/model"
|
|
4
|
-
require_relative "../altitude_attrs"
|
|
5
|
-
|
|
6
3
|
# The purpose of this class is really for XML grouping.
|
|
7
4
|
# It is not a table in the same sense as the other tables.
|
|
8
5
|
# It is a collection of attributes grouped by altitude type.
|
|
@@ -19,6 +16,7 @@ module Atmospheric
|
|
|
19
16
|
|
|
20
17
|
xml do
|
|
21
18
|
element "attributes-group"
|
|
19
|
+
namespace Atmospheric::Iso2533Namespace
|
|
22
20
|
map_element "atmospheric-attributes", to: :rows
|
|
23
21
|
end
|
|
24
22
|
end
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative "../altitude_table"
|
|
4
|
-
require_relative "../altitude_attrs"
|
|
5
|
-
require_relative "altitude_attrs_group"
|
|
6
|
-
|
|
7
3
|
module Atmospheric
|
|
8
4
|
module Export
|
|
9
5
|
module Iso25332025
|
|
@@ -18,6 +14,7 @@ module Atmospheric
|
|
|
18
14
|
|
|
19
15
|
xml do
|
|
20
16
|
element "atmospheric"
|
|
17
|
+
namespace Atmospheric::Iso2533Namespace
|
|
21
18
|
map_element "by-geometric-altitude", to: :by_geometric_altitude
|
|
22
19
|
map_element "by-geopotential-altitude", to: :by_geopotential_altitude
|
|
23
20
|
end
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative "iso_25331975"
|
|
4
|
-
require_relative "iso_25332025/combined_altitude_attrs_group"
|
|
5
|
-
|
|
6
3
|
module Atmospheric
|
|
7
4
|
module Export
|
|
8
5
|
module Iso25332025
|
|
6
|
+
autoload :AltitudeAttrsGroup, "atmospheric/export/iso_25332025/altitude_attrs_group"
|
|
7
|
+
autoload :CombinedAltitudeAttrsGroup, "atmospheric/export/iso_25332025/combined_altitude_attrs_group"
|
|
8
|
+
|
|
9
9
|
class AltitudesInMeters < CombinedAltitudeAttrsGroup
|
|
10
10
|
def steps
|
|
11
11
|
(
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "lutaml/model"
|
|
4
|
-
require_relative "utils"
|
|
5
|
-
require_relative "../unit_value_float"
|
|
6
|
-
require_relative "../unit_value_integer"
|
|
7
|
-
|
|
8
3
|
module Atmospheric
|
|
9
4
|
module Export
|
|
10
5
|
class PressureAttrs < Lutaml::Model::Serializable
|
|
@@ -21,6 +16,7 @@ module Atmospheric
|
|
|
21
16
|
|
|
22
17
|
xml do
|
|
23
18
|
element "hypsometrical-attributes"
|
|
19
|
+
namespace Atmospheric::Iso2533Namespace
|
|
24
20
|
map_element "pressure", to: :pressures
|
|
25
21
|
map_element "geometric-altitude", to: :geometric_altitudes
|
|
26
22
|
map_element "geopotential-altitude", to: :geopotential_altitudes
|
data/lib/atmospheric/export.rb
CHANGED
|
@@ -2,10 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
module Atmospheric
|
|
4
4
|
module Export
|
|
5
|
+
autoload :Utils, "atmospheric/export/utils"
|
|
6
|
+
autoload :AltitudeTable, "atmospheric/export/altitude_table"
|
|
7
|
+
autoload :AltitudeConvertableModel, "atmospheric/export/altitude_convertable_model"
|
|
8
|
+
autoload :AltitudeAttrs, "atmospheric/export/altitude_attrs"
|
|
9
|
+
autoload :PressureAttrs, "atmospheric/export/pressure_attrs"
|
|
10
|
+
autoload :HypsometricalTable, "atmospheric/export/hypsometrical_table"
|
|
11
|
+
autoload :PrecisionValue, "atmospheric/export/precision_value"
|
|
12
|
+
autoload :Iso25331975, "atmospheric/export/iso_25331975"
|
|
13
|
+
autoload :Iso25331985, "atmospheric/export/iso_25331985"
|
|
14
|
+
autoload :Iso25331997, "atmospheric/export/iso_25331997"
|
|
15
|
+
autoload :Iso25332025, "atmospheric/export/iso_25332025"
|
|
5
16
|
end
|
|
6
17
|
end
|
|
7
|
-
|
|
8
|
-
require_relative "export/iso_25331975"
|
|
9
|
-
require_relative "export/iso_25331997"
|
|
10
|
-
require_relative "export/iso_25331985"
|
|
11
|
-
require_relative "export/iso_25332025"
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "lutaml/model"
|
|
4
|
-
|
|
5
3
|
module Atmospheric
|
|
6
4
|
class UnitValueFloat < Lutaml::Model::Serializable
|
|
7
5
|
attribute :value, :float
|
|
@@ -15,7 +13,8 @@ module Atmospheric
|
|
|
15
13
|
end
|
|
16
14
|
|
|
17
15
|
xml do
|
|
18
|
-
element "
|
|
16
|
+
element "unit-value-float"
|
|
17
|
+
namespace Atmospheric::Iso2533Namespace
|
|
19
18
|
map_content to: :value
|
|
20
19
|
map_attribute :unitsml, to: :unitsml
|
|
21
20
|
map_attribute :type, to: :type, render_default: true
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "lutaml/model"
|
|
4
|
-
|
|
5
3
|
module Atmospheric
|
|
6
4
|
class UnitValueInteger < Lutaml::Model::Serializable
|
|
7
5
|
attribute :value, :integer
|
|
@@ -16,6 +14,7 @@ module Atmospheric
|
|
|
16
14
|
|
|
17
15
|
xml do
|
|
18
16
|
element "unit-value-integer"
|
|
17
|
+
namespace Atmospheric::Iso2533Namespace
|
|
19
18
|
map_content to: :value
|
|
20
19
|
map_attribute :unitsml, to: :unitsml
|
|
21
20
|
map_attribute :type, to: :type, render_default: true
|
data/lib/atmospheric/version.rb
CHANGED
data/lib/atmospheric.rb
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative "atmospheric/version"
|
|
4
|
-
require_relative "atmospheric/isa"
|
|
5
|
-
require_relative "atmospheric/export"
|
|
6
3
|
require "lutaml/model"
|
|
7
4
|
|
|
8
5
|
module Atmospheric
|
|
9
6
|
class Error < StandardError; end
|
|
10
|
-
|
|
7
|
+
|
|
8
|
+
autoload :VERSION, "atmospheric/version"
|
|
9
|
+
autoload :Isa, "atmospheric/isa"
|
|
10
|
+
autoload :Iso2533Namespace, "atmospheric/namespace"
|
|
11
|
+
autoload :UnitValueFloat, "atmospheric/unit_value_float"
|
|
12
|
+
autoload :UnitValueInteger, "atmospheric/unit_value_integer"
|
|
13
|
+
autoload :Export, "atmospheric/export"
|
|
11
14
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: atmospheric
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bigdecimal
|
|
@@ -28,14 +28,14 @@ dependencies:
|
|
|
28
28
|
name: lutaml-model
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: 0.8.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: 0.8.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
@@ -86,9 +86,11 @@ files:
|
|
|
86
86
|
- lib/atmospheric/export/iso_25332025.rb
|
|
87
87
|
- lib/atmospheric/export/iso_25332025/altitude_attrs_group.rb
|
|
88
88
|
- lib/atmospheric/export/iso_25332025/combined_altitude_attrs_group.rb
|
|
89
|
+
- lib/atmospheric/export/precision_value.rb
|
|
89
90
|
- lib/atmospheric/export/pressure_attrs.rb
|
|
90
91
|
- lib/atmospheric/export/utils.rb
|
|
91
92
|
- lib/atmospheric/isa.rb
|
|
93
|
+
- lib/atmospheric/namespace.rb
|
|
92
94
|
- lib/atmospheric/unit_value_float.rb
|
|
93
95
|
- lib/atmospheric/unit_value_integer.rb
|
|
94
96
|
- lib/atmospheric/version.rb
|