mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Min and max for elevation added
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<div class="row">
|
||||
<div class="mb-3 w-auto">
|
||||
<label class="my-1 me-sm-2 w-auto" id="satslabel" for="satslist"><?= __("Min. Satellite Elevation"); ?></label>
|
||||
<input class="my-1 me-sm-2 w-auto form-control" id="minelevation" type="number" name="minelevation" value="0" />
|
||||
<input class="my-1 me-sm-2 w-auto form-control" id="minelevation" type="number" min="0" max="90" name="minelevation" value="0" />
|
||||
</div>
|
||||
<div class="mb-3 w-auto">
|
||||
<label class="my-1 me-sm-2 w-auto" for="minazimuth"><?= __("Min. Azimuth"); ?></label>
|
||||
|
||||
@@ -15,10 +15,10 @@ if ($filtered) {
|
||||
echo '<td>' . $pass->satname . '</td>';
|
||||
echo '<td>' . Predict_Time::daynum2readable($pass->visible_aos, $zone, $format) . '</td>';
|
||||
echo '<td>' . returntimediff(Predict_Time::daynum2readable($pass->visible_aos, $zone, $format), Predict_Time::daynum2readable($pass->visible_los, $zone, $format), $format) . '</td>';
|
||||
echo '<td>' . round($pass->visible_aos_az) . '° (' . azDegreesToDirection($pass->visible_aos_az) . ')</td>';
|
||||
echo '<td>' . round($pass->max_el) . '°</td>';
|
||||
echo '<td>' . round($pass->visible_aos_az) . ' ° (' . azDegreesToDirection($pass->visible_aos_az) . ')</td>';
|
||||
echo '<td>' . round($pass->max_el) . ' °</td>';
|
||||
echo '<td>' . Predict_Time::daynum2readable($pass->visible_los, $zone, $format) . '</td>';
|
||||
echo '<td>' . round($pass->visible_los_az) . '° (' . azDegreesToDirection($pass->visible_los_az) . ')</td>';
|
||||
echo '<td>' . round($pass->visible_los_az) . ' ° (' . azDegreesToDirection($pass->visible_los_az) . ')</td>';
|
||||
echo '</tr>';
|
||||
}
|
||||
echo '</table>';
|
||||
|
||||
Reference in New Issue
Block a user