1 | def getparseroptions(parser): |
---|
2 | |
---|
3 | ### I/O |
---|
4 | parser.add_option('-f', '--file', action='append',dest='file', type="string", default=None, help='[NEEDED] filename. Append: different figures. Comma-separated: same figure (+ possible --operation). Regex tip: -f `echo foo* | sed s+" "+","+g`') |
---|
5 | parser.add_option('-t', '--target', action='store',dest='tgt', type="string", default=None, help='destination folder') |
---|
6 | parser.add_option('-S', '--save', action='store',dest='save', type="string", default="gui", help='save mode (png,eps,svg,pdf,txt or gui) [gui]') |
---|
7 | parser.add_option('-d', '--display',action='store_false',dest='display', default=True, help='do not pop up created images') |
---|
8 | parser.add_option('-O','--output', action='store',dest='out', type="string", default=None, help='output file name') |
---|
9 | |
---|
10 | ### WHAT I PLOT |
---|
11 | parser.add_option('-v', '--var', action='append',dest='var', type="string", default=None, help='variable color-shaded (append)') |
---|
12 | parser.add_option('-w', '--with', action='store',dest='var2', type="string", default=None, help='variable contoured') |
---|
13 | parser.add_option('-a', '--anomaly',action='store_true',dest='anomaly', default=False, help='compute and plot relative anomaly in %') |
---|
14 | parser.add_option('--mult', action='store',dest='mult', type="float", default=1., help='a multiplicative factor to plotted field') |
---|
15 | parser.add_option('-m', '--min', action='append',dest='vmin', type="float", default=None, help='bounding minimum value (append)') |
---|
16 | parser.add_option('-M', '--max', action='append',dest='vmax', type="float", default=None, help='bounding maximum value (append)') |
---|
17 | parser.add_option('-H', '--hole', action='store_true',dest='hole', default=False, help='holes above max and below min') |
---|
18 | |
---|
19 | ### VERTICAL INTERPOLATION |
---|
20 | parser.add_option('-l', '--level', action='store',dest='lvl', type="string", default="0", help='level / start,stop,step (-i 2: p,mb)(-i 3,4: z,km) [0]') |
---|
21 | parser.add_option('-i', '--interp', action='store',dest='itp', type="int", default=None, help='interpolation (2: p, 3: z-amr, 4:z-als)') |
---|
22 | parser.add_option('-N', '--no-api', action='store_true',dest='nocall', default=False, help='do not recreate api file') |
---|
23 | |
---|
24 | ### GENERIC GRAPHICS SETTINGS |
---|
25 | parser.add_option('-c', '--color', action='store',dest='clb', type="string", default="def", help='change colormap (nobar: no colorbar)') |
---|
26 | parser.add_option('--div', action='store',dest='ndiv', type="int", default=10, help='number of divisions in colorbar [10]') |
---|
27 | parser.add_option('--title', action='store',dest='zetitle', type="string", default="fill",help='customize the whole title') |
---|
28 | parser.add_option('-T', '--tiled', action='store_true',dest='tile', default=False, help='draw a tiled plot (no blank zone)') |
---|
29 | parser.add_option('--res', action='store',dest='res', type="float", default=200., help='Resolution for png outputs. --save png needed. [200.]') |
---|
30 | |
---|
31 | ### SPECIFIC FOR MAPPING [MAPMODE 1] |
---|
32 | parser.add_option('-p', '--proj', action='store',dest='proj', type="string", default=None, help='projection') |
---|
33 | parser.add_option('-b', '--back', action='store',dest='back', type="string", default=None, help='background image [None]') |
---|
34 | parser.add_option('-s', '--stride', action='store',dest='ste', type="int", default=3, help='stride vectors [3]') |
---|
35 | parser.add_option('-W', '--winds', action='store_true',dest='winds', default=False, help='wind vectors [False]') |
---|
36 | parser.add_option('-n', '--num', action='store',dest='num', type="int", default=None, help='plot number (<0: plot LT -*numplot*) [1]') |
---|
37 | parser.add_option('-z', '--zoom', action='store',dest='zoom', type="float", default=None, help='zoom factor in %') |
---|
38 | parser.add_option('-e', '--itstep', action='store',dest='it', type="int", default=None, help='stride time [4]') |
---|
39 | parser.add_option('-F', '--first', action='store',dest='frt', type="int", default=1, help='first subscript to plot [1]') |
---|
40 | parser.add_option('--blat', action='store',dest='blat', type="int", default=None, help='bounding latitude for stereographic plots [computed]') |
---|
41 | |
---|
42 | ### SPECIFIC FOR SLICING [MAPMODE 0] |
---|
43 | parser.add_option('--lat', action='append',dest='slat', type="string", default=None, help='slices along lat. 2 comma-separated values: averaging') |
---|
44 | parser.add_option('--lon', action='append',dest='slon', type="string", default=None, help='slices along lon. 2 comma-separated values: averaging') |
---|
45 | parser.add_option('--vert', action='append',dest='svert', type="string", default=None, help='slices along vert. 2 comma-separated values: averaging') |
---|
46 | parser.add_option('--column', action='store_true',dest='column', default=False,help='changes --vert z1,z2 from MEAN to INTEGRATE along z') |
---|
47 | parser.add_option('--time', action='append',dest='stime', type="string", default=None, help='slices along time. 2 comma-separated values: averaging') |
---|
48 | parser.add_option('--xmax', action='store',dest='xmax', type="float", default=None, help='max value for x-axis in contour-plots [max(xaxis)]') |
---|
49 | parser.add_option('--ymax', action='store',dest='ymax', type="float", default=None, help='max value for y-axis in contour-plots [max(yaxis)]') |
---|
50 | parser.add_option('--xmin', action='store',dest='xmin', type="float", default=None, help='min value for x-axis in contour-plots [min(xaxis)]') |
---|
51 | parser.add_option('--ymin', action='store',dest='ymin', type="float", default=None, help='min value for y-axis in contour-plots [min(yaxis)]') |
---|
52 | parser.add_option('--inverty', action='store_true',dest='inverty', default=False,help='force decreasing values along y-axis (e.g. p-levels)') |
---|
53 | parser.add_option('--logy', action='store_true',dest='logy', default=False,help='set y-axis to logarithmic.') |
---|
54 | |
---|
55 | ### OPERATIONS BETWEEN FILES |
---|
56 | parser.add_option('--operation', action='store',dest='operat', type="string", default=None, help='operation to perform on input files given through -f. "+" or "-" acts on each input file by adding or substracting the ref file specified through --fref. "cat" acts on all input files in-a-row.') |
---|
57 | parser.add_option('--fref', action='store',dest='fref', type="string", default=None, help='reference namefile for the --operation option.') |
---|
58 | parser.add_option('--mope', action='store',dest='vminope', type="float", default=0., help='bounding minimum value for inter-file operation') |
---|
59 | parser.add_option('--Mope', action='store',dest='vmaxope', type="float", default=0., help='bounding maximum value for inter-file operation') |
---|
60 | parser.add_option('--titleref', action='store',dest='titref', type="string", default="fill", help='title for the reference file. [title of fig (1)]') |
---|
61 | |
---|
62 | ### SPECIAL |
---|
63 | parser.add_option('--tsat', action='store_true',dest='tsat', default=False,help='convert temperature field T in Tsat-T using pressure') |
---|
64 | |
---|
65 | return parser |
---|