This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
159 lines (159 loc) · 5.76 KB
/
index.html
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>UACFE</title>
<link rel="icon"
href="images/snowflake-favicon.ico" />
<script src="https://d3js.org/d3.v6.js"></script>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script src="https://unpkg.com/georaster"></script>
<script src="https://unpkg.com/georaster-layer-for-leaflet@0.7.1/georaster-layer-for-leaflet.browserify.min.js"></script>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-12 flex-container">
<div class="flex-child heading">
<h1 class="display-4 text-center p-md-3 heading">
Utah Avalanche Center Forecast Explorer
</h1>
</div>
<div class="display-4 text-center p-md-3 flex-child video-link">
<a href="https://www.youtube.com/watch?v=2J-Xp8WJ9pQ&feature=youtu.be" target="_blank">
<i class="fa fa-youtube-play">
YouTube
</i>
</a>
</div>
<div class="display-4 text-center p-md-3 flex-child github-link">
<a href="https://github.com/UofU-Cryosphere/dataviscourse-pr-avalanche-explorer" target="_blank">
<i class="fa fa-github">
GitHub
</i>
</a>
</div>
</div>
</div>
<div class="row">
<div id="warn-uac" class="col-12 text-lg-center bg-warning p-md-3">
<b>WARNING</b>: This is <i>not</i> the official website for the
Utah Avalanche Center. Please visit
<a href="https://utahavalanchecenter.org" target="_blank">
www.utahavalanchecenter.org
</a>
for current conditions and forecasts.
</div>
</div>
<div id="navigation-panel" class="row">
<div class="col-3">
<div id="rose-view"></div>
<div id="rose-menu">
<form class="py-md-3 px-md-2">
<div class="form-group row">
<label for="rose-aspects"
class="col-sm-3 col-form-label">
Aspects
</label>
<div class="col-sm-9">
<select class="form-control custom-select"
id="rose-aspects">
</select>
</div>
</div>
<div class="form-group row">
<label for="rose-elevations"
class="col-sm-3 col-form-label">
Elevations
</label>
<div class="col-sm-9">
<select class="form-control custom-select"
id="rose-elevations">
</select>
</div>
</div>
</form>
</div>
</div>
<div class="col-9">
<span id="map-info">
<span id="date-info"></span>
<span id="rose-info"></span>
<span id="marker-info"></span>
</span>
<div id="map-area"></div>
</div>
</div>
<div id="info-panel" class="row py-md-3">
<div class="col-3 px-md-4">
<h2>January 2020</h2>
<div id="calendar-view"></div>
</div>
<div class="col-9 px-md-4">
<div id="info-view">
<p>
Further information to the historic forecast on
<span id="info-view-date"></span>
can be found on the Utah Avalanche Center website:
</p>
<ul>
<li>
<a id="daily-forecast"
href=""
target="_blank">
Daily Forecast
</a>
</li>
<li>
<a id="daily-observations"
href=""
target="_blank">
Daily Observations
</a>
</li>
</ul>
<p>
General education:
</p>
<ul>
<li>
<a href="https://utahavalanchecenter.org/forecast/tutorial"
target="_blank">
How to read the avalanche rose?
</a>
</li>
<li>
<a href="https://utahavalanchecenter.org/education/faq"
target="_blank">
Utah Avalanche Center FAQ
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<script src="js/uac_mapper.js"></script>
<script src="js/uac_colors.js"></script>
<script src="js/map.js"></script>
<script src="js/uac_forecasts.js"></script>
<script src="js/uac_rose.js"></script>
<script src="js/uac_rose_menu.js"></script>
<script src="js/calendar.js"></script>
<script src="js/uac_info.js"></script>
<script src="js/script.js"></script>
</body>
</html>