-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (46 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MST Converter</title>
<link rel="stylesheet" href="./static/styles.css">
</head>
<body>
<header>
<h1> The Mountains-to-Sea Trail </h1>
</header>
<main>
<div class="waypoint-converter">
<h2> Waypoint to Trackpoint Converter </h2>
<div class="instructions">
<h3>Instructions</h3>
<p> Upload a file containing the trackpoint data and a file containing the waypoint data. </p>
<p> Files should contain columns named:
<li>id</li>
<li>lat</li>
<li>lon</li>
</p>
<p> File output will include the original waypoint data and associated trackpoint data. </p>
</div>
<div class="file-upload">
<label for="trackpoint-data">Trackpoint Data: </label>
<input type="file" class="trackpoint-data" name="trackpoint">
<label for="waypoint-data">Waypoint Data: </label>
<input type="file" class="waypoint-data" name="waypoint">
<label for="file-name">File Name: </label>
<div class="file-name">
<input class="file-name" type="text" placeholder="new-waypoints-segment-8" id="file-name">
<p class="file-name">.json</p>
</div>
<input type="submit" value="Convert">
</div>
</div>
</main>
<script>
</script>
<!-- <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.2.0/papaparse.min.js"></script> -->
<script src="./dist/bundle.js"></script>
</body>
</html>