-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 1.65 KB
/
index.html
File metadata and controls
54 lines (53 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="master.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.9.2/d3.min.js" charset="utf-8"></script>
<title>Line Area</title>
</head>
<body>
<div class="thumbnail">
<img src="thumbnail.png" alt="">
</div>
<div id="lines">
<div class="button-wrapper">
<a href="#readme" class="howto">
HOW TO
</a>
</div>
</div>
<div class="tooltip hidden">
<table>
<tr>
<th></th>
<th></th>
</tr>
<tr>
<td>Distance:</td>
<td class="x"></td>
</tr>
<tr>
<td>Altitude:</td>
<td class="y"></td>
</tr>
</table>
</div>
<div id="readme">
<h2>HOW TO</h2>
<p>This plot shows the maximum altitude around some university in an alpine enviroment.</p>
<p>The value shown on the y axis is the altitude difference between the university and the highest ground
around the university at the given distances</p>
<ul>
<li>Click on any line or any legend item to display the altitude difference between the clicked
university and the average altitude at each give distance.</li>
<li>Click again on a different university to display the altitude difference between that university and
the last clicked one</li>
</ul>
</div>
<div class="box-wrapper">
<div class="box"></div>
</div>
</body>
<script src="chart.js" charset="utf-8"></script>
</html>