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

{{ display }} weather records

Record high and low temperatures for {{ display }} — by month, by season, and all-time — with the dates they occurred, across {{ year_range[0] }}–{{ year_range[1] }} of daily climate history.{% if all_time.tmax and all_time.tmin %} Its hottest day on record reached {{ all_time.tmax.max | round | int }}°F ({{ ((all_time.tmax.max - 32) * 5 / 9) | round | int }}°C) on {{ all_time.tmax.max_date }}; its coldest fell to {{ all_time.tmin.min | round | int }}°F ({{ ((all_time.tmin.min - 32) * 5 / 9) | round | int }}°C) on {{ all_time.tmin.min_date }}.{% endif %}

Records by month

The warmest and coldest {{ name }} has ever been in each calendar month. Tap a month for its full averages and typical range.

{% for m in monthly %} {% endfor %}
MonthRecord highOnRecord lowOn
{{ m.name }} {{ m.high }}{{ m.high_date }} {{ m.low }}{{ m.low_date }}

Records by season

Meteorological seasons for the {{ hemisphere }} Hemisphere — each a three-month span — and the most extreme {{ name }} has recorded within each.

{% for s in seasonal %} {% endfor %}
SeasonRecord highOnRecord lowOn
{{ s.name }} ({{ s.span }}) {{ s.high }}{{ s.high_date }} {{ s.low }}{{ s.low_date }}

All-time records

The most extreme value {{ name }} has recorded for each metric across its entire 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 %}