cloudlog/application/views/distances/index.php

132 lines
9 KiB
PHP
Raw Permalink Normal View History

2020-02-18 10:49:27 +01:00
<div class="container">
<br>
2023-11-05 19:31:23 +01:00
<h2><?php echo lang('statistics_distances_worked'); ?></h2>
2023-10-08 08:55:45 +02:00
<script>
var lang_general_word_qso_data = '<?php echo lang('general_word_qso_data'); ?>';
2023-11-05 19:31:23 +01:00
var lang_statistics_distances_worked = '<?php echo lang('statistics_distances_worked'); ?>';
var lang_statistics_distances_part1_contacts_were_plotted_furthest = '<?php echo lang('statistics_distances_part1_contacts_were_plotted_furthest'); ?>';
var lang_statistics_distances_part2_contacts_were_plotted_furthest = '<?php echo lang('statistics_distances_part2_contacts_were_plotted_furthest'); ?>';
var lang_statistics_distances_part3_contacts_were_plotted_furthest = '<?php echo lang('statistics_distances_part3_contacts_were_plotted_furthest'); ?>';
var lang_statistics_distances_part4_contacts_were_plotted_furthest = '<?php echo lang('statistics_distances_part4_contacts_were_plotted_furthest'); ?>';
2023-11-05 19:31:23 +01:00
var lang_statistics_distances_number_of_qsos = '<?php echo lang('statistics_distances_number_of_qsos'); ?>';
var lang_gen_hamradio_distance = '<?php echo lang('gen_hamradio_distance'); ?>';
var lang_statistics_distances_callsigns_worked = '<?php echo lang('statistics_distances_callsigns_worked'); ?>';
var lang_statistics_distances_qsos_with = '<?php echo lang('lang_statistics_distances_qsos_with'); ?>';
2023-10-08 08:55:45 +02:00
</script>
2020-02-18 10:49:27 +01:00
<div id="distances_div">
<div class="card mb-3">
<div class="card-body">
<form id="distplot_form">
<div class="row g-3">
<div class="col-md-6 col-lg-3">
<label class="form-label" for="distplot_bands"><?php echo lang('gridsquares_band'); ?></label>
<select class="form-select" id="distplot_bands">
<option value="all"><?php echo lang('statistics_distances_bands_all')?></option>
<?php if (count($sats_available) != 0) { ?>
<option value="sat">SAT</option>
<?php } ?>
<?php foreach($bands_available as $band) {
echo '<option value="' . $band . '"' . '>' . $band . '</option>'."\n";
} ?>
</select>
</div>
<?php if (count($sats_available) != 0) { ?>
<div class="col-md-6 col-lg-3" id="distplot_sats_container" style="display: none">
<label class="form-label" for="distplot_sats"><?php echo lang('general_word_satellite')?></label>
<select class="form-select" id="distplot_sats" disabled>
<option value="All"><?php echo lang('statistics_distances_modes_all')?></option>
<?php foreach($sats_available as $sat) {
echo '<option value="' . $sat . '"' . '>' . $sat . '</option>'."\n";
} ?>
</select>
</div>
<?php } else { ?>
<input id="distplot_sats" type="hidden" value="All"></input>
<?php } ?>
<div class="col-md-6 col-lg-3">
<label class="form-label" for="distplot_modes"><?php echo lang('gridsquares_mode'); ?></label>
<select class="form-select" id="distplot_modes">
<option value="all"><?php echo lang('general_word_all')?></option>
<?php
foreach($modes as $mode) {
if ($mode->submode ?? '' == '') {
echo '<option value="' . $mode . '">' . strtoupper($mode) . '</option>'."\n";
}
}
?>
</select>
</div>
<div class="col-md-6 col-lg-3">
<label class="form-label" for="distplot_propag"><?php echo lang('gen_hamradio_propagation_mode') ?></label>
<select class="form-select" id="distplot_propag">
<option value="all" <?php if ($this->input->post('prop_mode') == "all" || $this->input->method() !== 'post') echo ' selected'; ?>><?php echo lang('general_word_all') ?></option>
<option value="" <?php if ($this->input->post('prop_mode') == "" && $this->input->method() == 'post') echo ' selected'; ?>><?php echo lang('general_word_undefined') ?></option>
<?php
// Sort translated propagation modes alphabetically
$prop_modes = ['AS' => lang('gen_hamradio_propagation_AS'),
'AUR' => lang('gen_hamradio_propagation_AUR'),
'AUE' => lang('gen_hamradio_propagation_AUE'),
'BS' => lang('gen_hamradio_propagation_BS'),
'ECH' => lang('gen_hamradio_propagation_ECH'),
'EME' => lang('gen_hamradio_propagation_EME'),
'ES' => lang('gen_hamradio_propagation_ES'),
'FAI' => lang('gen_hamradio_propagation_FAI'),
'F2' => lang('gen_hamradio_propagation_F2'),
'INTERNET' => lang('gen_hamradio_propagation_INTERNET'),
'ION' => lang('gen_hamradio_propagation_ION'),
'IRL' => lang('gen_hamradio_propagation_IRL'),
'MS' => lang('gen_hamradio_propagation_MS'),
'RPT' => lang('gen_hamradio_propagation_RPT'),
'RS' => lang('gen_hamradio_propagation_RS'),
'SAT' => lang('gen_hamradio_propagation_SAT'),
'TEP' => lang('gen_hamradio_propagation_TEP'),
'TR' => lang('gen_hamradio_propagation_TR')];
asort($prop_modes);
foreach($prop_modes as $key => $label) {
echo '<option value="' . $key . '">' . $label . '</option>';
}
?>
</select>
</div>
<div class="col-md-6 col-lg-3">
<label class="form-label" for="distplot_powers"><?php echo lang('gen_hamradio_transmit_power'); ?></label>
<select class="form-select" id="distplot_powers">
<option value="all"><?php echo lang('statistics_distances_bands_all')?></option>
<?php foreach($powers as $power) {
echo '<option value="' . $power . '">' . ($power ? $power : lang('general_word_undefined')) . '</option>'."\n";
}
?>
</select>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-end">
<div class="btn-group w-100" role="group">
<button id="plot" type="button" name="plot" class="btn btn-primary" onclick="distPlot()">
<span class="spinner-border spinner-border-sm me-2 d-none" id="loading_spinner" role="status" aria-hidden="true"></span>
<i class="fas fa-chart-bar me-1"></i><?php echo lang('filter_options_show')?>
</button>
<button id="reset" type="button" class="btn btn-outline-secondary" onclick="resetFilters()" title="Reset Filters">
<i class="fas fa-redo"></i>
</button>
</div>
</div>
</div>
</form>
</div>
</div>
2020-02-18 10:49:27 +01:00
</div>
<script>
function resetFilters() {
$('#distplot_bands').val('all').trigger('change');
$('#distplot_modes').val('all');
$('#distplot_propag').val('all');
$('#distplot_powers').val('all');
if ($('#distplot_sats').length) {
$('#distplot_sats').val('All');
}
distPlot();
}
</script>
2020-02-18 10:49:27 +01:00
</div>