From 19566715a7129f260efdc49959068cbded4e64e3 Mon Sep 17 00:00:00 2001 From: Darius Arnold Date: Mon, 21 Aug 2017 13:16:22 +0200 Subject: [PATCH] [add] tune autopicker displays picked onset time and error in seconds --- pylot/core/pick/autopick.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pylot/core/pick/autopick.py b/pylot/core/pick/autopick.py index c5ec5d78..0b60f4f7 100644 --- a/pylot/core/pick/autopick.py +++ b/pylot/core/pick/autopick.py @@ -499,6 +499,8 @@ def autopickstation(wfstream, pickparam, verbose=False, SNRPdB, FM) print(msg) + msg = 'autopickstation: Refined P-Pick: {} s | P-Error: {} s'.format(mpickP, Perror) + print(msg) Sflag = 1 else: @@ -759,6 +761,9 @@ def autopickstation(wfstream, pickparam, verbose=False, lpickS = lpick[ipick] Serror = pickerr[ipick] + msg = 'autopickstation: Refined S-Pick: {} s | S-Error: {} s'.format(mpickS, Serror) + print(msg) + # get SNR [SNRS, SNRSdB, Snoiselevel] = getSNR(h_copy, tsnrh, mpickS)