Distance plots only shown for the active station profile not all qsos in the database table

This commit is contained in:
Peter Goodhall 2020-03-08 21:50:55 +00:00
parent 7103d74635
commit 6b4c85cd62

View File

@ -14,6 +14,7 @@ class Distances_model extends CI_Model
$CI =& get_instance();
$CI->load->model('Stations');
$station_id = $CI->Stations->find_active();
$station_gridsquare = $CI->Stations->find_gridsquare();
$gridsquare = explode(',', $station_gridsquare); // We need to convert to an array, since a user can enter several gridsquares
@ -26,7 +27,7 @@ class Distances_model extends CI_Model
else {
$this->db->where('col_band', $postdata['band']);
}
$this->db->where('station_id', $station_id);
$dataarrayata = $this->db->get($this->config->item('table_name'));
$this->plot($dataarrayata->result_array(), $gridsquare);
}