From 749e42b7785d1687eaeeceae5a695024a50efc84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludger=20K=C3=BCperkoch?= Date: Thu, 2 Mar 2017 11:10:28 +0100 Subject: [PATCH] Implemented additional phase output formated for hypoDD. --- autoPyLoT.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autoPyLoT.py b/autoPyLoT.py index 2fbb83f2..cc5d04fd 100755 --- a/autoPyLoT.py +++ b/autoPyLoT.py @@ -13,6 +13,7 @@ from obspy import read_events import pylot.core.loc.hyposat as hyposat import pylot.core.loc.hypo71 as hypo71 import pylot.core.loc.velest as velest +import pylot.core.loc.hypodd as hypodd import pylot.core.loc.nll as nll from pylot.core.analysis.magnitude import MomentMagnitude, RichterMagnitude from pylot.core.io.data import Data @@ -238,6 +239,9 @@ def autoPyLoT(inputfile): # VELEST velestfile = '%s/autoPyLoT_VELEST_phases.cnv' % event velest.export(picks, velestfile, parameter, evt) + # hypoDD + hypoddfile = '%s/autoPyLoT_hypoDD_phases.pha' % event + hypodd.export(picks, hypoddfile, parameter, evt) # ObsPy event object data.applyEVTData(picks) if evt is not None: