Esempio n. 1
0
        private void ShowForecastedWeather(XmlDocument doc)
        {
            bool metric = Settings.WeatherMetric;

            XmlNodeList nodes = doc.GetElementsByTagName("time");

            foreach (XmlNode each in nodes)
            {
                DateTime date = DateTime.Parse(each.Attributes["day"].Value);

                if (date == DateTime.Now.Date)
                {
                    XmlElement temp = each["temperature"];

                    double max = double.Parse(temp.Attributes["max"].Value);
                    double min = double.Parse(temp.Attributes["min"].Value);

                    hilo.Text =
                        Math.Round(metric
                                                        ? WeatherFunctions.KelvinToCelsius(max)
                                                        : WeatherFunctions.KelvinToFarenheit(max)
                                   ).ToString()
                        + "° / "
                        + Math.Round(metric
                                                        ? WeatherFunctions.KelvinToCelsius(min)
                                                        : WeatherFunctions.KelvinToFarenheit(min)
                                     ).ToString()
                        + "°";

                    break;
                }
            }
        }
Esempio n. 2
0
        private void currentClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
        {
            XmlDocument doc = ParseXml(e);

            if (doc == null)
            {
                return;
            }

            WeatherFunctions.WriteFileAsync(WeatherFunctions.WeatherAppData + _city + "weather.xml", e.Result);
            ShowCurrentWeather(doc);
            DownloadForecast(_city);
        }
Esempio n. 3
0
        private void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
        {
            ((WebClient)sender).DownloadStringCompleted -= client_DownloadStringCompleted;

            XmlDocument doc = ParseXml(e);

            if (doc == null)
            {
                return;
            }

            WeatherFunctions.WriteFileAsync(WeatherFunctions.WeatherAppData + Location + "weather.xml", e.Result);
            UpdateValues(doc);
        }
Esempio n. 4
0
        private void ShowCurrentWeather(XmlDocument doc)
        {
            double temperature = double.Parse(doc.GetElementsByTagName("temperature")[0].Attributes["value"].Value);

            double currentTemp = Settings.WeatherMetric
                                ? WeatherFunctions.KelvinToCelsius(temperature)
                                : WeatherFunctions.KelvinToFarenheit(temperature);

            temp.Text = Math.Round(currentTemp).ToString() + "°";

            string precip = doc.GetElementsByTagName("weather")[0].Attributes["number"].Value;

            clouds.Text = WeatherFunctions.ProcessSkyConditionString(precip);
        }
