Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

devmaximilian/Weather

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Weather

This package is a wrapper for the PMP3g API provided by SMHI.

Usage

Add Weather o your Package.swift manifest.

/// Append the package to the list of dependencies
dependencies: [
    .package(url: "https://github.com/devmaximilian/Weather.git", from: "1.0.0")
],

/// Append the library to the list of target dependencies
targets: [
    .target(
        name: "MyProject",
        dependencies: ["Weather"])
]

Note that this is just a simple example demonstrating how the library can be used.

var cancellables: [String: AnyCancellable] = [:]

/// Request the current weather forecast for Stockholm
let weatherPublisher = Weather.publisher(latitude: 59.3258414, longitude: 17.7018733)

cancellables["weather"] = weatherPublisher
    .assertNoFailure()
    .sink { weather in
        /// Get the current air temperature
        let temperature = observation.get(\.value, for: .t)
        
        /// Use the air temperature in some way
        print("It is currently \(temperature)°C")
    }

Attribution

This package utilizes data provided by SMHI.

Terms of use

Make sure to read SMHI:s terms of use before using this package.

Legal disclaimer

The developer and this package are not affiliated with or endorsed by SMHI. Any products and services provided through this package are not supported or warrantied by SMHI.

License

See LICENSE for license details concerning this package and SMHI:s terms of use for license details concerning the data provided by their API.