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

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

UTIL: PYTHON: spaghetti plot is default for 1D plots. handling 1D plot can be quite improved.

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