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

Last change on this file since 442 was 442, checked in by acolaitis, 13 years ago

Bug fix (again, yes..). Now working properly with mapmode 1 and 0 on GCM and LES files. (not tested on meso)

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