{# This template is for a daily overview. #} {% extends "base.html" %} {% block title %}Weather for {{ data.date_stamp }}{% endblock %} {% block content %}
Sensor | Value |
Relative Humidity | {{ data.current_data.relative_humidity }}% |
Temperature | {{ data.current_data.temperature|round(1) }}°C |
Apparent Temperature | {{ data.current_data.apparent_temperature|round(1) }}°C |
Wind Chill | {{ data.current_data.wind_chill|round(1) }}°C |
Dew Point | {{ data.current_data.dew_point|round(1) }}°C |
Absolute Pressure | {{ data.current_data.absolute_pressure|round(1) }} hPa |
Average Wind Speed | {{ data.current_data.average_wind_speed|round(1) }} m/s |
Gust Wind Speed | {{ data.current_data.gust_wind_speed|round(1) }} m/s |
Wind Direction | {{ data.current_data.wind_direction }} |
Rainfall | {{ data.current_data.rainfall|round(1) }} mm |
Sensor | Min | Max |
Temperature | {{ data.records.min_temperature|round(1) }}°C at {{ data.records.min_temperature_ts }} | {{ data.records.max_temperature|round(1) }}°C at {{ data.records.max_temperature_ts }} |
Wind Chill | {{ data.records.min_wind_chill|round(1) }}°C at {{ data.records.min_wind_chill_ts }} | {{ data.records.max_wind_chill|round(1) }}°C at {{ data.records.max_wind_chill_ts }} |
Apparent Temperature | {{ data.records.min_apparent_temperature|round(1) }}°C at {{ data.records.min_apparent_temperature_ts }} | {{ data.records.max_apparent_temperature|round(1) }}°C at {{ data.records.max_apparent_temperature_ts }} |
Dew Point | {{ data.records.min_dew_point|round(1) }}°C at {{ data.records.min_dew_point_ts }} | {{ data.records.max_dew_point|round(1) }}°C at {{ data.records.max_dew_point_ts }} |
Absolute Pressure | {{ data.records.min_absolute_pressure|round(1) }} hPa at {{ data.records.min_absolute_pressure_ts }} | {{ data.records.max_absolute_pressure|round(1) }} hPa at {{ data.records.max_absolute_pressure_ts }} |
Relative Humidity | {{ data.records.min_humidity }}% at {{ data.records.min_humidity_ts }} | {{ data.records.max_humidity }}% at {{ data.records.max_humidity_ts }} |
Gust Wind Speed | {{ data.records.max_gust_wind_speed|round(1) }} m/s at {{ data.records.max_gust_wind_speed_ts }} | |
Average Wind Speed | {{ data.records.max_average_wind_speed|round(1) }} m/s at {{ data.records.max_average_wind_speed_ts }} |
Total Rainfall: {{ data.records.total_rainfall|round(1) }}mm