From 827a07a7ef652c9ba8417a3d89460070625c8b66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludger=20K=C3=BCperkoch?= Date: Fri, 28 Aug 2015 11:31:19 +0200 Subject: [PATCH] Skipped restitution of entire traces at the beginning of processing as this is too time consuming. Instead, only traces are corrected within autopickstation, where at least automatically a P pick has been set. --- autoPyLoT.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/autoPyLoT.py b/autoPyLoT.py index c4e941ea..3084f1ad 100755 --- a/autoPyLoT.py +++ b/autoPyLoT.py @@ -70,8 +70,6 @@ def autoPyLoT(inputfile): # get path to inventory or dataless-seed file with station meta data invdir = parameter.getParam('invdir') - # get corner frequencies for pre-filtering traces - prefilt = parameter.getParam('prefilt') # multiple event processing # read each event in database @@ -83,8 +81,6 @@ def autoPyLoT(inputfile): print data wfdat = data.getWFData() # all available streams - # restitute waveform data getting responses from inventory-file - wfdat = data.restituteWFData(invdir, prefilt) ########################################################## # !automated picking starts here! picks = autopickevent(wfdat, parameter) @@ -100,8 +96,6 @@ def autoPyLoT(inputfile): print data wfdat = data.getWFData() # all available streams - # restitute waveform data getting responses from inventory-file - wfdat = data.restituteWFData(invdir, prefilt) ########################################################## # !automated picking starts here! picks = autopickevent(wfdat, parameter)