Iminetsoft.OpenWeatherMap 1.0.2.4

dotnet add package Iminetsoft.OpenWeatherMap --version 1.0.2.4
NuGet\Install-Package Iminetsoft.OpenWeatherMap -Version 1.0.2.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Iminetsoft.OpenWeatherMap" Version="1.0.2.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Iminetsoft.OpenWeatherMap --version 1.0.2.4
#r "nuget: Iminetsoft.OpenWeatherMap, 1.0.2.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Iminetsoft.OpenWeatherMap as a Cake Addin
#addin nuget:?package=Iminetsoft.OpenWeatherMap&version=1.0.2.4

// Install Iminetsoft.OpenWeatherMap as a Cake Tool
#tool nuget:?package=Iminetsoft.OpenWeatherMap&version=1.0.2.4

OpenWeatherMap-API - C# Library

Overview

This library takes what openweathermap api returns in JSON, and converts it to C# objects for easy interaction with in C# projects. It supports (most/all) of the returned data the API returns in JSON. The JSON api returned properties are sometimes present, and sometimes not. I have done my best to detect properties that are prone to not being presented, and assigning those values null. You should check certain properties for null vals before assigning under the assumption they are good values. It is also possible I missed values, and the C# library may nullref. This project was originally created to be used in a Twitch chat bot, but has been released for others to use.

Returned Data

  • Clouds
    • All - Level of cloudiness (percentage of cloud cover?)
  • Coordinates
    • Longitude - Query location longitude
    • Latitude - Query location latitude
  • Main
    • CelsiusCurrent - Returns converted Kelvin values of current temperature in Centigrade
    • FahrenheitCurrent - Returns converted Kelvin values of current temperature in Fahrenheight
    • KelvinCurrent - Returns raw openweather API values for temperature in Kelvin
    • CelsiusMinimum - Returns converted Kelvin values of minimum temperature in Centigrade
    • CelsiusMaximum - Returns converted Kelvin values of maximum temperature in Centigrade
    • FahrenheitMinimum - Returns converted Kelvin values of minimum temperature in Fahrenheight
    • FahrenheitMaximum - Returns converted Kelvin values of maximum temperature in Fahrenheight
    • KelvinMinimum - Returns raw openweather API values for minimum temperature in Kelvin
    • KelvinMaximum - Returns raw openweather API values for maximum temperatures in Kelvin
    • SeaLevel - Returns atmospheric pressure on sea level, hPa, raw from openweather API
    • GroundLevel - Returns atmospheric pressure on ground level, hPa, raw from openweather API
  • Rain
    • 3h - Returns rain related data for the last 3 hours at query location (if available).
  • Snow
    • 3h - Returns snow related data for the last 3 hours at query location (if available).
  • Sys
    • Type - System related parameter, avoid usage
    • ID - Openweather API city identification int
    • Message - System related parameter, avoid usage
    • Country - Country code of given query location
    • Sunrise - Returns DateTime for sunrise converted from openweather API returned unix time.
    • Sunset - Returns DateTime for sunset converted from openweather API returned unix time.
  • Weather
    • ID - System related parameter, avoid usage
    • Main - Main description of the weather (IE rain, snow, etc.)
    • Description - Description of main parameter (heavy intensity rain, etc)
    • Icon - Weather icon ID
  • Wind
    • SpeedMetersPerSecond - Gives wind speed in raw values returned by openweathermap api, in meters per second
    • SpeedFeetPerSecond - Gives wind speed in converted values in feet per second
    • Direction - Returns DirectionEnum with details of direction of wind on basis of degree
    • Degree - Returns raw 360-oriented degree returned by openweathermap api
    • Gust - Returns speed of wind gusts in meters per second

Added Functionality

  • Additional Main values: By default the openweathermap API returns just Kelvin temperatures. I have created properties in the Main class that returns equivalent Celsius and Fahrenheight
  • DirectionEnum - Added direction enum in Wind class that is set in constructor on the basis of degree double
  • directionEnumToString(DirectionEnum dir) - Returns string value of wind direction on the basis of passed in DirectionEnum

Installing

Install the NuGet package https://www.nuget.org/packages/OpenWeatherAPI/

Example Usage

var openWeatherAPI = new OpenWeatherAPI.OpenWeatherApiClient("my open weather api key");
// Use async version wherever possible
var query = await openWeatherAPI.QueryAsync("city/location query");
// or non-async version if needed for legacy code
var query = openWeatherAPI.Query("city/location query");

Console.WriteLine(string.Format("The temperature in {0}, {1} is currently {2} °F", query.Name,query.Sys.Country, query.Main.Temperature.FahrenheitCurrent));

Sample Project

This repository also has a sample project. Find it here: https://github.com/swiftyspiffy/OpenWeatherMap-API-CSharp/tree/master/OpenWeatherAPI%20Example

Credits and Libraries Utilized

  • Newtonsoft.Json - JSON parsing class.

License

The MIT License (MIT)

Copyright (c) 2015 swiftyspiffy

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 NON INFRINGEMENT. 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.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2.4 130 3/3/2024
1.0.2.3 96 3/3/2024

Changed namespace and added .NET 6.0, 7.0 support