From dc8222129612e36ded6f09916aad80e4f7fb262f 2013-02-27 21:52:36 From: Daniel Valdez Date: 2013-02-27 21:52:36 Subject: [PATCH] Se corrige bug en el Filtro por Alturas --- diff --git a/schainpy/model/jroprocessing.py b/schainpy/model/jroprocessing.py index 72b5ec3..9d2e9ca 100644 --- a/schainpy/model/jroprocessing.py +++ b/schainpy/model/jroprocessing.py @@ -366,7 +366,7 @@ class VoltageProc(ProcessingUnit): buffer = buffer.reshape(self.dataOut.data.shape[0],self.dataOut.data.shape[1]/window,window) buffer = numpy.sum(buffer,2) self.dataOut.data = buffer - self.dataOut.heightList = numpy.arange(self.dataOut.heightList[0],newdelta*self.dataOut.nHeights/window-newdelta,newdelta) + self.dataOut.heightList = numpy.arange(self.dataOut.heightList[0],newdelta*self.dataOut.nHeights/window,newdelta) self.dataOut.windowOfFilter = window def deFlip(self):