2020-02-18 17:49:27 +08:00
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
|
|
<h2><?php echo $page_title; ?></h2>
|
|
|
|
|
|
|
|
|
|
<div id="distances_div">
|
|
|
|
|
<form class="form-inline">
|
2021-01-31 06:25:13 +08:00
|
|
|
<label class="my-1 mr-2" for="distplot_bands">Band Selection</label>
|
2020-02-18 17:49:27 +08:00
|
|
|
<select class="custom-select my-1 mr-sm-2" id="distplot_bands">
|
|
|
|
|
<option value="sat">SAT</option>
|
2021-01-31 06:25:13 +08:00
|
|
|
<?php foreach($bands_available as $band) {
|
|
|
|
|
echo '<option value="' . $band . '"' . '>' . $band . '</option>'."\n";
|
|
|
|
|
} ?>
|
|
|
|
|
</select>
|
|
|
|
|
<label class="my-1 mr-2" for="distplot_sats">Satellite</label>
|
|
|
|
|
<select class="custom-select my-1 mr-sm-2" id="distplot_sats">
|
|
|
|
|
<option value="All">All</option>
|
|
|
|
|
<?php foreach($sats_available as $sat) {
|
|
|
|
|
echo '<option value="' . $sat . '"' . '>' . $sat . '</option>'."\n";
|
|
|
|
|
} ?>
|
2020-02-18 17:49:27 +08:00
|
|
|
</select>
|
2020-10-26 16:58:49 +08:00
|
|
|
<button id="plot" type="button" name="plot" class="btn btn-primary" onclick="distPlot(this.form)">Plot</button>
|
2020-02-18 17:49:27 +08:00
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|