OpenWeatherMap.Cache
1.12.1
dotnet add package OpenWeatherMap.Cache --version 1.12.1
NuGet\Install-Package OpenWeatherMap.Cache -Version 1.12.1
<PackageReference Include="OpenWeatherMap.Cache" Version="1.12.1" />
paket add OpenWeatherMap.Cache --version 1.12.1
#r "nuget: OpenWeatherMap.Cache, 1.12.1"
// Install OpenWeatherMap.Cache as a Cake Addin #addin nuget:?package=OpenWeatherMap.Cache&version=1.12.1 // Install OpenWeatherMap.Cache as a Cake Tool #tool nuget:?package=OpenWeatherMap.Cache&version=1.12.1
OpenWeatherMap.Cache
An asynchronous .NET Standard 2.0 library that allows you to fetch & cache current weather readings from the OpenWeather API, with built-in resiliency that can extend the cache lifetime in case the API is unreachable.
Supports .NET Framework 4.6.1 or later, .NET Core 2.0 or later, and .NET 5.0 or later.
Installation
The recommended means is to use NuGet, but you could also download the source code from here.
Choose the fetch mode
If the time elapsed since the last fetch for the given location exceeds the cache period (i.e. a new API call is required) but is within the resiliency period (i.e. the previous readings are still available in the cache), the API reported measured time in the cache value is sometimes more recent than the latest value fetched from the API. There are three modes to tackle this issue:
With FetchMode.AlwaysUseLastMeasured, the value still available in the cache is returned. The implication is that if you immediately request another reading it will also hit the API again. IMPORTANT: Frequent calls may impact your API usage.
With FetchMode.AlwaysUseLastMeasuredButExtendCache (default, recommended), the value still available in the cache is returned but in order to protect impact on your API usage, this setting updates the cache value's fetched date and extends the cache lifetime.
With FetchMode.AlwaysUseLastFetchedValue, the last fetched API result is returned anyway, even though it is being reported to be older by the API.
Initialization with Dependency Injection
In your Startup.cs (ConfigureServices):
services.AddOpenWeatherMapCache("[API KEY]", 9_500, FetchMode.AlwaysUseLastMeasuredButExtendCache, 300_000);
Then you can inject IOpenWeatherMapCache.
Initialization without Dependency Injection
Create your own instance:
var openWeatherMapCache = new OpenWeatherMapCache("[API KEY]", 9_500, FetchMode.AlwaysUseLastMeasuredButExtendCache, 300_000);
Usage in asynchronous methods (recommended)
var locationQuery = new OpenWeatherMap.Cache.Models.Location(47.6371, -122.1237);
var readings = await openWeatherMapCache.GetReadingsAsync(locationQuery);
if (readings.IsSuccessful)
{
...
}
else
{
var apiErrorCode = readings.Exception?.ApiErrorCode;
var apiErrorMessage = readings.Exception?.ApiErrorMessage;
}
or by zip code (post code) and country code:
var locationQuery = new OpenWeatherMap.Cache.Models.ZipCode("94040", "us");
var readings = await openWeatherMapCache.GetReadingsAsync(locationQuery);
if (readings.IsSuccessful)
{
...
}
else
{
var apiErrorCode = readings.Exception?.ApiErrorCode;
var apiErrorMessage = readings.Exception?.ApiErrorMessage;
}
Usage in synchronous methods
var locationQuery = new OpenWeatherMap.Cache.Models.Location(47.6371, -122.1237);
var readings = openWeatherMapCache.GetReadings(locationQuery);
if (readings.IsSuccessful)
{
...
}
else
{
var apiErrorCode = readings.Exception?.ApiErrorCode;
var apiErrorMessage = readings.Exception?.ApiErrorMessage;
}
or by zip code (post code) and country code:
var locationQuery = new OpenWeatherMap.Cache.Models.ZipCode("94040", "us");
var readings = openWeatherMapCache.GetReadings(locationQuery);
if (readings.IsSuccessful)
{
...
}
else
{
var apiErrorCode = readings.Exception?.ApiErrorCode;
var apiErrorMessage = readings.Exception?.ApiErrorMessage;
}
Product | Versions 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. net9.0 is compatible. |
.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 was computed. 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. |
-
.NETStandard 2.0
- AsyncKeyedLock (>= 7.1.3)
- Microsoft.Extensions.Caching.Memory (>= 6.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- System.Text.Json (>= 6.0.10)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- UnitsNet (>= 5.60.0)
-
net5.0
- AsyncKeyedLock (>= 7.1.3)
- Microsoft.Extensions.Caching.Memory (>= 6.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- System.Text.Json (>= 6.0.10)
- UnitsNet (>= 5.60.0)
-
net6.0
- AsyncKeyedLock (>= 7.1.3)
- Microsoft.Extensions.Caching.Memory (>= 8.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- System.Text.Json (>= 8.0.5)
- UnitsNet (>= 5.60.0)
-
net7.0
- AsyncKeyedLock (>= 7.1.3)
- Microsoft.Extensions.Caching.Memory (>= 8.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- System.Text.Json (>= 8.0.5)
- UnitsNet (>= 5.60.0)
-
net9.0
- AsyncKeyedLock (>= 7.1.3)
- Microsoft.Extensions.Caching.Memory (>= 8.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- System.Text.Json (>= 8.0.5)
- UnitsNet (>= 5.60.0)
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.12.1 | 43 | 11/11/2024 |
1.12.0 | 118 | 10/13/2024 |
1.11.1 | 89 | 10/5/2024 |
1.11.0 | 219 | 8/20/2024 |
1.10.6 | 363 | 7/21/2024 |
1.10.5 | 133 | 7/10/2024 |
1.10.3 | 2,902 | 1/23/2024 |
1.10.2 | 145 | 1/15/2024 |
1.10.1 | 508 | 1/1/2024 |
1.9.13 | 134 | 12/30/2023 |
1.9.12 | 171 | 12/6/2023 |
1.9.11 | 168 | 12/3/2023 |
1.9.10 | 118 | 12/2/2023 |
1.9.9 | 449 | 10/11/2023 |
1.9.8 | 1,014 | 4/10/2023 |
1.9.7 | 187 | 4/7/2023 |
1.9.6 | 1,889 | 3/25/2023 |
1.9.5 | 209 | 3/25/2023 |
1.9.4 | 321 | 2/25/2023 |
1.9.3 | 599 | 2/13/2023 |
1.9.2 | 268 | 2/3/2023 |
1.9.1 | 308 | 1/29/2023 |
1.9.0 | 283 | 1/27/2023 |
1.8.9 | 294 | 1/26/2023 |
1.8.8 | 333 | 1/2/2023 |
1.8.7 | 291 | 12/29/2022 |
1.8.6 | 428 | 12/18/2022 |
1.8.5 | 307 | 12/16/2022 |
1.8.3 | 306 | 12/13/2022 |
1.8.2 | 308 | 12/12/2022 |
1.8.1 | 306 | 12/12/2022 |
1.8.0 | 345 | 12/3/2022 |
1.7.5 | 324 | 11/28/2022 |
1.7.4 | 445 | 11/26/2022 |
1.7.3 | 331 | 11/19/2022 |
1.7.2 | 1,909 | 11/13/2022 |
1.6.1 | 964 | 10/26/2022 |
1.6.0 | 392 | 10/23/2022 |
1.5.12 | 614 | 10/18/2022 |
1.5.11 | 408 | 10/16/2022 |
1.5.10 | 465 | 9/17/2022 |
1.5.9 | 700 | 6/29/2022 |
1.5.8 | 430 | 6/29/2022 |
1.5.7 | 450 | 6/18/2022 |
1.5.6 | 433 | 6/9/2022 |
1.5.5 | 453 | 5/15/2022 |
1.5.4 | 1,655 | 4/15/2022 |
1.5.3 | 1,003 | 3/13/2022 |
1.5.2 | 433 | 3/13/2022 |
1.5.1 | 442 | 3/11/2022 |
1.5.0 | 473 | 2/26/2022 |
1.4.10 | 834 | 1/26/2022 |
1.4.9 | 563 | 12/11/2021 |
1.4.8 | 293 | 11/27/2021 |
1.4.7 | 307 | 11/23/2021 |
1.4.5 | 300 | 11/22/2021 |
1.4.4 | 726 | 11/21/2021 |
1.4.3 | 382 | 11/14/2021 |
1.4.2 | 324 | 11/10/2021 |
1.4.1 | 322 | 11/7/2021 |
1.4.0 | 378 | 10/20/2021 |
1.3.5 | 1,709 | 6/20/2021 |
1.3.4 | 415 | 6/20/2021 |
1.3.3 | 456 | 12/26/2020 |
1.3.2 | 428 | 12/6/2020 |
1.3.1 | 458 | 11/30/2020 |
1.3.0 | 427 | 11/28/2020 |
1.2.1 | 510 | 11/27/2020 |
1.2.0 | 434 | 11/24/2020 |
1.1.1 | 461 | 11/23/2020 |
1.1.0 | 415 | 11/23/2020 |
1.0.5 | 466 | 11/22/2020 |
1.0.4 | 404 | 11/22/2020 |
1.0.3 | 410 | 11/22/2020 |
1.0.2 | 405 | 11/22/2020 |
1.0.1 | 417 | 11/22/2020 |
1.0.0 | 436 | 11/22/2020 |
Dependency update and cleaning.