Distances worked analytics: filter on propagation mode
这个提交包含在:
父节点
1362d19608
当前提交
b92b60d678
共有 36 个文件被更改,包括 407 次插入 和 32 次删除
|
|
@ -78,8 +78,9 @@ class Distances extends CI_Controller {
|
||||||
$sat = $this->security->xss_clean($this->input->post('sat'));
|
$sat = $this->security->xss_clean($this->input->post('sat'));
|
||||||
$mode = $this->security->xss_clean($this->input->post('mode'));
|
$mode = $this->security->xss_clean($this->input->post('mode'));
|
||||||
$power = $this->security->xss_clean($this->input->post('pwr'));
|
$power = $this->security->xss_clean($this->input->post('pwr'));
|
||||||
|
$propag = $this->security->xss_clean($this->input->post('propag'));
|
||||||
|
|
||||||
$data['results'] = $this->distances_model->qso_details($distance, $band, $sat, $mode, $power);
|
$data['results'] = $this->distances_model->qso_details($distance, $band, $sat, $mode, $power, $propag);
|
||||||
|
|
||||||
// Render Page
|
// Render Page
|
||||||
if (strtolower($band) == 'all') $band = lang('statistics_distances_bands_all');
|
if (strtolower($band) == 'all') $band = lang('statistics_distances_bands_all');
|
||||||
|
|
@ -95,8 +96,19 @@ class Distances extends CI_Controller {
|
||||||
$power .= 'W';
|
$power .= 'W';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
switch (strtolower($propag)) {
|
||||||
|
case 'all':
|
||||||
|
$propag = lang('general_word_all');
|
||||||
|
break;
|
||||||
|
case '':
|
||||||
|
$propag = lang('general_word_undefined');
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
$propag = lang("gen_hamradio_propagation_$propag");
|
||||||
|
}
|
||||||
|
|
||||||
$data['page_title'] = "Log View - " . $distance;
|
$data['page_title'] = "Log View - " . $distance;
|
||||||
$data['filter'] = lang('statistics_distances_qsos_with') . " " . $distance . lang('statistics_distances_and_band') . " " . $band . lang('statistics_distances_and_mode') . $mode . lang('statistics_distances_and_power') . $power;
|
$data['filter'] = lang('statistics_distances_qsos_with') . " " . $distance . lang('statistics_distances_and_band') . " " . $band . lang('statistics_distances_and_mode') . $mode . lang('statistics_distances_and_power') . $power . lang('statistics_distances_and_propagation') . $propag;
|
||||||
$this->load->view('awards/details', $data);
|
$this->load->view('awards/details', $data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Локатор';
|
$lang['gen_hamradio_locator'] = 'Локатор';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Мощност на предавателя (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Мощност на предавателя (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Propagation Mode';
|
$lang['gen_hamradio_propagation_mode'] = 'Propagation Mode';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Име на сателита';
|
$lang['gen_hamradio_satellite_name'] = 'Име на сателита';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Режим на сателита';
|
$lang['gen_hamradio_satellite_mode'] = 'Режим на сателита';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs with distance : ";
|
||||||
$lang['statistics_distances_and_band'] = ", band : ";
|
$lang['statistics_distances_and_band'] = ", band : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", mode : ";
|
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||||
$lang['statistics_distances_and_power'] = ", power : ";
|
$lang['statistics_distances_and_power'] = ", power : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagation : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL 信息';
|
||||||
$lang['gen_hamradio_locator'] = '定位地图';
|
$lang['gen_hamradio_locator'] = '定位地图';
|
||||||
$lang['gen_hamradio_transmit_power'] = '发射功率 (W)';
|
$lang['gen_hamradio_transmit_power'] = '发射功率 (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = '传播模式';
|
$lang['gen_hamradio_propagation_mode'] = '传播模式';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = '卫星名称';
|
$lang['gen_hamradio_satellite_name'] = '卫星名称';
|
||||||
$lang['gen_hamradio_satellite_mode'] = '卫星模式';
|
$lang['gen_hamradio_satellite_mode'] = '卫星模式';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSO 与";
|
||||||
$lang['statistics_distances_and_band'] = "和波段";
|
$lang['statistics_distances_and_band'] = "和波段";
|
||||||
$lang['statistics_distances_and_mode'] = ", 模式 : ";
|
$lang['statistics_distances_and_mode'] = ", 模式 : ";
|
||||||
$lang['statistics_distances_and_power'] = ", 发射功率 : ";
|
$lang['statistics_distances_and_power'] = ", 发射功率 : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", 传播模式 : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Lokátor';
|
$lang['gen_hamradio_locator'] = 'Lokátor';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Vysílací výkon (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Vysílací výkon (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Šíření signálu';
|
$lang['gen_hamradio_propagation_mode'] = 'Šíření signálu';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Název satelitu';
|
$lang['gen_hamradio_satellite_name'] = 'Název satelitu';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Režim satelitu';
|
$lang['gen_hamradio_satellite_mode'] = 'Režim satelitu';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs with distance : ";
|
||||||
$lang['statistics_distances_and_band'] = ", band : ";
|
$lang['statistics_distances_and_band'] = ", band : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", mode : ";
|
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||||
$lang['statistics_distances_and_power'] = ", power : ";
|
$lang['statistics_distances_and_power'] = ", power : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagation : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Locator';
|
$lang['gen_hamradio_locator'] = 'Locator';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Vermogen (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Vermogen (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Propagattie Mode';
|
$lang['gen_hamradio_propagation_mode'] = 'Propagattie Mode';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Satelliet Naam';
|
$lang['gen_hamradio_satellite_name'] = 'Satelliet Naam';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Satelliet Mode';
|
$lang['gen_hamradio_satellite_mode'] = 'Satelliet Mode';
|
||||||
|
|
|
||||||
|
|
@ -33,8 +33,12 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "The distan
|
||||||
$lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is";
|
$lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is";
|
||||||
$lang['statistics_distances_number_of_qsos'] = "Number of QSOs";
|
$lang['statistics_distances_number_of_qsos'] = "Number of QSOs";
|
||||||
$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)";
|
$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)";
|
||||||
$lang['statistics_distances_qsos_with'] = "QSOs with";
|
$lang['statistics_distances_qsos_with'] = "QSOs with distance : ";
|
||||||
$lang['statistics_distances_and_band'] = "and band";
|
$lang['statistics_distances_and_band'] = ", band : ";
|
||||||
|
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||||
|
$lang['statistics_distances_and_power'] = ", power : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagation : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Locator';
|
$lang['gen_hamradio_locator'] = 'Locator';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Transmit Power (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Transmit Power (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Propagation Mode';
|
$lang['gen_hamradio_propagation_mode'] = 'Propagation Mode';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Satellite Name';
|
$lang['gen_hamradio_satellite_name'] = 'Satellite Name';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Satellite Mode';
|
$lang['gen_hamradio_satellite_mode'] = 'Satellite Mode';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs with distance : ";
|
||||||
$lang['statistics_distances_and_band'] = ", band : ";
|
$lang['statistics_distances_and_band'] = ", band : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", mode : ";
|
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||||
$lang['statistics_distances_and_power'] = ", power : ";
|
$lang['statistics_distances_and_power'] = ", power : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagation : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Lokaattori';
|
$lang['gen_hamradio_locator'] = 'Lokaattori';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Lähetysteho (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Lähetysteho (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Propagaatiomuoto';
|
$lang['gen_hamradio_propagation_mode'] = 'Propagaatiomuoto';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Satelliitti';
|
$lang['gen_hamradio_satellite_name'] = 'Satelliitti';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Satelliitin Mode';
|
$lang['gen_hamradio_satellite_mode'] = 'Satelliitin Mode';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs with distance : ";
|
||||||
$lang['statistics_distances_and_band'] = ", band : ";
|
$lang['statistics_distances_and_band'] = ", band : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", mode : ";
|
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||||
$lang['statistics_distances_and_power'] = ", power : ";
|
$lang['statistics_distances_and_power'] = ", power : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagation : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = "QSL Msg";
|
||||||
$lang['gen_hamradio_locator'] = "Locator";
|
$lang['gen_hamradio_locator'] = "Locator";
|
||||||
$lang['gen_hamradio_transmit_power'] = "Puissance d'émission (W)";
|
$lang['gen_hamradio_transmit_power'] = "Puissance d'émission (W)";
|
||||||
$lang['gen_hamradio_propagation_mode'] = "Mode de propagation";
|
$lang['gen_hamradio_propagation_mode'] = "Mode de propagation";
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Réflexion sur avion (Aircraft scatter)";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurore boréale (Aurora)";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurore boréale avec couche E (Aurora-E)";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Rétrodiffusion (Back scatter)";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "EME (Terre-Lune-Terre)";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Couche E sporadique";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Irrégularités ionosphériques";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "Couche F2 de l'ionosphère";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Diffusion dans l'ionosphère";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Diffusion par météorite (Meteor scatter)";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Relais, répéteur ou transpondeur";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Diffusion par la pluie (Rain scatter)";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-équatoriale";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Conduit troposphérique";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = "Nom du satellite";
|
$lang['gen_hamradio_satellite_name'] = "Nom du satellite";
|
||||||
$lang['gen_hamradio_satellite_mode'] = "Mode du satellite";
|
$lang['gen_hamradio_satellite_mode'] = "Mode du satellite";
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs avec distance : ";
|
||||||
$lang['statistics_distances_and_band'] = ", bande : ";
|
$lang['statistics_distances_and_band'] = ", bande : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", mode : ";
|
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||||
$lang['statistics_distances_and_power'] = ", puissance : ";
|
$lang['statistics_distances_and_power'] = ", puissance : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagation : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "Pas de QSOs correspondants à tracer.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Locator';
|
$lang['gen_hamradio_locator'] = 'Locator';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Sendeleistung (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Sendeleistung (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Propagation';
|
$lang['gen_hamradio_propagation_mode'] = 'Propagation';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Satellit';
|
$lang['gen_hamradio_satellite_name'] = 'Satellit';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Satellitenmodus';
|
$lang['gen_hamradio_satellite_mode'] = 'Satellitenmodus';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs mit Distanz : ";
|
||||||
$lang['statistics_distances_and_band'] = ", Band : ";
|
$lang['statistics_distances_and_band'] = ", Band : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", Mode : ";
|
$lang['statistics_distances_and_mode'] = ", Mode : ";
|
||||||
$lang['statistics_distances_and_power'] = ", Sendeleistung : ";
|
$lang['statistics_distances_and_power'] = ", Sendeleistung : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", Wellenausbreitung : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Τοποθετών';
|
$lang['gen_hamradio_locator'] = 'Τοποθετών';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Ισχύ διαβίβασης (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Ισχύ διαβίβασης (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Λειτουργία διάδοσης';
|
$lang['gen_hamradio_propagation_mode'] = 'Λειτουργία διάδοσης';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Όνομα δορυφόρου';
|
$lang['gen_hamradio_satellite_name'] = 'Όνομα δορυφόρου';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Λειτουργία δορυφόρου';
|
$lang['gen_hamradio_satellite_mode'] = 'Λειτουργία δορυφόρου';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs with distance : ";
|
||||||
$lang['statistics_distances_and_band'] = ", band : ";
|
$lang['statistics_distances_and_band'] = ", band : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", mode : ";
|
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||||
$lang['statistics_distances_and_power'] = ", power : ";
|
$lang['statistics_distances_and_power'] = ", power : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagation : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Locatore';
|
$lang['gen_hamradio_locator'] = 'Locatore';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Potenza di Trasmissione (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Potenza di Trasmissione (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Modo di Propagazione';
|
$lang['gen_hamradio_propagation_mode'] = 'Modo di Propagazione';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Nome Satellite';
|
$lang['gen_hamradio_satellite_name'] = 'Nome Satellite';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Modo Satellite';
|
$lang['gen_hamradio_satellite_mode'] = 'Modo Satellite';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSO con distanza : ";
|
||||||
$lang['statistics_distances_and_band'] = ", banda : ";
|
$lang['statistics_distances_and_band'] = ", banda : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", modo : ";
|
$lang['statistics_distances_and_mode'] = ", modo : ";
|
||||||
$lang['statistics_distances_and_power'] = ", potenza : ";
|
$lang['statistics_distances_and_power'] = ", potenza : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagazione : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Lokator';
|
$lang['gen_hamradio_locator'] = 'Lokator';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Moc nadajnika (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Moc nadajnika (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Typ propagacji';
|
$lang['gen_hamradio_propagation_mode'] = 'Typ propagacji';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Nazwa satelity';
|
$lang['gen_hamradio_satellite_name'] = 'Nazwa satelity';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'modulacja satelity';
|
$lang['gen_hamradio_satellite_mode'] = 'modulacja satelity';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs with distance : ";
|
||||||
$lang['statistics_distances_and_band'] = ", band : ";
|
$lang['statistics_distances_and_band'] = ", band : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", mode : ";
|
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||||
$lang['statistics_distances_and_power'] = ", power : ";
|
$lang['statistics_distances_and_power'] = ", power : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagation : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -154,6 +154,24 @@ $lang['gen_hamradio_qslmsg'] = 'сообщение QSL ';
|
||||||
$lang['gen_hamradio_locator'] = 'Локатор';
|
$lang['gen_hamradio_locator'] = 'Локатор';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Мощность передачи (Вт)';
|
$lang['gen_hamradio_transmit_power'] = 'Мощность передачи (Вт)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Тип прохождения';
|
$lang['gen_hamradio_propagation_mode'] = 'Тип прохождения';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Название спутника';
|
$lang['gen_hamradio_satellite_name'] = 'Название спутника';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Режим работы спутника';
|
$lang['gen_hamradio_satellite_mode'] = 'Режим работы спутника';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs с";
|
||||||
$lang['statistics_distances_and_band'] = ", диапазоне : ";
|
$lang['statistics_distances_and_band'] = ", диапазоне : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", Вид модуляции : ";
|
$lang['statistics_distances_and_mode'] = ", Вид модуляции : ";
|
||||||
$lang['statistics_distances_and_power'] = ", Мощность передачи : ";
|
$lang['statistics_distances_and_power'] = ", Мощность передачи : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", Тип прохождения : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -154,6 +154,24 @@ $lang['gen_hamradio_qslmsg'] = 'Mensaje QSL';
|
||||||
$lang['gen_hamradio_locator'] = 'Localizador';
|
$lang['gen_hamradio_locator'] = 'Localizador';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Potencia de transmisión (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Potencia de transmisión (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Modo de propagación';
|
$lang['gen_hamradio_propagation_mode'] = 'Modo de propagación';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Nombre del Satélite';
|
$lang['gen_hamradio_satellite_name'] = 'Nombre del Satélite';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Modo del Satélite';
|
$lang['gen_hamradio_satellite_mode'] = 'Modo del Satélite';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs con distancia : ";
|
||||||
$lang['statistics_distances_and_band'] = ", banda ; ";
|
$lang['statistics_distances_and_band'] = ", banda ; ";
|
||||||
$lang['statistics_distances_and_mode'] = ", modo : ";
|
$lang['statistics_distances_and_mode'] = ", modo : ";
|
||||||
$lang['statistics_distances_and_power'] = ", potencia : ";
|
$lang['statistics_distances_and_power'] = ", potencia : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagación : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -155,6 +155,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Lokator';
|
$lang['gen_hamradio_locator'] = 'Lokator';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Effekt (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Effekt (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Propagation Mode';
|
$lang['gen_hamradio_propagation_mode'] = 'Propagation Mode';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Satellitnamn';
|
$lang['gen_hamradio_satellite_name'] = 'Satellitnamn';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Satellite-mode';
|
$lang['gen_hamradio_satellite_mode'] = 'Satellite-mode';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "QSOs with distance : ";
|
||||||
$lang['statistics_distances_and_band'] = ", band : ";
|
$lang['statistics_distances_and_band'] = ", band : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", mode : ";
|
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||||
$lang['statistics_distances_and_power'] = ", power : ";
|
$lang['statistics_distances_and_power'] = ", power : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", propagation : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -152,6 +152,24 @@ $lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||||
$lang['gen_hamradio_locator'] = 'Konum kodu';
|
$lang['gen_hamradio_locator'] = 'Konum kodu';
|
||||||
$lang['gen_hamradio_transmit_power'] = 'Yayın Gücü (W)';
|
$lang['gen_hamradio_transmit_power'] = 'Yayın Gücü (W)';
|
||||||
$lang['gen_hamradio_propagation_mode'] = 'Yayın Mode';
|
$lang['gen_hamradio_propagation_mode'] = 'Yayın Mode';
|
||||||
|
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||||
|
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||||
|
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||||
|
$lang['gen_hamradio_propagation_BS'] = "Back scatter";
|
||||||
|
$lang['gen_hamradio_propagation_ECH'] = "EchoLink";
|
||||||
|
$lang['gen_hamradio_propagation_EME'] = "Earth-Moon-Earth";
|
||||||
|
$lang['gen_hamradio_propagation_ES'] = "Sporadic E";
|
||||||
|
$lang['gen_hamradio_propagation_FAI'] = "Field Aligned Irregularities";
|
||||||
|
$lang['gen_hamradio_propagation_F2'] = "F2 Reflection";
|
||||||
|
$lang['gen_hamradio_propagation_INTERNET'] = "Internet-assisted";
|
||||||
|
$lang['gen_hamradio_propagation_ION'] = "Ionoscatter";
|
||||||
|
$lang['gen_hamradio_propagation_IRL'] = "IRLP";
|
||||||
|
$lang['gen_hamradio_propagation_MS'] = "Meteor scatter";
|
||||||
|
$lang['gen_hamradio_propagation_RPT'] = "Terrestrial or atmospheric repeater or transponder";
|
||||||
|
$lang['gen_hamradio_propagation_RS'] = "Rain scatter";
|
||||||
|
$lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
||||||
|
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||||
|
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||||
|
|
||||||
$lang['gen_hamradio_satellite_name'] = 'Uydu Adı';
|
$lang['gen_hamradio_satellite_name'] = 'Uydu Adı';
|
||||||
$lang['gen_hamradio_satellite_mode'] = 'Uydu Modu';
|
$lang['gen_hamradio_satellite_mode'] = 'Uydu Modu';
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ $lang['statistics_distances_qsos_with'] = "mesafeli QSO'lar ile";
|
||||||
$lang['statistics_distances_and_band'] = ", bant : ";
|
$lang['statistics_distances_and_band'] = ", bant : ";
|
||||||
$lang['statistics_distances_and_mode'] = ", mode : ";
|
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||||
$lang['statistics_distances_and_power'] = ", gücü : ";
|
$lang['statistics_distances_and_power'] = ", gücü : ";
|
||||||
|
$lang['statistics_distances_and_propagation'] = ", Yayın Mode : ";
|
||||||
|
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ class Distances_model extends CI_Model
|
||||||
|
|
||||||
if (!$logbooks_locations_array) {
|
if (!$logbooks_locations_array) {
|
||||||
header('Content-Type: application/json');
|
header('Content-Type: application/json');
|
||||||
echo json_encode(array('Error' => 'No QSOs found to plot.'));
|
echo json_encode(array('Error' => lang('statistics_distances_no_qsos_to_plot')));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -49,6 +49,13 @@ class Distances_model extends CI_Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($postdata['propag'] != 'all') {
|
||||||
|
if ($postdata['propag']) {
|
||||||
|
$this->db->where('col_prop_mode', $postdata['propag']);
|
||||||
|
} else {
|
||||||
|
$this->db->where("col_prop_mode = ''");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$this->db->where('station_id', $station_id);
|
$this->db->where('station_id', $station_id);
|
||||||
$queryresult = $this->db->get($this->config->item('table_name'));
|
$queryresult = $this->db->get($this->config->item('table_name'));
|
||||||
|
|
@ -70,7 +77,7 @@ class Distances_model extends CI_Model
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
header('Content-Type: application/json');
|
header('Content-Type: application/json');
|
||||||
echo json_encode(array('Error' => 'No QSOs found to plot.'));
|
echo json_encode(array('Error' => lang('statistics_distances_no_qsos_to_plot')));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -236,10 +243,10 @@ class Distances_model extends CI_Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Used to fetch QSOs from the logbook in the awards
|
* Used to fetch QSOs from the logbook in the awards
|
||||||
*/
|
*/
|
||||||
public function qso_details($distance, $band, $sat, $mode, $power){
|
public function qso_details($distance, $band, $sat, $mode, $power, $propag){
|
||||||
$distarray = $this->getdistparams($distance);
|
$distarray = $this->getdistparams($distance);
|
||||||
$CI =& get_instance();
|
$CI =& get_instance();
|
||||||
$CI->load->model('logbooks_model');
|
$CI->load->model('logbooks_model');
|
||||||
|
|
@ -278,8 +285,15 @@ class Distances_model extends CI_Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->db->order_by("COL_TIME_ON", "desc");
|
if ($propag != 'all') {
|
||||||
|
if ($propag) {
|
||||||
|
$this->db->where('COL_PROP_MODE', $propag);
|
||||||
|
} else {
|
||||||
|
$this->db->where('COL_PROP_MODE is NULL');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->db->order_by("COL_TIME_ON", "desc");
|
||||||
return $this->db->get($this->config->item('table_name'));
|
return $this->db->get($this->config->item('table_name'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
<h5><?php echo lang('general_word_filtering_on'); ?> <?php echo $filter; ?></h5>
|
<h6><?php echo lang('general_word_filtering_on'); ?> <?php echo $filter; ?></h6>
|
||||||
|
|
||||||
<?php $this->load->view('view_log/partial/log_ajax'); ?>
|
<?php $this->load->view('view_log/partial/log_ajax'); ?>
|
||||||
|
|
@ -28,8 +28,8 @@
|
||||||
} ?>
|
} ?>
|
||||||
</select>
|
</select>
|
||||||
<?php if (count($sats_available) != 0) { ?>
|
<?php if (count($sats_available) != 0) { ?>
|
||||||
<label class="my-1 me-2" for="distplot_sats"><?php echo lang('general_word_satellite')?></label>
|
<label class="my-1 me-2" for="distplot_sats" id="distplot_sats_lbl" style="display: none"><?php echo lang('general_word_satellite')?></label>
|
||||||
<select class="form-select my-1 me-sm-2 w-auto" disabled id="distplot_sats">
|
<select class="form-select my-1 me-sm-2 w-auto" disabled id="distplot_sats" style="display: none">
|
||||||
<option value="All"><?php echo lang('statistics_distances_modes_all')?></option>
|
<option value="All"><?php echo lang('statistics_distances_modes_all')?></option>
|
||||||
<?php foreach($sats_available as $sat) {
|
<?php foreach($sats_available as $sat) {
|
||||||
echo '<option value="' . $sat . '"' . '>' . $sat . '</option>'."\n";
|
echo '<option value="' . $sat . '"' . '>' . $sat . '</option>'."\n";
|
||||||
|
|
@ -48,6 +48,38 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
</select>
|
||||||
|
<?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);
|
||||||
|
?>
|
||||||
|
<label class="my-1 me-2" for="distplot_propag"><?php echo lang('gen_hamradio_propagation_mode') ?></label>
|
||||||
|
<select class="form-select my-1 me-sm-2 w-auto" 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
|
||||||
|
foreach($prop_modes as $key => $label) {
|
||||||
|
echo '<option value="' . $key . '">' . $label . '</option>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
</select>
|
</select>
|
||||||
<label class="my-1 me-2" for="distplot_powers"><?php echo lang('gen_hamradio_transmit_power'); ?></label>
|
<label class="my-1 me-2" for="distplot_powers"><?php echo lang('gen_hamradio_transmit_power'); ?></label>
|
||||||
<select class="form-select my-1 me-sm-2 w-auto" id="distplot_powers">
|
<select class="form-select my-1 me-sm-2 w-auto" id="distplot_powers">
|
||||||
|
|
|
||||||
|
|
@ -51,30 +51,40 @@
|
||||||
?>
|
?>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
<?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);
|
||||||
|
?>
|
||||||
<div class="mb-3 col-md-3">
|
<div class="mb-3 col-md-3">
|
||||||
<label for="selectPropagation">Propagation Mode</label>
|
<label for="selectPropagation">Propagation Mode</label>
|
||||||
<select class="form-select" id="selectPropagation" name="prop_mode">
|
<select class="form-select" id="selectPropagation" name="prop_mode">
|
||||||
<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="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>
|
<option value="" <?php if ($this->input->post('prop_mode') == "" && $this->input->method() == 'post') echo ' selected'; ?>><?php echo lang('general_word_undefined') ?></option>
|
||||||
<option value="AS" <?php if ($this->input->post('prop_mode') == "AS") echo ' selected'; ?>>Aircraft Scatter</option>
|
<?php
|
||||||
<option value="AUR" <?php if ($this->input->post('prop_mode') == "AUR") echo ' selected'; ?>>Aurora</option>
|
foreach($prop_modes as $key => $label) {
|
||||||
<option value="AUE" <?php if ($this->input->post('prop_mode') == "AUE") echo ' selected'; ?>>Aurora-E</option>
|
echo '<option value="' . $key . '">';
|
||||||
<option value="BS" <?php if ($this->input->post('prop_mode') == "BS") echo ' selected'; ?>>Back scatter</option>
|
if ($this->input->post('prop_mode') == $key) echo ' selected';
|
||||||
<option value="ECH" <?php if ($this->input->post('prop_mode') == "ECH") echo ' selected'; ?>>EchoLink</option>
|
echo $label . '</option>';
|
||||||
<option value="EME" <?php if ($this->input->post('prop_mode') == "EME") echo ' selected'; ?>>Earth-Moon-Earth</option>
|
}
|
||||||
<option value="ES" <?php if ($this->input->post('prop_mode') == "ES") echo ' selected'; ?>>Sporadic E</option>
|
?>
|
||||||
<option value="FAI" <?php if ($this->input->post('prop_mode') == "FAI") echo ' selected'; ?>>Field Aligned Irregularities</option>
|
|
||||||
<option value="F2" <?php if ($this->input->post('prop_mode') == "F2") echo ' selected'; ?>>F2 Reflection</option>
|
|
||||||
<option value="INTERNET" <?php if ($this->input->post('prop_mode') == "INTERNET") echo ' selected'; ?>>Internet-assisted</option>
|
|
||||||
<option value="ION" <?php if ($this->input->post('prop_mode') == "ION") echo ' selected'; ?>>Ionoscatter</option>
|
|
||||||
<option value="IRL" <?php if ($this->input->post('prop_mode') == "IRL") echo ' selected'; ?>>IRLP</option>
|
|
||||||
<option value="MS" <?php if ($this->input->post('prop_mode') == "MS") echo ' selected'; ?>>Meteor scatter</option>
|
|
||||||
<option value="RPT" <?php if ($this->input->post('prop_mode') == "RPT") echo ' selected'; ?>>Terrestrial or atmospheric repeater or transponder</option>
|
|
||||||
<option value="RS" <?php if ($this->input->post('prop_mode') == "RS") echo ' selected'; ?>>Rain scatter</option>
|
|
||||||
<option value="SAT" <?php if ($this->input->post('prop_mode') == "SAT") echo ' selected'; ?>>Satellite</option>
|
|
||||||
<option value="TEP" <?php if ($this->input->post('prop_mode') == "TEP") echo ' selected'; ?>>Trans-equatorial</option>
|
|
||||||
<option value="TR" <?php if ($this->input->post('prop_mode') == "TR") echo ' selected'; ?>>Tropospheric ducting</option>
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,10 @@ $('#distplot_bands').change(function(){
|
||||||
var band = $("#distplot_bands option:selected").text();
|
var band = $("#distplot_bands option:selected").text();
|
||||||
if (band != "SAT") {
|
if (band != "SAT") {
|
||||||
$("#distplot_sats").prop('disabled', true);
|
$("#distplot_sats").prop('disabled', true);
|
||||||
|
$("#distplot_sats, #distplot_sats_lbl").hide();
|
||||||
} else {
|
} else {
|
||||||
$("#distplot_sats").prop('disabled', false);
|
$("#distplot_sats").prop('disabled', false);
|
||||||
|
$("#distplot_sats, #distplot_sats_lbl").show();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -16,7 +18,9 @@ function distPlot(form) {
|
||||||
data: {'band': form.distplot_bands.value,
|
data: {'band': form.distplot_bands.value,
|
||||||
'sat': form.distplot_sats.value,
|
'sat': form.distplot_sats.value,
|
||||||
'mode': form.distplot_modes.value,
|
'mode': form.distplot_modes.value,
|
||||||
'pwr': form.distplot_powers.value},
|
'pwr': form.distplot_powers.value,
|
||||||
|
'propag': form.distplot_propag.value
|
||||||
|
},
|
||||||
success: function(tmp) {
|
success: function(tmp) {
|
||||||
if (tmp.ok == 'OK') {
|
if (tmp.ok == 'OK') {
|
||||||
if (!($('#information').length > 0))
|
if (!($('#information').length > 0))
|
||||||
|
|
@ -146,6 +150,7 @@ function getDistanceQsos(distance) {
|
||||||
'sat' : $("#distplot_sats").val(),
|
'sat' : $("#distplot_sats").val(),
|
||||||
'mode': $("#distplot_modes").val(),
|
'mode': $("#distplot_modes").val(),
|
||||||
'pwr': $("#distplot_powers").val(),
|
'pwr': $("#distplot_powers").val(),
|
||||||
|
'propag': $("#distplot_propag").val(),
|
||||||
},
|
},
|
||||||
success: function (html) {
|
success: function (html) {
|
||||||
BootstrapDialog.show({
|
BootstrapDialog.show({
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用