Changeset 193 in lmdz_wrf for trunk/tools/drawing.py
- Timestamp:
- Nov 21, 2014, 6:55:04 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/drawing.py
r192 r193 1483 1483 [leglabels]: ',' separated list of names for the legend 1484 1484 [vartit]: name of the variable in the graph 1485 [title]: title of the plot 1485 [title]: title of the plot ('|' for spaces) 1486 1486 [graphk]: kind of the graphic 1487 1487 varname= variable to plot … … 1503 1503 valuesaxis = values.split(':')[1] 1504 1504 dimtit = values.split(':')[2] 1505 leglabels = values.split(':')[3] 1505 leglabels = values.split(':')[3].replace('_','\_') 1506 1506 vartit = values.split(':')[4] 1507 title = values.split(':')[5] 1507 title = values.split(':')[5].replace('|',' ') 1508 1508 graphk = values.split(':')[6] 1509 1509 … … 2241 2241 # Not checking file operation 2242 2242 Notcheckingfile = ['draw_2D_shad_cont', 'draw_2D_shad_cont_time', \ 2243 'draw_2D_shad_line', 'draw_2D_shad_line_time', 'draw_topo_geogrid_boxes', \ 2244 'draw_trajectories', 'draw_vals_trajectories', 'variable_values'] 2243 'draw_2D_shad_line', 'draw_2D_shad_line_time', 'draw_lines', \ 2244 'draw_topo_geogrid_boxes', 'draw_trajectories', 'draw_vals_trajectories', \ 2245 'variable_values'] 2245 2246 2246 2247 ####### ###### ##### #### ### ## #
Note: See TracChangeset
for help on using the changeset viewer.