Esempio n. 1
0
        public WeatherViewModel()
        {
            DayViewModels = new DayViewModel[_numberOfDays];

            //for (int i = 0; i < _numberOfDays; ++i)
            //{
            //    DayViewModels[i] = new DayViewModel();
            //}

            SelectedDayViewModel    = new DayViewModel();
            SelectedHourlyViewModel = new HourlyViewModel();

            ClickOnDay = new RelayCommand <DayViewModel>(setCurrentDay);
        }
Esempio n. 2
0
        private void setCurrentDay(DayViewModel dw)
        {
            SelectedDayViewModel = new DayViewModel(dw.DayOfTheWeek, dw.TypeOfDayImagePath, dw.Temperature.Substring(4, dw.Temperature.Length - 5), dw.TypeOfDay, dw.date);

            MainWindowViewModel._wvm.SelectedHourlyViewModel.HourlyWeather.Clear();
            for (int i = 0; i < MainWindowViewModel.weatherData.list.Count; i++)
            {
                WeatherData wd = MainWindowViewModel.weatherData.list[i];
                DateTime    dt = MainWindowViewModel.UnixTimeStampToDateTime(wd.dt);
                if (dw.date.ToString("yyyy-MM-dd").Equals(dt.ToString("yyyy-MM-dd")))
                {
                    HourWeather hw = new HourWeather();
                    hw.Hour               = dt.ToString("HH:mm");
                    hw.Temperature        = wd.main.temp.ToString() + " °C";
                    hw.TypeOfDay          = wd.weather[0].description;
                    hw.TypeOfDayImagePath = "http://openweathermap.org/img/w/" + wd.weather[0].icon + ".png";
                    MainWindowViewModel._wvm.SelectedHourlyViewModel.HourlyWeather.Add(hw);
                }
            }
        }
