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

    {% if not station.inactive %}

    {% timezone station.time_zone %}{{ current.dt }}{% endtimezone %} {{ station.time_zone }}

    {% endif %} {% else %}

    {{ station_id }}

    {% endif %} {% if station %} {% if not station.inactive %}

    Temperature

    Wind Chill and Heat Index

    Wind Speed

    Wind Direction

    Precipitation

    Total Solar Radiation

    {% include 'nmcc_ziamet/station/fivemin_timeseries_table.html' %}
    {% else %}

    Inactive Station

    There is currently no near real-time data for this station to display. Therefore, this station is considered inactive. However, data for this station may still be available using the Data Lister link on this page.
    {% 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.sum|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 %}