Changeset 394 for trunk/UTIL/PYTHON/README.PP
- Timestamp:
- Nov 17, 2011, 12:36:52 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTIL/PYTHON/README.PP
r392 r394 19 19 ************************************* 20 20 21 Goal: The simplest, most minimal example. Mapping near-surface wind vectors overtopography.21 Goal: The simplest, most minimal example. Mapping topography. 22 22 pp.py -f diagfired.nc 23 23 … … 25 25 pp.py -f diagfired.nc --div 30 26 26 27 Goal: I would like wind vectors. 28 pp.py -f diagfired.nc -W 29 27 30 Goal: I would like more vectors [i.e. lower the stride]. 28 pp.py -f diagfired.nc --div 30 -s 1 29 30 Goal: I want to get rid of those damn vectors. 31 pp.py -f diagfired.nc -x 31 pp.py -f diagfired.nc -W -s 1 32 32 33 33 Goal: I want to map a given field (surface temperature). 34 pp.py -f diagfired.nc - x -v tsurf34 pp.py -f diagfired.nc -v tsurf 35 35 36 36 Goal: I want to map two fields next to one another (topography and tauice). 37 pp.py -f diagfired.nc - x -v phisinit,tauice37 pp.py -f diagfired.nc -v phisinit,tauice 38 38 39 39 Goal: I want to map two fields, tauice shaded, topography contoured, same plot. 40 pp.py -f diagfired.nc - x -v tauice -w phisinit40 pp.py -f diagfired.nc -v tauice -w phisinit 41 41 42 42 Goal: I want to map a field but projected on the sphere. 43 pp.py -f diagfired.nc - x -v tauice -p ortho43 pp.py -f diagfired.nc -v tauice -p ortho 44 44 45 45 Goal: I want to redefine the minimum and maximum values shown. 46 pp.py -f diagfired.nc - x -v tauice -m 0.2 -M 0.946 pp.py -f diagfired.nc -v tauice -m 0.2 -M 0.9 47 47 48 48 Goal: I want to insert holes wherever values are lower than 0.2 and higher than 0.9 49 pp.py -f diagfired.nc - x -v tauice -m 0.2 -M 0.9 -H49 pp.py -f diagfired.nc -v tauice -m 0.2 -M 0.9 -H 50 50 51 51 Goal: I want to fill holes with an background image of Mars [you have to be connected to Internet] 52 pp.py -f diagfired.nc - x -v tauice -m 0.2 -M 0.9 -H -b vishires52 pp.py -f diagfired.nc -v tauice -m 0.2 -M 0.9 -H -b vishires 53 53 54 54 Goal: I want the same map, but projected on the sphere 55 pp.py -f diagfired.nc - x -v tauice -m 0.2 -M 0.9 -H -b vishires -p ortho55 pp.py -f diagfired.nc -v tauice -m 0.2 -M 0.9 -H -b vishires -p ortho 56 56 57 57 Goal: I want the same map, but projected with north polar stereographic view 58 pp.py -f diagfired.nc - x -v tauice -m 0.2 -M 0.9 -H -b vishires -p npstere58 pp.py -f diagfired.nc -v tauice -m 0.2 -M 0.9 -H -b vishires -p npstere 59 59 60 60 Goal: I want to save this in PNG format 61 pp.py -f diagfired.nc - x -v tauice -m 0.2 -M 0.9 -H -b vishires -p ortho -S png61 pp.py -f diagfired.nc -v tauice -m 0.2 -M 0.9 -H -b vishires -p ortho -S png 62 62 63 63 Goal: I want to plot results from two simulation files next to one another
Note: See TracChangeset
for help on using the changeset viewer.