From 97ca69a07d2da605a196e6097fcf6975edda7147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludger=20K=C3=BCperkoch?= Date: Wed, 11 May 2016 09:54:33 +0200 Subject: [PATCH] Modified for controlling amount of terminal output using new input parameter apverbose --- pylot/core/pick/autopick.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pylot/core/pick/autopick.py b/pylot/core/pick/autopick.py index 9879feb7..3edbea9c 100755 --- a/pylot/core/pick/autopick.py +++ b/pylot/core/pick/autopick.py @@ -31,6 +31,7 @@ def autopickevent(data, param): wdttolerance = param.get('wdttolerance') mdttolerance = param.get('mdttolerance') iplot = param.get('iplot') + apverbose = param.get('apverbose') for n in range(len(data)): station = data[n].stats.station if station not in stations: @@ -40,7 +41,7 @@ def autopickevent(data, param): for station in stations: topick = data.select(station=station) - all_onsets[station] = autopickstation(topick, param) + all_onsets[station] = autopickstation(topick, param, verbose=apverbose) # quality control # median check and jackknife on P-onset times