In signal preprocessing tab, data can be updated with the update push button. The user can add or remove data file in the Acoustic data tab and update the Signal preprocessing tab with the push button.

dev-brahim
brahim 2024-06-21 11:38:17 +02:00
parent 3b84cc634e
commit 2390b5c524
3 changed files with 530 additions and 410 deletions

View File

@ -1562,6 +1562,7 @@ class AcousticDataTab(QWidget):
"stg.nb_profiles", "stg.nb_profiles_per_sec", "stg.nb_cells", "stg.cell_size", "stg.nb_profiles", "stg.nb_profiles_per_sec", "stg.nb_cells", "stg.cell_size",
"stg.pulse_length", "stg.nb_pings_per_sec", "stg.nb_pings_averaged_per_profile", "stg.pulse_length", "stg.nb_pings_per_sec", "stg.nb_pings_averaged_per_profile",
"stg.kt_read", "stg.kt_corrected", "stg.gain_rx", "stg.gain_tx", "stg.kt_read", "stg.kt_corrected", "stg.gain_rx", "stg.gain_tx",
"stg.filename_BS_raw_data", "stg.path_BS_raw_data",
"stg.BS_raw_data", "stg.time", "stg.depth", "stg.BS_raw_data", "stg.time", "stg.depth",
"stg.BS_raw_data_reshape", "stg.time_reshape", "stg.depth_reshape"] "stg.BS_raw_data_reshape", "stg.time_reshape", "stg.depth_reshape"]
@ -1905,7 +1906,9 @@ class AcousticDataTab(QWidget):
stg.SNR_stream_bed.append(np.array([])) stg.SNR_stream_bed.append(np.array([]))
stg.time_noise.append(np.array([])) stg.time_noise.append(np.array([]))
stg.noise_method.append(0) stg.noise_method.append(0)
stg.noise_value.append(0)
stg.SNR_filter_value.append(0) stg.SNR_filter_value.append(0)
stg.Nb_cells_to_average_BS_signal.append(0)
stg.filename_BS_noise_data.append("") stg.filename_BS_noise_data.append("")
stg.path_BS_noise_data.append("") stg.path_BS_noise_data.append("")

File diff suppressed because it is too large Load Diff

View File

@ -23,7 +23,9 @@ BS_noise_raw_data = [] # BS noise raw data : BS signal listen
BS_noise_averaged_data = [] # BS noise raw data averaged (array has the same shape than BS_raw_data shape) BS_noise_averaged_data = [] # BS noise raw data averaged (array has the same shape than BS_raw_data shape)
noise_method = [] noise_method = []
noise_value = []
SNR_filter_value = [] SNR_filter_value = []
Nb_cells_to_average_BS_signal = []
date = [] date = []
date_noise = [] date_noise = []