{# This template is for a daily overview. #} {% extends "base.html" %} {% block title %}Weather for {{ data.this_year }}{% endblock %} {% block content %}

Weather for {{ data.this_year }}


Months for {{ data.this_year }}

Records

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


{% if data.prev_url %} << {{ data.prev_year }} {% else %} << {{ data.prev_year }} {% endif %} | Station | {% if data.next_url %} {{ data.next_year }} >> {% else %} {{ data.next_year }} >> {% endif %}
Today
{% endblock %}