Changeset 23716 for issm/trunk-jpl/src/m/classes/plotoptions.py
- Timestamp:
- 02/12/19 06:10:51 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/plotoptions.py
r23563 r23716 23 23 if self.list: 24 24 s+=" list: (%ix%i)\n" % (len(self.list),2) 25 for item in self.list.iteritems():25 for item in list(self.list.items()): 26 26 #s+=" options of plot number %i\n" % item 27 if isinstance(item[1], (str,unicode)):27 if isinstance(item[1],str): 28 28 s+=" field: %-10s value: '%s'\n" % (item[0],item[1]) 29 elif isinstance(item[1],(bool,int, long,float)):29 elif isinstance(item[1],(bool,int,float)): 30 30 s+=" field: %-10s value: '%g'\n" % (item[0],item[1]) 31 31 else: … … 42 42 #go through args and build list (like pairoptions) 43 43 rawoptions=pairoptions.pairoptions(*arg) 44 numoptions= len(arg)/244 numoptions=int(len(arg)/2) 45 45 rawlist=[] # cannot be a dict since they do not support duplicate keys 46 46 47 for i in xrange(numoptions):48 if isinstance(arg[2*i], (str,unicode)):47 for i in range(numoptions): 48 if isinstance(arg[2*i],str): 49 49 rawlist.append([arg[2*i],arg[2*i+1]]) 50 50 else: 51 51 #option is not a string, ignore it 52 print "WARNING: option number %d is not a string and will be ignored." % (i+1)52 print(("WARNING: option number %d is not a string and will be ignored." % (i+1))) 53 53 54 54 #get figure number … … 68 68 #initialize self.list (will need a list of dict's (or nested dict) for numberofplots>1) 69 69 #self.list=defaultdict(dict) 70 for i in xrange(numberofplots):70 for i in range(numberofplots): 71 71 self.list[i]=pairoptions.pairoptions() 72 72 73 73 #process plot options 74 for i in xrange(len(rawlist)):74 for i in range(len(rawlist)): 75 75 76 76 #if alloptions flag is on, apply to all plots 77 77 if (allflag and 'data' not in rawlist[i][0] and '#' not in rawlist[i][0]): 78 78 79 for j in xrange(numberofplots):79 for j in range(numberofplots): 80 80 self.list[j].addfield(rawlist[i][0],rawlist[i][1]) 81 81 … … 88 88 89 89 #loop over plotnums 90 for k in xrange(len(plotnums)):90 for k in range(len(plotnums)): 91 91 plotnum=plotnums[k] 92 92 … … 96 96 # '#all' 97 97 elif 'all' in plotnum: 98 for j in xrange(numberofplots):98 for j in range(numberofplots): 99 99 self.list[j].addfield(field,rawlist[i][1]) 100 100 … … 105 105 if False in [x.isdigit() for x in nums]: 106 106 raise ValueError('error: in option i-j both i and j must be integers') 107 for j in xrange(int(nums[0])-1,int(nums[1])):107 for j in range(int(nums[0])-1,int(nums[1])): 108 108 self.list[j].addfield(field,rawlist[i][1]) 109 109 … … 125 125 j=j+1 126 126 if j+1>numberofplots: 127 print "WARNING: too many instances of '%s' in options" % rawlist[i][0]127 print(("WARNING: too many instances of '%s' in options" % rawlist[i][0])) 128 128 #}}}
Note:
See TracChangeset
for help on using the changeset viewer.