text_file.write("gps_altitude: " + str(self.gps_altitude) + "\n") text_file.write("outlanded: " + str(self.outlanded) + "\n") if self.outlanded: text_file.write("outlanding_leg: " + str(self.outlanding_leg) + "\n") text_file.write("outlanding time(UTC): " + ss2hhmmss(det_local_time(self.outlanding_b_record, 0)) + "\n") text_file.write("outlanding distance from previous tp: " + str(self.outlanding_distance) + "\n") text_file.write("%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n") text_file.close() if __name__ == '__main__': from main_pysoar import run run() ############################# LICENSE ##################################### # PySoar - Automating gliding competition analysis # Copyright (C) 2016 Matthijs Beekman # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details.
perf_indic_all = ["ranking", "airplane", "compID", "s_flown_task", "t_start", "t_finish", "h_start", "h_finish", "vario_gem", "v_glide_avg", "v_turn_avg", "s_glide_avg", "dh_cruise_avg", "LD_avg", "s_extra", "tsk_v", "turn_percentage", "h_loss_turn"] WGS84_mayor_axis = 6378137 WGS84_minor_axis = 6356752.3142 FAI_sphere_radius = 6371 distance_method = "WGS84 elipse" # choose between 'FAI sphere' and 'WGS84 elipse' ENL_value_threshold = 500 # above which it is seen as engine noise ENL_time_threshold = 30 # seconds if __name__ == '__main__': from main_pysoar import run run() ############################# LICENSE ##################################### # PySoar - Automating gliding competition analysis # Copyright (C) 2016 Matthijs Beekman # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details.