{{#Name=5 Day Forecast}} {{#Description=Displays the weather forecast for 5 days, used HS long/lat}} {{#Version=1.0}} {{#Author=HomeSeer}} {{dbs=dashboards_ref}} {{widget_id=queries['widget_id']}} {{if widget_id==null}} {{widget_id=var1}} {{end}} {{w=widget_by_id widget_id}} {{current_values=[]}} {{save_names=[]}} {{titles=[]}} {{# function to get a saved value and return the value or the default value}} {{index=0}} {{func get_value v=get_saved_value $0 widget_id if v=='' v=$1 end current_values[index]=v save_names[index]=$0 titles[index]=$2 index=index+1 ret v end}} {{#get settings}} {{loc_long=get_value 'save_loc_long' (get_setting_text 'gLongitude') 'Location Longitude'}} {{loc_lat=get_value 'save_loc_lat' (get_setting_text 'gLatitude') 'Location Latitude'}} {{title=get_value 'save_title' '' 'Title'}} {{title_size=get_value 'save_title_size' '25' 'Title Size'}} {{title_color=get_value 'save_title_color' 'black' 'Title Color'}} {{current_icon_width=get_value 'save_current_icon_width' '60' 'Current Icon Width'}} {{current_icon_height=get_value 'save_current_icon_height' '60' 'Current Icon Height'}} {{current_text_size=get_value 'save_current_text_size' '20' 'Current Text Size'}} {{current_text_color=get_value 'save_current_text_color' 'black' 'Current Text Color'}} {{current_temp_size=get_value 'save_current_temp_size' '30' 'Curent Temp Size'}} {{current_temp_color=get_value 'save_current_temp_color' 'black' 'Current Temp Color'}} {{current_humidity_size=get_value 'save_current_humidity_size' '16' 'Current Humidity Size'}} {{current_humidity_color=get_value 'save_current_humidity_color' 'black' 'Current Humidity Color'}} {{day_size=get_value 'save_day_size' '16' 'Day Size'}} {{day_color=get_value 'save_day_color' 'black' 'Day Color'}} {{day_temp_size=get_value 'save_day_temp_size' '16' 'High Temp Size'}} {{day_temp_color=get_value 'save_day_temp_color' 'darkorange' 'High Temp Color'}} {{night_temp_size=get_value 'save_night_temp_size' '16' 'Low Temp Size'}} {{night_temp_color=get_value 'save_night_temp_color' '#33c7ff' 'Low Temp Color'}} {{icon_width=get_value 'save_icon_width' '40' 'Icon Width'}} {{icon_height=get_value 'save_icon_height' '40' 'Icon Height'}} {{#temp scale: empty string or "True" =F else C}} {{ch=get_setting_text 'gGlobalTempScaleF'}} {{temp_unit=''}} {{if ch=='' || ch=='True'}} {{temp_unit='&temperature_unit=fahrenheit'}} {{end}} {{weather_url='https://api.open-meteo.com/v1/forecast?latitude=42.81&longitude=-71.47&daily=weather_code,temperature_2m_max,temperature_2m_min¤t=temperature_2m¤t=is_day,temperature_2m,relative_humidity_2m,weather_code'}} {{weather_url=weather_url | string.append temp_unit}} {{obj=web_download_json_to_object weather_url ""}} {{if obj==null}} Unable to download forecast data
{{else}}
{{current_temp=obj.current.temperature_2m//1}} {{#// always rounds value to an integer}} {{current_humidity=obj.current.relative_humidity_2m}} {{current_code=obj.current.weather_code}} {{current_text=''}} {{ case current_code when 0 current_text="Sunny" when 1,2,3 current_text="Partly Cloudy" when 45,48 current_text="Fog" when 51,53,55 current_text="Drizzle" when 56,57 current_text="Freezing Drizzle" when 61,63,65 current_text="Rain" when 66,67 current_text="Freezing Rain" when 71,73,75 current_text="Snow" when 77 current_text="Sleet" when 80,81,82 current_text="Rain Showers" when 85,86 current_text="Snow Showers" when 95 current_text="Thunderstorms" when 96,99 current_text="Thunderstorms with Hail" end }} {{days=[]}} {{temph=[]}} {{templ=[]}} {{wc=[]}} {{index=0}} {{sunset=get_setting_text 'gSunset'}} {{dtsunset=date.parse sunset}} {{sunset_hour=date.to_string dtsunset "%H"}} {{current_hour=date.to_string date.now "%H"}} {{if current_hour > sunset_hour is_night=true else is_night=false end}} {{for tm in obj.daily.time}} {{dt=date.parse tm}} {{days[index]=date.to_string dt "%a"}} {{wc[index]=obj.daily.weather_code[index]}} {{temph[index]=obj.daily.temperature_2m_max[index]//1}} {{templ[index]=obj.daily.temperature_2m_min[index]//1}} {{index=index+1}} {{end}} {{if title != ''}}
{{title}}
{{end}}
{{current_temp}}
{{current_humidity}}%
{{current_text}}
{{for i in 0..4}}
{{days[i]}}
{{end}}
{{for i in 0..4}}
{{end}}
{{for i in 0..4}}
{{temph[i]}}
{{end}}
{{for i in 0..4}}
{{templ[i]}}
{{end}}
{{#if we are not in edit mode, don't bother including the edit mode content}} {{if dbs.edit_mode}} {{# card settings dialog}} {{#this dialog has 2 tabs, one for formatting the card, the other for card content}} {{end}} {{end}}