source: trunk/UTIL/PYTHON/planetoplot_v2/examples/ppclass_reference/les_psfc.py @ 1063

Last change on this file since 1063 was 1062, checked in by aslmd, 11 years ago

planetoplot_v2. added trans back showcb attributes to ppclass. simplified example scripts. added the web home page example.

  • Property svn:executable set to *
File size: 360 bytes
Line 
1#! /usr/bin/env python
2from ppclass import pp
3
4les = pp(file="/home/aymeric/Big_Data/LES_dd/psfc_f18.nc",var="PSFC",y=["50,250"],x=["50","100"])
5les.verbose = True
6les.getplot()
7
8les.x = None
9les.y = ["200","250"]
10les.t = "10"
11les.getplot()
12
13les.x = None
14les.y = None
15les.t = ["10"]
16#les.stridex = 3
17#les.stridey = 3
18les.filename = "les_psfc"
19
20les.getplot()
21
22
Note: See TracBrowser for help on using the repository browser.