From a95dc414d095c667f29906bbd6b1d82164ae4ec8 2012-12-02 07:48:50 From: Miguel Valdez Date: 2012-12-02 07:48:50 Subject: [PATCH] Bux fixed: El calculo del intervalo del tiempo ahora incluye el numero de puntos de FFT --- diff --git a/schainpy/model/jroprocessing.py b/schainpy/model/jroprocessing.py index f7b0326..8586126 100644 --- a/schainpy/model/jroprocessing.py +++ b/schainpy/model/jroprocessing.py @@ -831,6 +831,6 @@ class IncohInt(Operation): dataOut.data_spc = avgdata dataOut.nIncohInt *= self.n dataOut.utctime = avgdatatime - dataOut.timeInterval = dataOut.ippSeconds * dataOut.nCohInt * dataOut.nIncohInt + dataOut.timeInterval = dataOut.ippSeconds * dataOut.nCohInt * dataOut.nIncohInt * dataOut.nFFTPoints dataOut.flagNoData = False \ No newline at end of file