Method: Eeml::Location#initialize

Defined in:
lib/eeml/environment.rb

#initialize(options = {}) ⇒ Location

Returns a new instance of Location.



10
11
12
13
14
15
16
17
18
# File 'lib/eeml/environment.rb', line 10

def initialize(options = {})
  @name = options[:name]
  @latitude = options[:latitude]
  @longitude = options[:longitude]
  @elevation = options[:elevation]
  @domain = options[:domain]
  @exposure = options[:exposure]
  @disposition = options[:disposition]
end