Changeset 933 for trunk/UTIL/PYTHON/planetoplot_v2/examples
- Timestamp:
- Apr 19, 2013, 4:19:20 PM (12 years ago)
- Location:
- trunk/UTIL/PYTHON/planetoplot_v2/examples
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTIL/PYTHON/planetoplot_v2/examples/anomaly.py
r923 r933 19 19 anomaly.filename = "anomaly" 20 20 anomaly.defineplot() 21 anomaly.p[0].title = "surface temperature anomaly in %" 21 anomaly.p[0].title = "surface temperature anomaly" 22 anomaly.p[0].units = '%' 22 23 anomaly.makeplot() -
trunk/UTIL/PYTHON/planetoplot_v2/examples/function.py
r923 r933 25 25 S.p[0].ylabel = "Surface geopotential height (km)" 26 26 S.p[0].ycoeff = 1./1000. 27 S.p[0].fmt = '%.0f' 27 28 S.filename = "function" 28 29 S.makeplot() -
trunk/UTIL/PYTHON/planetoplot_v2/examples/les_psfc.py
r923 r933 14 14 les.y = None 15 15 les.t = ["10"] 16 les.stridex = 317 les.stridey = 316 #les.stridex = 3 17 #les.stridey = 3 18 18 les.filename = "les_psfc" 19 19 les.getplot() -
trunk/UTIL/PYTHON/planetoplot_v2/examples/simple.py
r923 r933 19 19 # we define the plot, then set a few personal stuff 20 20 u.defineplot() 21 u.p[0].title = "This is what we name $u$ (m s$^{-1}$)"21 u.p[0].title = "This is what we name $u$" 22 22 u.p[0].proj = "robin" 23 23 u.filename = "simple" -
trunk/UTIL/PYTHON/planetoplot_v2/examples/windspeed.py
r923 r933 9 9 u.getdefineplot(extraplot=2) # prepare 2 extraplots (do not show) 10 10 u.p[0].proj = "ortho" 11 u.p[0].title = "$u$ (m s$^{-1}$)"11 u.p[0].title = "$u$" 12 12 u.makeplot() 13 13 … … 19 19 v.defineplot() 20 20 v.p[1].proj = "ortho" 21 v.p[1].title = "$v$ (m s$^{-1}$)"21 v.p[1].title = "$v$" 22 22 v.makeplot() # plot within the previous one (do not show) 23 23 … … 27 27 wind.filename = "windspeed" 28 28 wind.defineplot() 29 wind.p[2].title = "$\sqrt{u^2+v^2}$ (m s$^{-1}$)"29 wind.p[2].title = "$\sqrt{u^2+v^2}$" 30 30 wind.p[2].proj = "ortho" 31 31 wind.makeplot() # plot within the previous one (show because complete)
Note: See TracChangeset
for help on using the changeset viewer.