Weather View
Current Weather

[[ `${result["geolocation"]["city"]}, ${result["geolocation"]["state"]}` ]]

[[ `${new Date(result["current_weather"]["time"]).toDateString()} ` ]]

[[ `${new Date(result["current_weather"]["time"]).toLocaleTimeString()}` ]]

Temperature

[[ result["current_weather"]["temperature"] ]] F

Rain

[[ parseInt(result["hourly"]["rain"][0]) * 100 ]]

Cloudcover

[[ result["hourly"]["cloudcover"][0] ]]

7 Day Summary
[[ new Date(`${day}T11:59`).toDateString().split(" ")[0] + " " + day.split("-")[2] ]]
High
[[ data['temp_high'] ]]
Low
[[ data['temp_low'] ]]
7 Day Detail
Date Temperature Rain Cloudcover
[[ new Date(result['hourly']['time'][index]).getHours() ]]:00
[[ result['hourly']['temperature_2m'][index] ]]
[[ result['hourly']['rain'][index] ]]
[[ result['hourly']['cloudcover'][index] ]]
Date Temperature Rain Cloudcover
[[ new Date(result['hourly']['time'][index]).getHours() ]]:00
[[ result['hourly']['temperature_2m'][(24*day+index)] ]]
[[ result['hourly']['rain'][24*day+index] ]]
[[ result['hourly']['cloudcover'][24*day+index] ]]