Skip to content

Commit

Permalink
[Version 0.2.3] Minor Fix
Browse files Browse the repository at this point in the history
- Changed the behavior of the V2H flag, to avoid rare errors which did not permit manual filtering.
  • Loading branch information
ispingos committed Mar 9, 2021
1 parent a59b842 commit e72338e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pytheas/pytheas.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@

global VERSION
global VERDATE
VERSION="0.2.2"
VERDATE="04/09/2020"
VERSION="0.2.3"
VERDATE="09/03/2021"

## first get script's path
import os
Expand Down Expand Up @@ -1580,7 +1580,7 @@ def updateFig(self,center=True,keepAxisLimits=False):
vert.filter(type="bandpass",freqmin=self.freqmin,freqmax=self.freqmax,zerophase=True,corners=4)
nort.filter(type="bandpass",freqmin=self.freqmin,freqmax=self.freqmax,zerophase=True,corners=4)
east.filter(type="bandpass",freqmin=self.freqmin,freqmax=self.freqmax,zerophase=True,corners=4)
self.V2H=np.asarray(self.calcV2H(self.sPick))
self.V2H = self.calcV2H(self.sPick)
# get relative times
tV=vert.times(type="relative")
tN=nort.times(type="relative")
Expand Down

0 comments on commit e72338e

Please sign in to comment.