58 lines
2.1 KiB
HTML
58 lines
2.1 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
|
<title>Thermograph — how unusual is your weather?</title>
|
||
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
||
|
|
<link rel="stylesheet" href="style.css" />
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<header>
|
||
|
|
<div class="brand">
|
||
|
|
<span class="logo">▚</span>
|
||
|
|
<div>
|
||
|
|
<h1>Thermograph</h1>
|
||
|
|
<p class="tag">Grading today's weather against ~45 years of local climate history</p>
|
||
|
|
</div>
|
||
|
|
<nav class="view-nav" aria-label="Views">
|
||
|
|
<a href="./" data-view="map" class="active">Weekly</a>
|
||
|
|
<a href="calendar" data-view="calendar">Calendar</a>
|
||
|
|
<a href="day" data-view="day">Day</a>
|
||
|
|
</nav>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<main>
|
||
|
|
<section class="controls">
|
||
|
|
<div class="find-bar">
|
||
|
|
<button type="button" id="find-btn" class="find-btn"></button>
|
||
|
|
<span id="loc-label" class="loc-label" hidden></span>
|
||
|
|
</div>
|
||
|
|
<div class="date-row">
|
||
|
|
<label>Target date
|
||
|
|
<input id="date-input" type="date" />
|
||
|
|
</label>
|
||
|
|
<button type="button" id="today-btn" class="today-chip" title="Reset the target date to today">Today</button>
|
||
|
|
<span class="hint">Cells are ~4 sq mi. <a href="legend">What do the grades mean? →</a></span>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<section id="panel" class="panel panel-full">
|
||
|
|
<div class="placeholder" id="placeholder">
|
||
|
|
<p>Find a location to begin.</p>
|
||
|
|
<p class="muted">Thermograph fetches decades of daily highs, lows, and precipitation
|
||
|
|
for your ~4 sq mi cell, builds a ±7-day seasonal distribution for each
|
||
|
|
day of the year, and grades recent weather by where it falls on that distribution.</p>
|
||
|
|
</div>
|
||
|
|
<div id="results" hidden></div>
|
||
|
|
</section>
|
||
|
|
</main>
|
||
|
|
|
||
|
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
|
||
|
|
<script src="nav.js"></script>
|
||
|
|
<script src="mappicker.js"></script>
|
||
|
|
<script src="app.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|