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

Weather for {{ data.this_month }} {{ data.year_stamp }}

{% if data.prev_url -%} {{ data.prev_month }} {%- else -%} {{ data.prev_month }} {%- endif %} {{ data.this_year }} {% if data.next_url -%} {{ data.next_month }} {%- else -%} {{ data.next_month }} {%- endif %}

Browse: {% set i = 0 -%} {%- for day in data.days -%} {%- set i = i + 1 -%} {{ day }} {% if i < data.days|length %}|{% endif %} {% endfor %}


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

Monthly Charts

Daily Records

{% endblock %} {% block scripts %} {% if ui and ui == 'm' -%} {% else -%} {%- endif -%} {% endblock %}