source: trunk/UTIL/PYTHON/mcd/gale.py @ 796

Last change on this file since 796 was 796, checked in by aslmd, 12 years ago

UTIL PYTHON. Added local plot/map capability to MCD interface. Added possibility to set projection and title. Added possibility to map horizontal wind velocity

  • Property svn:executable set to *
File size: 825 bytes
Line 
1#! /usr/bin/env python
2
3#import sys
4#
5#class NullDevice():
6#    def write(self, s):
7#        pass
8#
9#original_stdout = sys.stdout  # keep a reference to STDOUT
10#
11#sys.stdout = NullDevice()  # redirect the real STDOUT
12#sys.stderr = NullDevice()  # redirect the real STDOUT
13
14from mcd import mcd
15
16gale = mcd()
17
18
19gale.lat = -4.6
20gale.lon = 137.4
21gale.loct = 15.
22gale.xz = 1.
23
24gale.xdate = 150.6
25
26gale.update()
27gale.printmcd()
28gale.printallextvar()
29#gale.printextvar("rho")
30
31gale.seasonal()
32gale.plot1d(["tsurf","u","v"])
33
34import matplotlib.pyplot as mpl
35mpl.savefig("temp.png",dpi=85,bbox_inches='tight',pad_inches=0.25)
36
37
38#gale.xdate = 270.
39#gale.diurnal()
40#gale.plot1d(["u","v"])
41
42gale.latlon()
43gale.map2d("tsurf")
44
45import matplotlib.pyplot as mpl
46#mpl.show()
47mpl.savefig("temp.png",dpi=110,bbox_inches='tight',pad_inches=0.4)
Note: See TracBrowser for help on using the repository browser.