@@ -1,661 +1,661 | |||
|
1 | 1 | import os |
|
2 | 2 | import numpy |
|
3 | 3 | import time, datetime |
|
4 | 4 | import mpldriver |
|
5 | 5 | |
|
6 | 6 | from schainpy.model.proc.jroproc_base import Operation |
|
7 | 7 | |
|
8 | 8 | def isTimeInHourRange(datatime, xmin, xmax): |
|
9 | 9 | |
|
10 | 10 | if xmin == None or xmax == None: |
|
11 | 11 | return 1 |
|
12 | 12 | hour = datatime.hour + datatime.minute/60.0 |
|
13 | 13 | |
|
14 | 14 | if xmin < (xmax % 24): |
|
15 | 15 | |
|
16 | 16 | if hour >= xmin and hour <= xmax: |
|
17 | 17 | return 1 |
|
18 | 18 | else: |
|
19 | 19 | return 0 |
|
20 | 20 | |
|
21 | 21 | else: |
|
22 | 22 | |
|
23 | 23 | if hour >= xmin or hour <= (xmax % 24): |
|
24 | 24 | return 1 |
|
25 | 25 | else: |
|
26 | 26 | return 0 |
|
27 | 27 | |
|
28 | 28 | return 0 |
|
29 | 29 | |
|
30 | 30 | def isRealtime(utcdatatime): |
|
31 | 31 | |
|
32 | 32 | utcnow = time.mktime(time.localtime()) |
|
33 | 33 | delta = abs(utcnow - utcdatatime) # abs |
|
34 | 34 | if delta >= 30.: |
|
35 | 35 | return False |
|
36 | 36 | return True |
|
37 | 37 | |
|
38 | 38 | class Figure(Operation): |
|
39 | 39 | |
|
40 | 40 | __driver = mpldriver |
|
41 | 41 | fig = None |
|
42 | 42 | |
|
43 | 43 | id = None |
|
44 | 44 | wintitle = None |
|
45 | 45 | width = None |
|
46 | 46 | height = None |
|
47 | 47 | nplots = None |
|
48 | 48 | timerange = None |
|
49 | 49 | |
|
50 | 50 | axesObjList = [] |
|
51 | 51 | |
|
52 | 52 | WIDTH = 300 |
|
53 | 53 | HEIGHT = 200 |
|
54 | 54 | PREFIX = 'fig' |
|
55 | 55 | |
|
56 | 56 | xmin = None |
|
57 | 57 | xmax = None |
|
58 | 58 | |
|
59 | 59 | counter_imagwr = 0 |
|
60 | 60 | |
|
61 | 61 | figfile = None |
|
62 | 62 | |
|
63 | 63 | created = False |
|
64 | 64 | |
|
65 | 65 | def __init__(self): |
|
66 | 66 | |
|
67 | 67 | raise NotImplementedError |
|
68 | 68 | |
|
69 | 69 | def __del__(self): |
|
70 | 70 | |
|
71 | 71 | self.__driver.closeFigure() |
|
72 | 72 | |
|
73 | 73 | def getFilename(self, name, ext='.png'): |
|
74 | 74 | |
|
75 | 75 | path = '%s%03d' %(self.PREFIX, self.id) |
|
76 | 76 | filename = '%s_%s%s' %(self.PREFIX, name, ext) |
|
77 | 77 | return os.path.join(path, filename) |
|
78 | 78 | |
|
79 | 79 | def getAxesObjList(self): |
|
80 | 80 | |
|
81 | 81 | return self.axesObjList |
|
82 | 82 | |
|
83 | 83 | def getSubplots(self): |
|
84 | 84 | |
|
85 | 85 | raise NotImplementedError |
|
86 | 86 | |
|
87 | 87 | def getScreenDim(self, widthplot, heightplot): |
|
88 | 88 | |
|
89 | 89 | nrow, ncol = self.getSubplots() |
|
90 | 90 | |
|
91 | 91 | widthscreen = widthplot*ncol |
|
92 | 92 | heightscreen = heightplot*nrow |
|
93 | 93 | |
|
94 | 94 | return widthscreen, heightscreen |
|
95 | 95 | |
|
96 | 96 | def getTimeLim(self, x, xmin=None, xmax=None, timerange=None): |
|
97 | 97 | |
|
98 | 98 | # if self.xmin != None and self.xmax != None: |
|
99 | 99 | # if timerange == None: |
|
100 | 100 | # timerange = self.xmax - self.xmin |
|
101 | 101 | # xmin = self.xmin + timerange |
|
102 | 102 | # xmax = self.xmax + timerange |
|
103 | 103 | # |
|
104 | 104 | # return xmin, xmax |
|
105 | 105 | |
|
106 | 106 | if timerange == None and (xmin==None or xmax==None): |
|
107 | 107 | timerange = 14400 #seconds |
|
108 | 108 | |
|
109 | 109 | if timerange != None: |
|
110 | 110 | txmin = x[0] #- x[0] % min(timerange/10, 10*60) |
|
111 | 111 | else: |
|
112 | 112 | txmin = x[0] #- x[0] % 10*60 |
|
113 | 113 | |
|
114 | 114 | thisdatetime = datetime.datetime.utcfromtimestamp(txmin) |
|
115 | 115 | thisdate = datetime.datetime.combine(thisdatetime.date(), datetime.time(0,0,0)) |
|
116 | 116 | |
|
117 | 117 | if timerange != None: |
|
118 | 118 | xmin = (thisdatetime - thisdate).seconds/(60*60.) |
|
119 | 119 | xmax = xmin + timerange/(60*60.) |
|
120 | 120 | |
|
121 | 121 | d1970 = datetime.datetime(1970,1,1) |
|
122 | 122 | |
|
123 | 123 | mindt = thisdate + datetime.timedelta(hours=xmin) #- datetime.timedelta(seconds=time.timezone) |
|
124 | 124 | xmin_sec = (mindt - d1970).total_seconds() #time.mktime(mindt.timetuple()) - time.timezone |
|
125 | 125 | |
|
126 | 126 | maxdt = thisdate + datetime.timedelta(hours=xmax) #- datetime.timedelta(seconds=time.timezone) |
|
127 | 127 | xmax_sec = (maxdt - d1970).total_seconds() #time.mktime(maxdt.timetuple()) - time.timezone |
|
128 | 128 | |
|
129 | 129 | return xmin_sec, xmax_sec |
|
130 | 130 | |
|
131 | 131 | def init(self, id, nplots, wintitle): |
|
132 | 132 | |
|
133 | 133 | raise NotImplementedError, "This method has been replaced by createFigure" |
|
134 | 134 | |
|
135 | 135 | def createFigure(self, id, wintitle, widthplot=None, heightplot=None, show=True): |
|
136 | 136 | |
|
137 | 137 | """ |
|
138 | 138 | Crea la figura de acuerdo al driver y parametros seleccionados seleccionados. |
|
139 | 139 | Las dimensiones de la pantalla es calculada a partir de los atributos self.WIDTH |
|
140 | 140 | y self.HEIGHT y el numero de subplots (nrow, ncol) |
|
141 | 141 | |
|
142 | 142 | Input: |
|
143 | 143 | id : Los parametros necesarios son |
|
144 | 144 | wintitle : |
|
145 | 145 | |
|
146 | 146 | """ |
|
147 | 147 | |
|
148 | 148 | if widthplot == None: |
|
149 | 149 | widthplot = self.WIDTH |
|
150 | 150 | |
|
151 | 151 | if heightplot == None: |
|
152 | 152 | heightplot = self.HEIGHT |
|
153 | 153 | |
|
154 | 154 | self.id = id |
|
155 | 155 | |
|
156 | 156 | self.wintitle = wintitle |
|
157 | 157 | |
|
158 | 158 | self.widthscreen, self.heightscreen = self.getScreenDim(widthplot, heightplot) |
|
159 | 159 | |
|
160 | 160 | # if self.created: |
|
161 | 161 | # self.__driver.closeFigure(self.fig) |
|
162 | 162 | |
|
163 | 163 | if not self.created: |
|
164 | 164 | self.fig = self.__driver.createFigure(id=self.id, |
|
165 | 165 | wintitle=self.wintitle, |
|
166 | 166 | width=self.widthscreen, |
|
167 | 167 | height=self.heightscreen, |
|
168 | 168 | show=show) |
|
169 | 169 | else: |
|
170 | 170 | self.__driver.clearFigure(self.fig) |
|
171 | 171 | |
|
172 | 172 | self.axesObjList = [] |
|
173 | 173 | self.counter_imagwr = 0 |
|
174 | 174 | |
|
175 | 175 | self.created = True |
|
176 | 176 | |
|
177 | 177 | def setDriver(self, driver=mpldriver): |
|
178 | 178 | |
|
179 | 179 | self.__driver = driver |
|
180 | 180 | |
|
181 | 181 | def setTitle(self, title): |
|
182 | 182 | |
|
183 | 183 | self.__driver.setTitle(self.fig, title) |
|
184 | 184 | |
|
185 | 185 | def setWinTitle(self, title): |
|
186 | 186 | |
|
187 | 187 | self.__driver.setWinTitle(self.fig, title=title) |
|
188 | 188 | |
|
189 | 189 | def setTextFromAxes(self, text): |
|
190 | 190 | |
|
191 | 191 | raise NotImplementedError, "This method has been replaced with Axes.setText" |
|
192 | 192 | |
|
193 | 193 | def makeAxes(self, nrow, ncol, xpos, ypos, colspan, rowspan): |
|
194 | 194 | |
|
195 | 195 | raise NotImplementedError, "This method has been replaced with Axes.addAxes" |
|
196 | 196 | |
|
197 | 197 | def addAxes(self, *args): |
|
198 | 198 | """ |
|
199 | 199 | |
|
200 | 200 | Input: |
|
201 | 201 | *args : Los parametros necesarios son |
|
202 | 202 | nrow, ncol, xpos, ypos, colspan, rowspan |
|
203 | 203 | """ |
|
204 | 204 | |
|
205 | 205 | axesObj = Axes(self.fig, *args) |
|
206 | 206 | self.axesObjList.append(axesObj) |
|
207 | 207 | |
|
208 | 208 | def saveFigure(self, figpath, figfile, *args): |
|
209 | 209 | |
|
210 | 210 | filename = os.path.join(figpath, figfile) |
|
211 | 211 | |
|
212 | 212 | fullpath = os.path.split(filename)[0] |
|
213 | 213 | |
|
214 | 214 | if not os.path.exists(fullpath): |
|
215 | 215 | subpath = os.path.split(fullpath)[0] |
|
216 | 216 | |
|
217 | 217 | if not os.path.exists(subpath): |
|
218 | 218 | os.mkdir(subpath) |
|
219 | 219 | |
|
220 | 220 | os.mkdir(fullpath) |
|
221 | 221 | |
|
222 | 222 | self.__driver.saveFigure(self.fig, filename, *args) |
|
223 | 223 | |
|
224 | 224 | def save(self, figpath, figfile=None, save=True, ftp=False, wr_period=1, thisDatetime=None, update_figfile=True): |
|
225 | 225 | |
|
226 | 226 | self.counter_imagwr += 1 |
|
227 | 227 | if self.counter_imagwr < wr_period: |
|
228 | 228 | return |
|
229 | 229 | |
|
230 | 230 | self.counter_imagwr = 0 |
|
231 | 231 | |
|
232 | 232 | if save: |
|
233 | 233 | |
|
234 | 234 | if not figfile: |
|
235 | 235 | |
|
236 | 236 | if not thisDatetime: |
|
237 | 237 | raise ValueError, "Saving figure: figfile or thisDatetime should be defined" |
|
238 | 238 | return |
|
239 | 239 | |
|
240 | 240 | str_datetime = thisDatetime.strftime("%Y%m%d_%H%M%S") |
|
241 | 241 | figfile = self.getFilename(name = str_datetime) |
|
242 | 242 | |
|
243 | 243 | if self.figfile == None: |
|
244 | 244 | self.figfile = figfile |
|
245 | 245 | |
|
246 | 246 | if update_figfile: |
|
247 | 247 | self.figfile = figfile |
|
248 | 248 | |
|
249 | 249 | # store png plot to local folder |
|
250 | 250 | self.saveFigure(figpath, self.figfile) |
|
251 | 251 | |
|
252 | 252 | |
|
253 | 253 | if not ftp: |
|
254 | 254 | return |
|
255 | 255 | |
|
256 | 256 | if not thisDatetime: |
|
257 | 257 | return |
|
258 | 258 | |
|
259 | 259 | # store png plot to FTP server according to RT-Web format |
|
260 | 260 | ftp_filename = self.getNameToFtp(thisDatetime, self.FTP_WEI, self.EXP_CODE, self.SUB_EXP_CODE, self.PLOT_CODE, self.PLOT_POS) |
|
261 | 261 | # ftp_filename = os.path.join(figpath, name) |
|
262 | 262 | self.saveFigure(figpath, ftp_filename) |
|
263 | 263 | |
|
264 | 264 | def getNameToFtp(self, thisDatetime, FTP_WEI, EXP_CODE, SUB_EXP_CODE, PLOT_CODE, PLOT_POS): |
|
265 | 265 | YEAR_STR = '%4.4d'%thisDatetime.timetuple().tm_year |
|
266 | 266 | DOY_STR = '%3.3d'%thisDatetime.timetuple().tm_yday |
|
267 | 267 | FTP_WEI = '%2.2d'%FTP_WEI |
|
268 | 268 | EXP_CODE = '%3.3d'%EXP_CODE |
|
269 | 269 | SUB_EXP_CODE = '%2.2d'%SUB_EXP_CODE |
|
270 | 270 | PLOT_CODE = '%2.2d'%PLOT_CODE |
|
271 | 271 | PLOT_POS = '%2.2d'%PLOT_POS |
|
272 | 272 | name = YEAR_STR + DOY_STR + FTP_WEI + EXP_CODE + SUB_EXP_CODE + PLOT_CODE + PLOT_POS |
|
273 | 273 | return name |
|
274 | 274 | |
|
275 | 275 | def draw(self): |
|
276 | 276 | |
|
277 | 277 | self.__driver.draw(self.fig) |
|
278 | 278 | |
|
279 | 279 | def run(self): |
|
280 | 280 | |
|
281 | 281 | raise NotImplementedError |
|
282 | 282 | |
|
283 | 283 | def close(self, show=False): |
|
284 | 284 | |
|
285 | 285 | self.__driver.closeFigure(show=show, fig=self.fig) |
|
286 | 286 | |
|
287 | 287 | axesList = property(getAxesObjList) |
|
288 | 288 | |
|
289 | 289 | |
|
290 | 290 | class Axes: |
|
291 | 291 | |
|
292 | 292 | __driver = mpldriver |
|
293 | 293 | fig = None |
|
294 | 294 | ax = None |
|
295 | 295 | plot = None |
|
296 | 296 | __missing = 1E30 |
|
297 | 297 | __firsttime = None |
|
298 | 298 | |
|
299 | 299 | __showprofile = False |
|
300 | 300 | |
|
301 | 301 | xmin = None |
|
302 | 302 | xmax = None |
|
303 | 303 | ymin = None |
|
304 | 304 | ymax = None |
|
305 | 305 | zmin = None |
|
306 | 306 | zmax = None |
|
307 | 307 | |
|
308 | 308 | x_buffer = None |
|
309 | 309 | z_buffer = None |
|
310 | 310 | |
|
311 | 311 | decimationx = None |
|
312 | 312 | decimationy = None |
|
313 | 313 | |
|
314 | 314 | __MAXNUMX = 200 |
|
315 | 315 | __MAXNUMY = 400 |
|
316 | 316 | |
|
317 | 317 | __MAXNUMTIME = 500 |
|
318 | 318 | |
|
319 | 319 | def __init__(self, *args): |
|
320 | 320 | |
|
321 | 321 | """ |
|
322 | 322 | |
|
323 | 323 | Input: |
|
324 | 324 | *args : Los parametros necesarios son |
|
325 | 325 | fig, nrow, ncol, xpos, ypos, colspan, rowspan |
|
326 | 326 | """ |
|
327 | 327 | |
|
328 | 328 | ax = self.__driver.createAxes(*args) |
|
329 | 329 | self.fig = args[0] |
|
330 | 330 | self.ax = ax |
|
331 | 331 | self.plot = None |
|
332 | 332 | |
|
333 | 333 | self.__firsttime = True |
|
334 | 334 | self.idlineList = [] |
|
335 | 335 | |
|
336 | 336 | self.x_buffer = numpy.array([]) |
|
337 | 337 | self.z_buffer = numpy.array([]) |
|
338 | 338 | |
|
339 | 339 | def setText(self, text): |
|
340 | 340 | |
|
341 | 341 | self.__driver.setAxesText(self.ax, text) |
|
342 | 342 | |
|
343 | 343 | def setXAxisAsTime(self): |
|
344 | 344 | pass |
|
345 | 345 | |
|
346 | 346 | def pline(self, x, y, |
|
347 | 347 | xmin=None, xmax=None, |
|
348 | 348 | ymin=None, ymax=None, |
|
349 | 349 | xlabel='', ylabel='', |
|
350 | 350 | title='', |
|
351 | 351 | **kwargs): |
|
352 | 352 | |
|
353 | 353 | """ |
|
354 | 354 | |
|
355 | 355 | Input: |
|
356 | 356 | x : |
|
357 | 357 | y : |
|
358 | 358 | xmin : |
|
359 | 359 | xmax : |
|
360 | 360 | ymin : |
|
361 | 361 | ymax : |
|
362 | 362 | xlabel : |
|
363 | 363 | ylabel : |
|
364 | 364 | title : |
|
365 | 365 | **kwargs : Los parametros aceptados son |
|
366 | 366 | |
|
367 | 367 | ticksize |
|
368 | 368 | ytick_visible |
|
369 | 369 | """ |
|
370 | 370 | |
|
371 | 371 | if self.__firsttime: |
|
372 | 372 | |
|
373 | 373 | if xmin == None: xmin = numpy.nanmin(x) |
|
374 | 374 | if xmax == None: xmax = numpy.nanmax(x) |
|
375 | 375 | if ymin == None: ymin = numpy.nanmin(y) |
|
376 | 376 | if ymax == None: ymax = numpy.nanmax(y) |
|
377 | 377 | |
|
378 | 378 | self.plot = self.__driver.createPline(self.ax, x, y, |
|
379 | 379 | xmin, xmax, |
|
380 | 380 | ymin, ymax, |
|
381 | 381 | xlabel=xlabel, |
|
382 | 382 | ylabel=ylabel, |
|
383 | 383 | title=title, |
|
384 | 384 | **kwargs) |
|
385 | 385 | |
|
386 | 386 | self.idlineList.append(0) |
|
387 | 387 | self.__firsttime = False |
|
388 | 388 | return |
|
389 | 389 | |
|
390 | 390 | self.__driver.pline(self.plot, x, y, xlabel=xlabel, |
|
391 | 391 | ylabel=ylabel, |
|
392 | 392 | title=title) |
|
393 | 393 | |
|
394 | 394 | # self.__driver.pause() |
|
395 | 395 | |
|
396 | 396 | def addpline(self, x, y, idline, **kwargs): |
|
397 | 397 | lines = self.ax.lines |
|
398 | 398 | |
|
399 | 399 | if idline in self.idlineList: |
|
400 | 400 | self.__driver.set_linedata(self.ax, x, y, idline) |
|
401 | 401 | |
|
402 | 402 | if idline not in(self.idlineList): |
|
403 | 403 | self.__driver.addpline(self.ax, x, y, **kwargs) |
|
404 | 404 | self.idlineList.append(idline) |
|
405 | 405 | |
|
406 | 406 | return |
|
407 | 407 | |
|
408 | 408 | def pmultiline(self, x, y, |
|
409 | 409 | xmin=None, xmax=None, |
|
410 | 410 | ymin=None, ymax=None, |
|
411 | 411 | xlabel='', ylabel='', |
|
412 | 412 | title='', |
|
413 | 413 | **kwargs): |
|
414 | 414 | |
|
415 | 415 | if self.__firsttime: |
|
416 | 416 | |
|
417 | 417 | if xmin == None: xmin = numpy.nanmin(x) |
|
418 | 418 | if xmax == None: xmax = numpy.nanmax(x) |
|
419 | 419 | if ymin == None: ymin = numpy.nanmin(y) |
|
420 | 420 | if ymax == None: ymax = numpy.nanmax(y) |
|
421 | 421 | |
|
422 | 422 | self.plot = self.__driver.createPmultiline(self.ax, x, y, |
|
423 | 423 | xmin, xmax, |
|
424 | 424 | ymin, ymax, |
|
425 | 425 | xlabel=xlabel, |
|
426 | 426 | ylabel=ylabel, |
|
427 | 427 | title=title, |
|
428 | 428 | **kwargs) |
|
429 | 429 | self.__firsttime = False |
|
430 | 430 | return |
|
431 | 431 | |
|
432 | 432 | self.__driver.pmultiline(self.plot, x, y, xlabel=xlabel, |
|
433 | 433 | ylabel=ylabel, |
|
434 | 434 | title=title) |
|
435 | 435 | |
|
436 | 436 | # self.__driver.pause() |
|
437 | 437 | |
|
438 | 438 | def pmultilineyaxis(self, x, y, |
|
439 | 439 | xmin=None, xmax=None, |
|
440 | 440 | ymin=None, ymax=None, |
|
441 | 441 | xlabel='', ylabel='', |
|
442 | 442 | title='', |
|
443 | 443 | **kwargs): |
|
444 | 444 | |
|
445 | 445 | if self.__firsttime: |
|
446 | 446 | |
|
447 | 447 | if xmin == None: xmin = numpy.nanmin(x) |
|
448 | 448 | if xmax == None: xmax = numpy.nanmax(x) |
|
449 | 449 | if ymin == None: ymin = numpy.nanmin(y) |
|
450 | 450 | if ymax == None: ymax = numpy.nanmax(y) |
|
451 | 451 | |
|
452 | 452 | self.plot = self.__driver.createPmultilineYAxis(self.ax, x, y, |
|
453 | 453 | xmin, xmax, |
|
454 | 454 | ymin, ymax, |
|
455 | 455 | xlabel=xlabel, |
|
456 | 456 | ylabel=ylabel, |
|
457 | 457 | title=title, |
|
458 | 458 | **kwargs) |
|
459 | 459 | if self.xmin == None: self.xmin = xmin |
|
460 | 460 | if self.xmax == None: self.xmax = xmax |
|
461 | 461 | if self.ymin == None: self.ymin = ymin |
|
462 | 462 | if self.ymax == None: self.ymax = ymax |
|
463 | 463 | |
|
464 | 464 | self.__firsttime = False |
|
465 | 465 | return |
|
466 | 466 | |
|
467 | 467 | self.__driver.pmultilineyaxis(self.plot, x, y, xlabel=xlabel, |
|
468 | 468 | ylabel=ylabel, |
|
469 | 469 | title=title) |
|
470 | 470 | |
|
471 | 471 | # self.__driver.pause() |
|
472 | 472 | |
|
473 | 473 | def pcolor(self, x, y, z, |
|
474 | 474 | xmin=None, xmax=None, |
|
475 | 475 | ymin=None, ymax=None, |
|
476 | 476 | zmin=None, zmax=None, |
|
477 | 477 | xlabel='', ylabel='', |
|
478 | 478 | title='', colormap='jet', |
|
479 | 479 | **kwargs): |
|
480 | 480 | |
|
481 | 481 | """ |
|
482 | 482 | Input: |
|
483 | 483 | x : |
|
484 | 484 | y : |
|
485 | 485 | x : |
|
486 | 486 | xmin : |
|
487 | 487 | xmax : |
|
488 | 488 | ymin : |
|
489 | 489 | ymax : |
|
490 | 490 | zmin : |
|
491 | 491 | zmax : |
|
492 | 492 | xlabel : |
|
493 | 493 | ylabel : |
|
494 | 494 | title : |
|
495 | 495 | **kwargs : Los parametros aceptados son |
|
496 | 496 | ticksize=9, |
|
497 | 497 | cblabel='' |
|
498 | 498 | """ |
|
499 | 499 | |
|
500 | 500 | #Decimating data |
|
501 | 501 | xlen = len(x) |
|
502 | 502 | ylen = len(y) |
|
503 | 503 | |
|
504 |
decimationx = |
|
|
505 |
decimationy = |
|
|
504 | decimationx = int(xlen/self.__MAXNUMX) + 1 | |
|
505 | decimationy = int(ylen/self.__MAXNUMY) + 1 | |
|
506 | 506 | |
|
507 | 507 | |
|
508 | 508 | x_buffer = x#[::decimationx] |
|
509 | 509 | y_buffer = y#[::decimationy] |
|
510 | 510 | z_buffer = z#[::decimationx, ::decimationy] |
|
511 | 511 | #=================================================== |
|
512 | 512 | |
|
513 | 513 | if self.__firsttime: |
|
514 | 514 | |
|
515 | 515 | if xmin == None: xmin = numpy.nanmin(x) |
|
516 | 516 | if xmax == None: xmax = numpy.nanmax(x) |
|
517 | 517 | if ymin == None: ymin = numpy.nanmin(y) |
|
518 | 518 | if ymax == None: ymax = numpy.nanmax(y) |
|
519 | 519 | if zmin == None: zmin = numpy.nanmin(z) |
|
520 | 520 | if zmax == None: zmax = numpy.nanmax(z) |
|
521 | 521 | |
|
522 | 522 | |
|
523 | 523 | self.plot = self.__driver.createPcolor(self.ax, x_buffer, |
|
524 | 524 | y_buffer, |
|
525 | 525 | z_buffer, |
|
526 | 526 | xmin, xmax, |
|
527 | 527 | ymin, ymax, |
|
528 | 528 | zmin, zmax, |
|
529 | 529 | xlabel=xlabel, |
|
530 | 530 | ylabel=ylabel, |
|
531 | 531 | title=title, |
|
532 | 532 | colormap=colormap, |
|
533 | 533 | **kwargs) |
|
534 | 534 | |
|
535 | 535 | if self.xmin == None: self.xmin = xmin |
|
536 | 536 | if self.xmax == None: self.xmax = xmax |
|
537 | 537 | if self.ymin == None: self.ymin = ymin |
|
538 | 538 | if self.ymax == None: self.ymax = ymax |
|
539 | 539 | if self.zmin == None: self.zmin = zmin |
|
540 | 540 | if self.zmax == None: self.zmax = zmax |
|
541 | 541 | |
|
542 | 542 | self.__firsttime = False |
|
543 | 543 | return |
|
544 | 544 | |
|
545 | 545 | self.__driver.pcolor(self.plot, |
|
546 | 546 | z_buffer, |
|
547 | 547 | xlabel=xlabel, |
|
548 | 548 | ylabel=ylabel, |
|
549 | 549 | title=title) |
|
550 | 550 | |
|
551 | 551 | # self.__driver.pause() |
|
552 | 552 | |
|
553 | 553 | def pcolorbuffer(self, x, y, z, |
|
554 | 554 | xmin=None, xmax=None, |
|
555 | 555 | ymin=None, ymax=None, |
|
556 | 556 | zmin=None, zmax=None, |
|
557 | 557 | xlabel='', ylabel='', |
|
558 | 558 | title='', rti = True, colormap='jet', |
|
559 | 559 | maxNumX = None, maxNumY = None, |
|
560 | 560 | **kwargs): |
|
561 | 561 | |
|
562 | 562 | if maxNumX == None: |
|
563 | 563 | maxNumX = self.__MAXNUMTIME |
|
564 | 564 | |
|
565 | 565 | if maxNumY == None: |
|
566 | 566 | maxNumY = self.__MAXNUMY |
|
567 | 567 | |
|
568 | 568 | if self.__firsttime: |
|
569 | 569 | self.z_buffer = z |
|
570 | 570 | self.x_buffer = numpy.hstack((self.x_buffer, x)) |
|
571 | 571 | |
|
572 | 572 | if xmin == None: xmin = numpy.nanmin(x) |
|
573 | 573 | if xmax == None: xmax = numpy.nanmax(x) |
|
574 | 574 | if ymin == None: ymin = numpy.nanmin(y) |
|
575 | 575 | if ymax == None: ymax = numpy.nanmax(y) |
|
576 | 576 | if zmin == None: zmin = numpy.nanmin(z) |
|
577 | 577 | if zmax == None: zmax = numpy.nanmax(z) |
|
578 | 578 | |
|
579 | 579 | self.plot = self.__driver.createPcolor(self.ax, self.x_buffer, y, z, |
|
580 | 580 | xmin, xmax, |
|
581 | 581 | ymin, ymax, |
|
582 | 582 | zmin, zmax, |
|
583 | 583 | xlabel=xlabel, |
|
584 | 584 | ylabel=ylabel, |
|
585 | 585 | title=title, |
|
586 | 586 | colormap=colormap, |
|
587 | 587 | **kwargs) |
|
588 | 588 | |
|
589 | 589 | if self.xmin == None: self.xmin = xmin |
|
590 | 590 | if self.xmax == None: self.xmax = xmax |
|
591 | 591 | if self.ymin == None: self.ymin = ymin |
|
592 | 592 | if self.ymax == None: self.ymax = ymax |
|
593 | 593 | if self.zmin == None: self.zmin = zmin |
|
594 | 594 | if self.zmax == None: self.zmax = zmax |
|
595 | 595 | |
|
596 | 596 | self.__firsttime = False |
|
597 | 597 | return |
|
598 | 598 | |
|
599 | 599 | self.x_buffer = numpy.hstack((self.x_buffer[:-1], x[0], x[-1])) |
|
600 | 600 | self.z_buffer = numpy.hstack((self.z_buffer, z)) |
|
601 | 601 | z_buffer = self.z_buffer.reshape(-1,len(y)) |
|
602 | 602 | |
|
603 | 603 | #Decimating data |
|
604 | 604 | xlen = len(self.x_buffer) |
|
605 | 605 | ylen = len(y) |
|
606 | 606 | |
|
607 |
decimationx = |
|
|
608 |
decimationy = |
|
|
607 | decimationx = int(xlen/maxNumX) + 1 | |
|
608 | decimationy = int(ylen/maxNumY) + 1 | |
|
609 | 609 | |
|
610 | 610 | x_buffer = self.x_buffer#[::decimationx] |
|
611 | 611 | y_buffer = y#[::decimationy] |
|
612 | 612 | z_buffer = z_buffer#[::decimationx, ::decimationy] |
|
613 | 613 | #=================================================== |
|
614 | 614 | |
|
615 | 615 | x_buffer, y_buffer, z_buffer = self.__fillGaps(x_buffer, y_buffer, z_buffer) |
|
616 | 616 | |
|
617 | 617 | self.__driver.addpcolorbuffer(self.ax, x_buffer, y_buffer, z_buffer, self.zmin, self.zmax, |
|
618 | 618 | xlabel=xlabel, |
|
619 | 619 | ylabel=ylabel, |
|
620 | 620 | title=title, |
|
621 | 621 | colormap=colormap) |
|
622 | 622 | |
|
623 | 623 | # self.__driver.pause() |
|
624 | 624 | |
|
625 | 625 | def polar(self, x, y, |
|
626 | 626 | title='', xlabel='',ylabel='',**kwargs): |
|
627 | 627 | |
|
628 | 628 | if self.__firsttime: |
|
629 | 629 | self.plot = self.__driver.createPolar(self.ax, x, y, title = title, xlabel = xlabel, ylabel = ylabel) |
|
630 | 630 | self.__firsttime = False |
|
631 | 631 | self.x_buffer = x |
|
632 | 632 | self.y_buffer = y |
|
633 | 633 | return |
|
634 | 634 | |
|
635 | 635 | self.x_buffer = numpy.hstack((self.x_buffer,x)) |
|
636 | 636 | self.y_buffer = numpy.hstack((self.y_buffer,y)) |
|
637 | 637 | self.__driver.polar(self.plot, self.x_buffer, self.y_buffer, xlabel=xlabel, |
|
638 | 638 | ylabel=ylabel, |
|
639 | 639 | title=title) |
|
640 | 640 | |
|
641 | 641 | # self.__driver.pause() |
|
642 | 642 | |
|
643 | 643 | def __fillGaps(self, x_buffer, y_buffer, z_buffer): |
|
644 | 644 | |
|
645 | 645 | if x_buffer.shape[0] < 2: |
|
646 | 646 | return x_buffer, y_buffer, z_buffer |
|
647 | 647 | |
|
648 | 648 | deltas = x_buffer[1:] - x_buffer[0:-1] |
|
649 | 649 | x_median = numpy.median(deltas) |
|
650 | 650 | |
|
651 | 651 | index = numpy.where(deltas > 5*x_median) |
|
652 | 652 | |
|
653 | 653 | if len(index[0]) != 0: |
|
654 | 654 | z_buffer[index[0],::] = self.__missing |
|
655 | 655 | z_buffer = numpy.ma.masked_inside(z_buffer,0.99*self.__missing,1.01*self.__missing) |
|
656 | 656 | |
|
657 | 657 | return x_buffer, y_buffer, z_buffer |
|
658 | 658 | |
|
659 | 659 | |
|
660 | 660 | |
|
661 | 661 | No newline at end of file |
General Comments 0
You need to be logged in to leave comments.
Login now