Sha256: 6a876e17bb37ba15626537d284135a4318b35a1a9b76fcd78a462e20fcf3864f

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 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
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

### Testing
Using minitest/spec

```
rake test
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
undergroundweather-0.0.2 README.md