OpenWeatherMap-API-CSharp icon indicating copy to clipboard operation
OpenWeatherMap-API-CSharp copied to clipboard

C# Library to interact with the OpenWeatherMap API. Exact same layout as the api returns in JSON.

Results 8 OpenWeatherMap-API-CSharp issues
Sort by recently updated
recently updated
newest added

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Add the daily forecast endpoint. http://api.openweathermap.org/data/2.5/forecast?appid={key}&q={query} Currently only the weather endpoint is supported. http://api.openweathermap.org/data/2.5/weather?appid={_apiKey}&q={queryString} Alterantively you could just allow the implementor to decide which endpoint to use private Uri GenerateRequestUrl(string...

The response from OpenWeatherMaps includes a field that tells you something about the timezone. This is unfortunately not included in this library

I'm using this library for a cross-platform scenario running, amongst others, on iOS. These platforms force you to use secure endpoints. It seems there are also https endpoints available for...

Somehow this code seems to use the users decimal separator (in my case a comma) and thus ignoreing the . (US & as far as i know part of the...