AmbientWx 1.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package AmbientWx --version 1.1.1
NuGet\Install-Package AmbientWx -Version 1.1.1
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="AmbientWx" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AmbientWx --version 1.1.1
#r "nuget: AmbientWx, 1.1.1"
#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 AmbientWx as a Cake Addin
#addin nuget:?package=AmbientWx&version=1.1.1

// Install AmbientWx as a Cake Tool
#tool nuget:?package=AmbientWx&version=1.1.1

AmbientWx

A .Net Core SDK for AmbientWeather.net API

This SDK allows a .Net Core developer to use the API provided by AmbientWeather.net to retrieve weather results from their personal weather station. To use this SDK, you must create a file named AmbientWx.config and place it in the folder with the AmbientWx.dll file. The config file contents should look like this:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="ApiKey" value="Your Api Key" />
    <add key="ApplicationKey" value="Your Application Key" />
    <add key="BaseUrl" value="https://api.ambientweather.net" />
  </appSettings>
</configuration>

Be sure to use your apiKey and applicationKey provided by AmbientWeather.net. See their API documentation page here for more information.

How to use the API

Search for AmbientWx on Nuget, then install the package. Since this is .Net Core, it is usable on Windows, Mac and Linux platforms. Example call: First, ensure you're AmbientWx.config is in place. Then, in your code, make this call:

List<UserDevice> request = UserDevicesRequest.GetUserDevices();

You can then iterate through your devices and the data for each one. See the source code tests for usage as well.

APIs implemented to date:

  • UserDevices

APIs Coming Soon

  • Device Data
  • Real Time
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 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
2.0.0 615 3/22/2020
1.2.0 852 12/31/2018
1.1.1 755 12/30/2018
1.1.0 715 12/30/2018
1.0.0 768 12/30/2018

Updating documentation and package configuration settings.