From d4bf29e4ff2109333938653da5899b63a4ef40e8 Mon Sep 17 00:00:00 2001 From: Sebastian Wehling-Benatelli Date: Mon, 27 Oct 2014 12:10:35 +0100 Subject: [PATCH] avoid using python keywords as format as variable name; empty method definition for data plotting --- pylot/core/read/data.py | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/pylot/core/read/data.py b/pylot/core/read/data.py index c62bb4fe..4c3a0137 100644 --- a/pylot/core/read/data.py +++ b/pylot/core/read/data.py @@ -12,7 +12,7 @@ class Data(object): ''' Data container class providing ObSpy-Stream and -Event instances as variables. - + :type parent: PySide.QtGui.QWidget object, optional :param parent: A PySide.QtGui.QWidget class utilized when called by a GUI to display a PySide.QtGui.QMessageBox instead of printing @@ -46,25 +46,35 @@ class Data(object): else: self.evtdata = Event() - def exportEvent(self, fnout=None, format='QUAKEML'): + def exportEvent(self, fnout=None, evtformat='QUAKEML'): if fnout is None: fnout = self.event.resource_id.__str__().split('/')[-1] # handle forbidden filenames especially on windows systems fnout = fnConstructor(fnout) - format = format.upper().strip() + evtformat = evtformat.upper().strip() # export event to QuakeML or JSON via ObsPy - if format in 'QUAKEML' or 'JSON': + if evtformat in 'QUAKEML' or 'JSON': cat = Catalog() cat.append(self.event) - cat.write(fnout + format.lower(), format=format) - + cat.write(fnout + evtformat.lower(), format=evtformat) + # export event to VelEst format - if format in 'VELEST': + if evtformat in 'VELEST': + ''' + Test whether the station code is longer than 4 digits. + If that is the case a warning should be displayed explaining that + VelEst can only handle 4 digit stationcodes. Thus, the leading too + much digits will be skipped, e.g. "STS12" becomes "TS12" + ''' pass + def plotData(self, widget): + + pass #axes = widget.axes + class GenericDataStructure(object): '''