Skip to content

OpenWeatherMap is a Swift Package that simplifies communication with OpenWeatherMap API to retrieve weather information.

Notifications You must be signed in to change notification settings

AnthonyArzola/OpenWeatherMap

Repository files navigation

OpenWeatherMap

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.

Getting Started

  1. Get OpenWeatherMap API key

  2. Add package to your project (Xcode > File > Swift Packages > Add Package Dependency... )

  3. Update project target to reference OpenWeatherMap library (Targets > Frameworks, Libraries, and Embedded Content > touch "+" button)

  4. Add import OpenWeatherMap to your Swift file

  5. Call methods, get weather and enjoy!

Example

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!")
    }
})

Weather Images

OpenWeatherMap API specifies image name and provides a basic set of images. For alternative images, look at LocalWeatherImages

License

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.

About

OpenWeatherMap is a Swift Package that simplifies communication with OpenWeatherMap API to retrieve weather information.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published