Changeset 25816
- Timestamp:
- 12/03/20 05:41:30 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/plotoptions.py
r25065 r25816 74 74 75 75 #if alloptions flag is on, apply to all plots 76 if (allflag and 'data' not in rawlist[i][0] and ' 76 if (allflag and 'data' not in rawlist[i][0] and '#' not in rawlist[i][0]): 77 77 78 78 for j in range(numberofplots): 79 79 self.list[j].addfield(rawlist[i][0], rawlist[i][1]) 80 80 81 elif ' 81 elif '#' in rawlist[i][0]: 82 82 #get subplots associated 83 string = rawlist[i][0].split(' 83 string = rawlist[i][0].split('#') 84 84 plotnums = string[-1].split(', ') 85 85 field = string[0] … … 93 93 continue 94 94 95 # ' 95 # '#all' 96 96 elif 'all' in plotnum: 97 97 for j in range(numberofplots): 98 98 self.list[j].addfield(field, rawlist[i][1]) 99 99 100 # ' #i -j'100 # '#i-j' 101 101 elif '-' in plotnum: 102 nums = plotnum.split(' -')102 nums = plotnum.split('-') 103 103 if len(nums) != 2: 104 104 continue
Note:
See TracChangeset
for help on using the changeset viewer.