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

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

UTIL PYTHON : 1) no more negative values for --time but use --axtime lt ; this actually fix a stupid bug with negative lat lon. 2) use of -l is now possible with GCM files, try it with -i 2. 3) now correct handling of sol/ls in mesoscale files 4) for mesoscale files with chosen lat+lon now shows a topo map with a cross on it.

  • Property svn:executable set to *
File size: 33.4 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~12/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### A. Spiga     -- LMD --    12/2011 -- Added HTML animated page capability + general tests of consistency [winds, etc...] + consistent generic movie loop
11
12def planetoplot (namefiles,\
13           level=0,\
14           vertmode=0,\
15           proj=None,\
16           back=None,\
17           target=None,
18           stride=3,\
19           var=None,\
20           colorb="def",\
21           winds=False,\
22           addchar=None,\
23           interv=[0,1],\
24           vmin=None,\
25           vmax=None,\
26           tile=False,\
27           zoom=None,\
28           display=True,\
29           hole=False,\
30           save="gui",\
31           anomaly=False,\
32           var2=None,\
33           ndiv=10,\
34           mult=1.,\
35           zetitle="fill",\
36           slon=None,\
37           slat=None,\
38           svert=None,\
39           stime=None,\
40           outputname=None,\
41           resolution=200,\
42           ope=None,\
43           fileref=None,\
44           minop=0.,\
45           maxop=0.,\
46           titleref="fill",\
47           invert_y=False,\
48           xaxis=[None,None],\
49           yaxis=[None,None],\
50           ylog=False,\
51           yintegral=False,\
52           blat=None,\
53           blon=None,\
54           tsat=False,\
55           flagnolow=False,\
56           mrate=None,\
57           mquality=False,\
58           trans=1,\
59           zarea=None,\
60           axtime=None,\
61           redope=None):
62
63
64    ####################################################################################################################
65    ### Colorbars http://www.scipy.org/Cookbook/Matplotlib/Show_colormaps?action=AttachFile&do=get&target=colormaps3.png
66
67    #################################
68    ### Load librairies and functions
69    from netCDF4 import Dataset
70    from myplot import getcoord2d,define_proj,makeplotres,simplinterv,vectorfield,ptitle,latinterv,getproj,wrfinterv,dumpbdy,\
71                       fmtvar,definecolorvec,defcolorb,getprefix,putpoints,calculate_bounds,errormess,definesubplot,\
72                       zoomset,getcoorddef,getwinddef,whatkindfile,reducefield,bounds,getstralt,getfield,smooth,nolow,\
73                       getname,localtime,polarinterv,getsindex,define_axis,determineplot,readslices,bidimfind,getlschar,hole_bounds
74    from mymath import deg,max,min,mean,get_tsat,writeascii,fig2data,fig2img
75    import matplotlib as mpl
76    from matplotlib.pyplot import contour,contourf, subplot, figure, rcParams, savefig, colorbar, pcolor, show, plot, clabel, title, close, legend, xlabel, axis
77    from matplotlib.cm import get_cmap
78    import numpy as np
79    from numpy.core.defchararray import find
80    from videosink import VideoSink
81    import subprocess
82
83    ################################
84    ### Preliminary stuff
85    ################################
86    print "********************************************"
87    print "********** WELCOME TO PLANETOPLOT **********"
88    print "********************************************"
89    if not isinstance(namefiles, np.ndarray): namefiles = [namefiles]
90    if not isinstance(var, np.ndarray):       var = [var]
91
92    ################################
93    ### Which plot needs to be done?
94    ################################
95    nlon, nlat, nvert, ntime, mapmode, nslices = determineplot(slon, slat, svert, stime)
96    vlon = None ; vlat = None
97    if slon is not None: vlon = slon[0][0]
98    if slat is not None: vlat = slat[0][0]
99    if mrate is not None and len(var) > 1: errormess("multivar not allowed in movies. should be fixed soon!")
100    zelen = len(namefiles)*len(var)
101    numplot = zelen*nslices
102    print "********** FILES, SLICES, VARS, TOTAL PLOTS: ", len(namefiles), nslices, len(var), numplot
103    if ope is not None:
104        if fileref is not None:       zelen = zelen + 2
105        elif "var" in ope:            zelen = zelen + 1
106    all_var  = [[]]*zelen ; all_var2  = [[]]*zelen ; all_title = [[]]*zelen ; all_varname = [[]]*zelen ; all_namefile = [[]]*zelen ; all_time = [[]]*zelen ; all_windu = [[]]*zelen ; all_windv = [[]]*zelen
107 
108    #################################################################################################
109    ### Loop over the files + vars initially separated by commas to be plotted on the same figure ###
110    #################################################################################################
111    k = 0 ; firstfile = True ; count = 0
112    for nnn in range(len(namefiles)):
113     for vvv in range(len(var)): 
114
115      ######################
116      ### Load NETCDF object
117      namefile = namefiles[nnn] 
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      elif typefile in ['gcm'] and len(nc.variables["longitude"][:]) is 1 and len(nc.variables["latitude"][:]) is 1:       mapmode=0;winds=False
126      if mapmode == 0:       winds=False
127      elif mapmode == 1:
128          if svert is None:  svert = readslices(str(level)) ; nvert=1
129          if stime is None and mrate is None:
130             stime = readslices(str(0)) ; ntime=1 ## this is a default choice
131             print "WELL... nothing about time axis. I took default: first time reference stored in file."
132
133      if firstfile: print "********** MAPMODE: ", mapmode
134      if firstfile:                 typefile0 = typefile
135      elif typefile != typefile0:   errormess("Not the same kind of files !", [typefile0, typefile])
136      ### ... VAR
137      varname=var[vvv]
138      if varname not in nc.variables: varname = False
139      ### ... WINDS
140      if winds:                                                   
141         [uchar,vchar,metwind] = getwinddef(nc)             
142         if uchar == 'not found': winds = False
143      if not varname and not winds: errormess("please set at least winds or var",printvar=nc.variables)
144      ### ... COORDINATES, could be moved below
145      [lon2d,lat2d] = getcoorddef(nc)
146      ### ... PROJECTION
147      if ((proj == None) and (typefile not in ['mesoideal'])):   proj = getproj(nc)                 
148
149      if firstfile:
150         ##########################
151         ### Define plot boundaries
152         ### todo: possible areas in latinterv in argument (ex: "Far_South_Pole")
153         if proj in ["npstere","spstere"]: [wlon,wlat] = polarinterv(lon2d,lat2d)
154         elif proj in ["lcc","laea"]:      [wlon,wlat] = wrfinterv(lon2d,lat2d)
155         else:                             [wlon,wlat] = simplinterv(lon2d,lat2d)
156         if zoom:                          [wlon,wlat] = zoomset(wlon,wlat,zoom)
157         elif zarea is not None: [wlon,wlat] = latinterv(area=zarea)
158
159########################################################## LOAD 4D DIMENSIONS : x, y, z, t
160      if typefile == "gcm":
161          lat = nc.variables["latitude"][:] ; lon = nc.variables["longitude"][:]
162          if "Time" in nc.variables:      time = nc.variables["Time"][:]
163          elif "time" in nc.variables:    time = nc.variables["time"][:]
164          else:                           errormess("no time axis found.")
165          vert = nc.variables["altitude"][:]
166          if axtime in ["ls","sol"]:   errormess("not supported. should not be too difficult though.")
167      elif typefile in ['meso','mesoapi','geo','mesoideal']:
168          ### the following lines are kind of dirty... not possible to ask for several lats and lons
169          if vlon is not None or vlat is not None:   
170              if firstfile:  iwantawhereplot = nc
171              else:          iwantawhereplot = None
172              indices = bidimfind(lon2d,lat2d,vlon,vlat,file=iwantawhereplot)  #placer un point sur carte
173              lonp,latp = ( lon2d[indices[0],indices[1]] , lat2d[indices[0],indices[1]] )
174          if typefile in ['mesoapi','meso'] and mapmode == 1: lon2d = dumpbdy(lon2d,6) ; lat2d = dumpbdy(lat2d,6)  ### important to do that now and not before
175          if slon is not None: slon[0][0] = indices[1] ; slon[0][1] = indices[1]  #...this is idx
176          if slat is not None: slat[0][0] = indices[0] ; slat[0][1] = indices[0]  #...this is idy
177          if varname in ['PHTOT','W']:    vertdim='BOTTOM-TOP_PATCH_END_STAG'
178          else:                           vertdim='BOTTOM-TOP_PATCH_END_UNSTAG'
179          if (var2 is not None and var2 not in ['PHTOT','W']):
180               vertdim='BOTTOM-TOP_PATCH_END_UNSTAG'
181               dumped_vert_stag=True
182          else: dumped_vert_stag=False
183          if varname in ['V']:  latdim='SOUTH-NORTH_PATCH_END_STAG'
184          else:                 latdim='SOUTH-NORTH_PATCH_END_UNSTAG'
185          if varname in ['U']:  londim='WEST-EAST_PATCH_END_STAG'
186          else:                 londim='WEST-EAST_PATCH_END_UNSTAG'
187          lon = np.arange(0,getattr(nc,londim),1) ; lat = np.arange(0,getattr(nc,latdim),1)
188          ###
189          if axtime in ["ls","sol"]:
190              lstab, soltab, lttab = getlschar ( namefile, getaxis = True )
191              if axtime == "ls":      time = lstab
192              elif axtime == "sol":   time = soltab
193          else:
194              if "Times" in nc.variables:   time = count + np.arange(0,len(nc.variables["Times"]),1)
195              elif "Time" in nc.variables:  time = count + np.arange(0,len(nc.variables["Time"]),1)
196              else:                         time = count + np.arange(0,1,1)
197              if nnn > 0:  count = time[-1] + 1  ## so that a cat is possible with simple subscripts
198              else:        count = 0
199          if axtime in ["lt"]:
200              for i in range(len(time)):  time[i] = localtime ( interv[0]+time[i]*interv[1], 0.5*(wlon[0]+wlon[1]) )
201              print "LOCAL TIMES.... ", time
202          ###
203          if typefile in ['geo']:   vert = [0.] ; stime = readslices(str(0))
204          else:
205              if vertmode is None:  vertmode=0
206              if vertmode == 0:     vert = np.arange(0,getattr(nc,vertdim),1)
207              else:                 vert = nc.variables["vert"][:]
208       #if firstfile:
209       #   lat0 = lat
210       #elif len(lat0) != len(lat):
211       #   errormess("Not the same latitude lengths !", [len(lat0), len(lat)])
212       #elif sum((lat == lat0) == False) != 0:
213       #   errormess("Not the same latitudes !", [lat,lat0])
214       ## Faire d'autre checks sur les compatibilites entre fichiers!!
215##########################################################
216
217      all_varname[k] = varname
218      all_namefile[k] = namefile
219      all_time[k] = time
220      if var2: all_var2[k] = getfield(nc,var2)
221      if winds: all_windu[k] = getfield(nc,uchar) ; all_windv[k] = getfield(nc,vchar)
222      ##### SPECIFIC
223      if varname in ["temp","t","T_nadir_nit","T_nadir_day","temp_day","temp_night"] and tsat:
224          tt=getfield(nc,varname) ; print "computing Tsat-T, I ASSUME Z-AXIS IS PRESSURE"
225          if type(tt).__name__=='MaskedArray':  tt.set_fill_value([np.NaN]) ; tinput=tt.filled()
226          else:                                 tinput=tt
227          all_var[k]=get_tsat(vert,tinput,zlon=lon,zlat=lat,zalt=vert,ztime=time)
228      else:
229      ##### GENERAL STUFF HERE
230          all_var[k] = getfield(nc,varname)
231     
232      print "**** GOT SUBDATA:",k," NAMEFILE:",namefile," VAR:",varname, var2 ; k += 1 ; firstfile = False
233      #### End of for namefile in namefiles
234
235    ##################################
236    ### Operation on files
237    if ope is not None:
238        print "********** OPERATION: ",ope
239        if "var" not in ope:
240             if len(var) > 1: errormess("for this operation... please set only one var !")
241             if ope in ["-","+","-%"]:
242                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]
243                else:                     errormess("fileref is missing!") 
244                if ope == "-":     all_var[k+1]= all_var[k-1] - all_var[k]
245                elif ope == "+":   all_var[k+1]= all_var[k-1] + all_var[k]
246                elif ope == "-%":  all_var[k+1]= 100.*(all_var[k-1] + all_var[k])/all_var[k]
247                all_varname[k+1] = all_varname[k] ; all_time[k+1] = all_time[k] ; all_namefile[k+1] = all_namefile[k] ; numplot = numplot+2
248             elif ope in ["cat"]:
249                tabtime = all_time[0];tab = all_var[0];k = 1
250                if var2: tab2 = all_var2[0]
251                while k != len(namefiles) and len(all_time[k]) != 0:
252                    if var2: tab2 = np.append(tab2,all_var2[k],axis=0) 
253                    tabtime = np.append(tabtime,all_time[k]) ; tab = np.append(tab,all_var[k],axis=0) ; k += 1
254                all_time[0] = np.array(tabtime) ; all_var[0] = np.array(tab) ; numplot = 1
255                if var2: all_var2[0] = np.array(tab2)
256             else: errormess(ope+" : non-implemented operation. Check pp.py --help")
257        else:
258             if len(namefiles) > 1: errormess("for this operation... please set only one file !") 
259             if len(var) > 2:       errormess("not sure this works for more than 2 vars... please check.")
260             if   ope in ["div_var"]: all_var[k] = all_var[k-2] / all_var[k-1] ; insert = '_div_'
261             elif ope in ["mul_var"]: all_var[k] = all_var[k-2] * all_var[k-1] ; insert = '_mul_'
262             elif ope in ["add_var"]: all_var[k] = all_var[k-2] + all_var[k-1] ; insert = '_add_'
263             elif ope in ["sub_var"]: all_var[k] = all_var[k-2] - all_var[k-1] ; insert = '_sub_'
264             else:                    errormess(ope+" : non-implemented operation. Check pp.py --help")
265             numplot = numplot + 1 ; all_time[k] = all_time[k-1] ; all_namefile[k] = all_namefile[k-1]
266             all_varname[k] = all_varname[k-2] + insert + all_varname[k-1] 
267    ##################################
268    ### Open a figure and set subplots
269    fig = figure()
270    subv,subh = definesubplot( numplot, fig ) 
271    if ope in ['-','-%']: subv,subh = 2,2
272 
273    #################################
274    ### Time loop for plotting device
275    nplot = 1 ; error = False 
276    print "********************************************"
277    while error is False:
278     
279       print "********** NPLOT", nplot
280       if nplot > numplot: break
281
282       ####################################################################
283       ## get all indexes to be taken into account for this subplot and then reduce field
284       ## 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
285       indexlon  = getsindex(slon,(nplot-1)%nlon,lon)
286       indexlat  = getsindex(slat,((nplot-1)//nlon)%nlat,lat)
287       indexvert = getsindex(svert,((nplot-1)//(nlon*nlat))%nvert,vert) 
288       if ope is not None:
289           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
290           elif "var" in ope:           index_f = ((nplot-1)//(nlon*nlat*nvert*ntime))%(len(var)+1)        ## OK only 1 file, see test in the beginning
291           elif "cat" in ope:           index_f = 0
292       else:                            yeah = len(namefiles)*len(var) ; index_f = ((nplot-1)//(nlon*nlat*nvert*ntime))%yeah
293       time = all_time[index_f]
294       if mrate is not None:                 indextime = None 
295       else:                                 indextime = getsindex(stime,((nplot-1)//(nlon*nlat*nvert))%ntime,time)
296       ltst = None 
297       if typefile in ['mesoapi','meso'] and indextime is not None:  ltst = localtime ( interv[0]+indextime*interv[1], 0.5*(wlon[0]+wlon[1]) ) 
298       print "********** INDEX LON:",indexlon," LAT:",indexlat," VERT:",indexvert," TIME:",indextime
299       #var = nc.variables["phisinit"][:,:]
300       #contourf(np.transpose(var),30,cmap = get_cmap(name="Greys_r") ) ; axis('off') ; plot(indexlat,indexlon,'mx',mew=4.0,ms=20.0)
301       #show()
302       #exit()
303       ####################################################################
304       ########## REDUCE FIELDS
305       ####################################################################
306       error = False
307       varname = all_varname[index_f]
308       if varname:   ### what is shaded.
309           what_I_plot, error = reducefield( all_var[index_f], d4=indextime, d1=indexlon, d2=indexlat, d3=indexvert, \
310                                             yint=yintegral, alt=vert, anomaly=anomaly, redope=redope )
311           what_I_plot = what_I_plot*mult
312       if var2:      ### what is contoured.
313           what_I_plot_contour, error = reducefield( all_var2[index_f], d4=indextime, d1=indexlon, d2=indexlat , d3=indexvert, \
314                                             yint=yintegral, alt=vert )
315       if winds:     ### what is plot as vectors.
316           vecx, error = reducefield( all_windu[index_f], d4=indextime, d3=indexvert, yint=yintegral, alt=vert)
317           vecy, error = reducefield( all_windv[index_f], d4=indextime, d3=indexvert, yint=yintegral, alt=vert)
318       ####################################################################
319       ### General plot settings
320       changesubplot = (numplot > 1) and (len(what_I_plot.shape) != 1)  ## default for 1D plots: superimposed. to be reworked for better flexibility.
321       if changesubplot: subplot(subv,subh,nplot)
322       ####################################################################
323       if error:
324               errormess("There is an error in reducing field !")
325       else:
326               ticks = ndiv + 1 
327               fvar = varname
328               if anomaly: fvar = 'anomaly'
329               ###
330               if mapmode == 0:    ### could this be moved inside imov loop ?
331                   itime=indextime
332                   if len(what_I_plot.shape) is 3:itime=[0]
333                   m = None ; x = None ; y = None
334                   what_I_plot, x, y = define_axis(lon,lat,vert,time,indexlon,indexlat,indexvert,\
335                         itime,what_I_plot, len(all_var[index_f].shape),vertmode)
336               ###
337               if (fileref is not None) and (index_f == numplot-1):    zevmin, zevmax = calculate_bounds(what_I_plot,vmin=minop,vmax=maxop)
338               else:                                                   zevmin, zevmax = calculate_bounds(what_I_plot,vmin=vmin,vmax=vmax)
339               if (fileref is not None) and (index_f == numplot-1):    colorb = "RdBu_r"
340               if colorb in ["def","nobar"]:                           palette = get_cmap(name=defcolorb(fvar.upper()))
341               else:                                                   palette = get_cmap(name=colorb)
342               ##### 1. ELIMINATE 0D or >3D CASES
343               if len(what_I_plot.shape) == 0:   
344                 print "VALUE VALUE VALUE VALUE ::: ",what_I_plot
345                 save = 'donothing'
346               elif len(what_I_plot.shape) >= 4:
347                 print "WARNING!!! ",len(what_I_plot.shape),"-D PLOT NOT SUPPORTED !!! dimensions: ",what_I_plot.shape
348                 errormess("Are you sure you did not forget to prescribe a dimension ?")
349               ##### 2. HANDLE simple 1D/2D field and movies of 1D/2D fields
350               else:
351                 if mrate is not None: iend=len(time)-1
352                 else:                 iend=0
353                 imov = 0 
354                 if len(what_I_plot.shape) == 3:
355                    if var2:               which = "contour" ## have to start with contours rather than shading
356                    else:                  which = "regular"
357                    if mrate is None:      errormess("3D field. Use --rate RATE for movie or specify --time TIME. Exit.")
358                 elif len(what_I_plot.shape) == 2:
359                    if var2:               which = "contour" ## have to start with contours rather than shading
360                    else:                  which = "regular"
361                    if mrate is not None:  which = "unidim"
362                 elif len(what_I_plot.shape) == 1:
363                    which = "unidim"
364                 ##### IMOV LOOP #### IMOV LOOP
365                 while imov <= iend:
366                    print "-> frame ",imov+1, which
367                    if which == "regular":   
368                        if mrate is None:                                   what_I_plot_frame = what_I_plot
369                        else:                                               what_I_plot_frame = what_I_plot[imov,:,:]
370                        if winds:
371                            if mrate is None:                                   vecx_frame = vecx ; vecy_frame = vecy
372                            else:                                               vecx_frame = vecx[imov,:,:] ; vecy_frame = vecy[imov,:,:]
373                    elif which == "contour": 
374                        if mrate is None or what_I_plot_contour.ndim < 3:   what_I_plot_frame = what_I_plot_contour
375                        else:                                               what_I_plot_frame = what_I_plot_contour[imov,:,:]
376                    elif which == "unidim":
377                        if mrate is None:                                   what_I_plot_frame = what_I_plot
378                        else:                                               what_I_plot_frame = what_I_plot[:,imov]  ## because swapaxes
379                    #if mrate is not None:     
380                    if mapmode == 1: 
381                            m = define_proj(proj,wlon,wlat,back=back,blat=blat,blon=blon)  ## this is dirty, defined above but out of imov loop
382                            x, y = m(lon2d, lat2d)                                         ## this is dirty, defined above but out of imov loop
383                    if typefile in ['mesoapi','meso'] and mapmode == 1:   what_I_plot_frame = dumpbdy(what_I_plot_frame,6,condition=True)
384#                   if typefile in ['mesoideal']:    what_I_plot_frame = dumpbdy(what_I_plot_frame,0,stag='W',condition=dumped_vert_stag)
385
386                    if which == "unidim":
387                        lbl = ""
388                        if indexlat is not None:  lbl = lbl + " ix" + str(indexlat[0])
389                        if indexlon is not None:  lbl = lbl + " iy" + str(indexlon[0])
390                        if indexvert is not None: lbl = lbl + " iz" + str(indexvert[0])
391                        if indextime is not None: lbl = lbl + " it" + str(indextime[0])
392                        if mrate is not None: x = y  ## because swapaxes...
393                        if indexvert is not None or indextime is None:    plot(x,what_I_plot_frame,label=lbl)  ## regular plot
394                        else:                                             plot(what_I_plot_frame,x,label=lbl)  ## vertical profile
395                        if nplot > 1: legend(loc='best')
396                        if indextime is None and axtime is not None:      xlabel(axtime.upper()) ## define the right label
397                        if save == 'txt':  writeascii(np.transpose(what_I_plot),'profile'+str(nplot*1000+imov)+'.txt')
398
399                    elif which == "regular": 
400                        if hole:         what_I_plot_frame = hole_bounds(what_I_plot_frame,zevmin,zevmax)
401                        else:            what_I_plot_frame = bounds(what_I_plot_frame,zevmin,zevmax)
402                        if flagnolow:    what_I_plot_frame = nolow(what_I_plot_frame)
403                        if not tile:
404                            #zelevels = np.linspace(zevmin*(1. + 1.e-7),zevmax*(1. - 1.e-7)) #,num=20)
405                            zelevels = np.linspace(zevmin,zevmax,num=ticks)
406                            if mapmode == 1:       m.contourf( x, y, what_I_plot_frame, zelevels, cmap = palette, alpha=trans)
407                            elif mapmode == 0:     contourf( x, y, what_I_plot_frame, zelevels, cmap = palette, alpha=trans)
408                        else:
409                            if mapmode == 1:       m.pcolor( x, y, what_I_plot_frame, cmap = palette, vmin=zevmin, vmax=zevmax, alpha=trans)
410                            elif mapmode == 0:     pcolor( x, y, what_I_plot_frame, cmap = palette, vmin=zevmin, vmax=zevmax, alpha=trans)
411
412                        if colorb != 'nobar':       
413                            if (fileref is not None) and (index_f == numplot-1):   daformat = "%.3f" 
414                            elif mult != 1:                                        daformat = "%.1f"
415                            else:                                                  daformat = fmtvar(fvar.upper())
416                            colorbar( fraction=0.05,pad=0.03,format=daformat,\
417                                      ticks=np.linspace(zevmin,zevmax,num=min([ticks/2+1,21])),extend='neither',spacing='proportional' ) 
418                        if winds:
419                            if typefile in ['mesoapi','meso']:
420                                [vecx_frame,vecy_frame] = [dumpbdy(vecx_frame,6,stag=uchar,condition=True), dumpbdy(vecy_frame,6,stag=vchar,condition=True)]
421                                key = True
422                            elif typefile in ['gcm']:
423                                key = False
424                            if metwind:  [vecx_frame,vecy_frame] = m.rotate_vector(vecx_frame, vecy_frame, lon2d, lat2d)
425                            if var:       colorvec = definecolorvec(back)
426                            else:         colorvec = definecolorvec(colorb)
427                            vectorfield(vecx_frame, vecy_frame, x, y, stride=stride, csmooth=2,\
428                                             #scale=15., factor=300., color=colorvec, key=key)
429                                             scale=20., factor=250., color=colorvec, key=key)
430                                                              #200.         ## or csmooth=stride
431                    elif which == "contour":
432                        zevminc, zevmaxc = calculate_bounds(what_I_plot_frame)
433                        zelevels = np.linspace(zevminc,zevmaxc,ticks/2) #20)
434                        if var2 == 'HGT': zelevels = np.arange(-10000.,30000.,2000.)
435                        if mapmode == 0:   
436                            what_I_plot_frame, x, y = define_axis( lon,lat,vert,time,indexlon,indexlat,indexvert,\
437                                                              itime,what_I_plot_frame, len(all_var2[index_f].shape),vertmode )
438                            cs = contour( x,y,what_I_plot_frame, zelevels, colors='k', linewidths = 1 ) #0.33 colors='w' )# , alpha=0.5)
439                        elif mapmode == 1:  cs = m.contour( x,y,what_I_plot_frame, zelevels, colors='k', linewidths = 1 ) #0.33 colors='w' )# , alpha=0.5)
440
441                    if which in ["regular","unidim"]:
442
443                        if nplot > 1 and which == "unidim":
444                           pass  ## because we superimpose nplot instances
445                        else:
446                           # Axis directives for movie frames [including the first one).
447                           zxmin, zxmax = xaxis ; zymin, zymax = yaxis
448                           if zxmin is not None: mpl.pyplot.xlim(xmin=zxmin)
449                           if zxmax is not None: mpl.pyplot.xlim(xmax=zxmax)
450                           if zymin is not None: mpl.pyplot.ylim(ymin=zymin)
451                           if zymax is not None: mpl.pyplot.ylim(ymax=zymax)
452                           if ylog:      mpl.pyplot.semilogy()
453                           if invert_y:  ax = mpl.pyplot.gca() ; ax.set_ylim(ax.get_ylim()[::-1])
454
455                        if mrate is not None:
456                           ### THIS IS A MENCODER MOVIE
457                           if mrate > 0:
458                             figframe=mpl.pyplot.gcf()
459                             if mquality:   figframe.set_dpi(600.)
460                             else:          figframe.set_dpi(200.)
461                             mframe=fig2img(figframe)
462                             if imov == 0:
463                                moviename='movie' ;W,H = figframe.canvas.get_width_height()
464                                video = VideoSink((H,W), moviename, rate=mrate, byteorder="rgba")
465                             video.run(mframe) ; close()
466                             if imov == iend: video.close()                           
467                           ### THIS IS A WEBPAGE MOVIE
468                           else:
469                             nameframe = "image"+str(1000+imov)
470                             makeplotres(nameframe,res=100.,disp=False) ; close()
471                             if imov == 0: myfile = open("zepics", 'w')
472                             myfile.write("modImages["+str(imov)+"] = '"+nameframe+"_100.png';"+ '\n')
473                             if imov == iend:
474                                 myfile.write("first_image = 0;"+ '\n')
475                                 myfile.write("last_image = "+str(iend)+";"+ '\n')
476                                 myfile.close()
477                        if var2 and which == "regular":  which = "contour"
478                        imov = imov+1
479                    elif which == "contour":
480                        which = "regular"
481
482       ### Next subplot
483       zevarname = varname
484       if redope is not None: zevarname = zevarname + "_" + redope
485       basename = getname(var=zevarname,var2=var2,winds=winds,anomaly=anomaly)
486       if len(what_I_plot.shape) > 3:
487           basename = basename + getstralt(nc,level) 
488       if mrate is not None: basename = "movie_" + basename
489       if typefile in ['mesoapi','meso']:
490            if slon is not None: basename = basename + "_lon_" + str(int(round(lonp)))
491            if slat is not None: basename = basename + "_lat_" + str(int(round(latp)))
492            plottitle = basename
493            ### dans le nouveau systeme time=ls,sol,lt cette ligne pourrait ne servir a rien (ou deplacer au dessus)
494            if addchar and indextime is not None:   [addchar,gogol,gogol2] = getlschar ( all_namefile[index_f] )  ;  plottitle = plottitle + addchar
495            ### en fait redope is None doit etre remplace par : n'est ni maxt ni mint
496            if redope is None and ltst is not None and ( (mapmode == 0) or (proj in ["lcc","laea","merc","nsper"]) ):  plottitle = plottitle + "_LT" + str(ltst)
497       else:
498            if fileref is not None:
499                if index_f is numplot-1:     plottitle = basename+' '+"fig(1) "+ope+" fig(2)"
500                elif index_f is numplot-2:   plottitle = basename+' '+fileref
501                else:                        plottitle = basename+' '+namefiles[0]#index_f]
502            else:                            plottitle = basename+' '+namefiles[0]#index_f]
503       if mult != 1:                         plottitle = '{:.0e}'.format(mult) + "*" + plottitle
504       if zetitle != "fill":                 
505          plottitle = zetitle
506          if titleref is "fill":             titleref=zetitle
507          if fileref is not None:
508             if index_f is numplot-2:        plottitle = titleref
509             if index_f is numplot-1:        plottitle = "fig(1) "+ope+" fig(2)"
510#       if indexlon is not None:      plottitle = plottitle + " lon: " + str(min(lon[indexlon])) +" "+ str(max(lon[indexlon]))
511#       if indexlat is not None:      plottitle = plottitle + " lat: " + str(min(lat[indexlat])) +" "+ str(max(lat[indexlat]))
512#       if indexvert is not None:     plottitle = plottitle + " vert: " + str(min(vert[indexvert])) +" "+ str(max(vert[indexvert]))
513#       if indextime is not None:     plottitle = plottitle + " time: " + str(min(time[indextime])) +" "+ str(max(time[indextime]))
514       title( plottitle )
515       if nplot >= numplot: error = True
516       nplot += 1
517
518 
519
520
521
522
523
524     
525    ##########################################################################
526    ### Save the figure in a file in the data folder or an user-defined folder
527    if outputname is None:
528       if typefile in ['meso','mesoapi']:   prefix = getprefix(nc)
529       elif typefile in ['gcm']:            prefix = 'LMD_GCM_'
530       else:                                prefix = ''
531    ###
532       zeplot = prefix + basename
533       if addchar:         zeplot = zeplot + addchar
534       if numplot <= 0:    zeplot = zeplot + "_LT"+str(abs(numplot))
535    ###
536       if not target:      zeplot = namefile[0:find(namefile,'wrfout')] + zeplot
537       else:               zeplot = target + "/" + zeplot 
538    ###
539    else:
540       zeplot=outputname
541
542    if mrate is None:
543        pad_inches_value = 0.35
544        print "********** SAVE ", save
545        if save == 'png': 
546            if display: makeplotres(zeplot,res=100.,pad_inches_value=pad_inches_value) #,erase=True)  ## a miniature
547            makeplotres(zeplot,res=resolution,pad_inches_value=pad_inches_value,disp=False)
548        elif save in ['eps','svg','pdf']:     makeplotres(zeplot,pad_inches_value=pad_inches_value,disp=False,ext=save)
549        elif save == 'gui':                   show()
550        elif save == 'donothing':             pass
551        elif save == 'txt':                   print "Saved results in txt file." 
552        else: 
553            print "INFO: save mode not supported. using gui instead."
554            show()
555
556    ###################################
557    #### Getting more out of this video -- PROBLEMS WITH CREATED VIDEOS
558    #
559    #if mrate is not None:
560    #    print "Re-encoding movie.. first pass"
561    #    video.first_pass(filename=moviename,quality=mquality,rate=mrate)
562    #    print "Re-encoding movie.. second pass"
563    #    video.second_pass(filename=moviename,quality=mquality,rate=mrate)   
564
565    ###############
566    ### Now the end
567    return zeplot
Note: See TracBrowser for help on using the repository browser.