##// END OF EJS Templates
SpectraPlot.py:...
Victor Sarmiento -
r63:d3ce6a17a0b7
parent child
Show More
@@ -129,7 +129,11 class Spectrum():
129
129
130 data = 10.*numpy.log10(self.m_Spectra.data_spc)
130 data = 10.*numpy.log10(self.m_Spectra.data_spc)
131
131
132 nX, nY, nChan = numpy.shape(data)
132 #data.shape = Channels x Heights x Profiles
133 data = numpy.transpose( data, (0,2,1) )
134 #data.shape = Channels x Profiles x Heights
135
136 nChan, nX, nY = numpy.shape(data)
133
137
134 x = numpy.arange(nX)
138 x = numpy.arange(nX)
135 y = self.m_Spectra.heights
139 y = self.m_Spectra.heights
General Comments 0
You need to be logged in to leave comments. Login now