[change] get comparison working with alparray/py3

This commit is contained in:
2017-08-16 15:13:55 +02:00
parent 8e6237a08d
commit 879282657a
3 changed files with 4 additions and 3 deletions

View File

@@ -248,7 +248,7 @@ class ProbabilityDensityFunction(object):
self._x = np.array(x)
@classmethod
def from_pick(self, lbound, barycentre, rbound, incr=0.001, decfact=0.01,
def from_pick(self, lbound, barycentre, rbound, incr=0.1, decfact=0.01,
type='exp'):
'''
Initialize a new ProbabilityDensityFunction object.

View File

@@ -127,7 +127,7 @@ class ComparisonDialog(QDialog):
phasesComboBox=None,
histCheckBox=None)
self._phases = 'PS'
self._plotprops = dict(station=self.stations[0], phase=self.phases[0])
self._plotprops = dict(station=list(self.stations)[0], phase=list(self.phases)[0])
super(ComparisonDialog, self).__init__(parent)
self.setupUI()
self.plotcomparison()