-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMAWEI.html
More file actions
104 lines (100 loc) · 3.98 KB
/
Copy pathMAWEI.html
File metadata and controls
104 lines (100 loc) · 3.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <title>IWPR Project: Atlanta Metro Energy & Water Flows</title> -->
<title>MAWEI: Metro Atlanta Water Energy Interdependencies (IWPR, PNNL)</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
</head>
<body>
<header>
<div class="header-content">
<div class="header-left">
<img src="logo_iwpr.jpg" alt="Project Logo" class="logo">
<!-- <h1>IWPR Atlanta Metro Energy & Water Flows</h1> -->
<h1>MAWEI: Metro Atlanta Water Energy Interdependencies</h1>
</div>
<div class="header-controls">
<input type="search" id="search" placeholder="Search...">
<select id="sector-filter">
<option value="all">All Sectors</option>
<option value="water">Water</option>
<option value="energy">Energy</option>
<option value="energy-water">Energy-Water</option>
</select>
<select id="resolution-filter">
<option value="all">All Resolutions</option>
<option value="metro">Metro</option>
<option value="bartow">Bartow</option>
<option value="cherokee">Cherokee</option>
<option value="clayton">Clayton</option>
<option value="cobb">Cobb</option>
<option value="coweta">Coweta</option>
<option value="dekalb">DeKalb</option>
<option value="douglas">Douglas</option>
<option value="fayette">Fayette</option>
<option value="forsyth">Forsyth</option>
<option value="fulton">Fulton</option>
<option value="gwinnett">Gwinnett</option>
<option value="hall">Hall</option>
<option value="henry">Henry</option>
<option value="paulding">Paulding</option>
<option value="rockdale">Rockdale</option>
</select>
</div>
</div>
</header>
<main>
<div class="content-wrapper">
<div class="section" id="data-section">
<div class="sector-tabs" id="sector-tabs">
<button class="sector-tab active" data-sector="all">All</button>
<button class="sector-tab" data-sector="energy">Energy</button>
<button class="sector-tab" data-sector="water">Water</button>
<button class="sector-tab" data-sector="energy-water">Energy-Water</button>
</div>
<div class="map-container" id="map-container">
<div id="county-map"></div>
<div class="map-legend">
<span>Click a county to filter</span>
<button id="metro-only">Metro only</button>
<button id="map-reset">Reset</button>
</div>
</div>
<h2>Data</h2>
<div class="file-grid" id="data-list">
<!-- Data items will be dynamically injected -->
</div>
</div>
<div class="divider"></div>
<div class="section" id="diagrams-section">
<h2>Diagrams</h2>
<div class="file-grid" id="diagrams-list">
<!-- Diagram items will be dynamically injected -->
</div>
</div>
</div>
</main>
<!-- Viewer Section -->
<div id="viewer-section" class="viewer-section hidden">
<div class="viewer-header">
<h2>Viewer</h2>
<span id="viewer-filename" class="viewer-filename"></span>
<button id="close-viewer" class="close-viewer-btn">✕</button>
</div>
<div id="viewer-content" class="viewer-content">
<!-- Content will be dynamically loaded here -->
</div>
</div>
<footer>
<p>IWPR PNNL Team & Stakeholders © 2026</p>
</footer>
<!-- The artefact index, written by the R pipeline. Loaded as a script rather than
fetched so it works from file://, where a sibling JSON is a cross-origin request. -->
<script src="files/manifest.js"></script>
<script src="script.js"></script>
</body>
</html>