Module: Atmospheric::Export::HypsometricalTables
- Defined in:
- lib/atmospheric/export/hypsometrical_tables.rb
Defined Under Namespace
Classes: TableBase, TableFiveSix, TableFour, TableOne, TableThree, TableTwo
Class Method Summary
collapse
Class Method Details
.table_1 ⇒ Object
95
96
97
|
# File 'lib/atmospheric/export/hypsometrical_tables.rb', line 95
def table_1
TableOne.new.to_h
end
|
.table_1_yaml ⇒ Object
99
100
101
|
# File 'lib/atmospheric/export/hypsometrical_tables.rb', line 99
def table_1_yaml
TableOne.new.to_yaml
end
|
.table_2 ⇒ Object
103
104
105
|
# File 'lib/atmospheric/export/hypsometrical_tables.rb', line 103
def table_2
TableTwo.new.to_h
end
|
.table_2_yaml ⇒ Object
107
108
109
|
# File 'lib/atmospheric/export/hypsometrical_tables.rb', line 107
def table_2_yaml
TableTwo.new.to_yaml
end
|
.table_3 ⇒ Object
111
112
113
|
# File 'lib/atmospheric/export/hypsometrical_tables.rb', line 111
def table_3
TableThree.new.to_h
end
|
.table_3_yaml ⇒ Object
115
116
117
|
# File 'lib/atmospheric/export/hypsometrical_tables.rb', line 115
def table_3_yaml
TableThree.new.to_yaml
end
|
.table_4 ⇒ Object
119
120
121
|
# File 'lib/atmospheric/export/hypsometrical_tables.rb', line 119
def table_4
TableFour.new.to_h
end
|
.table_4_yaml ⇒ Object
123
124
125
|
# File 'lib/atmospheric/export/hypsometrical_tables.rb', line 123
def table_4_yaml
TableFour.new.to_yaml
end
|
.table_56 ⇒ Object
127
128
129
|
# File 'lib/atmospheric/export/hypsometrical_tables.rb', line 127
def table_56
TableFiveSix.new.to_h
end
|
.table_56_yaml ⇒ Object
131
132
133
|
# File 'lib/atmospheric/export/hypsometrical_tables.rb', line 131
def table_56_yaml
TableFiveSix.new.to_yaml
end
|