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

Weather for {{ data.date_stamp }}


{# This is only shown when we are looking at todays weather. #}
{% if data.current_data %}Current Conditions |{% endif %} Records | 1-day charts | 7-day charts
{% if data.current_data %}

Conditions as of {{ data.current_data_ts }}

{# #}
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
{% endif %}

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

1-day Charts

[1-day Temperature and Dew Point] [1-day Apparent Temperature and Wind Chill] [1-day Humidity] [1-day Pressure]
gnuplot data

7-day Charts

[7-day Temperature and Dew Point] [7-day Apparent Temperature and Wind Chill] [7-day Humidity] [7-day Pressure]
gnuplot data
{% if data.prev_url %} << {{ data.prev_date }} {% else %} {{ data.prev_date }} {% endif %} | {{ data.this_month }} | {% if data.next_url %} {{ data.next_date }} >> {% else %} {{ data.next_date }} {% endif %}
Today
I {% endblock %}