atmospheris 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.
Files changed (32) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +25 -0
  3. data/README.adoc +1254 -0
  4. data/lib/atmospheris/export/altitude_attrs.rb +296 -0
  5. data/lib/atmospheris/export/altitude_convertable_model.rb +80 -0
  6. data/lib/atmospheris/export/altitude_table.rb +49 -0
  7. data/lib/atmospheris/export/hypsometrical_table.rb +36 -0
  8. data/lib/atmospheris/export/iso_25331975/group_one.rb +21 -0
  9. data/lib/atmospheris/export/iso_25331975/group_one_attrs.rb +101 -0
  10. data/lib/atmospheris/export/iso_25331975/group_three.rb +21 -0
  11. data/lib/atmospheris/export/iso_25331975/group_three_attrs.rb +101 -0
  12. data/lib/atmospheris/export/iso_25331975/group_two.rb +21 -0
  13. data/lib/atmospheris/export/iso_25331975/group_two_attrs.rb +113 -0
  14. data/lib/atmospheris/export/iso_25331975.rb +28 -0
  15. data/lib/atmospheris/export/iso_25331985/pressure_attrs.rb +16 -0
  16. data/lib/atmospheris/export/iso_25331985/table_five_six_attrs.rb +16 -0
  17. data/lib/atmospheris/export/iso_25331985.rb +113 -0
  18. data/lib/atmospheris/export/iso_25331997.rb +86 -0
  19. data/lib/atmospheris/export/iso_25332025/altitude_attrs_group.rb +25 -0
  20. data/lib/atmospheris/export/iso_25332025/combined_altitude_attrs_group.rb +41 -0
  21. data/lib/atmospheris/export/iso_25332025.rb +81 -0
  22. data/lib/atmospheris/export/precision_value.rb +9 -0
  23. data/lib/atmospheris/export/pressure_attrs.rb +87 -0
  24. data/lib/atmospheris/export/utils.rb +30 -0
  25. data/lib/atmospheris/export.rb +17 -0
  26. data/lib/atmospheris/isa.rb +493 -0
  27. data/lib/atmospheris/namespace.rb +8 -0
  28. data/lib/atmospheris/unit_value_float.rb +23 -0
  29. data/lib/atmospheris/unit_value_integer.rb +23 -0
  30. data/lib/atmospheris/version.rb +5 -0
  31. data/lib/atmospheris.rb +14 -0
  32. metadata +117 -0
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "lutaml/model"
4
+
5
+ module Atmospheris
6
+ class Error < StandardError; end
7
+
8
+ autoload :VERSION, "atmospheris/version"
9
+ autoload :Isa, "atmospheris/isa"
10
+ autoload :Iso2533Namespace, "atmospheris/namespace"
11
+ autoload :UnitValueFloat, "atmospheris/unit_value_float"
12
+ autoload :UnitValueInteger, "atmospheris/unit_value_integer"
13
+ autoload :Export, "atmospheris/export"
14
+ end
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: atmospheris
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.1
5
+ platform: ruby
6
+ authors:
7
+ - Ribose Inc.
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: bigdecimal
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: lutaml-model
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 0.8.0
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 0.8.0
40
+ - !ruby/object:Gem::Dependency
41
+ name: nokogiri
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ description: |-
55
+ Implementation of the ISO Standard Atmosphere (ISA) model as
56
+ defined in ISO 2533 and ICAO 7488/3 1994.
57
+ Reference implementation used in ISO 2533:2025."
58
+ email:
59
+ - open.source@ribose.com
60
+ executables: []
61
+ extensions: []
62
+ extra_rdoc_files:
63
+ - LICENSE.txt
64
+ - README.adoc
65
+ files:
66
+ - LICENSE.txt
67
+ - README.adoc
68
+ - lib/atmospheris.rb
69
+ - lib/atmospheris/export.rb
70
+ - lib/atmospheris/export/altitude_attrs.rb
71
+ - lib/atmospheris/export/altitude_convertable_model.rb
72
+ - lib/atmospheris/export/altitude_table.rb
73
+ - lib/atmospheris/export/hypsometrical_table.rb
74
+ - lib/atmospheris/export/iso_25331975.rb
75
+ - lib/atmospheris/export/iso_25331975/group_one.rb
76
+ - lib/atmospheris/export/iso_25331975/group_one_attrs.rb
77
+ - lib/atmospheris/export/iso_25331975/group_three.rb
78
+ - lib/atmospheris/export/iso_25331975/group_three_attrs.rb
79
+ - lib/atmospheris/export/iso_25331975/group_two.rb
80
+ - lib/atmospheris/export/iso_25331975/group_two_attrs.rb
81
+ - lib/atmospheris/export/iso_25331985.rb
82
+ - lib/atmospheris/export/iso_25331985/pressure_attrs.rb
83
+ - lib/atmospheris/export/iso_25331985/table_five_six_attrs.rb
84
+ - lib/atmospheris/export/iso_25331997.rb
85
+ - lib/atmospheris/export/iso_25332025.rb
86
+ - lib/atmospheris/export/iso_25332025/altitude_attrs_group.rb
87
+ - lib/atmospheris/export/iso_25332025/combined_altitude_attrs_group.rb
88
+ - lib/atmospheris/export/precision_value.rb
89
+ - lib/atmospheris/export/pressure_attrs.rb
90
+ - lib/atmospheris/export/utils.rb
91
+ - lib/atmospheris/isa.rb
92
+ - lib/atmospheris/namespace.rb
93
+ - lib/atmospheris/unit_value_float.rb
94
+ - lib/atmospheris/unit_value_integer.rb
95
+ - lib/atmospheris/version.rb
96
+ homepage: https://github.com/metanorma/atmospheris
97
+ licenses:
98
+ - BSD-2-Clause
99
+ metadata: {}
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: 3.0.0
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubygems_version: 3.6.9
115
+ specification_version: 4
116
+ summary: Implementation of the ISO Standard Atmosphere (ISA) model"
117
+ test_files: []