Added component splitting also for channels 1 and 2.

This commit is contained in:
Ludger Küperkoch 2015-06-02 13:46:10 +02:00
parent 0dce58ede4
commit b0acee7136

View File

@ -17,6 +17,7 @@ from pylot.core.pick.Picker import *
from pylot.core.pick.CharFuns import * from pylot.core.pick.CharFuns import *
from pylot.core.pick import utils from pylot.core.pick import utils
def run_autopicking(wfstream, pickparam): def run_autopicking(wfstream, pickparam):
''' '''
@ -83,7 +84,11 @@ def run_autopicking(wfstream, pickparam):
# split components # split components
zdat = wfstream.select(component="Z") zdat = wfstream.select(component="Z")
edat = wfstream.select(component="E") edat = wfstream.select(component="E")
if len(edat) == 0: #check for other components
edat = wfstream.select(component="2")
ndat = wfstream.select(component="N") ndat = wfstream.select(component="N")
if len(ndat) == 0: #check for other components
ndat = wfstream.select(component="1")
if algoP == 'HOS' or algoP == 'ARZ' and zdat is not None: if algoP == 'HOS' or algoP == 'ARZ' and zdat is not None:
print '##########################################' print '##########################################'