Skip to content
Snippets Groups Projects
Commit b4ade415 authored by Lan Dam's avatar Lan Dam
Browse files

fix bug that call combine_data for RT130's soh_data because it make logIdx disappeared

parent 661b71b1
No related branches found
No related tags found
1 merge request!159Correct clicking data point for info
...@@ -367,12 +367,8 @@ class GeneralData(): ...@@ -367,12 +367,8 @@ class GeneralData():
for key in self.keys: for key in self.keys:
combine_data(key, self.waveform_data, self.gap_minimum) combine_data(key, self.waveform_data, self.gap_minimum)
combine_data(key, self.mass_pos_data, self.gap_minimum) combine_data(key, self.mass_pos_data, self.gap_minimum)
try: if self.__class__.__name__ == "MSeed":
combine_data(key, self.soh_data, self.gap_minimum) combine_data(key, self.soh_data, self.gap_minimum)
except KeyError:
# Reftek's SOH trace doesn't have startTmEpoch and
# actually soh_data consists of only one trace
pass
def retrieve_gaps_from_data_dicts(self): def retrieve_gaps_from_data_dicts(self):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment