Last change
on this file since 923 was
923,
checked in by aslmd, 12 years ago
|
UTIL PYTHON planetoplot_v2
PPCLASS AND PPPLOT
- added global plot settings in pp() objects
- self is returned for each method to allow e.g. one-line get + attribution
- added labeling of 1D plots
- fine-tuning of plot appearance (e.g. vector key)
- corrected a problem with plotin (same object can be referred to all along)
- fixed meanarea for 1D requests
PP.PY
- no more -f for pp.py (files are simply given as arguments!)
- added missing options to pp.py
- nice informative header
PP_RELOAD.PY
- pp_reload.py can now change colorbars and 1D markers
EXAMPLES
- general update of examples + few additions
- added a nice example tide with mixed 2D+1D plots
|
-
Property svn:executable set to
*
|
File size:
348 bytes
|
Rev | Line | |
---|
[910] | 1 | #! /usr/bin/env python |
---|
| 2 | from ppclass import pp |
---|
| 3 | |
---|
| 4 | les = pp(file="/home/aymeric/Big_Data/psfc_f18.nc",var="PSFC",y=["50,250"],x=["50","100"]) |
---|
| 5 | les.verbose = True |
---|
| 6 | les.getplot() |
---|
| 7 | |
---|
| 8 | les.x = None |
---|
| 9 | les.y = ["200","250"] |
---|
| 10 | les.t = "10" |
---|
| 11 | les.getplot() |
---|
| 12 | |
---|
| 13 | les.x = None |
---|
| 14 | les.y = None |
---|
| 15 | les.t = ["10"] |
---|
[923] | 16 | les.stridex = 3 |
---|
| 17 | les.stridey = 3 |
---|
| 18 | les.filename = "les_psfc" |
---|
[910] | 19 | les.getplot() |
---|
Note: See
TracBrowser
for help on using the repository browser.