Changeset 1063 for trunk/UTIL
- Timestamp:
- Oct 11, 2013, 4:10:00 AM (11 years ago)
- Location:
- trunk/UTIL/PYTHON/planetoplot_v2/examples/ppclass_reference
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTIL/PYTHON/planetoplot_v2/examples/ppclass_reference/simple.py
r1062 r1063 17 17 #u.smooth(15) 18 18 19 # we define the plot, then set a few personal stuff 20 u.defineplot() 19 # we define the plot 21 20 u.title = "This is what we name $u$" 22 21 u.proj = "robin" 23 22 u.filename = "simple" 23 u.defineplot() 24 24 25 25 # we plot -
trunk/UTIL/PYTHON/planetoplot_v2/examples/ppclass_reference/zonalcontour.py
r1062 r1063 10 10 u.filename = "zonalcontour" 11 11 u.get() 12 u.defineplot()13 12 u.div = 30. 14 13 u.colorbar = "spectral" 14 u.defineplot() 15 15 u.makeplot() 16 16 … … 18 18 u.vargoal = ["main","contour"] 19 19 u.get() 20 u.div = 30. 20 21 u.defineplot() 21 u.div = 30.22 22 u.makeplot() -
trunk/UTIL/PYTHON/planetoplot_v2/examples/ppclass_reference/zonalmean.py
r1062 r1063 23 23 u.filename = "zonalmean" 24 24 u.get() 25 u.defineplot()26 25 u.div = 30. 27 26 u.colorbar = "RdBu_r" 28 27 u.title = "This is a zonal mean" 28 u.defineplot() 29 29 u.makeplot() 30 30 … … 33 33 u.filename = "zonalmin" 34 34 u.get() 35 u.defineplot()36 35 u.div = 30. 37 36 u.colorbar = "cool" 38 37 u.title = "This is minimum over zonal axis" 38 u.defineplot() 39 39 u.makeplot() 40 40 … … 43 43 u.filename = "myplot" 44 44 u.get() 45 u.defineplot()46 45 u.div = 30. 47 46 u.colorbar = "hot" 48 47 u.title = "This is maximum over zonal axis" 48 u.defineplot() 49 49 u.makeplot() 50 50 … … 56 56 u.z = 20000. 57 57 u.get() 58 u.defineplot()59 58 u.div = 30. 60 59 u.title = "This is maximum over time" 61 62 u.out = "png" 63 60 u.defineplot() 64 61 u.makeplot()
Note: See TracChangeset
for help on using the changeset viewer.