-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
134 lines (133 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mount Carmel High HAB Dashboard</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<script src="/socket.io/socket.io.js"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<h4>Mount Carmel High HAB Dashboard V1.1</h4>
<div id="callID"></div>
</header>
<div id='main'>
<article id="map">
</article>
<nav>
<table>
<tr>
<button onclick="myMap()">Map</button>
</tr>
<tr>
<button onclick="sendAPRS()">APRS</button>
<tr>
<button onclick="displayImages()">Images</button>
</tr>
<tr>
<th id="rssiGW1Label">GW1 Gene QTH</th>
<td id="rssiGW1"></td>
</tr>
<tr>
<th id="rssiGW2Label">GW2 Randy QTH</th>
<td id="rssiGW2"></td>
</tr>
<tr>
<th id="rssiGW3Label">GW3 David QTH</th>
<td id="rssiGW3"></td>
</tr>
<tr>
<th id="rssiGW4Label">GW4 Otay</th>
<td id="rssiGW4"></td>
</tr>
<tr>
<th id="rssiGW5Label">GW5 Gene Rover</th>
<td id="rssiGW5"></td>
</tr>
<tr>
<th id="rssiGW6Label">GW6 David Rover</th>
<td id="rssiGW6"></td>
</tr>
<tr>
<th id="rssiGW7Label">GW7 KK6NOW</th>
<td id="rssiGW7"></td>
</tr>
<tr>
<th id="rssiGW8Label">GW8 Toro</th>
<td id="rssiGW8"></td>
</tr>
<tr>
<th id="rssiGW9Label">GW9 MCHS</th>
<td id="rssiGW9"></td>
</tr>
<tr>
<th id="rssiGW10Label">GW10 Test</th>
<td id="rssiGW10"></td>
</tr>
<tr>
<th id="rssiGW11Label">GW11 Test</th>
<td id="rssiGW11"></td>
</tr>
</table>
</nav>
<aside>
<table>
<tr>
<th>Time</th>
<td id="GPSTimeID"></td>
</tr>
<tr>
<th>Latitude</th>
<td id="latID"></td>
</tr>
<tr>
<th>Longitude</th>
<td id="lonID"></td>
</tr>
<tr>
<th>Altitude</th>
<td id="altID"></td>
</tr>
<tr>
<th>Speed</th>
<td id="speedID"></td>
</tr>
<tr>
<th>Status</th>
<td id="statusID"></td>
</tr>
<tr>
<th>Satellites</th>
<td id="SatellitesID"></td>
</tr>
<tr>
<th>Battery</th>
<td id="BatteryID"></td>
</tr>
<tr>
<th>Int Temp</th>
<td id="IntTemperatureID"></td>
</tr>
<tr>
<th>Ext Temp</th>
<td id="ExtTemperatureID"></td>
</tr>
<tr>
<th>Pressure</th>
<td id="PressureID"></td>
</tr>
<tr>
<th>Humidity</th>
<td id="HumidityID"></td>
</tr>
</table>
</aside>
</div>
<textarea id="textareaID">
</textarea>
<footer>
<a href="https://www.powayusd.com/en-US/Schools/HS/MCHS/HOME">Mount Carmel High</a>
</footer>
<script src="https://maps.googleapis.com/maps/api/js"></script>
</body>
</html>