[Distances worked] When clicking bars, QSOs are displayed in a popup

This commit is contained in:
Andreas 2023-07-16 18:10:11 +02:00
parent 1e300fbc30
commit 3b3c05fc5a
3 changed files with 126 additions and 4 deletions

View File

@ -65,4 +65,19 @@ class Distances extends CI_Controller {
return json_encode($data);
}
}
public function getDistanceQsos(){
$this->load->model('distances_model');
$distance = $this->security->xss_clean($this->input->post('distance'));
$band = $this->security->xss_clean($this->input->post('band'));
$sat = $this->security->xss_clean($this->input->post('sat'));
$data['results'] = $this->distances_model->qso_details($distance, $band, $sat);
// Render Page
$data['page_title'] = "Log View - " . $distance;
$data['filter'] = "Filtering on QSOs with " . $distance . " and band ".$band;
$this->load->view('awards/details', $data);
}
}

View File

@ -43,7 +43,7 @@ class Distances_model extends CI_Model
if ($queryresult->result_array()) {
$temp = $this->plot($queryresult->result_array(), $gridsquare, $measurement_base);
$result = $this->mergeresult($result, $temp);
}
@ -76,7 +76,7 @@ class Distances_model extends CI_Model
$result['qrb']['Qsos'] += $add['qrb']['Qsos'];
for ($i = 0; $i <= 399; $i++) {
if(isset($result['qsodata'][$i]['count'])) {
$result['qsodata'][$i]['count'] += $add['qsodata'][$i]['count'];
}
@ -265,4 +265,59 @@ class Distances_model extends CI_Model
return ceil(6371*$ca);
}
}
/*
* Used to fetch QSOs from the logbook in the awards
*/
public function qso_details($distance, $band, $sat){
$distarray = $this->getdistparams($distance);
$CI =& get_instance();
$CI->load->model('logbooks_model');
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
$this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC', 'left outer');
$this->db->join('lotw_users', 'lotw_users.callsign = '.$this->config->item('table_name').'.col_call', 'left outer');
$this->db->where('COL_DISTANCE >=', $distarray[0]);
$this->db->where('COL_DISTANCE <=', $distarray[1]);
$this->db->where('LENGTH(col_gridsquare) >', 0);
$this->db->where_in($this->config->item('table_name').'.station_id', $logbooks_locations_array);
if ($band != 'All') {
if($band != "sat") {
$this->db->where('COL_PROP_MODE !=', 'SAT');
$this->db->where('COL_BAND', $band);
} else {
$this->db->where('COL_PROP_MODE', "SAT");
if ($sat != 'All') {
$this->db->where('COL_SAT_NAME', $sat);
}
}
}
$this->db->order_by("COL_TIME_ON", "desc");
return $this->db->get($this->config->item('table_name'));
}
function getdistparams($distance) {
$temp = explode('-', $distance);
$regex = '[a-zA-Z]+';
preg_match("%{$regex}%i", $temp[0], $unit);
$result = [];
$result[0] = filter_var($temp[0], FILTER_SANITIZE_NUMBER_INT);
$result[1] = filter_var($temp[1], FILTER_SANITIZE_NUMBER_INT);
if ($unit[0] == 'mi') {
$result[0] *= 1.609344;
$result[1] *= 1.609344;
}
if ($unit[0] == 'nmi') {
$result[0] *= 1.852;
$result[1] *= 1.852;
}
return $result;
}
}

View File

@ -94,7 +94,15 @@ function distPlot(form) {
var series = {
data: [],
showInNavigator: true
showInNavigator: true,
point: {
events: {
click: function () {
getDistanceQsos(this.category);
}
}
}
};
$.each(tmp.qsodata, function(){
@ -123,3 +131,47 @@ function distPlot(form) {
}
});
}
function getDistanceQsos(distance) {
// alert('Category: ' + distance);
$.ajax({
url: base_url + 'index.php/distances/getDistanceQsos',
type: 'post',
data: {
'distance': distance,
'band': $("#distplot_bands").val(),
'sat' : $("#distplot_sats").val(),
},
success: function (html) {
BootstrapDialog.show({
title: 'QSO Data',
size: BootstrapDialog.SIZE_WIDE,
cssClass: 'qso-dialog',
nl2br: false,
message: html,
onshown: function(dialog) {
$('[data-toggle="tooltip"]').tooltip();
$('.contacttable').DataTable({
"pageLength": 25,
responsive: false,
ordering: false,
"scrollY": "550px",
"scrollCollapse": true,
"paging": false,
"scrollX": true,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
},
buttons: [{
label: 'Close',
action: function (dialogItself) {
dialogItself.close();
}
}]
});
}
});
}