Changeset 21426
- Timestamp:
- 11/29/16 02:48:25 (8 years ago)
- Location:
- issm/trunk-jpl/src/m/plot
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/plot_unit.py
r21303 r21426 29 29 # {{{ define wich colormap to use 30 30 try: 31 defaultmap=plt.cm.get_cmap('viridis' )31 defaultmap=plt.cm.get_cmap('viridis',colorlevels) 32 32 except AttributeError: 33 33 print("Viridis can't be found (probably too old Matplotlib) reverting to gnuplot colormap") -
issm/trunk-jpl/src/m/plot/plotmodel.py
r21303 r21426 6 6 import pylab as p 7 7 import matplotlib.pyplot as plt 8 8 from mpl_toolkits.axes_grid1 import ImageGrid, AxesGrid 9 9 except ImportError: 10 10 print "could not import pylab, matplotlib has not been installed, no plotting capabilities enabled" … … 17 17 ''' 18 18 19 #First process options 19 #First process options 20 20 options=plotoptions(*args) 21 21 … … 36 36 nrows=np.ceil(numberofplots/subplotwidth) 37 37 nr=False 38 38 39 39 if options.list[0].exist('ncols'): 40 40 ncols=options.list[0].getfieldvalue('ncols') … … 45 45 ncols=int(ncols) 46 46 nrows=int(nrows) 47 47 48 48 #check that nrows and ncols were given at the same time! 49 49 if not nr==nc: 50 50 raise StandardError('error: nrows and ncols need to be specified together, or not at all') 51 51 52 52 #Go through plots 53 53 if numberofplots: … … 82 82 cbar_size=options.list[0].getfieldvalue('colorbarsize','5%') 83 83 cbar_pad=options.list[0].getfieldvalue('colorbarpad','2.5%') # None or % 84 84 85 85 axgrid=ImageGrid(fig, 111, 86 86 nrows_ncols=(nrows,ncols),
Note:
See TracChangeset
for help on using the changeset viewer.