Barometer::WeatherBug (deprecated)
It appears WeatherBug has shut down their API service. This code will not be useful for getting the weather.
A wrapper for the WeatherBug 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 = {client_id: 'client_id', client_secret: 'client_secret'}
result = Barometer::WeatherBug.call(query, keys: keys)
puts result.current.temperature.c
via Barometer
Barometer is a weather service framework, providing aggregation and failover capabilities. To make WeatherBug available to Barometer, you must register it as an available weather service.
Barometer::WeatherService.register(:weather_bug, Barometer::WeatherBug)
Then follow the instructions provided by Barometer.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Links
- repo: http://github.com/attack/barometer-weather_bug
- travis ci: https://travis-ci.org/attack/barometer-weather_bug
- code climate: https://codeclimate.com/github/attack/barometer-weather_bug
Copyright
Copyright (c) 2009-2014 Mark Gangl. See LICENSE for details.