##// END OF EJS Templates
PPI Plot fixed to clockwise
rflores -
r1453:4e2472cf7118
parent child
Show More
@@ -1194,10 +1194,12 class Weather_vRF_Plot(Plot):
1194 if ax.firsttime:
1194 if ax.firsttime:
1195 ax.set_xlim(numpy.radians(self.ang_min),numpy.radians(self.ang_max))
1195 ax.set_xlim(numpy.radians(self.ang_min),numpy.radians(self.ang_max))
1196 ax.plt = ax.pcolormesh(theta, r, z, cmap=self.colormap, vmin=self.zmin, vmax=self.zmax)
1196 ax.plt = ax.pcolormesh(theta, r, z, cmap=self.colormap, vmin=self.zmin, vmax=self.zmax)
1197 ax.set_theta_direction(-1)
1197
1198
1198 else:
1199 else:
1199 ax.set_xlim(numpy.radians(self.ang_min),numpy.radians(self.ang_max))
1200 ax.set_xlim(numpy.radians(self.ang_min),numpy.radians(self.ang_max))
1200 ax.plt = ax.pcolormesh(theta, r, z, cmap=self.colormap, vmin=self.zmin, vmax=self.zmax)
1201 ax.plt = ax.pcolormesh(theta, r, z, cmap=self.colormap, vmin=self.zmin, vmax=self.zmax)
1202 ax.set_theta_direction(-1)
1201
1203
1202 ax.grid(True)
1204 ax.grid(True)
1203
1205
@@ -4996,6 +4996,7 class Block360_vRF4(Operation):
4996 dataOut.data_ele = data_e
4996 dataOut.data_ele = data_e
4997 dataOut.utctime = avgdatatime
4997 dataOut.utctime = avgdatatime
4998 dataOut.flagNoData = False
4998 dataOut.flagNoData = False
4999 print("********************attr_data********************",attr_data)
4999 #print(data_360.shape)
5000 #print(data_360.shape)
5000 #print(dataOut.heightList)
5001 #print(dataOut.heightList)
5001
5002
General Comments 0
You need to be logged in to leave comments. Login now