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.

This commit is contained in:
Ludger Küperkoch 2015-08-28 11:31:19 +02:00
parent 533ccc7b5c
commit 827a07a7ef

View File

@ -70,8 +70,6 @@ def autoPyLoT(inputfile):
# get path to inventory or dataless-seed file with station meta data # get path to inventory or dataless-seed file with station meta data
invdir = parameter.getParam('invdir') invdir = parameter.getParam('invdir')
# get corner frequencies for pre-filtering traces
prefilt = parameter.getParam('prefilt')
# multiple event processing # multiple event processing
# read each event in database # read each event in database
@ -83,8 +81,6 @@ def autoPyLoT(inputfile):
print data print data
wfdat = data.getWFData() # all available streams wfdat = data.getWFData() # all available streams
# restitute waveform data getting responses from inventory-file
wfdat = data.restituteWFData(invdir, prefilt)
########################################################## ##########################################################
# !automated picking starts here! # !automated picking starts here!
picks = autopickevent(wfdat, parameter) picks = autopickevent(wfdat, parameter)
@ -100,8 +96,6 @@ def autoPyLoT(inputfile):
print data print data
wfdat = data.getWFData() # all available streams wfdat = data.getWFData() # all available streams
# restitute waveform data getting responses from inventory-file
wfdat = data.restituteWFData(invdir, prefilt)
########################################################## ##########################################################
# !automated picking starts here! # !automated picking starts here!
picks = autopickevent(wfdat, parameter) picks = autopickevent(wfdat, parameter)