Esempio n. 5
0
        private async void UpdateValues(XmlDocument doc)
        {
            bool metric = Settings.WeatherMetric;

            _temp = metric
                                ? WeatherFunctions.KelvinToCelsius(double.Parse(doc.GetElementsByTagName("temperature")[0].Attributes["value"].Value))
                                : WeatherFunctions.KelvinToFarenheit(double.Parse(doc.GetElementsByTagName("temperature")[0].Attributes["value"].Value));
            _windSpeed = metric
                                ? WeatherFunctions.MpsToKmH(double.Parse(doc.GetElementsByTagName("speed")[0].Attributes["value"].Value))
                                : WeatherFunctions.MpsToMph(double.Parse(doc.GetElementsByTagName("speed")[0].Attributes["value"].Value));
            _skyCondition  = doc.GetElementsByTagName("weather")[0].Attributes["number"].Value;
            _cloudCover    = doc.GetElementsByTagName("clouds")[0].Attributes["value"].Value;
            _windDirection = doc.GetElementsByTagName("direction")[0].Attributes["code"].Value;
            _humidity      = double.Parse(doc.GetElementsByTagName("humidity")[0].Attributes["value"].Value);
            _pressure      = metric
                                ? double.Parse(doc.GetElementsByTagName("pressure")[0].Attributes["value"].Value)
                                : WeatherFunctions.MillibarToInHg(double.Parse(doc.GetElementsByTagName("pressure")[0].Attributes["value"].Value));

            XmlNode sun = doc.GetElementsByTagName("sun")[0];

            XmlNode location  = doc.GetElementsByTagName("coord")[0];
            double  longitude = double.Parse(location.Attributes["lon"].Value);
            double  latitude  = double.Parse(location.Attributes["lat"].Value);

            //_sunrise = DateTime.Parse(sun.Attributes["rise"].Value).ToLocalTime().TimeOfDay;
            //_sunset = DateTime.Parse(sun.Attributes["set"].Value).ToLocalTime().TimeOfDay;

            TimeZoneInfo tz = await TimeZoneLookup.TimeZone(latitude, longitude);

            if (tz == null)
            {
                tz            = TimeZoneInfo.Local;
                _showTimeZone = true;
            }
            else
            {
                _showTimeZone = false;
            }

            _timeZone = tz;

            _sunrise = TimeZoneInfo.ConvertTimeFromUtc(DateTime.Parse(sun.Attributes["rise"].Value), tz).TimeOfDay;
            _sunset  = TimeZoneInfo.ConvertTimeFromUtc(DateTime.Parse(sun.Attributes["set"].Value), tz).TimeOfDay;

            _timestamp = DateTime.Parse(doc.GetElementsByTagName("lastupdate")[0].Attributes["value"].Value).ToLocalTime();

            RaiseDataUpdatedEvent();
        }
        private void weather_DataUpdated(object sender, EventArgs e)
        {
            CurrentWeather weather = (CurrentWeather)sender;

            bool   metric        = Settings.WeatherMetric;
            string _temp         = Math.Round(weather.Temperature).ToString();
            string _tempUnit     = metric ? "°C" : "°F";
            string _skyCondition = WeatherFunctions.ProcessSkyConditionString(weather.SkyCondition);
            string _icon         = WeatherFunctions.ProcessSkyConditionImage(weather.SkyCondition, DateTime.Now.TimeOfDay <weather.Sunrise || DateTime.Now.TimeOfDay> weather.Sunset);
            string _wind         = weather.WindDirection + " " + WeatherFunctions.FormatDouble(weather.WindSpeed, 1) + (metric ? " km/h" : " mph");
            string _pressure     = WeatherFunctions.FormatDouble(weather.Pressure, 1) + (metric ? " hPa" : " in");
            string _sunrise      = RandomFunctions.FormatTime(weather.Sunrise);
            string _sunset       = RandomFunctions.FormatTime(weather.Sunset);

            if (weather.ShowTimeZone)
            {
                string tzID = " " + weather.TimeZone.Id.Acronym();
                _sunrise += tzID;
                _sunset  += tzID;
            }

            Dispatcher.BeginInvoke(() =>
            {
                temp.Text         = _temp;
                tempUnit.Text     = _tempUnit;
                skyCondition.Text = _skyCondition;

                //ImageSource iconSource = new BitmapImage(_iconUri);
                //iconSource.Freeze();
                //icon.Source = iconSource;
                icon.Text = _icon;

                wind.Text       = _wind;
                humidity.Text   = weather.Humidity + " %";
                cloudCover.Text = weather.CloudCover + " %";
                pressure.Text   = _pressure;
                sunrise.Text    = _sunrise;
                sunset.Text     = _sunset;

                grid.Opacity = weather.Timestamp < DateTime.Now.AddHours(-6) ? 0.5 : 1;

                if (updateTimer != null)
                {
                    updateTimer.Start();
                }
            });
        }
Esempio n. 7
0
        private async void forecastClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
        {
            if (!await Task.Factory.StartNew <bool>(() =>
            {
                string error = null;
                XmlDocument doc = ParseXml(e, out error);

                if (doc == null)
                {
                    RaiseUpdateStatusEvent(error == null ? "ERROR PARSING FORECAST DATA" : error);
                    return(false);
                }

                WeatherFunctions.WriteFileAsync(WeatherFunctions.WeatherAppData + Location + "daily.xml", e.Result);
                ShowForecastedWeather(doc);

                return(true);
            }))
            {
                return;
            }

            RaiseUpdateStatusEvent("DOWNLOAD COMPLETE");
        }
Esempio n. 8
0
        private async void currentClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
        {
            if (!await Task.Factory.StartNew <bool>(() =>
            {
                string error = null;
                XmlDocument doc = ParseXml(e, out error);

                if (doc == null)
                {
                    RaiseUpdateStatusEvent(error == null ? "ERROR PARSING WEATHER DATA" : error);
                    return(false);
                }

                WeatherFunctions.WriteFileAsync(WeatherFunctions.WeatherAppData + Location + "weather.xml", e.Result);
                ShowCurrentWeather(doc);

                return(true);
            }))
            {
                return;
            }

            DownloadForecast(Location);
        }
