From 09578ea8c29c2f94e56ab92a86aff0db81ad4f41 2014-10-20 10:28:29 From: Daniel Valdez Date: 2014-10-20 10:28:29 Subject: [PATCH] The RTI for Spectra-1d Plot shows the normalized power. --- diff --git a/schainpy/model/graphics/jroplot_heispectra.py b/schainpy/model/graphics/jroplot_heispectra.py index 8ad3844..03b88a9 100644 --- a/schainpy/model/graphics/jroplot_heispectra.py +++ b/schainpy/model/graphics/jroplot_heispectra.py @@ -244,8 +244,8 @@ class RTIfromSpectraHeis(Figure): x = dataOut.getTimeRange() y = dataOut.getHeiRange() - - data = dataOut.data_spc + factor = dataOut.normFactor + data = dataOut.data_spc / factor data = numpy.average(data,axis=1) datadB = 10*numpy.log10(data)