1 | #! /usr/bin/env python |
---|
2 | ############################################## |
---|
3 | ## A MINIMAL PP.PY SCRIPT USING PPCLASS.PY ## |
---|
4 | ## Author: A. Spiga 03/2013 ## |
---|
5 | ############################################## |
---|
6 | from optparse import OptionParser ### TBR by argparse |
---|
7 | from ppclass import pp, inspect |
---|
8 | import sys |
---|
9 | ############################################## |
---|
10 | |
---|
11 | # NB: this is a convenient command-line script |
---|
12 | # ... but ppclass is more versatile |
---|
13 | # ... than what is proposed here |
---|
14 | # ... e.g. differences between files, |
---|
15 | # ... complex operations, |
---|
16 | # ... see sample scripts |
---|
17 | |
---|
18 | ###################################### |
---|
19 | # define parser with version and usage |
---|
20 | ###################################### |
---|
21 | parser = OptionParser() |
---|
22 | parser.version = \ |
---|
23 | '''************************************************** |
---|
24 | ******** PLANETOPLOT (for help: pp.py -h) ******** |
---|
25 | **************************************************''' |
---|
26 | parser.usage = \ |
---|
27 | '''pp.py [options] netCDF file(s) |
---|
28 | (NB: no options --> simple inspection of variables and dimensions in netCDF files) |
---|
29 | ------------------- |
---|
30 | PLANETOPLOT |
---|
31 | --> command line tool to make nice & quick plots from netCDF files |
---|
32 | --> based on python + numpy + scipy + matplotlib + basemap + netCDF4 |
---|
33 | --> Author: A. Spiga (LMD/UPMC) aymeric.spiga@upmc.fr |
---|
34 | -------------------''' |
---|
35 | parser.print_version() |
---|
36 | |
---|
37 | ######################################## |
---|
38 | # set options for the pp.py command line |
---|
39 | ######################################## |
---|
40 | parser.add_option('--verbose',action='store_true',dest='verbose',default=False,help='make the program verbose') |
---|
41 | # field --> lower case |
---|
42 | parser.add_option('-v','--var',action='append',dest='var',type="string",default=None,help="'variable' or ['var1','var2',etc]") |
---|
43 | parser.add_option('-x','--lon',action='append',dest='x',type="string",default=None,help="x axis value. one value; or val1,val2 (computations)") |
---|
44 | parser.add_option('-y','--lat',action='append',dest='y',type="string",default=None,help="y axis value. one value; or val1,val2 (computations)") |
---|
45 | parser.add_option('-z','--vert',action='append',dest='z',type="string",default=None,help="z axis value. one value; or val1,val2 (computations)") |
---|
46 | parser.add_option('-t','--time',action='append',dest='t',type="string",default=None,help="t axis value. one value; or val1,val2 (computations)") |
---|
47 | parser.add_option('-u','--compute',action='store',dest='compute',type="string",default="mean",help="computation: mean, min, max, meanarea") |
---|
48 | parser.add_option('-c','--contour',action='store',dest='contour',type="string",default=None,help="one 'variable' for contour") |
---|
49 | parser.add_option('-i','--vecx',action='store',dest='vecx',type="string",default=None,help="one 'variable' for wind vector x component") |
---|
50 | parser.add_option('-j','--vecy',action='store',dest='vecy',type="string",default=None,help="one 'variable' for wind vector y component") |
---|
51 | parser.add_option('-m','--mult',action='store',dest='mult',type="float",default=None,help="multiplicative factor on field") |
---|
52 | parser.add_option('-a','--add',action='store',dest='add',type="float",default=None,help="additive factor on field") |
---|
53 | parser.add_option('-o','--output',action='store',dest='filename',type="string",default="myplot",help="name of output files") |
---|
54 | parser.add_option('-d','--directory',action='store',dest='folder',type="string",default="./",help="directory of output files") |
---|
55 | parser.add_option('-s','--changetime',action='store',dest='changetime',type="string",default=None,\ |
---|
56 | help="transformation on time axis : [None] | correctls | mars_sol2ls | mars_dayini | mars_meso_ls | mars_meso_sol | mars_meso_utc | mars_meso_lt ") |
---|
57 | parser.add_option('-p','--print',action='store_true',dest='savtxt',default=False,help="[1D] output field+coord in an ASCII file") |
---|
58 | parser.add_option('--sx',action='store',dest='sx',type="int",default=1,help="Load data every sx grid points over x dimension") |
---|
59 | parser.add_option('--sy',action='store',dest='sy',type="int",default=1,help="Load data every sy grid points over y dimension") |
---|
60 | parser.add_option('--sz',action='store',dest='sz',type="int",default=1,help="Load data every sz grid points over z dimension") |
---|
61 | parser.add_option('--st',action='store',dest='st',type="int",default=1,help="Load data every st grid points over t dimension") |
---|
62 | # plot --> upper case |
---|
63 | # -- generic |
---|
64 | parser.add_option('-T','--title',action='append',dest='title',type="string",default=None,help="change 'title'") |
---|
65 | parser.add_option('-X','--xlabel',action='append',dest='xlabel',type="string",default=None,help="change 'xlabel'") |
---|
66 | parser.add_option('-Y','--ylabel',action='append',dest='ylabel',type="string",default=None,help="change 'ylabel'") |
---|
67 | parser.add_option('-D','--div',action='store',dest='div',type="int",default=20,help="integer for number of divisions") |
---|
68 | parser.add_option('-H','--trans',action='store',dest='trans',type="float",default=1.0,help="float for transparency (0=transp,1=opaque)") |
---|
69 | parser.add_option('-Z','--logy',action='store_true',dest='logy',default=False,help="set log for vertical axis") |
---|
70 | parser.add_option('-O','--save',action='store',dest='out',type="string",default="gui",help="save mode: 'gui' 'png' 'pdf' 'eps' 'svg' 'ps'") |
---|
71 | parser.add_option('-V','--void',action='store_true',dest='void',default=False,help="no colorbar, no title, no labels") |
---|
72 | parser.add_option('-U','--units',action='append',dest='units',type="string",default=None,help="units for the field") |
---|
73 | parser.add_option('-F','--fmt',action='append',dest='fmt',type="string",default=None,help="values formatting. ex: '%.0f' '%3.1e'") |
---|
74 | parser.add_option('--xcoeff',action='append',dest='xcoeff',type="float",default=None,help="multiply x axis [not for 2D map]") |
---|
75 | parser.add_option('--ycoeff',action='append',dest='ycoeff',type="float",default=None,help="multiply y axis [not for 2D map]") |
---|
76 | parser.add_option('--xmin',action='append',dest='xmin',type="float",default=None,help="min bound x axis [not for 2D map]") |
---|
77 | parser.add_option('--ymin',action='append',dest='ymin',type="float",default=None,help="min bound y axis [not for 2D map]") |
---|
78 | parser.add_option('--xmax',action='append',dest='xmax',type="float",default=None,help="max bound x axis [not for 2D map]") |
---|
79 | parser.add_option('--ymax',action='append',dest='ymax',type="float",default=None,help="max bound y axis [not for 2D map]") |
---|
80 | parser.add_option('--nxticks',action='append',dest='nxticks',type="float",default=None,help="ticks for x axis [not for 2D map]") |
---|
81 | parser.add_option('--nyticks',action='append',dest='nyticks',type="float",default=None,help="ticks for y axis [not for 2D map]") |
---|
82 | # -- 1D plot |
---|
83 | parser.add_option('-L','--linestyle',action='append',dest='linestyle',type="string",default=None,help="[1D] linestyle: '-' '--' '.' '..'") |
---|
84 | parser.add_option('-Q','--color',action='append',dest='color',type="string",default=None,help="[1D] color: 'b' 'g' 'r' etc") |
---|
85 | parser.add_option('-K','--marker',action='append',dest='marker',type="string",default=None,help="[1D] marker: '' 'x' 'o' etc") |
---|
86 | parser.add_option('-S','--superpose',action='store_true',dest='superpose',default=False,help="[1D] use same axis for all plots") |
---|
87 | parser.add_option('-E','--legend',action='append',dest='legend',type="string",default=None,help="[1D] legend for line") |
---|
88 | parser.add_option('--modx',action='append',dest='modx',type="float",default=None,help="[1D] change xticks with a modulo") |
---|
89 | # -- 2D plot |
---|
90 | parser.add_option('-C','--colorbar',action='append',dest='colorbar',type="string",default=None,help="[2D] colormap: http://micropore.files.wordpress.com/2010/06/colormaps.png") |
---|
91 | parser.add_option('-P','--proj',action='append',dest='proj',type="string",default=None,help="[2D] map projection: 'cyl' 'npstere' 'spstere' 'ortho' 'moll' 'robin' 'lcc' 'laea' 'merc' 'noproj'") |
---|
92 | parser.add_option('-B','--back',action='append',dest='back',type="string",default=None,help='[2D] predefined map background (cf. set_back.txt)') |
---|
93 | parser.add_option('-A','--area',action='append',dest='area',type="string",default=None,help='[2D] predefined region of mapping (cf. set_area.txt)') |
---|
94 | parser.add_option('-I','--blon',action='append',dest='blon',type="float",default=None,help='[2D] float: bounding longitude for stere (or center longitude for ortho)') |
---|
95 | parser.add_option('-J','--blat',action='append',dest='blat',type="float",default=None,help='[2D] float: bounding latitude for stere (or center latitude for ortho) ') |
---|
96 | parser.add_option('-N','--vmin',action='append',dest='vmin',type="float",default=None,help='[2D] float: minimum value for displayed field') |
---|
97 | parser.add_option('-M','--vmax',action='append',dest='vmax',type="float",default=None,help='[2D] float: maximum value for displayed field') |
---|
98 | parser.add_option('-W','--wscale',action='append',dest='wscale',type="float",default=None,help='[2D] float: set size of reference wind vector') |
---|
99 | parser.add_option('--svx',action='store',dest='svx',type="int",default=1,help="Define an abscissa stride on vectors only -- not on field") |
---|
100 | parser.add_option('--svy',action='store',dest='svy',type="int",default=1,help="Define an ordinate stride on vectors only -- not on field") |
---|
101 | parser.add_option('--cbticks',action='append',dest='cbticks',type="float",default=None,help="ticks for colorbar") |
---|
102 | ########################### |
---|
103 | (opt,args) = parser.parse_args() |
---|
104 | # remains F G R |
---|
105 | |
---|
106 | ###################################### |
---|
107 | # get arguments (one or several files) |
---|
108 | ###################################### |
---|
109 | if args is None: |
---|
110 | print "Stop here! I need file(s) as argument(s)!" ; exit() |
---|
111 | else: |
---|
112 | files = args |
---|
113 | |
---|
114 | ############################################# |
---|
115 | # a possibility to simply inspect the file(s) |
---|
116 | ############################################# |
---|
117 | if opt.var is None: |
---|
118 | for filename in files: inspect(filename) |
---|
119 | exit() |
---|
120 | |
---|
121 | ###################################### |
---|
122 | # use ppclass to get field and plot it |
---|
123 | ###################################### |
---|
124 | # treat the case of additional vectors or contours (contours must be before vectors) |
---|
125 | var = [] ; vargoal = [] |
---|
126 | for element in opt.var: |
---|
127 | var.append(element) ; vargoal.append("main") |
---|
128 | if opt.contour is not None: var.append(opt.contour) ; vargoal.append("contour") |
---|
129 | if opt.vecx is not None: var.append(opt.vecx) ; vargoal.append("vector") |
---|
130 | if opt.vecy is not None: var.append(opt.vecy) ; vargoal.append("vector") |
---|
131 | # set pp object |
---|
132 | user = pp() |
---|
133 | user.file = files |
---|
134 | user.var = var ; user.vargoal = vargoal |
---|
135 | user.x = opt.x ; user.y = opt.y |
---|
136 | user.z = opt.z ; user.t = opt.t |
---|
137 | user.verbose = opt.verbose |
---|
138 | user.compute = opt.compute |
---|
139 | user.changetime = opt.changetime |
---|
140 | user.sx = opt.sx ; user.sy = opt.sy |
---|
141 | user.sz = opt.sz ; user.st = opt.st |
---|
142 | user.svx = opt.svx ; user.svy = opt.svy |
---|
143 | user.savtxt = opt.savtxt |
---|
144 | # define field |
---|
145 | user.define() |
---|
146 | # retrieve field |
---|
147 | user.retrieve() |
---|
148 | # some possible operations |
---|
149 | if opt.add is not None: user = user + opt.add |
---|
150 | if opt.mult is not None: user = user * opt.mult |
---|
151 | # get some options |
---|
152 | user.superpose = opt.superpose |
---|
153 | user.filename = opt.filename |
---|
154 | user.folder = opt.folder |
---|
155 | user.out = opt.out |
---|
156 | # if noproj is given for proj, no map mode |
---|
157 | if opt.proj is not None: |
---|
158 | if 'noproj' in opt.proj: |
---|
159 | user.noproj = True |
---|
160 | # if user wants to give a name, we drop the indication of date |
---|
161 | if opt.filename != "myplot": |
---|
162 | user.includedate = False |
---|
163 | # define plot |
---|
164 | user.defineplot() |
---|
165 | # user-defined plot settings |
---|
166 | # ... shouldn't this be before defineplot? |
---|
167 | user.getopt(opt) |
---|
168 | # make plot |
---|
169 | user.makeplot() |
---|
170 | |
---|
171 | #################################### |
---|
172 | # save a .sh file with the command # |
---|
173 | #################################### |
---|
174 | command = "" |
---|
175 | for arg in sys.argv: command = command + arg + ' ' |
---|
176 | try: |
---|
177 | f = open(opt.folder+'/'+opt.filename+'.sh', 'w') |
---|
178 | f.write(command) |
---|
179 | except IOError: |
---|
180 | print "!! WARNING !! pp.py command not saved. Probably do not have permission to write here." |
---|