Esempio n. 9
0
        private void ShowForecastedWeather(XmlDocument doc)
        {
            bool metric = Settings.WeatherMetric;

            XmlNodeList nodes = doc.GetElementsByTagName("time");

            DateTime current = DateTime.Now.Date;
            int      count   = -1;

            for (int i = 0; i < nodes.Count && i < 16; i++)
            {
                XmlNode each = nodes[i];

                DateTime _date = DateTime.Parse(each.Attributes["day"].Value);

                if (_date >= current)
                {
                    count++;
                    string _skyCondition = each["symbol"].Attributes["number"].Value;

                    XmlElement temp = each["temperature"];

                    string _temperature = Math.Round(metric
                                                        ? WeatherFunctions.KelvinToCelsius(double.Parse(temp.Attributes["max"].Value))
                                                        : WeatherFunctions.KelvinToFarenheit(double.Parse(temp.Attributes["max"].Value))
                                                     ).ToString()
                                          + "° / "
                                          + Math.Round(metric
                                                        ? WeatherFunctions.KelvinToCelsius(double.Parse(temp.Attributes["min"].Value))
                                                        : WeatherFunctions.KelvinToFarenheit(double.Parse(temp.Attributes["min"].Value))
                                                       ).ToString()
                                          + "°";
                    string _pressure = WeatherFunctions.FormatDouble(metric
                                                        ? double.Parse(each["pressure"].Attributes["value"].Value)
                                                        : WeatherFunctions.MillibarToInHg(double.Parse(each["pressure"].Attributes["value"].Value)
                                                                                          ), 1) + (metric ? " hPa" : " in");
                    string _humidity     = each["humidity"].Attributes["value"].Value + " %";
                    string _cloudPercent = each["clouds"].Attributes["all"].Value + " %";
                    string _wind         = each["windDirection"].Attributes["code"].Value + " "
                                           + WeatherFunctions.FormatDouble(
                        metric ? WeatherFunctions.MpsToKmH(double.Parse(each["windSpeed"].Attributes["mps"].Value))
                                                        : WeatherFunctions.MpsToMph(double.Parse(each["windSpeed"].Attributes["mps"].Value)
                                                                                    ), 1) + (metric ? " km/h" : " mph");

                    XmlAttribute precip = each["precipitation"].Attributes["value"];
                    string       _precipitation;

                    if (precip != null)
                    {
                        _precipitation = WeatherFunctions.FormatDouble(metric
                                                        ? double.Parse(precip.Value) / 10
                                                        : WeatherFunctions.MmToIn(double.Parse(precip.Value)
                                                                                  ), 1) + (metric ? " cm" : " in");
                    }
                    else
                    {
                        _precipitation = metric ? "0.0 cm" : "0.0 in";
                    }

                    Dispatcher.Invoke(() =>
                    {
                        ForecastControl fc = (ForecastControl)forecastBox.Children[count];
                        fc.Visibility      = Visibility.Visible;

                        fc.Date          = _date;
                        fc.SkyCondition  = _skyCondition;
                        fc.Temperature   = _temperature;
                        fc.Pressure      = _pressure;
                        fc.Humidity      = _humidity;
                        fc.CloudPercent  = _cloudPercent;
                        fc.Wind          = _wind;
                        fc.Precipitation = _precipitation;
                    });
                }
            }

            Dispatcher.Invoke(() =>
            {
                // Handle just in case the weather service doesn't give us
                // the full 16-day forecast. (Yes, this has actually happened.)
                for (int i = count + 1; i < 16; i++)
                {
                    UIElement fc  = forecastBox.Children[i];
                    fc.Visibility = Visibility.Collapsed;
                }

                if (forecastBox.Children[0].Visibility == Visibility.Collapsed)
                {
                    noForecastText.Visibility = Visibility.Visible;
                }
                else
                {
                    noForecastText.Visibility = Visibility.Collapsed;
                }

                UpdateTimeFormat();
            });
        }
