Exemple #1
0
        public WeatherForecastModel TemperatureConvert(WeatherForecastModel forecast)
        {
            if (DisplayFahrenheit == false)
            {
                for (int i = 0; i < 5; i++)
                {
                    forecast.High[i] = (int)((forecast.High[i] - 32) * (5.0 / 9.0));
                    forecast.Low[i]  = (int)((forecast.Low[i] - 32) * (5.0 / 9.0));
                }
            }

            return(forecast);
        }
Exemple #2
0
        public HashSet <string> GetPackList(WeatherForecastModel model)
        {
            HashSet <string> PackingList = new HashSet <string>();

            Warning = new HashSet <string>();
            for (int i = 0; i < 5; i++)
            {
                if (model.Forecast[i] == "snow")
                {
                    PackingList.Add("snowshoes");
                }
                if (model.Forecast[i] == "rain")
                {
                    PackingList.Add("rain gear");
                    PackingList.Add("waterproof shoes");
                }
                if (model.Forecast[i] == "sun")
                {
                    PackingList.Add("sunblock");
                }
                if (model.High[i] > 75)
                {
                    PackingList.Add("an extra gallon of water");
                }
                if (model.High[i] - model.Low[i] > 20)
                {
                    PackingList.Add("wear breathable layers");
                }
                if (model.Forecast[i] == "thunderstorms")
                {
                    PackingList.Add("WARNING: Thunderstorms are expected. Be prepared to seek shelter and avoid exposed ridges!");
                }
                if (model.Low[i] < 20)
                {
                    PackingList.Add("WARNING: Frigid temperatures are expected. Please take caution. Wear warm socks!");
                }
            }
            return(PackingList);
        }