1 | import copy |
---|
2 | import numpy |
---|
3 | import pylab |
---|
4 | |
---|
5 | from PyQt4 import QtGui |
---|
6 | |
---|
7 | DEFAULT_CMAP = pylab.cm.jet |
---|
8 | |
---|
9 | import sas.qtgui.PlotUtilities as PlotUtilities |
---|
10 | from sas.qtgui.PlotterBase import PlotterBase |
---|
11 | from mpl_toolkits.mplot3d import Axes3D |
---|
12 | |
---|
13 | # Minimum value of Z for which we will present data. |
---|
14 | MIN_Z=-32 |
---|
15 | |
---|
16 | class Plotter2DWidget(PlotterBase): |
---|
17 | """ |
---|
18 | 2D Plot widget for use with a QDialog |
---|
19 | """ |
---|
20 | def __init__(self, parent=None, manager=None, quickplot=False, dimension=2): |
---|
21 | self.dimension = dimension |
---|
22 | super(Plotter2DWidget, self).__init__(parent, manager=manager, quickplot=quickplot) |
---|
23 | |
---|
24 | @property |
---|
25 | def data(self): |
---|
26 | return self._data |
---|
27 | |
---|
28 | @data.setter |
---|
29 | def data(self, data=None): |
---|
30 | """ data setter """ |
---|
31 | self._data = data |
---|
32 | self.qx_data = data.qx_data |
---|
33 | self.qy_data = data.qy_data |
---|
34 | self.xmin = data.xmin |
---|
35 | self.xmax = data.xmax |
---|
36 | self.ymin = data.ymin |
---|
37 | self.ymax = data.ymax |
---|
38 | self.zmin = data.zmin |
---|
39 | self.zmax = data.zmax |
---|
40 | self.label = data.name |
---|
41 | self.xLabel = "%s(%s)"%(data._xaxis, data._xunit) |
---|
42 | self.yLabel = "%s(%s)"%(data._yaxis, data._yunit) |
---|
43 | self.title(title=data.title) |
---|
44 | |
---|
45 | def plot(self, marker=None, linestyle=None): |
---|
46 | """ |
---|
47 | Plot 2D self._data |
---|
48 | """ |
---|
49 | # Toggle the scale |
---|
50 | zmin_2D_temp = self.zmin |
---|
51 | zmax_2D_temp = self.zmax |
---|
52 | # self.scale predefined in the baseclass |
---|
53 | if self.scale == 'log_{10}': |
---|
54 | self.scale = 'linear' |
---|
55 | if not self.zmin is None: |
---|
56 | zmin_2D_temp = numpy.power(10, self.zmin) |
---|
57 | if not self.zmax is None: |
---|
58 | zmax_2D_temp = numpy.power(10, self.zmax) |
---|
59 | else: |
---|
60 | self.scale = 'log_{10}' |
---|
61 | if not self.zmin is None: |
---|
62 | # min log value: no log(negative) |
---|
63 | if self.zmin <= 0: |
---|
64 | zmin_2D_temp = MIN_Z |
---|
65 | else: |
---|
66 | zmin_2D_temp = numpy.log10(self.zmin) |
---|
67 | if not self.zmax is None: |
---|
68 | zmax_2D_temp = numpy.log10(self.zmax) |
---|
69 | |
---|
70 | # Prepare and show the plot |
---|
71 | self.showPlot(data=self.data.data, |
---|
72 | qx_data=self.qx_data, |
---|
73 | qy_data=self.qy_data, |
---|
74 | xmin=self.xmin, |
---|
75 | xmax=self.xmax, |
---|
76 | ymin=self.ymin, ymax=self.ymax, |
---|
77 | cmap=self.cmap, zmin=zmin_2D_temp, |
---|
78 | zmax=zmax_2D_temp) |
---|
79 | |
---|
80 | def contextMenu(self): |
---|
81 | """ |
---|
82 | Define common context menu and associated actions for the MPL widget |
---|
83 | """ |
---|
84 | self.defaultContextMenu() |
---|
85 | |
---|
86 | def contextMenuQuickPlot(self): |
---|
87 | """ |
---|
88 | Define context menu and associated actions for the quickplot MPL widget |
---|
89 | """ |
---|
90 | self.defaultContextMenu() |
---|
91 | |
---|
92 | if self.dimension == 2: |
---|
93 | self.actionToggleGrid = self.contextMenu.addAction("Toggle Grid On/Off") |
---|
94 | self.contextMenu.addSeparator() |
---|
95 | self.actionChangeScale = self.contextMenu.addAction("Toggle Linear/Log Scale") |
---|
96 | |
---|
97 | # Define the callbacks |
---|
98 | self.actionChangeScale.triggered.connect(self.onToggleScale) |
---|
99 | if self.dimension == 2: |
---|
100 | self.actionToggleGrid.triggered.connect(self.onGridToggle) |
---|
101 | |
---|
102 | def onToggleScale(self, event): |
---|
103 | """ |
---|
104 | Toggle axis and replot image |
---|
105 | """ |
---|
106 | self.plot() |
---|
107 | |
---|
108 | def showPlot(self, data, qx_data, qy_data, xmin, xmax, ymin, ymax, |
---|
109 | zmin, zmax, color=0, symbol=0, markersize=0, |
---|
110 | label='data2D', cmap=DEFAULT_CMAP): |
---|
111 | """ |
---|
112 | Render and show the current data |
---|
113 | """ |
---|
114 | self.qx_data = qx_data |
---|
115 | self.qy_data = qy_data |
---|
116 | self.xmin = xmin |
---|
117 | self.xmax = xmax |
---|
118 | self.ymin = ymin |
---|
119 | self.ymax = ymax |
---|
120 | self.zmin = zmin |
---|
121 | self.zmax = zmax |
---|
122 | # If we don't have any data, skip. |
---|
123 | if data is None: |
---|
124 | return |
---|
125 | if data.ndim == 1: |
---|
126 | output = PlotUtilities.build_matrix(data, self.qx_data, self.qy_data) |
---|
127 | else: |
---|
128 | output = copy.deepcopy(data) |
---|
129 | |
---|
130 | zmin_temp = self.zmin |
---|
131 | # check scale |
---|
132 | if self.scale == 'log_{10}': |
---|
133 | try: |
---|
134 | if self.zmin <= 0 and len(output[output > 0]) > 0: |
---|
135 | zmin_temp = self.zmin_2D |
---|
136 | output[output > 0] = numpy.log10(output[output > 0]) |
---|
137 | elif self.zmin <= 0: |
---|
138 | zmin_temp = self.zmin |
---|
139 | output[output > 0] = numpy.zeros(len(output)) |
---|
140 | output[output <= 0] = MIN_Z |
---|
141 | else: |
---|
142 | zmin_temp = self.zmin |
---|
143 | output[output > 0] = numpy.log10(output[output > 0]) |
---|
144 | except: |
---|
145 | #Too many problems in 2D plot with scale |
---|
146 | output[output > 0] = numpy.log10(output[output > 0]) |
---|
147 | pass |
---|
148 | |
---|
149 | self.cmap = cmap |
---|
150 | if self.dimension != 3: |
---|
151 | #Re-adjust colorbar |
---|
152 | self.figure.subplots_adjust(left=0.2, right=.8, bottom=.2) |
---|
153 | |
---|
154 | im = self.ax.imshow(output, interpolation='nearest', |
---|
155 | origin='lower', |
---|
156 | vmin=zmin_temp, vmax=self.zmax, |
---|
157 | cmap=self.cmap, |
---|
158 | extent=(self.xmin, self.xmax, |
---|
159 | self.ymin, self.ymax)) |
---|
160 | |
---|
161 | cbax = self.figure.add_axes([0.84, 0.2, 0.02, 0.7]) |
---|
162 | |
---|
163 | # Current labels for axes |
---|
164 | self.ax.set_ylabel(self.y_label) |
---|
165 | self.ax.set_xlabel(self.x_label) |
---|
166 | |
---|
167 | # Title only for regular charts |
---|
168 | if not self.quickplot: |
---|
169 | self.ax.set_title(label=self._title) |
---|
170 | |
---|
171 | if cbax is None: |
---|
172 | ax.set_frame_on(False) |
---|
173 | cb = self.figure.colorbar(im, shrink=0.8, aspect=20) |
---|
174 | else: |
---|
175 | cb = self.figure.colorbar(im, cax=cbax) |
---|
176 | |
---|
177 | cb.update_bruteforce(im) |
---|
178 | cb.set_label('$' + self.scale + '$') |
---|
179 | |
---|
180 | else: |
---|
181 | # clear the previous 2D from memory |
---|
182 | self.figure.clear() |
---|
183 | |
---|
184 | self.figure.subplots_adjust(left=0.1, right=.8, bottom=.1) |
---|
185 | |
---|
186 | X = self._data.x_bins[0:-1] |
---|
187 | Y = self._data.y_bins[0:-1] |
---|
188 | X, Y = numpy.meshgrid(X, Y) |
---|
189 | |
---|
190 | ax = Axes3D(self.figure) |
---|
191 | #cbax = self.figure.add_axes([0.84, 0.1, 0.02, 0.8]) |
---|
192 | |
---|
193 | # Disable rotation for large sets. |
---|
194 | # TODO: Define "large" for a dataset |
---|
195 | SET_TOO_LARGE = 500 |
---|
196 | if len(X) > SET_TOO_LARGE: |
---|
197 | ax.disable_mouse_rotation() |
---|
198 | |
---|
199 | self.figure.canvas.resizing = False |
---|
200 | im = ax.plot_surface(X, Y, output, rstride=1, cstride=1, cmap=cmap, |
---|
201 | linewidth=0, antialiased=False) |
---|
202 | self.ax.set_axis_off() |
---|
203 | |
---|
204 | if self.dimension != 3: |
---|
205 | self.figure.canvas.draw_idle() |
---|
206 | else: |
---|
207 | self.figure.canvas.draw() |
---|
208 | |
---|
209 | class Plotter2D(QtGui.QDialog, Plotter2DWidget): |
---|
210 | def __init__(self, parent=None, quickplot=False, dimension=2): |
---|
211 | |
---|
212 | QtGui.QDialog.__init__(self) |
---|
213 | Plotter2DWidget.__init__(self, manager=parent, quickplot=quickplot, dimension=dimension) |
---|
214 | icon = QtGui.QIcon() |
---|
215 | icon.addPixmap(QtGui.QPixmap(":/res/ball.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off) |
---|
216 | self.setWindowIcon(icon) |
---|