class USNO::Imagery::Earth::EarthView

Public Class Methods

new(options = {}) click to toggle source
# File lib/usno/imagery/earth/earth_view.rb, line 5
def initialize(options = {})
  options = {
    usno_imagery_class: USNO::Imagery::Earth::View
  }.merge(options)

  # sets instance variables from key value pairs,
  # will fail if any keys given before options aren't in options
  load_options(:view, :usno_imagery_class, options)
end