Esempio n. 10
0
        private async void ShowCurrentWeather(XmlDocument doc)
        {
            bool metric = Settings.WeatherMetric;

            double currentTemp = metric
                                ? WeatherFunctions.KelvinToCelsius(double.Parse(doc.GetElementsByTagName("temperature")[0].Attributes["value"].Value))
                                : WeatherFunctions.KelvinToFarenheit(double.Parse(doc.GetElementsByTagName("temperature")[0].Attributes["value"].Value));
            double windSpeed = metric
                                ? WeatherFunctions.MpsToKmH(double.Parse(doc.GetElementsByTagName("speed")[0].Attributes["value"].Value))
                                : WeatherFunctions.MpsToMph(double.Parse(doc.GetElementsByTagName("speed")[0].Attributes["value"].Value));
            double humidity = double.Parse(doc.GetElementsByTagName("humidity")[0].Attributes["value"].Value);
            string precip   = doc.GetElementsByTagName("weather")[0].Attributes["number"].Value;

            string _tempCurrent     = Math.Round(currentTemp).ToString();
            string _tempUnit        = "°" + (metric ? "C" : "F");
            string _windChillFactor = "Feels like " + Math.Round(
                metric ? WeatherFunctions.ApparentTemperatureCelsius(currentTemp, windSpeed, humidity) :
                WeatherFunctions.ApparentTemperatureFahrenheit(currentTemp, windSpeed, humidity)
                ).ToString() + "°";
            string _precipitation = WeatherFunctions.ProcessSkyConditionString(precip);

            XmlNode sun = doc.GetElementsByTagName("sun")[0];

            XmlNode location  = doc.GetElementsByTagName("coord")[0];
            double  longitude = double.Parse(location.Attributes["lon"].Value);
            double  latitude  = double.Parse(location.Attributes["lat"].Value);

            TimeZoneInfo tz = await TimeZoneLookup.TimeZone(latitude, longitude);

            bool showTimeZone = false;

            if (tz == null)
            {
                tz           = TimeZoneInfo.Local;
                showTimeZone = true;
            }

            TimeSpan sunrise = TimeZoneInfo.ConvertTimeFromUtc(DateTime.Parse(sun.Attributes["rise"].Value), tz).TimeOfDay;
            TimeSpan sunset  = TimeZoneInfo.ConvertTimeFromUtc(DateTime.Parse(sun.Attributes["set"].Value), tz).TimeOfDay;

            //TimeSpan sunrise = DateTime.Parse(sun.Attributes["rise"].Value).ToLocalTime().TimeOfDay;
            //TimeSpan sunset = DateTime.Parse(sun.Attributes["set"].Value).ToLocalTime().TimeOfDay;

            string _icon = WeatherFunctions.ProcessSkyConditionImage(precip, DateTime.Now.TimeOfDay <sunrise || DateTime.Now.TimeOfDay> sunset);
            string _cloudCoverCurrent = doc.GetElementsByTagName("clouds")[0].Attributes["value"].Value + " %";
            string _windCurrent       = doc.GetElementsByTagName("direction")[0].Attributes["code"].Value + " " +
                                        WeatherFunctions.FormatDouble(windSpeed, 1) + (metric ? " km/h" : " mph");
            string _barometerCurrent = WeatherFunctions.FormatDouble(metric
                                                ? double.Parse(doc.GetElementsByTagName("pressure")[0].Attributes["value"].Value)
                                                : WeatherFunctions.MillibarToInHg(double.Parse(doc.GetElementsByTagName("pressure")[0].Attributes["value"].Value)
                                                                                  ), 1) + (metric ? " hPa" : " in");

            string _sunriseCurrent = RandomFunctions.FormatTime(sunrise);
            string _sunsetCurrent  = RandomFunctions.FormatTime(sunset);

            if (showTimeZone)
            {
                string tzID = " " + tz.Id.Acronym();
                _sunriseCurrent += tzID;
                _sunsetCurrent  += tzID;
            }

            _lastUpdated = DateTime.Parse(doc.GetElementsByTagName("lastupdate")[0].Attributes["value"].Value).ToLocalTime();

            Dispatcher.Invoke(() =>
            {
                tempCurrent.Text          = _tempCurrent;
                tempUnit.Text             = _tempUnit;
                windChillFactor.Text      = _windChillFactor;
                precipitationCurrent.Text = _precipitation;

                //ImageSource iconSource = new BitmapImage(_icon);
                //iconSource.Freeze();
                //icon.Source = iconSource;
                icon.Text = _icon;

                //Background = new SolidColorBrush(WeatherFunctions.ProcessWeatherNumberBackground(precip));

                cloudCoverCurrent.Text = _cloudCoverCurrent;
                windCurrent.Text       = _windCurrent;
                humidityCurrent.Text   = humidity.ToString() + " %";
                barometerCurrent.Text  = _barometerCurrent;

                sunriseCurrent.Text = _sunriseCurrent;
                sunsetCurrent.Text  = _sunsetCurrent;

                currentWeatherDisplay.Opacity = _lastUpdated < DateTime.Now.AddHours(-6) ? 0.5 : 1;
            });
        }