92 lines
4.3 KiB
HTML
92 lines
4.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Performance</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="content-type" content="text/html; charset=utf-8" />
|
|
<meta name="cache-control" content="no-cache" />
|
|
<meta name="pragma" content="no-cache" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<!--<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />-->
|
|
<link href="css/bootstrap-toggle.css" rel="stylesheet" type="text/css" />
|
|
<!--<link href="css/bootstrap-customized.css" rel="stylesheet" type="text/css" />-->
|
|
<!--<link href="css/radarcape-jetvision.css" rel="stylesheet"> -->
|
|
<script type="text/javascript" src="js/jquery.min.js"></script>
|
|
<script type="text/javascript" src="js/bootstrap.min.js"></script>
|
|
<!-- Common Javascript -->
|
|
<script type="text/javascript" src="js/globals.js"></script>
|
|
<script type="text/javascript" src="js/navbar.js"></script>
|
|
<!-- Application needed for this page -->
|
|
<script type="text/javascript" src="js/Chart.bundle.js"></script>
|
|
<script type="text/javascript" src="js/utils.js"></script>
|
|
<script type="text/javascript" src="js/cookies.js"></script>
|
|
<script type="text/javascript" src="js/statistics_rx.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="nav"></div>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-4">
|
|
<h2><div id="page_title">Performance</div></h2>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-condensed" id="mapinfo_table">
|
|
<tbody>
|
|
<tr id="time">
|
|
<td>Latest Sample:</td>
|
|
<td align="right"></td>
|
|
</tr>
|
|
<tr id="resolution">
|
|
<td>Resolution:</td>
|
|
<td align="right"></td>
|
|
</tr>
|
|
<tr id="allframespersecond">
|
|
<td>Frames per second:</td>
|
|
<td align="right"></td>
|
|
</tr>
|
|
<tr id="aclist_size">
|
|
<td>Total aircraft:</td>
|
|
<td align="right"></td>
|
|
</tr>
|
|
<tr id="aclist_listed">
|
|
<td>Active aircraft:</td>
|
|
<td align="right"></td>
|
|
</tr>
|
|
<tr id="aclist_nof_adsb">
|
|
<td>ADS-B locations:</td>
|
|
<td align="right"></td>
|
|
</tr>
|
|
<tr id="aclist_nof_mlat">
|
|
<td>MLAT locations:</td>
|
|
<td align="right"></td>
|
|
</tr>
|
|
<tr id="aclist_nof_flarm">
|
|
<td>Flarm locations:</td>
|
|
<td align="right"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-12 col-md-12">
|
|
Time Duration:
|
|
<select onchange="swapduration(this.value)">
|
|
<option value="sec" selected>5 Minutes</option>
|
|
<option value="10sec">1 Hour</option>
|
|
<option value="min">24 Hours</option>
|
|
<option value="hour">30 Days</option>
|
|
</select>
|
|
Average number of frames
|
|
<select onchange="swapaverage(this.value)" id="swapaverage">
|
|
<option value="enabled">Enabled</option>
|
|
<option value="disabled">Disabled</option>
|
|
</select>
|
|
</div>
|
|
<canvas id="ChartNofFrames" width="400" height="150"></canvas>
|
|
<canvas id="ChartNofAircraft" width="400" height="150"></canvas>
|
|
<canvas id="ChartNofMlat" style="display: none" width="400" height="150"></canvas>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|