From 2c3ad881f1eb43e4f13a53128260481e314743f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludger=20K=C3=BCperkoch?= Date: Thu, 2 Mar 2017 11:11:38 +0100 Subject: [PATCH] Updated for additional phase export. --- pylot/core/util/defaults.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pylot/core/util/defaults.py b/pylot/core/util/defaults.py index 0e69bb5d..53cee78e 100644 --- a/pylot/core/util/defaults.py +++ b/pylot/core/util/defaults.py @@ -8,7 +8,8 @@ Created on Wed Feb 26 12:31:25 2014 import os from pylot.core.loc import nll -from pylot.core.loc import hsat +from pylot.core.loc import hyposat +from pylot.core.loc import hypo71 from pylot.core.loc import velest @@ -55,7 +56,7 @@ OUTPUTFORMATS = {'.xml': 'QUAKEML', '.cnv': 'CNV', '.obs': 'NLLOC_OBS'} -LOCTOOLS = dict(nll=nll, hsat=hsat, velest=velest) +LOCTOOLS = dict(nll=nll, hyposat=hyposat, velest=velest, hypo71=hypo71) COMPPOSITION_MAP = dict(Z=2, N=1, E=0) COMPPOSITION_MAP['1'] = 1