Merge branch 'develop' of ariadne.geophysik.ruhr-uni-bochum.de:/data/git/pylot into develop
This commit is contained in:
commit
44f19f02d8
18
autoPyLoT.py
18
autoPyLoT.py
@ -107,7 +107,7 @@ def autoPyLoT(inputfile):
|
|||||||
##########################################################
|
##########################################################
|
||||||
# !automated picking starts here!
|
# !automated picking starts here!
|
||||||
picks = autopickevent(wfdat, parameter)
|
picks = autopickevent(wfdat, parameter)
|
||||||
|
finalpicks = picks
|
||||||
##########################################################
|
##########################################################
|
||||||
# locating
|
# locating
|
||||||
if locflag == 1:
|
if locflag == 1:
|
||||||
@ -199,8 +199,11 @@ def autoPyLoT(inputfile):
|
|||||||
# write phase files for various location routines
|
# write phase files for various location routines
|
||||||
# HYPO71
|
# HYPO71
|
||||||
hypo71file = '%s/autoPyLoT_HYPO71.pha' % event
|
hypo71file = '%s/autoPyLoT_HYPO71.pha' % event
|
||||||
if finalpicks.getpicdic() is not None:
|
if hasattr(finalpicks, 'getpicdic'):
|
||||||
writephases(finalpicks.getpicdic(), 'HYPO71', hypo71file)
|
if finalpicks.getpicdic() is not None:
|
||||||
|
writephases(finalpicks.getpicdic(), 'HYPO71', hypo71file)
|
||||||
|
else:
|
||||||
|
writephases(picks, 'HYPO71', hypo71file)
|
||||||
else:
|
else:
|
||||||
writephases(picks, 'HYPO71', hypo71file)
|
writephases(picks, 'HYPO71', hypo71file)
|
||||||
|
|
||||||
@ -222,7 +225,7 @@ def autoPyLoT(inputfile):
|
|||||||
##########################################################
|
##########################################################
|
||||||
# !automated picking starts here!
|
# !automated picking starts here!
|
||||||
picks = autopickevent(wfdat, parameter)
|
picks = autopickevent(wfdat, parameter)
|
||||||
|
finalpicks = picks
|
||||||
##########################################################
|
##########################################################
|
||||||
# locating
|
# locating
|
||||||
if locflag == 1:
|
if locflag == 1:
|
||||||
@ -312,8 +315,11 @@ def autoPyLoT(inputfile):
|
|||||||
# write phase files for various location routines
|
# write phase files for various location routines
|
||||||
# HYPO71
|
# HYPO71
|
||||||
hypo71file = '%s/%s/autoPyLoT_HYPO71.pha' % (datapath, parameter.getParam('eventID'))
|
hypo71file = '%s/%s/autoPyLoT_HYPO71.pha' % (datapath, parameter.getParam('eventID'))
|
||||||
if finalpicks.getpicdic() is not None:
|
if hasattr(finalpicks, 'getpicdic'):
|
||||||
writephases(finalpicks.getpicdic(), 'HYPO71', hypo71file)
|
if finalpicks.getpicdic() is not None:
|
||||||
|
writephases(finalpicks.getpicdic(), 'HYPO71', hypo71file)
|
||||||
|
else:
|
||||||
|
writephases(picks, 'HYPO71', hypo71file)
|
||||||
else:
|
else:
|
||||||
writephases(picks, 'HYPO71', hypo71file)
|
writephases(picks, 'HYPO71', hypo71file)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user