42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WeatherApp
|
|
{
|
|
public class Core
|
|
{
|
|
public static async Task<Weather> GetWeather(string zipCode)
|
|
{
|
|
//Sign up for a free API key at http://openweathermap.org/appid
|
|
string key = "fc9f6c524fc093759cd28d41fda89a1b";
|
|
string queryString = "http://api.openweathermap.org/data/2.5/weather?zip="
|
|
+ zipCode + "&appid=" + key;
|
|
|
|
var results = await DataService.getDataFromService(queryString).ConfigureAwait(false);
|
|
|
|
if (results["weather"] != null)
|
|
{
|
|
Weather weather = new Weather
|
|
{
|
|
Title = (string)results["name"],
|
|
Temperature = (string)results["main"]["temp"] + " F",
|
|
Wind = (string)results["wind"]["speed"] + " mph",
|
|
Humidity = (string)results["main"]["humidity"] + " %",
|
|
Visibility = (string)results["weather"][0]["main"]
|
|
};
|
|
|
|
DateTime time = new DateTime(1970, 1, 1, 0, 0, 0, 0);
|
|
DateTime sunrise = time.AddSeconds((double)results["sys"]["sunrise"]);
|
|
DateTime sunset = time.AddSeconds((double)results["sys"]["sunset"]);
|
|
weather.Sunrise = sunrise.ToString() + " UTC";
|
|
weather.Sunset = sunset.ToString() + " UTC";
|
|
return weather;
|
|
}
|
|
else
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|