{% extends "base.html" %} {% block title %}Station Overview{% endblock %} {% block head %} {% if ui and ui == 'm' -%} {%- endif %} {% endblock %} {% block content %} {% if page_data["no_content"] %}

{{ page_data["station_name"] }}

There is no recent data available from this weather station at this time. Historical data remains available for the following years: {% set i = 0 -%} {%- for year in data.years -%} {%- set i = i + 1 -%} {{ year }}{% if i < data.years|length %}, {% endif %} {%- endfor %}

{% else %}

Current Conditions

{# This table is populated from day_live.js -#}
Sensor Value
Relative Humidity
Temperature
Apparent Temperature
Wind Chill
Dew Point
Absolute Pressure
Gust Wind Speed
Average Wind Speed
Wind Direction

Time:

Todays Records

{% include 'day-records-table.html' %}

Today

{% include 'day-charts.html' %}

Last 7 days

Data is a 30-minute average over the past seven days.

{% include 'day-charts-7day.html' %}

Weather History

Full weather data is available at the day, month and year levels. You can start browsing by year: {% set i = 0 -%} {%- for year in data.years -%} {%- set i = i + 1 -%} {{ year }}{% if i < data.years|length %}, {% endif %} {%- endfor %}


{% endif %} {% endblock %} {% block scripts %} {% if not page_data["no_content"] %} {% if ui and ui == 'm' -%} {% else -%} {%- endif -%} {% endif %} {% endblock %}