@@ -321,7 +321,7 class RTIPlot(Figure): | |||||
321 | self.setWinTitle(title) |
|
321 | self.setWinTitle(title) | |
322 |
|
322 | |||
323 | for i in range(self.nplots): |
|
323 | for i in range(self.nplots): | |
324 | title = "Channel %d: %s" %(dataOut.channelList[i], thisDatetime.strftime("%d-%b-%Y %H:%M:%S")) |
|
324 | title = "Channel %d: %s" %(dataOut.channelList[i]+1, thisDatetime.strftime("%d-%b-%Y %H:%M:%S")) | |
325 | axes = self.axesList[i*self.__nsubplots] |
|
325 | axes = self.axesList[i*self.__nsubplots] | |
326 | zdB = avgdB[i].reshape((1,-1)) |
|
326 | zdB = avgdB[i].reshape((1,-1)) | |
327 | axes.pcolorbuffer(x, y, zdB, |
|
327 | axes.pcolorbuffer(x, y, zdB, | |
@@ -484,7 +484,7 class SpectraPlot(Figure): | |||||
484 | self.setWinTitle(title) |
|
484 | self.setWinTitle(title) | |
485 |
|
485 | |||
486 | for i in range(self.nplots): |
|
486 | for i in range(self.nplots): | |
487 | title = "Channel %d: %4.2fdB" %(dataOut.channelList[i], noisedB[i]) |
|
487 | title = "Channel %d: %4.2fdB" %(dataOut.channelList[i]+1, noisedB[i]) | |
488 | axes = self.axesList[i*self.__nsubplots] |
|
488 | axes = self.axesList[i*self.__nsubplots] | |
489 | axes.pcolor(x, y, zdB[i,:,:], |
|
489 | axes.pcolor(x, y, zdB[i,:,:], | |
490 | xmin=xmin, xmax=xmax, ymin=ymin, ymax=ymax, zmin=zmin, zmax=zmax, |
|
490 | xmin=xmin, xmax=xmax, ymin=ymin, ymax=ymax, zmin=zmin, zmax=zmax, |
General Comments 0
You need to be logged in to leave comments.
Login now