Implemted writephases.py.
This commit is contained in:
parent
c0ca788c5c
commit
7029c0b576
18
autoPyLoT.py
18
autoPyLoT.py
@ -12,6 +12,7 @@ from pylot.core.read.data import Data
|
|||||||
from pylot.core.read.inputs import AutoPickParameter
|
from pylot.core.read.inputs import AutoPickParameter
|
||||||
from pylot.core.util.structure import DATASTRUCTURE
|
from pylot.core.util.structure import DATASTRUCTURE
|
||||||
from pylot.core.pick.autopick import autopickevent
|
from pylot.core.pick.autopick import autopickevent
|
||||||
|
from pylot.core.pick.utils import writephases
|
||||||
from pylot.core.util.version import get_git_version as _getVersionString
|
from pylot.core.util.version import get_git_version as _getVersionString
|
||||||
|
|
||||||
__version__ = _getVersionString()
|
__version__ = _getVersionString()
|
||||||
@ -70,6 +71,13 @@ 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 path and name of phase file
|
||||||
|
phasefile = parameter.getParam('phasefile')
|
||||||
|
# get path and name of NLLoc-control file
|
||||||
|
locfile = parameter.getparam('locfile')
|
||||||
|
# path and pattern of NLLoc ttimes from location grid
|
||||||
|
ttpattern = parameter.getparam('ttpattern')
|
||||||
|
|
||||||
|
|
||||||
# multiple event processing
|
# multiple event processing
|
||||||
# read each event in database
|
# read each event in database
|
||||||
@ -85,6 +93,9 @@ def autoPyLoT(inputfile):
|
|||||||
# !automated picking starts here!
|
# !automated picking starts here!
|
||||||
picks = autopickevent(wfdat, parameter)
|
picks = autopickevent(wfdat, parameter)
|
||||||
|
|
||||||
|
# write phases to NLLoc-phase file
|
||||||
|
writephases(picks, 'NLLoc', phasefile)
|
||||||
|
|
||||||
print '------------------------------------------'
|
print '------------------------------------------'
|
||||||
print '-----Finished event %s!-----' % event
|
print '-----Finished event %s!-----' % event
|
||||||
print '------------------------------------------'
|
print '------------------------------------------'
|
||||||
@ -100,6 +111,13 @@ def autoPyLoT(inputfile):
|
|||||||
# !automated picking starts here!
|
# !automated picking starts here!
|
||||||
picks = autopickevent(wfdat, parameter)
|
picks = autopickevent(wfdat, parameter)
|
||||||
|
|
||||||
|
# write phases to NLLoc-phase file
|
||||||
|
writephases(picks, 'NLLoc', phasefile)
|
||||||
|
|
||||||
|
# create comment line for NLLoc-control file
|
||||||
|
locfiles = printf('LOCFILES %s NLLOC_OBS %s %s 0' % (phasefile, ttpattern, NLLocoutfile))
|
||||||
|
|
||||||
|
|
||||||
print '------------------------------------------'
|
print '------------------------------------------'
|
||||||
print '-------Finished event %s!-------' % parameter.getParam('eventID')
|
print '-------Finished event %s!-------' % parameter.getParam('eventID')
|
||||||
print '------------------------------------------'
|
print '------------------------------------------'
|
||||||
|
Loading…
Reference in New Issue
Block a user