@model HomeApi.Models.Image Weather Dashboard

@Model.Weather.CityName

Current Weather
Temp Feels Clouds Wind Gusts Updated
@Model.Weather.Current.Temperature °C @Model.Weather.Current.Feelslike °C @Model.Weather.Current.Cloud% @Model.Weather.Current.WindPerMeterSecond m/s (@Model.Weather.Current.WindDirection) @Model.Weather.Current.WindGustPerMeterSecond m/s @Model.Weather.Current.LastUpdated

Current Air Quality
CO NO₂ O₃ SO₂ PM2.5 PM10 EPA DEFRA
@Model.Weather.Current.AirQuality?.Co @Model.Weather.Current.AirQuality?.No2 @Model.Weather.Current.AirQuality?.O3 @Model.Weather.Current.AirQuality?.So2 @Model.Weather.Current.AirQuality?.Pm2_5 @Model.Weather.Current.AirQuality?.Pm10 @Model.Weather.Current.AirQuality?.Us_Epa_Index @Model.Weather.Current.AirQuality?.Gb_Defra_Index

Aurora Probability
Probability Color Highest Location Date
@Model.Weather.Current.AuroraProbability?.Value% @Model.Weather.Current.AuroraProbability?.Colour @Model.Weather.Current.AuroraProbability?.HighestProbability?.Value% (@Model.Weather.Current.AuroraProbability?.HighestProbability?.Lat, @Model.Weather.Current.AuroraProbability?.HighestProbability?.Long) @Model.Weather.Current.AuroraProbability?.HighestProbability?.Date.ToShortDateString()

Forecast

@foreach (var f in Model.Weather.Forecast) { }
Date Icon Min Max Day Feels Rain Snow Sunrise Sunset Moonrise Moonset Moon
@f.Date Icon @f.MinTempC°C @f.MaxTempC°C @f.Day?.ConditionText @f.Day?.AvgFeelslikeC°C @f.Day?.TotalChanceOfRain% @f.Day?.TotalChanceOfSnow% @f.Astro.Sunrise @f.Astro.Sunset @f.Astro.Moonrise @f.Astro.Moonset @f.Astro.Moon_Phase (@f.Astro.Moon_Illumination%)

Public Transport Departures

@foreach (var t in Model.TimeTable) { }
Type Line Name Operator Stop Departure Direction
@t.TransportType @t.LineNumber @t.LineName @t.Operator @t.StopName @t.DepartureTime @t.Direction