Barometer::ForecastIo

A wrapper for the forecast.io weather API. This wrapper is barometer compatiable and can be used with or without barometer.

Usage

This wrapper was designed to be used via Barometer, or on its own.

Directly

By using this wrapper directly, you lose any Barometer aggregation and failover capabilities. Barometer is still dependency to provide a framework for query conversion, weather service integration and data processing.

query = Barometer::Query.new('42.7243,-73.6927')
keys = {api: 'forecast io apikey'}

result = Barometer::ForecastIo.call(query, keys: keys)
puts result.current.temperature.c

via Barometer

Barometer is a weather service framework, providing aggregation and failover capabilities. To make forecast.io available to Barometer, you must register it as an available weather service.

Barometer::WeatherService.register(:forecast_io, Barometer::ForecastIo)

Then follow the instructions provided by Barometer.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request