From 17933c75f0ee8a4e220e1b0fc7bf78906cb5dcff Mon Sep 17 00:00:00 2001 From: Sebastian Wehling-Benatelli Date: Sat, 18 Jul 2015 15:59:42 +0200 Subject: [PATCH] file format for exporting event data is controlled by the extension used; this behavior is more convenient for a GUI driven file selection --- pylot/core/util/defaults.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pylot/core/util/defaults.py b/pylot/core/util/defaults.py index 1fde1c3a..b2bf2a6d 100644 --- a/pylot/core/util/defaults.py +++ b/pylot/core/util/defaults.py @@ -13,6 +13,6 @@ FILTERDEFAULTS = {'P': {'filtertype': None, 'order': 4, 'freq': [.5, 5]}} -OUTPUTFORMATS = {'QuakeML':'QUAKEML', - 'VelEst':'CNV', - 'NonLinLoc':'NLLOC_OBS'} +OUTPUTFORMATS = {'.xml':'QUAKEML', + '.cnv':'CNV', + '.obs':'NLLOC_OBS'}