Last change
on this file since 1004 was
977,
checked in by aslmd, 12 years ago
|
UTIL PYTHON planetoplot_v2. Added rainbow spahetti plot based on an idea by Alizee. Simply set a colormap for a 1D plot and you get it. Also added in pp_reload (simple rainbow function in ppplot). Added also xmin and xmax capabilitiy. Fixed various bugs related to dummy axis, logarithmic axes. Removed time_counter from set_ppclass.txt it is useless in most cases.
|
-
Property svn:executable set to
*
|
File size:
357 bytes
|
Rev | Line | |
---|
[910] | 1 | #! /usr/bin/env python |
---|
| 2 | from ppclass import pp |
---|
| 3 | |
---|
[977] | 4 | les = pp(file="/home/aymeric/Big_Data/LES_dd/psfc_f18.nc",var="PSFC",y=["50,250"],x=["50","100"]) |
---|
[910] | 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"] |
---|
[933] | 16 | #les.stridex = 3 |
---|
| 17 | #les.stridey = 3 |
---|
[923] | 18 | les.filename = "les_psfc" |
---|
[910] | 19 | les.getplot() |
---|
Note: See
TracBrowser
for help on using the repository browser.