Changeset 13424 for issm/trunk-jpl/src/m/plot/plot_manager.py
- Timestamp:
- 09/24/12 18:23:56 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/plot_manager.py
r13411 r13424 24 24 if isinstance(data,(str,unicode)): 25 25 26 if data=='mesh': plot_mesh(md,options,nlines,ncols,i) 26 # convert string to lower case for a case-insensitive comparison 27 if data.lower()=='mesh': plot_mesh(md,options,nlines,ncols,i) 27 28 else: 28 29 print "WARNING: '%s' is not implemented or is not a valid string for option 'data'" % data 29 30 31 #elif data in vars(md): 30 32 else: 31 33 print "'data' not a string, plotting model properties yet to be implemented..." 32 34 35
Note:
See TracChangeset
for help on using the changeset viewer.