{% extends 'two-columns-right.html' %}
{% load staticfiles %}
{% load tz %}
{% block head_css %}
{{ block.super }}
{% endblock %}
{% block head_scripts %}
{{ block.super }}
{% endblock %}
{% block breadcrumb_list_elements %}
{{ block.super }}
ZiaMet Weather Station Network
{% if station %}
{{ station.name }}
{% else %}
{{ station_id }}
{% endif %}
{% endblock %}
{% block center_column_content %}
{% if station %}{{ station.name }}{% else %}{{ station_id }}{% endif %}
{% if not station.inactive %}{% timezone station.time_zone %}{{ current.timestamp }}{% endtimezone %} {{ station.time_zone }}
{% endif %}
{% if station %}
{% if not station.inactive %}
Wind Chill and Heat Index
{% include 'nmcc_ziamet/station/fivemin_timeseries_table.html' %}
{% else %}
Inactive Station
This station is currently inactive.
{% endif %}
{% else %}
Station Does Not Exist
You are trying to access a station that does not exist.
{% endif %}
{% endblock %}
{% block right_column_content %}
{% if station %}
Products
{% if not station.inactive %}
Current Conditions
Air Temperature |
{{ current.air_temp|floatformat:2|default:"--" }} °F |
Dewpoint |
{{ current.dewpoint|floatformat:2|default:"--" }} °F |
Relative Humidity |
{{ current.rh|floatformat:2|default:"--" }} % |
Wind Speed |
{{ current.wind_speed|floatformat:2|default:"--" }} MPH |
Wind Direction |
{{ current.wind_dir|floatformat:2|default:"--" }} ° |
24 Hour Precipitation |
{{ current.precip_total|floatformat:2|default:"0.0" }} in |
Since Midnight
{% timezone station.time_zone %}
Air Temperature |
Max |
{{ since_midnight.air_temp_max|floatformat:2|default:"--" }} °F at {{ since_midnight.air_temp_max_dt|date:"h:i A" }} |
Min |
{{ since_midnight.air_temp_min|floatformat:2|default:"--" }} °F at {{ since_midnight.air_temp_min_dt|date:"h:i A" }} |
Mean |
{{ since_midnight.air_temp_mean|floatformat:2|default:"--" }} °F |
Wind Speed |
Max |
{{ since_midnight.wind_speed_max|floatformat:2|default:"--" }} MPH at {{ since_midnight.wind_speed_max_dt|date:"h:i A" }} |
Mean |
{{ since_midnight.wind_speed_mean|floatformat:2|default:"--" }} MPH |
Wind Direction |
Mean |
{{ since_midnight.wind_dir_mean|floatformat:2|default:"--" }} ° |
Precipitation |
Total |
{{ since_midnight.precip_total|floatformat:2|default:"0.0" }} in |
{% endtimezone %}
{% endif %}
Station Location
Latitude |
{{ station.latitude|floatformat:2 }} |
Longitude |
{{ station.longitude|floatformat:2 }} |
Elevation |
{{ station.elevation_feet|floatformat:2 }} ft |
{% endif %}
{% endblock %}