{% extends "base.html.j2" %} {% block title %}{{ page_title }}{% endblock %} {% block description %}{{ page_description }}{% endblock %} {% block canonical_path %}{{ canonical_path }}{% endblock %} {% block content %}

{{ display }} weather records

All-time record highs and lows for {{ display }}, and the dates they occurred, across {{ year_range[0] }}–{{ year_range[1] }} of daily climate history.

{% for r in rows %}

{{ r.label }}

{% if r.label == 'Precip' %}Wettest{% else %}Highest{% endif %} {{ r.high }} {{ r.high_date }}
{% if r.label == 'Precip' %}Driest{% else %}Lowest{% endif %} {{ r.low }} {{ r.low_date }}
{% endfor %}

For rainfall, the “driest” figure is the longest run of consecutive days without measurable rain, dated to when that dry spell began.

Grade {{ name }}'s weather now →

‹ Back to {{ name }} climate

{% endblock %}