-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (152 loc) · 7.12 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HAB Mission Status</title>
<!-- CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./css/custom_style.css">
<!-- Script -->
<script type="text/javascript" src="https://d3js.org/d3.v4.min.js" defer></script>
<script type="text/javascript" src="./js/app_d3.js" defer></script>
</head>
<body>
<header>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand navbar-brand-logo" href="./index.html"><img alt="SPEX" src="images/spex_48.png"></a>
<h3>HAB Mission Status</h3>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="./index.html">Home<span class="sr-only">(current)</span></a></li>
<li><a href="#">Link</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Link</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
</header>
<!-- Plots -->
<section id="plots" class="background-light-grey">
<div class="container-fluid">
<div class="row">
<div class="col-md-9">
<div class="row">
<div class="plot col-md-6">
<h3>Altitude</h3>
<svg width="400" height="250"></svg>
</div>
<div class="plot col-md-6">
<h3>Pressure</h3>
<svg width="400" height="250"></svg>
</div>
</div>
<div class="row">
<div class="plot col-md-6">
<h3>Temperature</h3>
<svg width="400" height="250"></svg>
</div>
<div class="plot col-md-6">
<h3>Voltage</h3>
<svg width="400" height="250"></svg>
</div>
</div>
</div>
<div class="col-md-3">
<div class="panel">
<div class="panel-heading">
<h3 class="panel-title">Telemetry</h3>
</div>
<div class="panel-body">
<p>Altitude by sensor:</p>
<p>Pressure:</p>
<p>Est. Altitude:</p>
</div>
<div class="panel-heading">
<h3 class="panel-title">On-Board Sensor</h3>
</div>
<div class="panel-body">
<p>Temperature:</p>
<p>Voltage:</p>
<p>Battery:</p>
</div>
<div class="panel-footer">Last updated at </div>
</div>
<div class="aprs-map">
<p>
<script type="text/javascript">
he_track = "EW5110"; // track this callsign
// latitude and longitude of Rochester, NY
he_lat = 43.1610;
he_lng = -77.6109;
he_zoom = 10; // zoom out a bit
he_maptype = 'h'; // hybrid map
//Map size
he_width=250;
he_height=300;
// select what to show
he_hide_tcp = 1; // do not show Internet stations
he_show_aprs = 'w'; // show APRS stations with waypoints
he_show_aprs_w = ''; // do not show APRS weather stations
he_show_aprs_i = 'p'; // only show the current position of items without track
he_show_ais = ''; // do not show AIS ships
</script>
<script type="text/javascript" src="https://aprs.fi/js/embed.js">
</script>
</p>
</div>
</div>
</div>
</section>
<footer class="nav navbar-inverse text-center">
<div class="row">
<div class="">
<a class="footer-logo" href="http://www.rit.edu"><img src="./images/rit_logo.png" alt="RIT"></a>
</div>
<div class="footer-text">
<p>Rochester Institute of Technology</p>
<p>HAB Mission Control</p>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="./js/bootstrap.min.js"></script>
</body>
</html>