[adresses #190] read information on the picker if available

This commit is contained in:
Sebastian Wehling-Benatelli 2016-03-29 08:47:03 +02:00
parent a1c79b554a
commit 040c21dc13

View File

@ -746,6 +746,10 @@ class MainWindow(QMainWindow):
phase['epp'] = epp phase['epp'] = epp
phase['lpp'] = lpp phase['lpp'] = lpp
phase['spe'] = spe phase['spe'] = spe
try:
phase['picker'] = str(pick.method_id).split('/')[1]
except IndexError:
pass
onsets[pick.phase_hint] = phase.copy() onsets[pick.phase_hint] = phase.copy()
picks[station] = onsets.copy() picks[station] = onsets.copy()