Sha256: 418173c33ba8e39919c1d4aea4e57af012bb1ffd3b2aaa7667e8121062d5b42d
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
# Underground Weather http://www.wunderground.com/weather/api/d/documentation.html ## Usage Implemented Endpoints * conditions - Returns the current temperature, weather condition, humidity, wind, 'feels like' temperature, barometric pressure, and visibility. * forecast - Returns a summary of the weather for the next 3 days. This includes high and low temperatures, a string text forecast and the conditions. * astronomy - Returns The moon phase, sunrise and sunset times. * radar - Returns a URL link to the .gif radar image. * satellite - Returns a URL link to .gif visual and infrared satellite images. * webcams - Returns locations of nearby Personal Weather Stations and URL's for images from their web cams. ``` gem install undergroundweather ``` ``` require 'undergroundweather' api_key = 'xxxxxxxx' # Your WU API Key uw = UndergroundWeather.new(api_key) zip_code = 19106 uw.[endpoint](zip_code) # conditions, forecast, astronomy, etc... ``` ## Development ### ToDo https://github.com/brookemckim/undergroundweather/issues?labels=Story&sort=created&direction=desc&state=open&page=1 ### Tests Using minitest/spec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
undergroundweather-0.0.3 | README.md |