pylot/pylot/core/util/structure.py
Sebastian Wehling-Benatelli ea976295d0 huge structural rearrangement to resolve circular import problems
[add] new feature added to QtPyLoT capable of automatically picking an event from overview window
2015-07-10 09:22:58 +02:00

13 lines
298 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on Wed Jan 26 17:47:25 2015
@author: sebastianw
"""
from pylot.core.read.data import SeiscompDataStructure, PilotDataStructure
DATASTRUCTURE = {'PILOT': PilotDataStructure, 'SeisComP': SeiscompDataStructure,
None: None}