OpenWeather is a WPF-MVVM weather forecast application that displays three day (current day + two days) forecast for a particular location.
You can read more about the project code here.
- OpenWeatherMap App ID,
- Visual Studio 2015/17,
Once you get your App ID insert it as the value of the APP_ID
constant in the OpenWeatherMapService
class.
private const string APP_ID = "PLACE-YOUR-APP-ID-HERE";
Private Const APP_ID As String = "PLACE-YOUR-APP-ID-HERE"