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

Last change on this file since 874 was 874, checked in by aslmd, 12 years ago

UTIL PYTHON. planetoplot, better-sized colorbars

  • Property svn:executable set to *
File size: 62.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...] + consistent generic movie loop
11### J. Leconte   -- LMD --    02/2012 -- Added area weighted averaging. Compatibility with terrestrial gcm.
12### A. Spiga     -- LMD --    03/2012 -- Cleaning and improved comments
13### T. Navarro   -- LMD --    04/2012 -- Added capabilities (e.g. histograms for difference maps)
14### A. Colaitis  -- LMD -- 05~06/2012 -- Added capabilities for analysis of mesoscale files (wind speed, etc...)
15### A. Spiga     -- LMD -- 04~07/2012 -- Added larger support of files + planets. Corrected a few bugs. Cleaning and improved comments
16### A. Colaitis  -- LMD --    08/2012 -- Added functionalities for further analysis: spectra, hodographs, etc... plus improved flexibility (e.g. grid)
17
18def planetoplot (namefiles,\
19           level=0,\
20           vertmode=0,\
21           proj=None,\
22           back=None,\
23           target=None,
24           stride=3,\
25           var=None,\
26           clb=None,\
27           winds=False,\
28           addchar=None,\
29           vmin=None,\
30           vmax=None,\
31           tile=False,\
32           zoom=None,\
33           display=True,\
34           hole=False,\
35           save="gui",\
36           anomaly=False,\
37           var2=None,\
38           ndiv=10,\
39           mult=1.,\
40           add=0.,\
41           zetitle=["fill"],\
42           slon=None,\
43           slat=None,\
44           svert=None,\
45           stime=None,\
46           outputname=None,\
47           resolution=200,\
48           ope=None,\
49           fileref=None,\
50           minop=0.,\
51           maxop=0.,\
52           titleref="fill",\
53           invert_y=False,\
54           xaxis=[None,None],\
55           yaxis=[None,None],\
56           ylog=False,\
57           xlog=False,\
58           yintegral=False,\
59           blat=None,\
60           blon=None,\
61           tsat=False,\
62           flagnolow=False,\
63           mrate=None,\
64           mquality=False,\
65           trans=1,\
66           zarea=None,\
67           axtime=None,\
68           redope=None,\
69           seevar=False,\
70           xlab=None,\
71           ylab=None,\
72           lbls=None,\
73           lstyle=None,\
74           cross=None,\
75           markdevil=False,\
76           facwind=1.,\
77           trycol=False,\
78           streamflag=False,\
79           nocolorb=False,\
80           analysis=None):
81
82    ####################################################################################################################
83    ### Colorbars http://www.scipy.org/Cookbook/Matplotlib/Show_colormaps?action=AttachFile&do=get&target=colormaps3.png
84
85    #################################
86    ### Load librairies and functions
87    from netCDF4 import Dataset
88    from myplot import getcoord2d,define_proj,makeplotres,simplinterv,vectorfield,ptitle,latinterv,getproj,wrfinterv,dumpbdy,\
89                       fmtvar,definecolorvec,defcolorb,getprefix,putpoints,calculate_bounds,errormess,definesubplot,\
90                       zoomset,getcoorddef,getwinddef,whatkindfile,reducefield,bounds,getstralt,getfield,smooth,nolow,\
91                       getname,localtime,check_localtime,polarinterv,getsindex,define_axis,determineplot,readslices,bidimfind,getlschar,hole_bounds,\
92                       getdimfromvar,select_getfield,find_devil
93    from mymath import deg,max,min,mean,writeascii,fig2data,fig2img
94    import matplotlib as mpl
95    from matplotlib.pyplot import contour,contourf,hist, text,subplot, figure, rcParams, savefig, colorbar, \
96                                  pcolor, show, plot, clabel, title, close, legend, xlabel, axis, ylabel, \
97                                  subplots_adjust, axes, clabel
98    from matplotlib.cm import get_cmap
99    from mpl_toolkits.basemap import cm
100    import numpy as np
101    from numpy.core.defchararray import find
102    from scipy.stats import gaussian_kde,describe
103    from videosink import VideoSink
104    from times import sol2ls
105    import subprocess
106    #from singlet import singlet
107    from itertools import cycle
108    import os
109    from scipy import ndimage
110
111
112#########################
113### PRELIMINARY STUFF ###
114#########################
115### we say hello
116    print "********************************************"
117    print "********** WELCOME TO PLANETOPLOT **********"
118    print "********************************************"
119### we ensure namefiles and var are arrays
120    if not isinstance(namefiles, np.ndarray): namefiles = [namefiles]
121    if not isinstance(var, np.ndarray):       var = [var]
122### we initialize a few variables
123    initime=-1 ; sslon = None ; sslat = None
124    k = 0 ; firstfile = True ; count = 0
125### we perform sanity checks and correct for insufficient information
126    if slon is not None: sslon = np.zeros([1,2])
127    if slat is not None: sslat = np.zeros([1,2])
128    if clb is None:            clb = ["def"]*len(var)
129    elif len(clb) < len(var):  clb = [clb[0]]*len(var) ; print "WARNING: less color than vars! setting all to 1st value."
130    if redope is not None and winds: winds=False ; print "WARNING: no winds with redope. setting winds to False."
131### we set option trycol i.e. the user wants to try a set of colorbars
132    if trycol: clb = ["Greys","Blues","YlOrRd","jet","spectral","hot","RdBu","RdYlBu","Paired"] ; zetitle = clb ; var = [var[0]]*9
133### we avoid specific cases not yet implemented
134    if mrate is not None and len(var) > 1: errormess("multivar not allowed in movies. should be fixed soon!")
135### we prepare number of plot fields [zelen] and number of plot instances [numplot] according to user choices
136### --> we support multifile and multivar plots : files + vars separated by commas are on the same figure
137    nlon, nlat, nvert, ntime, mapmode, nslices = determineplot(slon, slat, svert, stime, redope)
138    zelen = len(namefiles)*len(var)
139### we have a special mode obtained by -p noproj in which lat/lon plots are just flat 2D plots
140    if proj == "noproj": mapmode = 0
141### we correct number of plot fields for possible operation (substract, etc...)
142    if ope is not None:
143        if fileref is not None:       zelen = 3*len(var)*len(namefiles)
144        elif "var" in ope:            zelen = zelen + 1
145    numplot = zelen*nslices
146    print "********** FILES, SLICES, VARS, TOTAL PLOTS: ", len(namefiles), nslices, len(var), numplot
147    print "********** MAPMODE: ", mapmode
148### we define the arrays for plot fields -- which will be placed within multiplot loops
149    all_var  = [[]]*zelen ; all_var2  = [[]]*zelen
150    all_title = [[]]*zelen ; all_varname = [[]]*zelen ; all_namefile = [[]]*zelen ; all_colorb = [[]]*zelen
151    all_time = [[]]*zelen ; all_vert = [[]]*zelen ; all_lat = [[]]*zelen ; all_lon = [[]]*zelen
152    all_windu = [[]]*zelen ; all_windv = [[]]*zelen
153    plot_x = [[]]*zelen ; plot_y = [[]]*zelen ; multiplot = [[]]*zelen
154### tool (should be move to mymath)
155    getVar = lambda searchList, ind: [searchList[i] for i in ind]
156#############################
157### LOOP OVER PLOT FIELDS ###
158#############################
159   
160    for nnn in range(len(namefiles)):
161     for vvv in range(len(var)): 
162
163    ### we load each NETCDF objects in namefiles
164      namefile = namefiles[nnn] 
165      nc  = Dataset(namefile)
166    ### we explore the variables in the file
167      varinfile = nc.variables.keys()
168      if seevar: print varinfile ; exit() 
169    ### we define the type of file we have (gcm, meso, etc...)
170      typefile = whatkindfile(nc)
171      if firstfile:                 typefile0 = typefile
172      elif typefile != typefile0:   errormess("Not the same kind of files !", [typefile0, typefile])
173    ### we care for input file being 1D simulations
174      is1d=999 
175      if "longitude" in nc.dimensions and "latitude" in nc.dimensions: is1d = len(nc.variables["longitude"][:])*len(nc.variables["latitude"][:])
176      elif "lon" in nc.dimensions and "lat" in nc.dimensions: is1d = len(nc.variables["lon"][:])*len(nc.variables["lat"][:])
177      if typefile in ['gcm','earthgcm'] and is1d == 1:       mapmode=0 ; winds=False
178    ### we create default vert and time prescriptions if not here in case mapping mode is on (lat/lon maps)
179      if redope is None and mapmode == 1:
180          if svert is None:  svert = readslices(str(level)) ; nvert=1
181          if stime is None and mrate is None:
182             stime = readslices(str(0)) ; ntime=1 ## this is a default choice
183             print "WELL... nothing about time axis. I took default: first time reference stored in file."
184    ### we get the names of variables to be read. in case only one available, we choose this one.
185    ### (we take out of the test specific names e.g. UV is not in the file but used to ask a wind speed computation)
186      varname = select_getfield(zvarname=var[vvv],znc=nc,ztypefile=typefile,mode='check')
187    ### we get the names of wind variables to be read (if any)
188      if winds:                                                   
189         [uchar,vchar,metwind] = getwinddef(nc)             
190         if uchar == 'not found': winds = False
191    ### we tell the user that either no var or no wind is not acceptable
192      if not varname and not winds: errormess("please set at least winds or var",printvar=nc.variables)
193    ### we get the coordinates lat/lon to be used
194      [lon2d,lat2d] = getcoorddef(nc)
195    ### we get an adapted map projection if none is provided by the user
196      if proj == None:   proj = getproj(nc)   
197    ### we define plot boundaries given projection or user choices
198      if firstfile:
199         if proj in ["npstere","spstere"]: [wlon,wlat] = polarinterv(lon2d,lat2d)
200         elif proj in ["lcc","laea"]:      [wlon,wlat] = wrfinterv(lon2d,lat2d)
201         else:                             [wlon,wlat] = simplinterv(lon2d,lat2d)
202         if zoom:                          [wlon,wlat] = zoomset(wlon,wlat,zoom)
203         elif zarea is not None:           [wlon,wlat] = latinterv(area=zarea)
204
205#############################################################
206############ WE LOAD 4D DIMENSIONS : x, y, z, t #############
207#############################################################
208
209      ###should be available for GCM or simple files ?
210      ##if ope in ["cat"] and nnn > 0:    count = time[-1] + 1  ## so that a cat is possible with simple subscripts
211
212    ### TYPE 1 : GCM files or simple files
213      if typefile in ["gcm","earthgcm","ecmwf"]:
214      ### this is needed for continuity
215          if slon is not None: sslon = slon 
216          if slat is not None: sslat = slat 
217      ### we define lat/lon vectors. we get what was done in getcoorddef.
218          lat = lat2d[:,0] ; lon = lon2d[0,:]
219      ### we define areas. this is needed for calculate means and weight with area. this is not compulsory (see reduce_field).
220          if "aire" in nc.variables:      area = nc.variables["aire"][:,:]
221          ### --> add a line here if your reference is not present
222          else:                           area = None
223      ### we define altitude vector. either it is referenced or it is guessed based on last variable's dimensions.
224          if "altitude" in nc.variables:   vert = nc.variables["altitude"][:]
225          elif "Alt" in nc.variables:      vert = nc.variables["Alt"][:]
226          elif "lev" in nc.variables:      vert = nc.variables["lev"][:]
227          elif "presnivs" in nc.variables: vert = nc.variables["presnivs"][:]
228          ### --> add a line here if your reference is not present
229          else: 
230              dadim = getdimfromvar(nc) ; print "No altitude found. Try to build a simple axis.",dadim
231              if   len(dadim) == 4:  print "-- 4D field. Assume z is dim 2." ; vert = np.arange(dadim[-3])
232              elif len(dadim) == 3:  print "-- 3D field. Assume z is dim 1." ; vert = [0.]
233              else:                  vert = [0.]
234      ### we define time vector. either it is referenced or it is guessed based on last variable's dimensions.
235          if "Time" in nc.variables:            time = nc.variables["Time"][:]
236          elif "time_counter" in nc.variables:  time = nc.variables["time_counter"][:]/86400. #### convert from s to days
237          elif "time" in nc.variables:          time = nc.variables["time"][:]
238          ### --> add a line here if your reference is not present
239          else: 
240              print "No time found. Try to build a simple axis. Assume t is dim 1." 
241              dadim = getdimfromvar(nc)
242              if   len(dadim) == 4:  time = np.arange(dadim[-4])
243              elif len(dadim) == 3:  time = np.arange(dadim[-3])
244              else:                  time = [0.] #errormess("no time axis found.")
245          ### (SPECIFIC. convert to Ls for Martian GCM files.)
246          if axtime in ["ls"]:
247              print "converting to Ls ..."
248              for iii in range(len(time)):
249                time[iii] = sol2ls(time[iii])
250                if iii > 0:
251                  while abs(time[iii]-time[iii-1]) > 300: time[iii] = time[iii]+360
252          ### (a case where the user would like to set local times. e.g. : 1D plot with no longitude reference)
253          if axtime in ["lt"]:
254              if initime == -1: initime=input("Please type initial local time:")
255              time = (initime+time*24)%24 ; print "LOCAL TIMES.... ", time
256          ### (simply ask for subscript)
257          if axtime in ["ind"]:
258              dadim = getdimfromvar(nc)
259              if   len(dadim) == 4:  time = np.arange(dadim[-4])
260              elif len(dadim) == 3:  time = np.arange(dadim[-3])
261              elif len(dadim) == 2:  time = np.arange(dadim[-2]) 
262
263    ### TYPE 2 : MESOSCALE FILES
264      elif typefile in ['meso','geo']:
265          ### area not active with mesoscale files
266          area = None 
267          ### HACK TO GET THE CORRECT LAT/LON FROM MESOSCALE FILES WITH 2D LAT/LON ARRAYS
268          ### principle: calculate correct indices then repopulate slon and slat
269          if slon is not None or slat is not None:
270              show_topo_map_user = ((save == 'png') and (typefile == 'meso') and ("HGT" in varinfile) and display)
271              #show_topo_map_user = False
272              if firstfile and show_topo_map_user:  iwantawhereplot = nc     #show a topo map with a cross on the chosen point
273              else:                                 iwantawhereplot = None   #do not show anything, just select indices
274              numlon = 1 ; numlat = 1 
275              if slon is not None:   numlon = slon.shape[1]   
276              if slat is not None:   numlat = slat.shape[1]
277              indices = np.ones([numlon,numlat,2]) ; vlon = None ; vlat = None
278              for iii in range(numlon): 
279               for jjj in range(numlat):
280                 if slon is not None:  vlon = slon[0][iii]  ### note: slon[:][0] does not work
281                 if slat is not None:  vlat = slat[0][jjj]  ### note: slon[:][0] does not work
282                 indices[iii,jjj,:] = bidimfind(lon2d,lat2d,vlon,vlat,file=iwantawhereplot) 
283                 lonp,latp = ( lon2d[indices[iii,jjj,0],indices[iii,jjj,1]] , lat2d[indices[iii,jjj,0],indices[iii,jjj,1]] )
284              ### possible bug here if several --lat
285              for iii in range(numlon):
286               for jjj in range(numlat):
287                 if slon is not None: sslon[0][iii] = indices[iii,0,1] #...this is idx
288                 if slat is not None: sslat[0][jjj] = indices[0,jjj,0] #...this is idy
289              lonp,latp = ( lon2d[indices[0,0,0],indices[0,0,1]] , lat2d[indices[0,0,0],indices[0,0,1]] )
290          ### we get rid of boundary relaxation zone for plots. important to do that now and not before.
291          if (typefile in ['meso'] and mapmode == 1):
292             if '9999' not in getattr(nc,'START_DATE'): lon2d = dumpbdy(lon2d,6) ; lat2d = dumpbdy(lat2d,6) 
293          ### we read the keyword for vertical dimension. we take care for vertical staggering.
294          if varname in ['PHTOT','W']:    vertdim='BOTTOM-TOP_PATCH_END_STAG'
295          else:                           vertdim='BOTTOM-TOP_PATCH_END_UNSTAG'
296          if (var2 is not None and var2 not in ['PHTOT','W']): dumped_vert_stag=True ; vertdim='BOTTOM-TOP_PATCH_END_UNSTAG'
297          else:                                                dumped_vert_stag=False
298          ### we read the keyword for horizontal dimensions. we take care for horizontal staggering.
299          if varname in ['V']:  latdim='SOUTH-NORTH_PATCH_END_STAG'
300          else:                 latdim='SOUTH-NORTH_PATCH_END_UNSTAG'
301          if varname in ['U']:  londim='WEST-EAST_PATCH_END_STAG'
302          else:                 londim='WEST-EAST_PATCH_END_UNSTAG'
303          lon = np.arange(0,getattr(nc,londim),1) ; lat = np.arange(0,getattr(nc,latdim),1)
304          ### we define the time axis and take care of various specificities (lt, ls, sol) or issues (concatenation)
305          if axtime in ["ls","sol"]:
306              lstab, soltab, lttab = getlschar ( namefile, getaxis = True )
307              if axtime == "ls":      time = lstab
308              elif axtime == "sol":   time = soltab
309          else:
310              if ope in ["cat"] and nnn > 0:    count = time[-1] + 1  ## so that a cat is possible with simple subscripts
311              else:                             count = 0
312              if "Times" in nc.dimensions:   time = count + np.arange(0,len(nc.dimensions["Times"]),1)
313              elif "Time" in nc.dimensions:  time = count + np.arange(0,len(nc.dimensions["Time"]),1)
314              else:                          time = count + np.arange(0,1,1)
315          if axtime in ["lt"]:
316              ftime = np.zeros(len(time))
317              for i in range(len(time)): ftime[i] = localtime ( time[i], slon , namefile )
318              time=ftime ; time=check_localtime(time)
319              print "LOCAL TIMES.... ", time
320          ### we define the vertical axis (or lack thereof) and cover possibilities for it to be altitude, pressure, geopotential. quite SPECIFIC.
321          if typefile in ['geo']:   vert = [0.] ; stime = readslices(str(0))
322          else:
323              if vertmode is None:  vertmode=0
324              if vertmode == 0:     
325                  if "vert" in nc.variables: vert = nc.variables["vert"][:]/1000. ; vertmode = 1
326                  else:                      vert = np.arange(0,getattr(nc,vertdim),1)
327              elif vertmode == -1:  vert = nc.variables["PHTOT"][0,:,0,0]/3.72 ; vert = np.array(vert[0:len(vert)-1]) #; print vert
328              elif vertmode == 1 or vertmode == 2:  vert = nc.variables["vert"][:]        ## pressure in Pa
329              else:                                 vert = nc.variables["vert"][:]/1000.  ## altitude in km
330####################################################################
331############ END of WE LOAD 4D DIMENSIONS : x, y, z, t #############
332####################################################################
333
334    ### we fill the arrays of varname, namefile, time, colorbar at the current step considered (NB: why use both k and nnn ?)
335      all_varname[k] = varname
336      all_namefile[k] = namefile
337      all_time[k] = time
338      all_vert[k] = vert
339      all_lat[k] = lat
340      all_lon[k] =  lon
341      all_colorb[k] = clb[vvv]
342      if var2:  all_var2[k], plot_x[k], plot_y[k] = select_getfield(zvarname=var2,znc=nc,ztypefile=typefile,mode='getvar',ztsat=tsat,ylon=all_lon[k],ylat=all_lat[k],yalt=all_vert[k],ytime=all_time[k],analysis=analysis)
343      if winds: all_windu[k] = getfield(nc,uchar) ; all_windv[k] = getfield(nc,vchar)
344    ### we fill the arrays of fields to be plotted at the current step considered
345      all_var[k], plot_x[k], plot_y[k] = select_getfield(zvarname=all_varname[k],znc=nc,ztypefile=typefile,mode='getvar',ztsat=tsat,ylon=all_lon[k],ylat=all_lat[k],yalt=all_vert[k],ytime=all_time[k],analysis=analysis)
346
347      # last line of for namefile in namefiles
348      print "**** GOT SUBDATA:",k," NAMEFILE:",namefile," VAR:",varname, var2 ; k += 1 ; firstfile = False
349
350    ### note to self : stopped comment rewriting here.
351
352    ##################################
353    ### Operation on files (I) with _var
354    if ope is not None and "var" in ope:
355         print "********** OPERATION: ",ope
356         if len(namefiles) > 1: errormess("for this operation... please set only one file !")
357         if len(var) > 2:       errormess("not sure this works for more than 2 vars... please check.")
358         if   "div_var" in ope: all_var[k] = all_var[k-2] / all_var[k-1] ; insert = '_div_'
359         elif "mul_var" in ope: all_var[k] = all_var[k-2] * all_var[k-1] ; insert = '_mul_'
360         elif "add_var" in ope: all_var[k] = all_var[k-2] + all_var[k-1] ; insert = '_add_'
361         elif "sub_var" in ope: all_var[k] = all_var[k-2] - all_var[k-1] ; insert = '_sub_'
362         else:                    errormess(ope+" : non-implemented operation. Check pp.py --help")
363         plot_x[k] = None ; plot_y[k] = None
364         all_time[k] = all_time[k-1] ; all_vert[k] = all_vert[k-1] ; all_lat[k] = all_lat[k-1] ; all_lon[k] = all_lon[k-1] ; all_namefile[k] = all_namefile[k-1]
365         all_varname[k] = all_varname[k-2] + insert + all_varname[k-1]
366         if len(clb) >= zelen: all_colorb[k] = clb[-1]   # last additional user-defined color is for operation plot
367         else:                 all_colorb[k] = all_colorb[k-1]  # if no additional user-defined color... set same as var
368         ### only the operation plot. do not mention colorb so that it is user-defined?
369         if "only" in ope:
370             numplot = 1 ; all_var[0] = all_var[k]
371             all_time[0] = all_time[k] ; all_vert[0] = all_vert[k] ; all_lat[0] = all_lat[k] ; all_lon[0] = all_lon[k] ; all_namefile[0] = all_namefile[k]
372             all_varname[0] = all_varname[k-2] + insert + all_varname[k-1]
373
374
375    ##################################
376    ### Operation on files (II) without _var
377    # we re-iterate on the plots to set operation subplots to make it compatible with multifile (using the same ref file)
378    # (k+1)%3==0 is the index of operation plots
379    # (k+2)%3==0 is the index of reference plots
380    # (k+3)%3==0 is the index of first plots
381    opefirstpass=True
382    if ope is not None and "var" not in ope:
383       print "********** OPERATION: ",ope
384       for k in np.arange(zelen):
385               if len(var) > 1: errormess("for this operation... please set only one var !")
386               if ope in ["-","+","-%","-_only","+_only","-%_only","-_histo"]:
387                  if fileref is None: errormess("fileref is missing!")
388                  else:ncref = Dataset(fileref)
389
390                  if opefirstpass: ## first plots
391                     for ll in np.arange(len(namefiles)):
392                        print "SETTING FIRST PLOT"
393                        all_varname[3*ll] = all_varname[ll] ; all_time[3*ll] = all_time[ll] ; all_vert[3*ll] = all_vert[ll] ; all_lat[3*ll] = all_lat[ll] ; all_lon[3*ll] = all_lon[ll] ; all_namefile[3*ll] = all_namefile[ll] ; all_var2[3*ll] = all_var2[ll] ; all_colorb[3*ll] = all_colorb[ll] ; all_var[3*ll] = all_var[ll]
394                        if plot_y[ll] is not None: plot_y[3*ll] = plot_y[ll] ; plot_x[3*ll] = plot_x[ll]
395                        else: plot_y[3*ll] = None ; plot_x[3*ll] = None
396                        opefirstpass=False
397
398                  if (k+2)%3==0: ## reference plots
399                        print "SETTING REFERENCE PLOT"
400                        all_varname[k] = all_varname[k-1] ; all_time[k] = all_time[k-1] ; all_vert[k] = all_vert[k-1] ; all_lat[k] = all_lat[k-1] ; all_lon[k] = all_lon[k-1] ; all_namefile[k] = all_namefile[k-1] ; all_var2[k] = all_var2[k-1] ; all_colorb[k] = all_colorb[k-1]
401                        all_var[k], plot_x[k], plot_y[k] = select_getfield(zvarname=all_varname[k-1],znc=ncref,ztypefile=typefile,mode='getvar',ztsat=tsat,ylon=all_lon[k],ylat=all_lat[k],yalt=all_vert[k],ytime=all_time[k],analysis=analysis)
402                        if winds: all_windu[k] = getfield(ncref,uchar) ; all_windv[k] = getfield(ncref,vchar)
403
404                  if (k+1)%3==0: ## operation plots
405                     print "SETTING OPERATION PLOT"
406                     all_varname[k] = all_varname[k-1] ; all_time[k] = all_time[k-1] ; all_vert[k] = all_vert[k-1] ; all_lat[k] = all_lat[k-1] ; all_lon[k] = all_lon[k-1] ; all_namefile[k] = all_namefile[k-1] ; all_var2[k] = all_var2[k-1]
407                     if ope in ["-","-_only","-_histo"]:
408                         all_var[k]= all_var[k-2] - all_var[k-1]
409                         if plot_y[k-1] is not None and plot_y[k-2] is not None: plot_y[k] = plot_y[k-2] - plot_y[k-1]
410                         if plot_y[k-2] is None: plot_y[k] = None; plot_x[k] = None
411                     elif ope in ["+","+_only"]:   
412                         all_var[k]= all_var[k-2] + all_var[k-1]
413                         if plot_y[k-1] is not None and plot_y[k-2] is not None: plot_y[k] = plot_y[k-2] + plot_y[k-1]
414                         if plot_y[k-2] is None: plot_y[k] = None; plot_x[k] = None
415                     elif ope in ["-%","-%_only"]:
416                         masked = np.ma.masked_where(all_var[k-1] == 0,all_var[k-1])
417                         masked.set_fill_value([np.NaN])
418                         all_var[k]= 100.*(all_var[k-2] - masked)/masked
419                         if plot_y[k-1] is not None and plot_y[k-2] is not None: 
420                            masked = np.ma.masked_where(plot_y[k-1] == 0,plot_y[k-1])
421                            masked.set_fill_value([np.NaN])
422                            plot_y[k]= 100.*(plot_y[k-2] - masked)/masked
423                         if plot_y[k-2] is None: plot_y[k] = None; plot_x[k] = None
424                     if len(clb) >= zelen: all_colorb[k] = clb[-1]
425                     else: all_colorb[k] = "RdBu_r" # if no additional user-defined color... set a good default one
426                     if winds: all_windu[k] = all_windu[k-2]-all_windu[k-1] ; all_windv[k] = all_windv[k-2] - all_windv[k-1]
427
428               elif ope in ["cat"]:
429                  tabtime = all_time[0];tab = all_var[0];k = 1
430                  if var2: tab2 = all_var2[0]
431                  while k != len(namefiles) and len(all_time[k]) != 0:
432                      if var2: tab2 = np.append(tab2,all_var2[k],axis=0) 
433                      tabtime = np.append(tabtime,all_time[k]) ; tab = np.append(tab,all_var[k],axis=0) ; k += 1
434                  all_time[0] = np.array(tabtime) ; all_var[0] = np.array(tab) ; numplot = 1
435                  if var2: all_var2[0] = np.array(tab2)
436               else: errormess(ope+" : non-implemented operation. Check pp.py --help")
437       if "only" in ope:
438           numplot = 1 ; all_var[0] = all_var[k]
439           all_time[0] = all_time[k] ; all_vert[0] = all_vert[k] ; all_lat[0] = all_lat[k] ; all_lon[0] = all_lon[k] ; all_namefile[0] = all_namefile[k] ; plot_x[0]=plot_x[k] ; plot_y[0]=plot_y[k]
440           all_varname[0] = all_varname[k]
441
442    ##################################
443    ### Open a figure and set subplots
444    fig = figure()
445    subv,subh = definesubplot( numplot, fig, ipreferline = (mapmode == 1) ) 
446    if ope in ['-','-%','-_histo'] and len(namefiles) ==1 : subv,subh = 2,2
447    elif ope in ['-','-%'] and len(namefiles)>1 : subv, subh = len(namefiles), 3
448 
449    #################################
450    ### Time loop for plotting device
451    nplot = 1 ; error = False ; firstpass = True 
452    if lstyle is not None: linecycler = cycle(lstyle)
453    else: linecycler = cycle(["-","--","-.",":"])
454    print "********************************************"
455    while error is False:
456     
457       print "********** PLOT", nplot, " OF ",numplot
458       if nplot > numplot: break
459
460       ####################################################################
461       ## get all indexes to be taken into account for this subplot and then reduce field
462       ## 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
463       if ope is not None:
464           if fileref is not None:      index_f = ((nplot-1)//(nlon*nlat*nvert*ntime))%(3*len(namefiles))  ## OK only 1 var,  see test in the beginning
465           elif "var" in ope:           index_f = ((nplot-1)//(nlon*nlat*nvert*ntime))%(len(var)+1)        ## OK only 1 file, see test in the beginning
466           elif "cat" in ope:           index_f = 0
467       elif not firstpass:
468          if len(namefiles) > 1 and len(var) == 1 and which == "unidim": pass
469          else: yeah = len(namefiles)*len(var) ; index_f = ((nplot-1)//(nlon*nlat*nvert*ntime))%yeah
470       else: yeah = len(namefiles)*len(var) ; index_f = ((nplot-1)//(nlon*nlat*nvert*ntime))%yeah
471       time = all_time[index_f] ; vert = all_vert[index_f] ; lat = all_lat[index_f] ; lon = all_lon[index_f]
472       indexlon  = getsindex(sslon,(nplot-1)%nlon,lon)
473       indexlat  = getsindex(sslat,((nplot-1)//nlon)%nlat,lat)
474       indexvert = getsindex(svert,((nplot-1)//(nlon*nlat))%nvert,vert)
475       plotx=plot_x[index_f] ; ploty=plot_y[index_f]
476       if mrate is not None:                 indextime = None 
477       else:                                 indextime = getsindex(stime,((nplot-1)//(nlon*nlat*nvert))%ntime,time)
478       ltst = None 
479       if typefile in ['meso'] and indextime is not None and len(indextime) < 2: ltst = localtime ( indextime, slon , all_namefile[index_f])
480
481
482       #if mapmode == 0:
483       # if xlab is None:
484       #  if indexlon is None:  xlab = "Longitude"
485       #  elif indexlat is None: xlab = "Latitude"
486       # if ylab is None:
487       #  if indexvert is None: ylab = "Altitude"
488
489
490       print "********** INDEX LON:",indexlon," LAT:",indexlat," VERT:",indexvert," TIME:",indextime
491       ##var = nc.variables["phisinit"][:,:]
492       ##contourf(np.transpose(var),30,cmap = get_cmap(name="Greys_r") ) ; axis('off') ; plot(indexlat,indexlon,'mx',mew=4.0,ms=20.0)
493       ##show()
494       ##exit()
495       #truc = True
496       #truc = False
497       #if truc: indexvert = None
498       ####################################################################
499       ########## REDUCE FIELDS
500       ####################################################################
501       error = False
502       varname = all_varname[index_f]
503       which=''
504       if varname:   ### what is shaded.
505           what_I_plot, error = reducefield( all_var[index_f], d4=indextime, d1=indexlon, d2=indexlat, d3=indexvert, \
506                                             yint=yintegral, alt=vert, anomaly=anomaly, redope=redope, mesharea=area, unidim=is1d)
507           if add != 0.:      what_I_plot = what_I_plot + add
508           if mult != 2718.:  what_I_plot = what_I_plot*mult
509           else:              what_I_plot = np.log10(what_I_plot) ; print "log plot"
510
511       if var2:      ### what is contoured.
512           what_I_plot_contour, error = reducefield( all_var2[index_f], d4=indextime, d1=indexlon, d2=indexlat , d3=indexvert, \
513                                                     yint=yintegral, alt=vert, redope=redope )
514       if winds:     ### what is plot as vectors.
515           vecx, error = reducefield( all_windu[index_f], d4=indextime, d3=indexvert, yint=yintegral, alt=vert)
516           vecy, error = reducefield( all_windv[index_f], d4=indextime, d3=indexvert, yint=yintegral, alt=vert)
517           if varname in [uchar,vchar]: what_I_plot = np.sqrt( np.square(vecx) + np.square(vecy) ) ; varname = "wind"
518 
519       if plotx is not None:
520          plotx, error = reducefield( plotx, d4=indextime, d1=indexlon, d2=indexlat, d3=indexvert, \
521                                             yint=yintegral, alt=vert, anomaly=anomaly, redope=redope, mesharea=area, unidim=is1d)
522          ploty, error = reducefield( ploty, d4=indextime, d1=indexlon, d2=indexlat, d3=indexvert, \
523                                             yint=yintegral, alt=vert, anomaly=anomaly, redope=redope, mesharea=area, unidim=is1d)
524          which='xy'
525       #####################################################################
526       #if truc:
527       #   nx = what_I_plot.shape[2] ; ny = what_I_plot.shape[1] ; nz = what_I_plot.shape[0]
528       #   for k in range(nz): print k,' over ',nz ; what_I_plot[k,:,:] = what_I_plot[k,:,:] / smooth(what_I_plot[k,:,:],12)
529       #   for iii in range(nx):
530       #    for jjj in range(ny):
531       #     deviation = what_I_plot[:,jjj,iii] ; mx = max(deviation) ; mn = min(deviation)
532       #     if iii > 6 and iii < nx-6 and jjj > 6 and jjj < ny-6:   what_I_plot[0,jjj,iii],rel = singlet(deviation,vert/1000.)  ### z must be in km
533       #     else:                                                   what_I_plot[0,jjj,iii]     = 0.
534       #     if np.abs(what_I_plot[0,jjj,iii]) > 1.5:
535       #         print iii,jjj,what_I_plot[0,jjj,iii],int(abs(1.-mx)*100.),int(abs(1.-mn)*100.)
536       #         plot(rel)
537       #   show()
538       #   anomaly = True ### pour avoir les bons reglages plots
539       #   what_I_plot = what_I_plot[0,:,:] 
540       #####################################################################
541
542       ####################################################################
543       ### General plot settings
544       changesubplot = (numplot > 1) and (len(what_I_plot.shape) != 1) and (which != "xy")  ## default for 1D plots: superimposed. to be reworked for better flexibility.
545       if changesubplot: subplot(subv,subh,nplot) #; subplots_adjust(wspace=0,hspace=0)
546       colorb = all_colorb[index_f]
547       ####################################################################
548       if error:
549               errormess("There is an error in reducing field !")
550       else:
551               ticks = ndiv + 1 
552               fvar = varname
553               if anomaly: fvar = 'anomaly'
554               ###
555               if mapmode == 0:    ### could this be moved inside imov loop ?
556                   itime=indextime
557                   if len(what_I_plot.shape) == 3: itime=[0]
558                   m = None ; x = None ; y = None
559                   latyeah = lat ; lonyeah = lon
560                   if typefile in ['meso']:
561                       # now that the section is determined we can set the real lat
562                       # ... or for now, a temptative one.
563                       milieux = int(lat2d.shape[1]/2.)
564                       milieuy = int(lat2d.shape[0]/2.)
565                       if slon is not None or proj == "noproj": latyeah = lat2d[:,milieux]
566                       if slat is not None or proj == "noproj": lonyeah = lon2d[milieuy,:]
567                   what_I_plot, x, y = define_axis(lonyeah,latyeah,vert,time,indexlon,indexlat,indexvert,\
568                         itime,what_I_plot, len(all_var[index_f].shape),vertmode,redope)
569               ###
570               if analysis in ['laplace']: what_I_plot = ndimage.laplace(what_I_plot)
571               ###
572               if (fileref is not None) and ((index_f+1)%3 == 0):    zevmin, zevmax = calculate_bounds(what_I_plot,vmin=minop,vmax=maxop)
573               else:                                                   zevmin, zevmax = calculate_bounds(what_I_plot,vmin=vmin,vmax=vmax)
574               #if (fileref is not None) and (index_f == numplot-1):    colorb = "RdBu_r"
575               if colorb in ["def","nobar","onebar"]:                  palette = get_cmap(name=defcolorb(fvar.upper()))
576               elif colorb == "relief":                                palette = cm.GMT_relief
577               elif colorb == "haxby":                                 palette = cm.GMT_haxby
578               else:                                                   palette = get_cmap(name=colorb)
579               #palette = cm.GMT_split
580               #palette = cm.GMT_globe
581               ##### 1. ELIMINATE 0D or >3D CASES
582               if len(what_I_plot.shape) == 0:   
583                 print "VALUE VALUE VALUE VALUE ::: ",what_I_plot
584                 save = 'donothing'
585               elif len(what_I_plot.shape) >= 4:
586                 print "WARNING!!! ",len(what_I_plot.shape),"-D PLOT NOT SUPPORTED !!! dimensions: ",what_I_plot.shape
587                 errormess("Are you sure you did not forget to prescribe a dimension ?")
588               ##### 2. HANDLE simple 1D/2D field and movies of 1D/2D fields
589               else:
590                 if mrate is not None: iend=len(time)-1
591                 else:                 iend=0
592                 imov = 0
593                 if analysis in ['density','histo','fft','histodensity']: which="xy"
594                 elif len(what_I_plot.shape) == 3:
595                    if var2 and which == '':               which = "contour" ## have to start with contours rather than shading
596                    elif which == '':                      which = "regular"
597                    if mrate is None:      errormess("3D field. Use --rate RATE for movie or specify --time TIME. Exit.")
598                 elif len(what_I_plot.shape) == 2:
599                    if var2 and which == '':               which = "contour" ## have to start with contours rather than shading
600                    elif which == '':                      which = "regular"
601                    if mrate is not None and which == '':  which = "unidim"
602                 elif len(what_I_plot.shape) == 1 and which == '' :
603                    which = "unidim"
604                    if what_I_plot.shape[-1] == 1:      print "VALUE VALUE VALUE VALUE ::: ", what_I_plot[0] ; save = 'donothing'
605##                 if which == "unidim" and len(namefiles) > 1: numplot = 1 # this case is similar to several vars from one file
606                 ##### IMOV LOOP #### IMOV LOOP
607                 while imov <= iend:
608                    print "-> frame ",imov+1, which
609                    if which == "regular":   
610                        if mrate is None:                                   what_I_plot_frame = what_I_plot
611                        else:                                               what_I_plot_frame = what_I_plot[imov,:,:]
612                        if winds:
613                            if mrate is None:                                   vecx_frame = vecx ; vecy_frame = vecy
614                            else:                                               vecx_frame = vecx[imov,:,:] ; vecy_frame = vecy[imov,:,:]
615                    elif which == "contour": 
616                        if mrate is None or what_I_plot_contour.ndim < 3:   what_I_plot_frame = what_I_plot_contour
617                        else:                                               what_I_plot_frame = what_I_plot_contour[imov,:,:]
618                    elif which == "unidim":
619                        if mrate is None:                                   what_I_plot_frame = what_I_plot
620                        else:                                               what_I_plot_frame = what_I_plot[:,imov]  ## because swapaxes
621                    #if mrate is not None:     
622                    if mapmode == 1: 
623                        m = define_proj(proj,wlon,wlat,back=back,blat=blat,blon=blon)  ## this is dirty, defined above but out of imov loop
624                        x, y = m(lon2d, lat2d)                                         ## this is dirty, defined above but out of imov loop
625                    if (typefile in ['meso'] and mapmode == 1):
626                       if '9999' not in getattr(nc,'START_DATE'): what_I_plot_frame = dumpbdy(what_I_plot_frame,6,condition=True)
627#                   if typefile in ['mesoideal']:    what_I_plot_frame = dumpbdy(what_I_plot_frame,0,stag='W',condition=dumped_vert_stag)
628
629                    if which == "unidim":
630                        if lbls is not None: lbl=lbls[nplot-1] 
631#                        if lbls is not None: lbl=lbls[index_f]
632                        else:
633                           lbl = ""
634                           if indexlat is not None:  lbl = lbl + " ix" + str(indexlat[0])
635                           if indexlon is not None:  lbl = lbl + " iy" + str(indexlon[0])
636                           if indexvert is not None: lbl = lbl + " iz" + str(indexvert[0])
637                           if indextime is not None: lbl = lbl + " it" + str(indextime[0])
638                           if lbl == "": lbl = all_namefile[index_f]
639
640                        if mrate is not None: x = y  ## because swapaxes...
641                        #what_I_plot_frame = np.diff(what_I_plot_frame, n=1) ; x = x[1:]
642                     
643                        zeline = next(linecycler) ## "-" for simple lines
644                        if tile:      zemarker = 'x'
645                        else:         zemarker = None 
646                        this_is_a_regular_plot = (indexvert is not None) or (indextime is None) or (indexlat is None) or (indexlon is None)
647                        if this_is_a_regular_plot:   plot(x,what_I_plot_frame,zeline,label=lbl,marker=zemarker)  ## vertical profile
648                        else:                        plot(what_I_plot_frame,x,zeline,label=lbl,marker=zemarker)  ## regular plot
649                        mpl.pyplot.grid(True)
650                        if nplot > 1: legend(loc='best')
651                        if indextime is None and axtime is not None and xlab is None:    xlabel(axtime.upper()) ## define the right label
652                        if save == 'txt':  writeascii(np.transpose([x,np.transpose(what_I_plot)]),'profile'+str(nplot*1000+imov)+'.txt')
653                        if axtime == "lt" and indextime is None:
654                            ax = mpl.pyplot.gca()
655                            # set ticks where your images will be
656                            ax.get_xaxis().set_ticks(np.arange(0,48,2))
657                            # rename tick labels
658                            ax.get_xaxis().set_ticklabels(["0","2","4","6","8","10","12","14","16","18","20","22",\
659                                                       "0","2","4","6","8","10","12","14","16","18","20","22"])
660                            ## rebound everyone
661                            ax.set_xbound(lower=min(x), upper=max(x))
662                    elif which == "xy":
663                        if lbls is not None: lbl=lbls[index_f]
664                        else: lbl=None
665                        if analysis is not None:
666                           if analysis == 'histo': 
667                               if zelen == 1:
668                                  mpl.pyplot.hist(ploty.flatten(),bins=ndiv,normed=True, alpha=0.67, facecolor = 'green', label = lbls)
669                                  mpl.pyplot.legend()
670                                  mpl.pyplot.grid(True)
671                                  mpl.pyplot.title(zetitle)
672                               else:
673                                  multiplot[index_f]=ploty.flatten()
674                                  if index_f == zelen-1: 
675                                     if ope is not None: multiplot = getVar(multiplot,3*np.arange((index_f+1)/3)+2) ## we only compute histograms for the operation plots
676                                     mpl.pyplot.hist(multiplot,bins=ndiv,normed=True, alpha=0.75, label = lbls) 
677                                     mpl.pyplot.legend()
678                                     mpl.pyplot.grid(True)
679                                     mpl.pyplot.title(zetitle)
680                           elif analysis in ['density','histodensity']:
681                                  if ope is not None and (index_f+1)%3 !=0: pass
682                                  else:
683                                     plotx = np.linspace(min(ploty.flatten()),max(ploty.flatten()),1000)
684                                     density = gaussian_kde(ploty.flatten())
685   #                                  density.covariance_factor = lambda : .25  # adjust the covariance factor to change the bandwidth if needed
686   #                                  density._compute_covariance()
687                                        # display the mean and variance of the kde:
688                                     sample = density.resample(size=20000)
689                                     n, (smin, smax), sm, sv, ss, sk = describe(sample[0])
690                                     mpl.pyplot.plot(plotx,density(plotx), label = lbl+'\nmean: '+str(sm)[0:5]+'   std: '+str(np.sqrt(sv))[0:5]+'\nskewness: '+str(ss)[0:5]+'   kurtosis: '+str(sk)[0:5])
691                                     if analysis == 'histodensity':  # plot both histo and density (to assess the rightness of the kernel density estimate for exemple) and display the estimated variance
692                                        mpl.pyplot.hist(ploty.flatten(),bins=ndiv,normed=True, alpha=0.30, label = lbl)
693                                     if index_f == zelen-1: mpl.pyplot.legend() ; mpl.pyplot.title(zetitle)
694                           else:
695                              plot(plotx,ploty,label = lbl)
696                              if index_f == zelen-1: mpl.pyplot.legend() ; mpl.pyplot.title(zetitle)
697                              mpl.pyplot.grid(True)
698                        else:
699                           plot(plotx,ploty,label = lbl)
700                           if index_f == zelen-1: mpl.pyplot.legend() ; mpl.pyplot.title(zetitle)
701                        if varname == 'hodograph':
702                            a=0
703                            for ii in np.arange(len(time)): 
704                               if a%6 == 0: mpl.pyplot.text(plotx[ii],ploty[ii],time[ii]) 
705                               a=a+1
706                            mpl.pyplot.grid(True)
707
708                    elif which == "regular":
709                   
710                        # plot stream lines if there is a stream file and a vert/lat slice. Might not work with movies ??
711                        if streamflag and sslat is None and svert is None:
712                             streamfile = all_namefile[index_f].replace('.nc','_stream.nc')
713                             teststream = os.path.exists(streamfile)
714                             if teststream:
715                                print 'INFO: Using stream file',streamfile, 'for stream lines'
716                                ncstream = Dataset(streamfile)
717                                psi = getfield(ncstream,'psi')
718                                psi = psi[0,:,:,0] # time and longitude are dummy dimensions
719                                if psi.shape[1] != len(x) or psi.shape[0] != len(y):
720                                    errormess('stream file does not fit! Dimensions: '+str(psi.shape)+' '+str(x.shape)+' '+str(y.shape))
721                                zelevels = np.arange(-1.e10,1.e10,1.e9)
722                                zemin = np.min(abs(zelevels))
723                                zemax = np.max(abs(zelevels))
724                                zewidth  =  (abs(zelevels)-zemin)*(5.- 0.5)/(zemax - zemin) + 0.5 # linewidth ranges from 5 to 0.5
725                                cs = contour( x,y,psi, zelevels, colors='k', linewidths = zewidth)
726                                clabel(cs, inline=True, fontsize = 4.*rcParams['font.size']/5., fmt="%1.1e")
727                             else:
728                                print 'WARNING: STREAM FILE',streamfile, 'DOES NOT EXIST !'
729                             
730                        if hole:         what_I_plot_frame = hole_bounds(what_I_plot_frame,zevmin,zevmax)
731                        else:            what_I_plot_frame = bounds(what_I_plot_frame,zevmin,zevmax)
732                        if flagnolow:    what_I_plot_frame = nolow(what_I_plot_frame)
733                        if not tile:
734                            #zelevels = np.linspace(zevmin*(1. + 1.e-7),zevmax*(1. - 1.e-7)) #,num=20)
735                            zelevels = np.linspace(zevmin,zevmax,num=ticks)
736                            #what_I_plot_frame = smooth(what_I_plot_frame,100)
737                            if mapmode == 1:       m.contourf( x, y, what_I_plot_frame, zelevels, cmap = palette, alpha=trans)
738                            elif mapmode == 0:     contourf( x, y, what_I_plot_frame, zelevels, cmap = palette, alpha=trans)
739                        else:
740                            if mapmode == 1:       m.pcolor( x, y, what_I_plot_frame, cmap = palette, vmin=zevmin, vmax=zevmax, alpha=trans)
741                            elif mapmode == 0:     pcolor( x, y, what_I_plot_frame, cmap = palette, vmin=zevmin, vmax=zevmax, alpha=trans)
742
743                        if (cross is not None or markdevil) and mapmode == 1:
744                            if cross is not None: 
745                               howmuch = np.array(cross).shape[0]
746                               for ttt in range(howmuch):
747                                  idx,idy=m(cross[ttt][0],cross[ttt][1])
748                                  mpl.pyplot.plot([idx],[idy],'+k',mew=0.5,ms=18)
749                            elif markdevil:
750                                idx,idy=find_devil(nc,indextime)
751                                idx,idy=x[idx,idy],y[idx,idy]
752                                mpl.pyplot.plot([idx],[idy],'+k',mew=0.5,ms=18)
753
754                        if not nocolorb:
755                          if colorb not in ['nobar','onebar']:
756                            if (fileref is not None) and ((index_f+1)%3 == 0):   daformat = "%.3f" 
757                            elif mult != 1:                                        daformat = "%.1f"
758                            else:                                                  daformat = fmtvar(fvar.upper())
759                            if proj in ['moll']:  zeorientation="horizontal" ; zepad = 0.07 ; zefrac = 0.1 #zepad=0.05
760                            elif proj in ['cyl']: zeorientation="vertical" ; zepad = 0.03 ; zefrac = 0.023
761                            else:                 zeorientation="vertical" ; zepad = 0.03 ; zefrac = 0.05
762                            if mapmode == 0:      zefrac = 0.1
763                            zecb = colorbar( fraction=zefrac,pad=zepad,format=daformat,orientation=zeorientation,\
764                                      ticks=np.linspace(zevmin,zevmax,num=min([ticks/2+1,21])),extend='neither',spacing='proportional' ) 
765                            #if zeorientation == "horizontal":
766                            #    daticks = zecb.ax.get_xticks()
767                            #    zecb.ax.set_xticklabels(daticks,rotation='vertical')
768                            if zeorientation == "horizontal" and zetitle[0] != "fill": zecb.ax.set_xlabel(zetitle[index_f]) ; zetitle[index_f]=""
769                        if winds:
770                            if typefile in ['meso']:
771                                if '9999' not in getattr(nc,'START_DATE') : [vecx_frame,vecy_frame] = [dumpbdy(vecx_frame,6,stag=uchar,condition=True), dumpbdy(vecy_frame,6,stag=vchar,condition=True)]
772                                key = True
773                                if fvar in ['UV','uv','uvmet']: key = False
774                            elif typefile in ['gcm']:
775                                key = False
776                            if metwind and mapmode == 1:   [vecx_frame,vecy_frame] = m.rotate_vector(vecx_frame, vecy_frame, lon2d, lat2d)
777                            if trans != 0.0:   colorvec = definecolorvec(colorb) 
778                            else:              colorvec = definecolorvec(back) 
779                            vectorfield(vecx_frame, vecy_frame, x, y, stride=stride, csmooth=2,\
780                                             #scale=15., factor=300., color=colorvec, key=key)
781                                             scale=20., factor=250./facwind, color=colorvec, key=key)
782                                                              #200.         ## or csmooth=stride
783                        ### THIS IS A QUITE SPECIFIC PIECE (does not work for mesoscale files)
784                        if ope == '-_histo' and nplot == numplot: # this should work as long as ope is '-' guarantees 3 plots for 4 panels without contour
785                            subplot(subv,subh,nplot+1)
786                            rcParams["legend.fontsize"] = 'xx-large'
787                            if indexlat is None:
788                                latmin = -50.; latmax = 50. # latitude range for histogram of difference
789                                zeindexlat = (lat<latmax)*(lat>latmin)
790                                if typefile in ['meso']: zeindexlat = 10
791                                # this follows the define_axis logic in myplot.py:
792                                if indextime is None or indexlon is None: what_I_plot_frame = what_I_plot_frame[zeindexlat,:]
793                                else: what_I_plot_frame = what_I_plot_frame[:,zeindexlat]
794                            toplot = np.ravel(what_I_plot_frame[np.isnan(what_I_plot_frame)==False])
795                            zebins = np.linspace(zevmin,zevmax,num=30)
796                            hist(toplot,bins=zebins,histtype='step',linewidth=2,color='k',normed=True)
797                            zestd = np.std(toplot);zemean = np.mean(toplot)
798                            zebins = np.linspace(zevmin,zevmax,num=300)
799                            zegauss = (1./(zestd * np.sqrt(2 * np.pi)) * np.exp( - (zebins - zemean)**2 / (2 * zestd**2) ) )
800                            plot(zebins, zegauss, linewidth=1, color='r',label="mean: "+str(zemean)[0:5]+"\nstd: "+str(zestd)[0:5])
801                            legend(loc=0,frameon=False)
802                            subplot(subv,subh,nplot) # go back to last plot for title of contour difference
803                        if ope is not None and "only" not in ope: title("fig(1) "+ope+" fig(2)")
804                        elif ope is not None and "only" in ope: title("fig(1) "+ope[0]+" fig(2)")
805                           
806                    elif which == "contour":
807                        rcParams['contour.negative_linestyle'] = 'solid' # no dashed line for negative values
808                        zevminc, zevmaxc = calculate_bounds(what_I_plot_frame, vmin=min(what_I_plot_frame), vmax=max(what_I_plot_frame))
809                        zelevels = np.linspace(zevminc,zevmaxc,ticks/2) #20)
810                        ### another dirty specific stuff in the wall
811                        if var2 == 'HGT':        zelevels = np.arange(-10000.,30000.,250.) #1000.)
812                        elif var2 == 'tpot':     zelevels = np.arange(270,370,5)
813                        elif var2 in ['tk','temp']:     zelevels = np.arange(0.,1000.,5.)#(150,250,5)
814                        elif var2 == 'wstar':    zelevels = np.arange(0,10,1.0)
815                        elif var2 == 'zmax_th':  zelevels = np.arange(0,10,2.0) ; what_I_plot_frame = what_I_plot_frame / 1000.
816                        ###
817                        if mapmode == 0:   
818                            what_I_plot_frame, x, y = define_axis( lonyeah,latyeah,vert,time,indexlon,indexlat,indexvert,\
819                                                              itime,what_I_plot_frame, len(all_var2[index_f].shape),vertmode,redope)
820                            ## is this needed? only if len(all_var2[index_f].shape) != len(all_var[index_f].shape)
821                            cs = contour( x,y,what_I_plot_frame, zelevels, colors='k', linewidths = 0.33)#, alpha=0.5, linestyles='solid')
822                            ##cs = contour( x,y,what_I_plot_frame, zelevels, colors='w', linewidths = 0.5)#, alpha=0.5, linestyles='solid')
823                            #clabel(cs, inline=1, fontsize = 4.*rcParams['font.size']/5., fmt=fmtvar(var2.upper()))
824                        elif mapmode == 1: 
825                            cs = m.contour( x,y,what_I_plot_frame, zelevels, colors='k', linewidths = 0.33)#, alpha=0.5, linestyles='solid')
826                            #clabel(cs, inline=0, fontsize = rcParams['font.size'], fmt="%.0f") #fmtvar(var2.upper()))
827                    if which in ["regular","unidim","xy"]:
828
829                        if nplot > 1 and which in ["unidim","xy"]:
830                           pass  ## because we superimpose nplot instances
831                        else:
832                           # Axis directives for movie frames [including the first one).
833                           zxmin, zxmax = xaxis ; zymin, zymax = yaxis
834                           if zxmin is not None: mpl.pyplot.xlim(xmin=zxmin)
835                           if zxmax is not None: mpl.pyplot.xlim(xmax=zxmax)
836                           if zymin is not None: mpl.pyplot.ylim(ymin=zymin)
837                           if zymax is not None: mpl.pyplot.ylim(ymax=zymax)
838                           if ylog and not xlog:      mpl.pyplot.semilogy()
839                           if xlog and not ylog:      mpl.pyplot.semilogx()
840                           if xlog and ylog: 
841                                mpl.pyplot.xscale('log') 
842                                mpl.pyplot.yscale('log')
843                           if invert_y:  ax = mpl.pyplot.gca() ; ax.set_ylim(ax.get_ylim()[::-1])
844                           if xlab is not None: xlabel(xlab)
845                           if ylab is not None: ylabel(ylab)
846
847                        if mrate is not None:
848                           ### THIS IS A MENCODER MOVIE
849                           if mrate > 0:
850                             figframe=mpl.pyplot.gcf()
851                             if mquality:   figframe.set_dpi(600.)
852                             else:          figframe.set_dpi(200.)
853                             mframe=fig2img(figframe)
854                             if imov == 0:
855                                moviename='movie' ;W,H = figframe.canvas.get_width_height()
856                                video = VideoSink((H,W), moviename, rate=mrate, byteorder="rgba")
857                             video.run(mframe) ; close()
858                             if imov == iend: video.close()                           
859                           ### THIS IS A WEBPAGE MOVIE
860                           else:
861                             nameframe = "image"+str(1000+imov)
862                             makeplotres(nameframe,res=100.,disp=False) ; close()
863                             if imov == 0: myfile = open("zepics", 'w')
864                             myfile.write("modImages["+str(imov)+"] = '"+nameframe+"_100.png';"+ '\n')
865                             if imov == iend:
866                                 myfile.write("first_image = 0;"+ '\n')
867                                 myfile.write("last_image = "+str(iend)+";"+ '\n')
868                                 myfile.close()
869                        if var2 and which == "regular":  which = "contour"
870                        imov = imov+1
871                    elif which == "contour":
872                        which = "regular"
873
874       ### Next subplot
875       zevarname = varname
876       if redope is not None: zevarname = zevarname + "_" + redope
877       basename = getname(var=zevarname,var2=var2,winds=winds,anomaly=anomaly)
878       if len(what_I_plot.shape) > 3:
879           basename = basename + getstralt(nc,level) 
880       if mrate is not None: basename = "movie_" + basename
881       if typefile in ['meso']:
882            if sslon is not None: basename = basename + "_lon_" + str(int(round(lonp)))
883            if sslat is not None: basename = basename + "_lat_" + str(int(round(latp)))
884            plottitle = basename
885            ### dans le nouveau systeme time=ls,sol,lt cette ligne pourrait ne servir a rien (ou deplacer au dessus)
886            if addchar and indextime is not None:   [addchar,gogol,gogol2] = getlschar ( all_namefile[index_f] )  ;  plottitle = plottitle + addchar
887            ### en fait redope is None doit etre remplace par : n'est ni maxt ni mint
888            if redope is None and ltst is not None and ( (mapmode == 0) or (proj in ["lcc","laea","merc","nsper"]) ):  plottitle = plottitle + "_LT" + str(ltst)
889       else:
890            if fileref is not None:
891               if (index_f+1)%3 == 0:     plottitle = basename+' '+"fig(1) "+ope+" fig(2)"
892               elif (index_f+2)%3 == 0:   plottitle = basename+' '+fileref
893               else:                        plottitle = basename+' '+all_namefile[index_f]
894            else:                            plottitle = basename+' '+all_namefile[index_f]
895       if mult != 1:                         plottitle = '{:.0e}'.format(mult) + "*" + plottitle
896       if zetitle[0] != "fill":                 
897          if index_f < len(zetitle): plottitle = zetitle[index_f]
898          else: plottitle = zetitle[0]
899          if titleref is "fill":             titleref=zetitle[index_f]
900          if fileref is not None and which != "xy":
901             if (index_f+2)%3 == 0:        plottitle = titleref
902             if (index_f+1)%3 == 0:        plottitle = "fig(1) "+ope+" fig(2)"
903#       if indexlon is not None:      plottitle = plottitle + " lon: " + str(min(lon[indexlon])) +" "+ str(max(lon[indexlon]))
904#       if indexlat is not None:      plottitle = plottitle + " lat: " + str(min(lat[indexlat])) +" "+ str(max(lat[indexlat]))
905#       if indexvert is not None:     plottitle = plottitle + " vert: " + str(min(vert[indexvert])) +" "+ str(max(vert[indexvert]))
906#       if indextime is not None:     plottitle = plottitle + " time: " + str(min(time[indextime])) +" "+ str(max(time[indextime]))
907       if colorb != "onebar": title( plottitle )
908       if nplot >= numplot: error = True
909       nplot += 1
910
911       if len(namefiles) > 1 and len(var) == 1 and which == "unidim": index_f=index_f+1
912       firstpass=False
913
914    if colorb == "onebar":
915        cax = axes([0.1, 0.2, 0.8, 0.03]) # a ameliorer
916        zecb = colorbar(cax=cax, orientation="horizontal", format=fmtvar(fvar.upper()),\
917                 ticks=np.linspace(zevmin,zevmax,num=min([ticks/2+1,21])),extend='neither',spacing='proportional')
918        if zetitle[0] != "fill": zecb.ax.set_xlabel(zetitle[index_f]) ; zetitle[index_f]=""
919
920
921    ##########################################################################
922    ### Save the figure in a file in the data folder or an user-defined folder
923    if outputname is None:
924       if typefile in ['meso']:   prefix = getprefix(nc)
925       elif typefile in ['gcm']:            prefix = 'LMD_GCM_'
926       else:                                prefix = ''
927    ###
928       zeplot = prefix + basename
929       if zoom:            zeplot = zeplot + "zoom"+str(abs(zoom))
930       if addchar:         zeplot = zeplot + addchar
931       if numplot <= 0:    zeplot = zeplot + "_LT"+str(abs(numplot))
932    ###
933       if not target:      zeplot = namefile[0:find(namefile,'wrfout')] + zeplot
934       else:               zeplot = target + "/" + zeplot 
935    ###
936    else:
937       zeplot=outputname
938
939    if mrate is None:
940        pad_inches_value = 0.35
941        if wlon[1]-wlon[0] < 2.: pad_inches_value = 0.5  # LOCAL MODE (small values)
942        print "********** SAVE ", save
943        if save == 'png': 
944            if display: makeplotres(zeplot,res=100.,pad_inches_value=pad_inches_value) #,erase=True)  ## a miniature
945            makeplotres(zeplot,res=resolution,pad_inches_value=pad_inches_value,disp=False)
946        elif save in ['eps','svg','pdf']:     makeplotres(zeplot,pad_inches_value=pad_inches_value,disp=False,ext=save)
947        elif save == 'gui':                   show()
948        elif save == 'donothing':             pass
949        elif save == 'txt':                   print "Saved results in txt file." 
950        else: 
951            print "INFO: save mode not supported. using gui instead."
952            show()
953
954    ###################################
955    #### Getting more out of this video -- PROBLEMS WITH CREATED VIDEOS
956    #
957    if mrate is not None and save != "html":
958        print "Re-encoding movie.. first pass"
959        video.first_pass(filename=zeplot,quality=mquality,rate=mrate)
960    #    print "Re-encoding movie.. second pass"
961    #    video.second_pass(filename=moviename,quality=mquality,rate=mrate)   
962
963    ###############
964    ### Now the end
965    return zeplot
Note: See TracBrowser for help on using the repository browser.