Changeset 984 in lmdz_wrf for trunk/tools
- Timestamp:
- Aug 9, 2016, 11:25:10 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/drawing.py
r983 r984 1681 1681 [lwdths]= ',' list of withs of lines ('None' for automatic, single value for all the same) 1682 1682 [psizes]= ',' list of size of points ('None' for automatic, single value for all the same) 1683 [freqv]= frequency of values 1683 [freqv]= frequency of values ('all' for all values) 1684 1684 [figname]= name of the figure 1685 1685 [graphk]: kind of the graphic … … 1712 1712 lwdths = str_list(values.split(':')[10], ',') 1713 1713 psizes = str_list(values.split(':')[11], ',') 1714 freqv = values.split(':')[12]1714 freqv0 = values.split(':')[12] 1715 1715 figname = values.split(':')[13] 1716 1716 graphk = values.split(':')[14] … … 1787 1787 1788 1788 ifn = ifn + 1 1789 1790 if freqv0 == 'all': 1791 freqv = None 1792 else: 1793 freqv = int(freqv0) 1789 1794 1790 1795 drw.plot_lines(dimvalues, varvalues, valuesaxis, dimtit, leglabels.split(','), \
Note: See TracChangeset
for help on using the changeset viewer.