source: trunk/UTIL/PYTHON/planetoplot_v2/examples/movie/movie.py @ 1242

Last change on this file since 1242 was 1176, checked in by aslmd, 11 years ago

planetoplot. added an example script for movie. added an example script for masking.

  • Property svn:executable set to *
File size: 435 bytes
Line 
1#! /usr/bin/env python
2from ppclass import pp
3
4
5opac = pp()
6opac.file = "../tau.nc"
7opac.var = "TAU"
8opac.contour = "HGT"
9#opac.changetime = "mars_meso_lt"
10opac.vmin = 0.
11opac.vmax = 4.
12opac.back = "vishires"
13opac.title = ""
14opac.proj = "ortho"
15opac.out = "png"
16opac.res = 75
17
18count = 0
19for ttt in range(0,135,3):
20  opac.filename = "taustorm"+"%03d"%(count)
21  opac.includedate = False
22  opac.t = ttt
23  opac.getplot()
24  count = count+1
Note: See TracBrowser for help on using the repository browser.