Crystal Open Weather Map Interface
A Crystal interface for the Open Weather Map API. Currently, this library supports all the options available to Free Accounts, with the exception of Weather Map Layers.
Installation
Add this to your application's shard.yml
:
dependencies:
owm:
github: HCLarsen/owm.cr
Usage
require "owm"
client = OWM::Client.new(USERS_OWM_KEY)
params = { "q" => "Toronto" }
currentWeather = client.current_weather_for_city(params)
puts "The current weather in Toronto is #{currentWeather.temp}"
Note: Users must obtain their own API key from http://OWM.org/appid, and substitute their key as USERS_OWM_KEY.
Development
To Do
- Add Air Pollution API wrapper.
- Add geocoding API wrapper.
Contributing
- Fork it ( https://github.com/HCLarsen/owm/fork )
- 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 a new Pull Request
Contributors
- HCLarsen Chris Larsen - creator, maintainer