Class: WrfLibrary::WindDirection
- Inherits:
-
Object
- Object
- WrfLibrary::WindDirection
- Defined in:
- lib/wrf_library/data/wind_direction_repository.rb
Overview
Simple helper class to store the direction interval data
Instance Attribute Summary collapse
-
#lower ⇒ Float
readonly
The lower boundary to the direction interval.
-
#symbol ⇒ Symbol
readonly
The description symbol for the interval.
-
#upper ⇒ Float
readonly
The upper boundary to the direction interval.
Instance Method Summary collapse
-
#initialize(lower, upper, symbol) ⇒ WindDirection
constructor
initializaion.
Constructor Details
#initialize(lower, upper, symbol) ⇒ WindDirection
initializaion
88 89 90 91 92 |
# File 'lib/wrf_library/data/wind_direction_repository.rb', line 88 def initialize(lower, upper, symbol) @lower = lower @upper = upper @symbol = symbol end |
Instance Attribute Details
#lower ⇒ Float (readonly)
Returns the lower boundary to the direction interval.
78 79 80 |
# File 'lib/wrf_library/data/wind_direction_repository.rb', line 78 def lower @lower end |
#symbol ⇒ Symbol (readonly)
Returns the description symbol for the interval.
82 83 84 |
# File 'lib/wrf_library/data/wind_direction_repository.rb', line 82 def symbol @symbol end |
#upper ⇒ Float (readonly)
Returns the upper boundary to the direction interval.
80 81 82 |
# File 'lib/wrf_library/data/wind_direction_repository.rb', line 80 def upper @upper end |