-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>Alti-Correct</title>
<meta charset="utf-8"/>
<script src="https://cdn.jsdelivr.net/npm/chart.js@3/dist/chart.min.js"></script>
<script type="module" src="script.js"></script>
</head>
<body>
<div>
<h1>Alti-Correct : corriger l'altimétrie d'un fichier GPX grâce au RGE Alti IGN</h1>
<input type="file" id="inputElement" />
<button id="download" disabled="true">Aucun fichier</button>
<canvas id="myChart" width="400" height="150"></canvas>
<table id="total_gain" style="display: none">
<tr>
<td>Initial</td>
<td id="altitude_up_init"></span>
<td id="altitude_down_init"></span>
</tr>
<tr>
<td>New</td>
<td id="altitude_up_new"></span>
<td id="altitude_down_new"></span>
</tr>
</table>
</div>
</body>
</html>