Class: WrfLibrary::WindDirection

Inherits:
Object
  • Object
show all
Defined in:
lib/wrf_library/data/wind_direction_repository.rb

Overview

Simple helper class to store the direction interval data

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(lower, upper, symbol) ⇒ WindDirection

initializaion

Parameters:

  • lower (Float)

    the lower boundary to the direction interval

  • upper (Float)

    the upper boundary to the direction interval

  • symbol (Symbol)

    the description symbol for the interval



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

#lowerFloat (readonly)

Returns the lower boundary to the direction interval.

Returns:

  • (Float)

    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

#symbolSymbol (readonly)

Returns the description symbol for the interval.

Returns:

  • (Symbol)

    the description symbol for the interval



82
83
84
# File 'lib/wrf_library/data/wind_direction_repository.rb', line 82

def symbol
  @symbol
end

#upperFloat (readonly)

Returns the upper boundary to the direction interval.

Returns:

  • (Float)

    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