Class: Barometer::Query::Service::FromWeatherId

Inherits:
Object
  • Object
show all
Defined in:
lib/barometer/query/services/from_weather_id.rb

Instance Method Summary collapse

Constructor Details

#initialize(query) ⇒ FromWeatherId

Returns a new instance of FromWeatherId.



7
8
9
# File 'lib/barometer/query/services/from_weather_id.rb', line 7

def initialize(query)
  @query = query
end

Instance Method Details

#callObject



11
12
13
14
15
16
17
# File 'lib/barometer/query/services/from_weather_id.rb', line 11

def call
  converted_query = query.get_conversion(:weather_id)
  return unless converted_query

  @payload = YahooWeather::Api.new(converted_query).get
  parse_payload
end