Changeset 20500 for issm/trunk/src/m/plot/plot_unit.py
- Timestamp:
- 04/12/16 21:32:01 (9 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 1 build-js 2 build-esmf 3 build-gcm 1 4 build-fw 2 5 build-ad
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 19104,19106-19126,19128-19134,19136-19170,19172-19299,19302,19306-19405,19407-19604,19606-19668,19670-20496
- Property svn:ignore
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/m/plot/plot_unit.py
r17989 r20500 1 1 from cmaptools import truncate_colormap 2 2 try: 3 import pylab as p 4 import matplotlib as mpl 5 import matplotlib.pyplot as plt 3 import pylab as p 4 import matplotlib as mpl 5 import matplotlib.pyplot as plt 6 import numpy as npy 6 7 except ImportError: 7 8 print "could not import pylab, matplotlib has not been installed, no plotting capabilities enabled" 8 9 9 10 def plot_unit(x,y,z,elements,data,is2d,isplanet,datatype,options,ax): 10 """ 11 PLOT_UNIT - unit plot, display data 12 13 Usage: 14 plot_unit(x,y,z,elements,data,is2d,isplanet,datatype,options) 15 16 See also: PLOTMODEL, PLOT_MANAGER 17 """ 18 19 #edgecolor 20 edgecolor=options.getfieldvalue('edgecolor','None') 21 22 #number of colorlevels for plots 23 colorlevels=options.getfieldvalue('colorlevels',128) 24 25 alpha=options.getfieldvalue('alpha',1) 26 27 #colormap 28 # default sequential colormap 29 defaultmap=truncate_colormap(mpl.cm.gnuplot2,0.1,0.9,128) 30 cmap=options.getfieldvalue('colormap',defaultmap) 31 if options.exist('cmap_set_over'): 32 over=options.getfieldvalue('cmap_set_over','0.5') 33 cmap.set_over(over) 34 if options.exist('cmap_set_under'): 35 under=options.getfieldvalue('cmap_set_under','0.5') 36 cmap.set_under(under) 37 38 #normalize colormap if clim/caxis specified 39 if options.exist('clim'): 40 lims=options.getfieldvalue('clim',[min(data),max(data)]) 41 elif options.exist('caxis'): 42 lims=options.getfieldvalue('caxis',[min(data),max(data)]) 43 else: 44 if min(data)==max(data): 45 lims=[min(data)-0.5,max(data)+0.5] 46 else: 47 lims=[min(data),max(data)] 48 norm = mpl.colors.Normalize(vmin=lims[0], vmax=lims[1]) 49 if datatype==1: 50 #element plot 51 if is2d: 52 tri=ax.tripcolor(x,y,elements,data,colorlevels,cmap=cmap,norm=norm,alpha=alpha,edgecolors=edgecolor) 53 else: 54 raise ValueError('plot_unit error: 3D element plot not supported yet') 55 return 56 57 elif datatype==2: 58 #node plot 59 if is2d: 60 tri=ax.tricontourf(x,y,elements,data,colorlevels,cmap=cmap,norm=norm,alpha=alpha,extend='both') 61 if edgecolor != 'None': 62 ax.triplot(x,y,elements,color=edgecolor) 63 else: 64 raise ValueError('plot_unit error: 3D node plot not supported yet') 65 return 66 67 elif datatype==3: 68 print 'plot_unit message: quiver plot not implemented yet' 69 return 70 71 elif datatype==4: 72 #P1 patch plot 73 print 'plot_unit message: P1 patch plot not implemented yet' 74 return 75 76 elif datatype==5: 77 print 'plot_unit message: P0 patch plot not implemented yet' 78 return 79 80 else: 81 raise ValueError('datatype=%d not supported' % datatype) 82 11 """ 12 PLOT_UNIT - unit plot, display data 13 14 Usage: 15 plot_unit(x,y,z,elements,data,is2d,isplanet,datatype,options) 16 17 See also: PLOTMODEL, PLOT_MANAGER 18 """ 19 20 #edgecolor 21 edgecolor=options.getfieldvalue('edgecolor','None') 22 23 #number of colorlevels for plots 24 colorlevels=options.getfieldvalue('colorlevels',128) 25 26 alpha=options.getfieldvalue('alpha',1) 27 28 #colormap 29 # default sequential colormap 30 defaultmap=truncate_colormap(mpl.cm.gnuplot2,0.1,0.9,128) 31 cmap=options.getfieldvalue('colormap',defaultmap) 32 if options.exist('cmap_set_over'): 33 over=options.getfieldvalue('cmap_set_over','0.5') 34 cmap.set_over(over) 35 if options.exist('cmap_set_under'): 36 under=options.getfieldvalue('cmap_set_under','0.5') 37 cmap.set_under(under) 38 39 #normalize colormap if clim/caxis specified 40 if options.exist('clim'): 41 lims=options.getfieldvalue('clim',[npy.amin(data),npy.amax(data)]) 42 elif options.exist('caxis'): 43 lims=options.getfieldvalue('caxis',[npy.amin(data),npy.amax(data)]) 44 else: 45 if npy.amin(data)==npy.amax(data): 46 lims=[npy.amin(data)-0.5,npy.amax(data)+0.5] 47 else: 48 lims=[npy.amin(data),npy.amax(data)] 49 norm = mpl.colors.Normalize(vmin=lims[0], vmax=lims[1]) 50 if datatype==1: 51 #element plot 52 if is2d: 53 tri=ax.tripcolor(x,y,elements,data,colorlevels,cmap=cmap,norm=norm,alpha=alpha,edgecolors=edgecolor) 54 else: 55 raise ValueError('plot_unit error: 3D element plot not supported yet') 56 return 57 58 elif datatype==2: 59 #node plot 60 if is2d: 61 tri=ax.tricontourf(x,y,elements,data,colorlevels,cmap=cmap,norm=norm,alpha=alpha,extend='both') 62 if edgecolor != 'None': 63 ax.triplot(x,y,elements,color=edgecolor) 64 else: 65 raise ValueError('plot_unit error: 3D node plot not supported yet') 66 return 67 68 elif datatype==3: 69 vx=data[:,0] 70 vy=data[:,1] 71 #TODO write plot_quiver.py to handle this here 72 color=npy.sqrt(vx**2+vy**2) 73 scale=options.getfieldvalue('scale',1000) 74 width=options.getfieldvalue('width',0.005*(npy.amax(x)-npy.amin(y))) 75 headwidth=options.getfieldvalue('headwidth',3) 76 headlength=options.getfieldvalue('headlength',5) 77 Q=ax.quiver(x,y,vx,vy,color,cmap=cmap,norm=norm,scale=scale, 78 width=width,headwidth=headwidth,headlength=headlength) 79 return 80 81 elif datatype==4: 82 #P1 patch plot 83 print 'plot_unit message: P1 patch plot not implemented yet' 84 return 85 86 elif datatype==5: 87 print 'plot_unit message: P0 patch plot not implemented yet' 88 return 89 90 else: 91 raise ValueError('datatype=%d not supported' % datatype) 92
Note:
See TracChangeset
for help on using the changeset viewer.