From dbd53024b2979b8182b38094ea78d29aafd55728 Mon Sep 17 00:00:00 2001 From: Sebastian Wehling-Benatelli Date: Mon, 26 Jan 2015 21:08:07 +0100 Subject: [PATCH] new module: make selection of either data structure easier --- pylot/core/util/structure.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pylot/core/util/structure.py diff --git a/pylot/core/util/structure.py b/pylot/core/util/structure.py new file mode 100644 index 00000000..36e35b60 --- /dev/null +++ b/pylot/core/util/structure.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +Created on Wed Jan 26 17:47:25 2015 + +@author: sebastianw +""" + +from pylot.core.read import SeiscompDataStructure, PilotDataStructure + +DATASTRUCTURE = {'PILOT':PilotDataStructure, 'SeisComP':SeiscompDataStructure}