/// <summary>
        /// Set the Daily forecast for the next week
        /// </summary>
        private void SetDailyForecast()
        {
            DailyForecast.Clear();

            for (int i = 0; i < 7; i++)
            {
                var dailyWeather = new DailyWeatherViewModel(OneCallResponse.DailyWeather[i], Options);
                DailyForecast.Add(dailyWeather);
            }

            OnProperyChanged("DailyForecast");
        }