source: trunk/UTIL/PYTHON/planetoplot.py @ 423

Last change on this file since 423 was 423, checked in by aslmd, 13 years ago

GRAPHICS: oops. in previous commit forgot to add if in case ope is NOne (most cases). ok now.

  • Property svn:executable set to *
File size: 23.9 KB
Line 
1#######################
2##### PLANETOPLOT #####
3#######################
4
5### A. Spiga     -- LMD -- 06~09/2011 -- General building and mapping capabilities
6### T. Navarro   -- LMD -- 10~11/2011 -- Improved use for GCM and added sections + 1Dplot capabilities
7### A. Colaitis  -- LMD --    11/2011 -- Mostly minor improvements and inter-plot operation capabilities + zrecast interpolation for gcm
8### A. Spiga     -- LMD --    11/2011 -- Extended multivar subplot capabilities + cosmetic changes + general cleaning and tests
9
10def planetoplot (namefiles,\
11           level=0,\
12           vertmode=0,\
13           proj=None,\
14           back=None,\
15           target=None,
16           stride=3,\
17           numplot=None,\
18           var=None,\
19           colorb="def",\
20           winds=False,\
21           addchar=None,\
22           interv=[0,1],\
23           vmin=None,\
24           vmax=None,\
25           tile=False,\
26           zoom=None,\
27           display=True,\
28           itstep=None,\
29           hole=False,\
30           save="gui",\
31           anomaly=False,\
32           var2=None,\
33           ndiv=10,\
34           first=1,\
35           mult=1.,\
36           zetitle="fill",\
37           slon=None,\
38           slat=None,\
39           svert=None,\
40           stime=None,\
41           outputname=None,\
42           resolution=200,\
43           ope=None,\
44           fileref=None,\
45           minop=0.,\
46           maxop=0.,\
47           titleref="fill",\
48           invert_y=False,\
49           xaxis=[None,None],\
50           yaxis=[None,None],\
51           ylog=False,\
52           yintegral=False,\
53           blat=None,\
54           tsat=False,\
55           flagnolow=False):
56
57
58    ####################################################################################################################
59    ### Colorbars http://www.scipy.org/Cookbook/Matplotlib/Show_colormaps?action=AttachFile&do=get&target=colormaps3.png
60
61    #################################
62    ### Load librairies and functions
63    from netCDF4 import Dataset
64    from myplot import getcoord2d,define_proj,makeplotres,simplinterv,vectorfield,ptitle,latinterv,getproj,wrfinterv,dumpbdy,\
65                       fmtvar,definecolorvec,defcolorb,getprefix,putpoints,calculate_bounds,errormess,definesubplot,\
66                       zoomset,getcoorddef,getwinddef,whatkindfile,reducefield,bounds,getstralt,getfield,smooth,nolow,\
67                       getname,localtime,polarinterv,getsindex,define_axis,determineplot,readslices,bidimfind,getlschar,hole_bounds
68    from mymath import deg,max,min,mean,get_tsat,writeascii
69    import matplotlib as mpl
70    from matplotlib.pyplot import contour,contourf, subplot, figure, rcParams, savefig, colorbar, pcolor, show, plot, clabel, title
71    from matplotlib.cm import get_cmap
72    import numpy as np
73    from numpy.core.defchararray import find
74
75    ################################
76    ### Preliminary stuff
77    ################################
78    print "********************************************"
79    print "********** WELCOME TO PLANETOPLOT **********"
80    print "********************************************"
81    if not isinstance(namefiles, np.ndarray): namefiles = [namefiles]
82    if not isinstance(var, np.ndarray):       var = [var]
83
84    ################################
85    ### Which plot needs to be done?
86    ################################
87    nlon, nlat, nvert, ntime, mapmode, nslices = determineplot(slon, slat, svert, stime)
88    vlon = None ; vlat = None
89    if slon is not None: vlon = slon[0][0]
90    if slat is not None: vlat = slat[0][0]
91    if mapmode == 0:       winds=False
92    elif mapmode == 1:     
93        if svert is None:  svert = readslices(str(level)) ; nvert=1
94    zelen = len(namefiles)*len(var)
95    if numplot is None:  numplot = zelen*nslices
96    print "********** FILES, SLICES, VARS, TOTAL PLOTS: ", len(namefiles), nslices, len(var), numplot
97    print "********** MAPMODE: ", mapmode
98    if ope is not None:
99        if fileref is not None:       zelen = zelen + 2
100        elif "var" in ope:            zelen = zelen + 1
101    all_var  = [[]]*zelen ; all_var2  = [[]]*zelen ; all_title = [[]]*zelen ; all_varname = [[]]*zelen ; all_namefile = [[]]*zelen ; all_time = [[]]*zelen
102 
103    #################################################################################################
104    ### Loop over the files + vars initially separated by commas to be plotted on the same figure ###
105    #################################################################################################
106    k = 0 ; firstfile = True
107    for nnn in range(len(namefiles)):
108     for vvv in range(len(var)): 
109
110      print "********** LOOP..... THIS IS SUBPLOT NUMBER.....",k
111
112      ######################
113      ### Load NETCDF object
114      namefile = namefiles[nnn] ; print "********** THE NAMEFILE IS....", namefile
115      nc  = Dataset(namefile)
116
117      ##################################
118      ### Initial checks and definitions
119      ### ... TYPEFILE
120      typefile = whatkindfile(nc)                                 
121      if firstfile:                 typefile0 = typefile
122      elif typefile != typefile0:   errormess("Not the same kind of files !", [typefile0, typefile])
123      ### ... VAR
124      varname=var[vvv]
125      print "********** THE VAR IS....",varname, var2
126      if varname not in nc.variables: varname = False
127      ### ... WINDS
128      if winds:                                                   
129         [uchar,vchar,metwind] = getwinddef(nc)             
130         if uchar == 'not found': winds = False
131      if not varname and not winds: errormess("please set at least winds or var",printvar=nc.variables)
132      ### ... COORDINATES, could be moved below
133      [lon2d,lat2d] = getcoorddef(nc)
134      ### ... PROJECTION
135      if proj == None:   proj = getproj(nc)                 
136
137##########################################################
138      if typefile == "gcm":
139          lat = nc.variables["latitude"][:] ; lon = nc.variables["longitude"][:]
140          if "Time" in nc.variables:      time = nc.variables["Time"][:]
141          elif "time" in nc.variables:    time = nc.variables["time"][:]
142          else:                           errormess("no time axis found.")
143          vert = nc.variables["altitude"][:]
144      elif typefile in ['meso','mesoapi']:
145          if vlon is not None or vlat is not None:   indices = bidimfind(lon2d,lat2d,vlon,vlat) ; print '********** INDICES: ', indices
146          if slon is not None: slon[0][0] = indices[0] ; slon[0][1] = indices[0]
147          if slat is not None: slat[0][0] = indices[1] ; slat[0][1] = indices[1]
148          if varname in ['PHTOT','W']:    vertdim='BOTTOM-TOP_PATCH_END_STAG'
149          else:                           vertdim='BOTTOM-TOP_PATCH_END_UNSTAG'
150          if varname in ['V']:  latdim='SOUTH-NORTH_PATCH_END_STAG'
151          else:                 latdim='SOUTH-NORTH_PATCH_END_UNSTAG'
152          if varname in ['U']:  londim='WEST-EAST_PATCH_END_STAG'
153          else:                 londim='WEST-EAST_PATCH_END_UNSTAG'
154          lon = np.arange(0,getattr(nc,londim),1) ; lat = np.arange(0,getattr(nc,latdim),1)
155          if vertmode is None:  vertmode=0
156          if vertmode == 0:     vert = np.arange(0,getattr(nc,vertdim),1)
157          else:                 vert = nc.variables["vert"][:]
158          time = np.arange(0,len(nc.variables["Times"]),1)
159       #if firstfile:
160       #   lat0 = lat
161       #elif len(lat0) != len(lat):
162       #   errormess("Not the same latitude lengths !", [len(lat0), len(lat)])
163       #elif sum((lat == lat0) == False) != 0:
164       #   errormess("Not the same latitudes !", [lat,lat0])
165       ## Faire d'autre checks sur les compatibilites entre fichiers!!
166##########################################################
167
168      if firstfile:
169         ##########################
170         ### Define plot boundaries
171         ### todo: possible areas in latinterv in argument (ex: "Far_South_Pole")
172         if proj in ["npstere","spstere"]: [wlon,wlat] = polarinterv(lon2d,lat2d)
173         elif proj in ["lcc","laea"]:      [wlon,wlat] = wrfinterv(lon2d,lat2d)
174         else:                             [wlon,wlat] = simplinterv(lon2d,lat2d)
175         if zoom:                          [wlon,wlat] = zoomset(wlon,wlat,zoom) 
176
177      all_varname[k] = varname
178      all_namefile[k] = namefile
179      all_time[k] = time
180      if var2: all_var2[k] = getfield(nc,var2)
181      ##### SPECIFIC
182      if varname in ["temp","t","T_nadir_nit","T_nadir_day","temp_day","temp_night"] and tsat:
183          tt=getfield(nc,varname) ; print "computing Tsat-T, I ASSUME Z-AXIS IS PRESSURE"
184          if type(tt).__name__=='MaskedArray':  tt.set_fill_value([np.NaN]) ; tinput=tt.filled()
185          else:                                 tinput=tt
186          all_var[k]=get_tsat(vert,tinput,zlon=lon,zlat=lat,zalt=vert,ztime=time)
187      else:
188      ##### GENERAL STUFF HERE
189          all_var[k] = getfield(nc,varname)
190      print "********** all_var[k].shape", all_var[k].shape
191      k += 1
192      firstfile = False
193      #### End of for namefile in namefiles
194
195    ##################################
196    ### Operation on files
197    if ope is not None:
198        print ope
199        if "var" not in ope:
200             if len(var) > 1: errormess("for this operation... please set only one var !")
201             if ope in ["-","+"]:
202                if fileref is not None:   all_var[k] = getfield(Dataset(fileref),all_varname[k-1]) ; all_varname[k] = all_varname[k-1] ; all_time[k] = all_time[k-1] ; all_namefile[k] = all_namefile[k-1]
203                else:                     errormess("fileref is missing!") 
204                if ope == "-":     all_var[k+1]= all_var[k-1] - all_var[k]
205                elif ope == "+":   all_var[k+1]= all_var[k-1] + all_var[k]
206                all_varname[k+1] = all_varname[k] ; all_time[k+1] = all_time[k] ; all_namefile[k+1] = all_namefile[k] ; numplot = numplot+2
207             elif ope in ["cat"]:
208                tab = all_var[0];k = 1
209                while k != len(namefiles)-1: 
210                    tab = np.append(tab,all_var[k],axis=0) ; k += 1
211                all_time[0] = np.arange(0,len(tab),1) ### AS: time reference is too simplistic, should be better
212                all_var[0] = np.array(tab) ; numplot = 1
213             else: errormess(ope+" : non-implemented operation. Check pp.py --help")
214        else:
215             if len(namefiles) > 1: errormess("for this operation... please set only one file !") 
216             if len(var) > 2:       errormess("not sure this works for more than 2 vars... please check.")
217             if   ope in ["div_var"]: all_var[k] = all_var[k-2] / all_var[k-1] ; insert = '_div_'
218             elif ope in ["mul_var"]: all_var[k] = all_var[k-2] * all_var[k-1] ; insert = '_mul_'
219             elif ope in ["add_var"]: all_var[k] = all_var[k-2] + all_var[k-1] ; insert = '_add_'
220             elif ope in ["sub_var"]: all_var[k] = all_var[k-2] - all_var[k-1] ; insert = '_sub_'
221             else:                    errormess(ope+" : non-implemented operation. Check pp.py --help")
222             numplot = numplot + 1 ; all_time[k] = all_time[k-1] ; all_namefile[k] = all_namefile[k-1]
223             all_varname[k] = all_varname[k-2] + insert + all_varname[k-1] 
224
225    ##################################
226    ### Open a figure and set subplots
227    fig = figure()
228    subv,subh = definesubplot( numplot, fig ) 
229 
230    #################################
231    ### Time loop for plotting device
232    found_lct = False;nplot = 1;itime = first;error = False
233    if itstep is None and numplot > 0: itstep = int(24./numplot)
234    elif numplot <= 0:                 itstep = 1 
235    print "********************************************"
236    while error is False:
237       print "********** nplot", nplot, "itime",itime,"error",error
238     
239       ### Which local time ?
240       ltst = localtime ( interv[0]+itime*interv[1], 0.5*(wlon[0]+wlon[1]) )
241
242       ### General plot settings
243       #print itime, int(ltst), numplot, nplot
244       if numplot >= 1: 
245           if nplot > numplot: break
246           if numplot > 1:     
247               if typefile not in ['geo']:  subplot(subv,subh,nplot)
248           found_lct = True
249       ### If only one local time is requested (numplot < 0)
250       elif numplot <= 0: 
251           if int(ltst) + numplot != 0: 
252                 itime += 1 
253                 if found_lct is True: break     ## because it means LT was found at previous iteration
254                 else:                 continue  ## continue to iterate to find the correct LT
255           else: 
256                 found_lct = True
257
258       ### Map projection                   
259       if mapmode == 1:
260           m = define_proj(proj,wlon,wlat,back=back,blat=blat)
261           x, y = m(lon2d, lat2d)
262####################################################################
263       ## get all indexes to be taken into account for this subplot and then reduce field
264       ## We plot 1) all lon slices 2) all lat slices 3) all vert slices 4) all time slices and then go to the next slice
265       indexlon  = getsindex(slon,(nplot-1)%nlon,lon)
266       indexlat  = getsindex(slat,((nplot-1)//nlon)%nlat,lat)
267       indexvert = getsindex(svert,((nplot-1)//(nlon*nlat))%nvert,vert) 
268
269       if ope is not None:
270           if fileref is not None:      index_f = ((nplot-1)//(nlon*nlat*nvert*ntime))%(len(namefiles)+2)  ## OK only 1 var,  see test in the beginning
271           elif "var" in ope:           index_f = ((nplot-1)//(nlon*nlat*nvert*ntime))%(len(var)+1)        ## OK only 1 file, see test in the beginning
272       else:                            yeah = len(namefiles)*len(var) ; index_f = ((nplot-1)//(nlon*nlat*nvert*ntime))%yeah
273       time = all_time[index_f]
274
275       if mapmode == 1 and stime is None: 
276           indextime = itime
277           if len(var) != 1 or len(namefiles) != 1: indextime = first
278       else:
279           indextime = getsindex(stime,((nplot-1)//(nlon*nlat*nvert))%ntime,time)
280           if typefile in ['mesoapi','meso'] and indextime is not None:  ltst = localtime ( interv[0]+indextime*interv[1], 0.5*(wlon[0]+wlon[1]) ) 
281####################################################################
282
283       ticks = ndiv + 1
284
285       #### Contour plot
286       if var2:
287           what_I_plot, error = reducefield(all_var2[index_f], d4=indextime, d1=indexlon, d2=indexlat , d3=indexvert, yint=yintegral, alt=vert)
288           #what_I_plot = what_I_plot*mult
289           if not error:
290              if mapmode == 1:
291                  if typefile in ['mesoapi','meso']:    what_I_plot = dumpbdy(what_I_plot,6)
292              zevmin, zevmax = calculate_bounds(what_I_plot)
293              zelevels = np.linspace(zevmin,zevmax,ticks) #20)
294              if var2 == 'HGT':  zelevels = np.arange(-10000.,30000.,2000.)
295              if mapmode == 0:
296                  x, y = define_axis(lon,lat,vert,time,indexlon,indexlat,indexvert,\
297                        indextime,what_I_plot.shape, len(all_var2[index_f].shape),vertmode)
298              ### If we plot a 2-D field
299              if len(what_I_plot.shape) is 2:
300                  cs = contour(x,y,what_I_plot, zelevels, colors='k', linewidths = 1 ) #0.33 colors='w' )# , alpha=0.5)
301                  #if typefile in ['gcm']: clabel(cs,fmt = '%1.2e')
302              ### If we plot a 1-D field
303              elif len(what_I_plot.shape) is 1:
304                  plot(what_I_plot,x) 
305           else:
306              errormess("There is an error in reducing field !")
307
308       #### Shaded plot
309       varname = all_varname[index_f]
310       if varname:
311           what_I_plot, error = reducefield(all_var[index_f], d4=indextime, d1=indexlon, d2=indexlat , d3=indexvert , yint=yintegral, alt=vert, anomaly=anomaly)
312           what_I_plot = what_I_plot*mult
313           if not error: 
314               fvar = varname
315               if anomaly: fvar = 'anomaly'
316               ##### MAPMODE-SPECIFIC SETTINGS #####
317               if mapmode == 1:
318                   if typefile in ['mesoapi','meso']:    what_I_plot = dumpbdy(what_I_plot,6)
319               elif mapmode == 0:
320                   what_I_plot, x, y = define_axis(lon,lat,vert,time,indexlon,indexlat,indexvert,\
321                         indextime,what_I_plot, len(all_var[index_f].shape),vertmode)
322                   zxmin, zxmax = xaxis ; zymin, zymax = yaxis
323                   if zxmin is not None: mpl.pyplot.xlim(xmin=zxmin)
324                   if zxmax is not None: mpl.pyplot.xlim(xmax=zxmax)
325                   if zymin is not None: mpl.pyplot.ylim(ymin=zymin) 
326                   if zymax is not None: mpl.pyplot.ylim(ymax=zymax)
327                   if invert_y:     lima,limb = mpl.pyplot.ylim() ; mpl.pyplot.ylim(limb,lima)
328                   if ylog:         mpl.pyplot.semilogy()
329               if (fileref is not None) and (index_f is numplot-1):    zevmin, zevmax = calculate_bounds(what_I_plot,vmin=minop,vmax=maxop)
330               else:                                                   zevmin, zevmax = calculate_bounds(what_I_plot,vmin=vmin,vmax=vmax)
331               if colorb in ["def","nobar"]:   palette = get_cmap(name=defcolorb(fvar.upper()))
332               elif (fileref is not None) and (index_f is numplot-1): palette = get_cmap(name="RdBu_r")
333               else:                           palette = get_cmap(name=colorb)
334               ##### 2D field
335               if len(what_I_plot.shape) is 2:
336                 if hole: what_I_plot = hole_bounds(what_I_plot,zevmin,zevmax)
337                 else: what_I_plot = bounds(what_I_plot,zevmin,zevmax)
338                 if flagnolow: what_I_plot = nolow(what_I_plot)
339                 if not tile:
340                     #zelevels = np.linspace(zevmin*(1. + 1.e-7),zevmax*(1. - 1.e-7)) #,num=20)
341                     zelevels = np.linspace(zevmin,zevmax,num=ticks)
342                     if mapmode == 1:       m.contourf( x, y, what_I_plot, zelevels, cmap = palette)
343                     elif mapmode == 0:     contourf( x, y, what_I_plot, zelevels, cmap = palette)
344                 else:
345                     if mapmode == 1:       m.pcolor( x, y, what_I_plot, cmap = palette, vmin=zevmin, vmax=zevmax )
346                     elif mapmode == 0:     pcolor( x, y, what_I_plot, cmap = palette, vmin=zevmin, vmax=zevmax )
347                 if colorb != 'nobar' and varname != 'HGT' :       
348                     if (fileref is not None) and (index_f is numplot-1):
349                        colorbar(fraction=0.05,pad=0.03,format="%.3f",\
350                                           ticks=np.linspace(zevmin,zevmax,num=min([ticks/2+1,20])),\
351                                           extend='neither',spacing='proportional')
352                     else:
353                        colorbar(fraction=0.05,pad=0.03,format=fmtvar(fvar.upper()),\
354                                           ticks=np.linspace(zevmin,zevmax,num=min([ticks/2+1,20])),\
355                                           extend='neither',spacing='proportional')
356                                           # both min max neither
357               ##### 1D field
358               elif len(what_I_plot.shape) is 1:
359                 plot(x,what_I_plot)
360                 if save == 'txt':  writeascii(np.transpose(what_I_plot),'profile'+str(nplot)+'.txt')
361
362               #### Other cases: (maybe plot 3-D field one day or movie ??)
363               else:
364                 print "WARNING!!! ",len(what_I_plot.shape),"-D PLOT NOT SUPPORTED !!!"
365                 print "field dimensions: ", what_I_plot.shape
366                 exit()
367               
368           else:
369               errormess("There is an error in reducing field !")
370
371       ### Vector plot --- a adapter
372       if winds:
373           vecx, error = reducefield( getfield(nc,uchar), d4=indextime, d3=indexvert , yint=yintegral , alt=vert)
374           vecy, error = reducefield( getfield(nc,vchar), d4=indextime, d3=indexvert , yint=yintegral , alt=vert)
375           #what_I_plot, error = reducefield(all_var[index_f], d4=indextime, d1=indexlon, d2=indexlat , d3=indexvert )
376           if not error:
377               if typefile in ['mesoapi','meso']:   
378                   [vecx,vecy] = [dumpbdy(vecx,6,stag=uchar), dumpbdy(vecy,6,stag=vchar)]
379                   key = True
380               elif typefile in ['gcm']:           
381                   key = False
382               if metwind:  [vecx,vecy] = m.rotate_vector(vecx, vecy, lon2d, lat2d)
383               if varname == False:       colorvec = definecolorvec(back)
384               else:                  colorvec = definecolorvec(colorb)
385               vectorfield(vecx, vecy,\
386                          x, y, stride=stride, csmooth=2,\
387                          #scale=15., factor=300., color=colorvec, key=key)
388                          scale=20., factor=250., color=colorvec, key=key)
389                                            #200.         ## or csmooth=stride
390   
391       ### Next subplot
392       basename = getname(var=varname,winds=winds,anomaly=anomaly)
393       basename = basename + getstralt(nc,level) 
394       if typefile in ['mesoapi','meso']:
395            if slon is not None: basename = basename + "_lon_" + str(int(lon2d[indices[1],indices[0]]))
396            if slat is not None: basename = basename + "_lat_" + str(int(lat2d[indices[1],indices[0]]))
397            plottitle = basename
398            if addchar: 
399                [addchar,gogol,gogol2] = getlschar ( all_namefile[index_f] )
400                plottitle = plottitle + addchar + "_LT"+str(ltst)
401            else:        plottitle = plottitle + "_LT"+str(ltst)
402       else:
403            if fileref is not None:
404                if index_f is numplot-1:     plottitle = basename+' '+"fig(1) "+ope+" fig(2)"
405                elif index_f is numplot-2:   plottitle = basename+' '+fileref
406                else:                        plottitle = basename+' '+namefiles[0]#index_f]
407            else:                            plottitle = basename+' '+namefiles[0]#index_f]
408       if mult != 1:                         plottitle = str(mult) + "*" + plottitle
409       if zetitle != "fill":                 
410          plottitle = zetitle
411          if titleref is "fill":             titleref=zetitle
412          if fileref is not None:
413             if index_f is numplot-2:        plottitle = titleref
414             if index_f is numplot-1:        plottitle = "fig(1) "+ope+" fig(2)"
415#       if indexlon is not None:      plottitle = plottitle + " lon: " + str(min(lon[indexlon])) +" "+ str(max(lon[indexlon]))
416#       if indexlat is not None:      plottitle = plottitle + " lat: " + str(min(lat[indexlat])) +" "+ str(max(lat[indexlat]))
417#       if indexvert is not None:     plottitle = plottitle + " vert: " + str(min(vert[indexvert])) +" "+ str(max(vert[indexvert]))
418#       if indextime is not None:     plottitle = plottitle + " time: " + str(min(time[indextime])) +" "+ str(max(time[indextime]))
419       title( plottitle )
420       itime += itstep
421       if nplot >= numplot: error = True
422       nplot += 1
423
424 
425
426
427
428
429
430     
431    ##########################################################################
432    ### Save the figure in a file in the data folder or an user-defined folder
433    if outputname is None:
434       if typefile in ['meso','mesoapi']:   prefix = getprefix(nc)
435       elif typefile in ['gcm']:            prefix = 'LMD_GCM_'
436       else:                                prefix = ''
437    ###
438       zeplot = prefix + basename
439       if addchar:         zeplot = zeplot + addchar
440       if numplot <= 0:    zeplot = zeplot + "_LT"+str(abs(numplot))
441    ###
442       if not target:      zeplot = namefile[0:find(namefile,'wrfout')] + zeplot
443       else:               zeplot = target + "/" + zeplot 
444    ###
445    else:
446       zeplot=outputname
447
448    if found_lct:     
449        pad_inches_value = 0.35
450        print "********** SAVE ", save
451        if save == 'png': 
452            if display: makeplotres(zeplot,res=100.,pad_inches_value=pad_inches_value) #,erase=True)  ## a miniature
453            makeplotres(zeplot,res=resolution,pad_inches_value=pad_inches_value,disp=False)
454        elif save in ['eps','svg','pdf']:     makeplotres(zeplot,pad_inches_value=pad_inches_value,disp=False,ext=save)
455        elif save == 'gui':                   show()
456        elif save == 'txt':                   print "Saved results in txt file." 
457        else: 
458            print "INFO: save mode not supported. using gui instead."
459            show()
460    else:   print "!!! Local time not found"
461
462    ###############
463    ### Now the end
464    return zeplot
Note: See TracBrowser for help on using the repository browser.