OpenWeatherMap is a Swift Package that simplifies communication with OpenWeatherMap API to retrieve weather information.
OpenWeatherMap is a Swift Package that simplifies communication with OpenWeatherMap API to retrieve weather information.
Currently, this packages does not have any third-party dependencies.
Get OpenWeatherMap API key
Add package to your project (Xcode > File > Swift Packages > Add Package Dependency… )
Add import OpenWeatherMap
to your Swift file
Call methods, get weather and enjoy!
let weatherService = OpenWeatherMapService(apiKey: "API_KEY_HERE")
weatherService.weatherAt(latitude: 34.0580, longitude: -117.8239, apiKey: apiKey, completion: { (success: Bool, results: WeatherResults?) -> Void in
if (success) {
print("Success!")
} else {
print("Failure!")
}
})
OpenWeatherMap API specifies image name and provides a basic set of images. For alternative images, look at LocalWeatherImages
The MIT License (MIT)
Copyright (c) 2019 Anthony Arzola
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.