Changeset 943 for trunk/UTIL/PYTHON/planetoplot_v2
- Timestamp:
- Apr 27, 2013, 2:49:02 PM (12 years ago)
- Location:
- trunk/UTIL/PYTHON/planetoplot_v2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTIL/PYTHON/planetoplot_v2/ppplot.py
r942 r943 392 392 if self.var is not None: 393 393 if self.var.upper() in vl.keys(): 394 self.ylabel = vl[self.var.upper()] 394 self.ylabel = vl[self.var.upper()] + " (" + vu[self.var.upper()] + ")" 395 395 self.title = "" 396 396 self.fmt = vf[self.var.upper()] … … 564 564 # make shaded and line contours 565 565 if self.addcontour is not None: 566 mpl.contour(x, y, what_I_contour, \566 objC = mpl.contour(x, y, what_I_contour, \ 567 567 zelevelsc, colors = ccol, linewidths = cline) 568 #mpl.clabel(objC, inline=1, fontsize=10) 568 569 mpl.contourf(x, y, \ 569 570 self.field, \ … … 666 667 # contour field. first line contour then shaded contour. 667 668 if self.addcontour is not None: 668 m.contour(x, y, what_I_contour, \669 objC2 = m.contour(x, y, what_I_contour, \ 669 670 zelevelsc, colors = ccol, linewidths = cline) 671 #mpl.clabel(objC2, inline=1, fontsize=10) 670 672 m.contourf(x, y, what_I_plot, zelevels, cmap = palette, alpha = self.trans) 671 673 ############################################################################################ -
trunk/UTIL/PYTHON/planetoplot_v2/set_var.txt
r942 r943 22 22 HGT ; %.1e ; spectral ; Topography ; m 23 23 HGT_M ; %.1e ; spectral ; Topography ; m 24 ZMOL ; %.0f ; spectral ; Topography ; km 24 25 MARS_TI ; %.0f ; jet ; Thermal inertia ; tiu 25 26 THERMAL_INERTIA ; %.0f ; jet ; Thermal inertia ; tiu 27 ALBEDO ; %.2f ; Greys_r ; Albedo ; dimless 26 28 TAU ; %.1f ; YlOrBr_r ; Opacity ; dimless 27 29 TAU_DUST ; %.1f ; Oranges_r ; Dust opacity ; dimless
Note: See TracChangeset
for help on using the changeset viewer.