Esempio n. 3
0
        private void ChangedCity()
        {
            if (SelectedCity != null)
            {
                weatherData = WeatherService.get5DayForecastByCityID(SelectedCity.id.ToString());

                DateTime today = DateTime.Now;

                //DayViewModel dw = new DayViewModel();
                _wvm.SelectedHourlyViewModel                 = new HourlyViewModel();
                _wvm.SelectedDayViewModel                    = new DayViewModel();
                _wvm.SelectedDayViewModel.Temperature        = weatherData.list[0].main.temp.ToString() + " °C";
                _wvm.SelectedDayViewModel.DayOfTheWeek       = new DateTime(weatherData.list[0].dt).AddDays(1).DayOfWeek.ToString();
                _wvm.SelectedDayViewModel.TypeOfDay          = weatherData.list[0].weather[0].description;
                _wvm.SelectedDayViewModel.TypeOfDayImagePath = "http://openweathermap.org/img/w/" + weatherData.list[0].weather[0].icon + ".png";

                for (int i = 0; i < weatherData.list.Count; i++)
                {
                    WeatherData wd = weatherData.list[i];
                    DateTime    dt = UnixTimeStampToDateTime(wd.dt);
                    if (today.ToString("yyyy-MM-dd").Equals(dt.ToString("yyyy-MM-dd")))
                    {
                        HourWeather hw = new HourWeather();
                        hw.Hour               = dt.ToString("HH:mm");
                        hw.Temperature        = wd.main.temp.ToString() + " °C";
                        hw.TypeOfDay          = wd.weather[0].description;
                        hw.TypeOfDayImagePath = "http://openweathermap.org/img/w/" + wd.weather[0].icon + ".png";
                        _wvm.SelectedHourlyViewModel.HourlyWeather.Add(hw);
                    }
                }


                /* -------------- DAY 1 -------------- */
                double temp      = 0;
                int    tempCount = 0;

                DayViewModel day1 = new DayViewModel();
                day1.date         = DateTime.Now;
                day1.DayOfTheWeek = day1.date.DayOfWeek.ToString();
                for (int i = 0; i < weatherData.list.Count; i++)
                {
                    WeatherData wd = weatherData.list[i];
                    DateTime    dt = UnixTimeStampToDateTime(wd.dt);
                    if (day1.date.ToString("yyyy-MM-dd").Equals(dt.ToString("yyyy-MM-dd")))
                    {
                        temp      += wd.main.temp;
                        tempCount += 1;
                    }
                    else if (day1.date.CompareTo(dt) == -1)
                    {
                        day1.TypeOfDay          = weatherData.list[i - (tempCount / 2)].weather[0].description;
                        day1.TypeOfDayImagePath = "http://openweathermap.org/img/w/" + weatherData.list[i - (tempCount / 2)].weather[0].icon + ".png";
                        break;
                    }
                }
                day1.Temperature = String.Format("avg. {0:00.0} °C", tempCount == 0 ? weatherData.list[0].main.temp : (temp / tempCount));


                /* -------------- DAY 2 -------------- */
                temp      = 0;
                tempCount = 0;

                DayViewModel day2 = new DayViewModel();
                day2.date         = DateTime.Now.AddDays(1);
                day2.DayOfTheWeek = day2.date.DayOfWeek.ToString();
                for (int i = 0; i < weatherData.list.Count; i++)
                {
                    WeatherData wd = weatherData.list[i];
                    DateTime    dt = UnixTimeStampToDateTime(wd.dt);
                    if (day2.date.ToString("yyyy-MM-dd").Equals(dt.ToString("yyyy-MM-dd")))
                    {
                        temp      += wd.main.temp;
                        tempCount += 1;
                    }
                    else if (day2.date.CompareTo(dt) == -1)
                    {
                        day2.TypeOfDay          = weatherData.list[i - (tempCount / 2)].weather[0].description;
                        day2.TypeOfDayImagePath = "http://openweathermap.org/img/w/" + weatherData.list[i - (tempCount / 2)].weather[0].icon + ".png";
                        break;
                    }
                }
                day2.Temperature = String.Format("avg. {0:00.0} °C", (temp / tempCount));

                /* -------------- DAY 3 -------------- */
                temp      = 0;
                tempCount = 0;

                DayViewModel day3 = new DayViewModel();
                day3.date         = DateTime.Now.AddDays(2);
                day3.DayOfTheWeek = day3.date.DayOfWeek.ToString();
                for (int i = 0; i < weatherData.list.Count; i++)
                {
                    WeatherData wd = weatherData.list[i];
                    DateTime    dt = UnixTimeStampToDateTime(wd.dt);
                    if (day3.date.ToString("yyyy-MM-dd").Equals(dt.ToString("yyyy-MM-dd")))
                    {
                        temp      += wd.main.temp;
                        tempCount += 1;
                    }
                    else if (day3.date.CompareTo(dt) == -1)
                    {
                        day3.TypeOfDay          = weatherData.list[i - (tempCount / 2)].weather[0].description;
                        day3.TypeOfDayImagePath = "http://openweathermap.org/img/w/" + weatherData.list[i - (tempCount / 2)].weather[0].icon + ".png";
                        break;
                    }
                }
                day3.Temperature = String.Format("avg. {0:00.0} °C", (temp / tempCount));

                /* -------------- DAY 4 -------------- */
                temp      = 0;
                tempCount = 0;

                DayViewModel day4 = new DayViewModel();
                day4.date         = DateTime.Now.AddDays(3);
                day4.DayOfTheWeek = day4.date.DayOfWeek.ToString();
                for (int i = 0; i < weatherData.list.Count; i++)
                {
                    WeatherData wd = weatherData.list[i];
                    DateTime    dt = UnixTimeStampToDateTime(wd.dt);
                    if (day4.date.ToString("yyyy-MM-dd").Equals(dt.ToString("yyyy-MM-dd")))
                    {
                        temp      += wd.main.temp;
                        tempCount += 1;
                    }
                    else if (day4.date.CompareTo(dt) == -1)
                    {
                        day4.TypeOfDay          = weatherData.list[i - (tempCount / 2)].weather[0].description;
                        day4.TypeOfDayImagePath = "http://openweathermap.org/img/w/" + weatherData.list[i - (tempCount / 2)].weather[0].icon + ".png";
                        break;
                    }
                }
                day4.Temperature = String.Format("avg. {0:00.0} °C", (temp / tempCount));

                /* -------------- DAY 5 -------------- */
                temp      = 0;
                tempCount = 0;

                DayViewModel day5 = new DayViewModel();
                day5.date         = DateTime.Now.AddDays(4);
                day5.DayOfTheWeek = day5.date.DayOfWeek.ToString();
                for (int i = 0; i < weatherData.list.Count; i++)
                {
                    WeatherData wd = weatherData.list[i];
                    DateTime    dt = UnixTimeStampToDateTime(wd.dt);
                    if (day5.date.ToString("yyyy-MM-dd").Equals(dt.ToString("yyyy-MM-dd")))
                    {
                        temp      += wd.main.temp;
                        tempCount += 1;
                    }
                    else if (day5.date.CompareTo(dt) == -1)
                    {
                        day5.TypeOfDay          = weatherData.list[i - (tempCount / 2)].weather[0].description;
                        day5.TypeOfDayImagePath = "http://openweathermap.org/img/w/" + weatherData.list[i - (tempCount / 2)].weather[0].icon + ".png";
                        break;
                    }
                }
                day5.Temperature = String.Format("avg. {0:00.0} °C", (temp / tempCount));

                _wvm.DayViewModels = new DayViewModel[5] {
                    day1, day2, day3, day4, day5
                };

                Content = _wvm;
                //_wvm.SelectedDayViewModel = dw;
            }
            else
            {
                Content = _hvm;
            }
        }