@@ -87,7 +87,7 class CrossSpectraPlot(Figure): | |||
|
87 | 87 | if len(pairsIndexList) > 4: |
|
88 | 88 | pairsIndexList = pairsIndexList[0:4] |
|
89 | 89 | |
|
90 |
x = dataOut.get |
|
|
90 | x = dataOut.getVelRange(1) | |
|
91 | 91 | y = dataOut.getHeiRange() |
|
92 | 92 | z = 10.*numpy.log10(dataOut.data_spc[:,:,:]) |
|
93 | 93 | z = numpy.where(numpy.isfinite(z), z, numpy.NAN) |
@@ -156,7 +156,7 class CrossSpectraPlot(Figure): | |||
|
156 | 156 | axes0.pcolor(x, y, phase, |
|
157 | 157 | xmin=xmin, xmax=xmax, ymin=ymin, ymax=ymax, zmin=-180, zmax=180, |
|
158 | 158 | xlabel=xlabel, ylabel=ylabel, title=title, |
|
159 | ticksize=9, cblabel='', colormap='RdBu') | |
|
159 | ticksize=9, cblabel='', colormap='RdBu_r') | |
|
160 | 160 | |
|
161 | 161 | |
|
162 | 162 | |
@@ -181,7 +181,7 class RTIPlot(Figure): | |||
|
181 | 181 | |
|
182 | 182 | def __init__(self): |
|
183 | 183 | |
|
184 |
self.timerange = 2 |
|
|
184 | self.timerange = 2*60*60 | |
|
185 | 185 | self.__isConfig = False |
|
186 | 186 | self.__nsubplots = 1 |
|
187 | 187 | |
@@ -681,7 +681,7 class CoherenceMap(Figure): | |||
|
681 | 681 | PREFIX = 'coherencemap' |
|
682 | 682 | |
|
683 | 683 | def __init__(self): |
|
684 |
self.timerange = 2 |
|
|
684 | self.timerange = 2*60*60 | |
|
685 | 685 | self.__isConfig = False |
|
686 | 686 | self.__nsubplots = 1 |
|
687 | 687 |
General Comments 0
You need to be logged in to leave comments.
Login now