[349] | 1 | #!/usr/bin/env python |
---|
| 2 | |
---|
[392] | 3 | ### A. Spiga + T. Navarro + A. Colaitis |
---|
[349] | 4 | |
---|
| 5 | ########################################################################################### |
---|
| 6 | ########################################################################################### |
---|
| 7 | ### What is below relate to running the file as a command line executable (very convenient) |
---|
| 8 | if __name__ == "__main__": |
---|
| 9 | import sys |
---|
| 10 | from optparse import OptionParser ### to be replaced by argparse |
---|
| 11 | from api_wrapper import api_onelevel |
---|
[464] | 12 | from gcm_transformations import call_zrecast |
---|
[349] | 13 | from netCDF4 import Dataset |
---|
[392] | 14 | from myplot import getlschar, separatenames, readslices, adjust_length, whatkindfile, errormess |
---|
[349] | 15 | from os import system |
---|
| 16 | from planetoplot import planetoplot |
---|
[377] | 17 | from myscript import getparseroptions |
---|
[478] | 18 | import glob |
---|
[349] | 19 | import numpy as np |
---|
| 20 | |
---|
[478] | 21 | |
---|
[349] | 22 | ############################# |
---|
| 23 | ### Get options and variables |
---|
[392] | 24 | parser = OptionParser() ; getparseroptions(parser) ; (opt,args) = parser.parse_args() |
---|
| 25 | if opt.file is None: errormess("I want to eat one file at least ! Use winds.py -f name_of_my_file. Or type winds.py -h") |
---|
| 26 | if opt.var is None and opt.anomaly is True: errormess("Cannot ask to compute anomaly if no variable is set") |
---|
| 27 | if opt.fref is not None and opt.operat is None: errormess("you must specify an operation when using a reference file") |
---|
| 28 | if opt.operat in ["+","-"] and opt.fref is None: errormess("you must specifiy a reference file when using inter-file operations") |
---|
| 29 | if opt.fref is not None and opt.operat is not None and opt.itp is not None: interpref=True |
---|
| 30 | else: interpref=False |
---|
[451] | 31 | if opt.rate is not None: opt.save = "avi" |
---|
| 32 | elif opt.save == "avi": opt.rate = 8 ## this is a default value for -S avi |
---|
| 33 | if opt.save == "html": opt.rate = -1 ## this is convenient because everything is done in planetoplot with mrate |
---|
[349] | 34 | |
---|
[392] | 35 | ############################# |
---|
| 36 | ### Get infos about slices |
---|
| 37 | zeslat = readslices(opt.slat) ; zeslon = readslices(opt.slon) ; zesvert = readslices(opt.svert) ; zestime = readslices(opt.stime) |
---|
| 38 | reffile = opt.fref |
---|
| 39 | zexaxis = [opt.xmin,opt.xmax] ; zeyaxis=[opt.ymin,opt.ymax] |
---|
[349] | 40 | |
---|
[392] | 41 | ############################# |
---|
[478] | 42 | ### Catch multiple files |
---|
[479] | 43 | if "*" in opt.file[0] or "?" in opt.file[0]: |
---|
| 44 | yeah = glob.glob(opt.file[0]) ; yeah.sort() |
---|
| 45 | opt.file[0] = yeah[0] |
---|
[489] | 46 | for file in yeah[1:]: opt.file[0] = opt.file[0] + "," + file |
---|
[478] | 47 | |
---|
| 48 | ############################# |
---|
[392] | 49 | ### 1. LOOP ON FILE LISTS TO BE PUT IN DIFFERENT FIGURES |
---|
| 50 | for i in range(len(opt.file)): |
---|
[349] | 51 | |
---|
[392] | 52 | zefiles = separatenames(opt.file[i]) |
---|
[380] | 53 | |
---|
[426] | 54 | typefile = whatkindfile(Dataset(zefiles[0])) ; stralt = None |
---|
[562] | 55 | if typefile in ["meso"]: |
---|
[392] | 56 | [lschar,zehour,zehourin] = getlschar ( zefiles[0] ) |
---|
[426] | 57 | if opt.var is None: opt.var = ["HGT"] ; opt.clb = "nobar" |
---|
[429] | 58 | elif typefile in ["geo"]: |
---|
[426] | 59 | [lschar,zehour,zehourin] = ["",0,0] |
---|
| 60 | if opt.var is None: opt.var = ["HGT_M"] ; opt.clb = "nobar" |
---|
[392] | 61 | else: |
---|
| 62 | [lschar,zehour,zehourin] = ["",0,0] |
---|
[426] | 63 | if opt.var is None: opt.var = ["phisinit"] ; opt.clb = "nobar" |
---|
[380] | 64 | |
---|
[392] | 65 | if opt.vmin is not None : zevmin = opt.vmin[min(i,len(opt.vmin)-1)] |
---|
| 66 | else: zevmin = None |
---|
| 67 | if opt.vmax is not None : zevmax = opt.vmax[min(i,len(opt.vmax)-1)] |
---|
| 68 | else: zevmax = None |
---|
| 69 | #print "vmin, zevmin", opt.vmin, zevmin ; print "vmax, zevmax", opt.vmax, zevmax |
---|
[380] | 70 | |
---|
[392] | 71 | ############################# |
---|
| 72 | ### 2. LOOP ON VAR LISTS TO BE PUT IN DIFFERENT FIGURES |
---|
| 73 | for j in range(len(opt.var)): |
---|
[380] | 74 | |
---|
[392] | 75 | zevars = separatenames(opt.var[j]) |
---|
[380] | 76 | |
---|
[377] | 77 | inputnvert = separatenames(opt.lvl) |
---|
[351] | 78 | if np.array(inputnvert).size == 1: |
---|
| 79 | zelevel = float(inputnvert[0]) |
---|
| 80 | ze_interp_levels = [-9999.] |
---|
[489] | 81 | elif np.array(inputnvert).size == 2: |
---|
| 82 | zelevel = -99. |
---|
| 83 | ze_interp_levels = np.linspace(float(inputnvert[0]),float(inputnvert[1]),20) |
---|
[351] | 84 | else: |
---|
| 85 | zelevel = -99. |
---|
| 86 | ze_interp_levels = np.linspace(float(inputnvert[0]),float(inputnvert[1]),float(inputnvert[2])) |
---|
| 87 | |
---|
[392] | 88 | ######################################################### |
---|
[377] | 89 | if opt.itp is not None: |
---|
[562] | 90 | if opt.itp > 0: |
---|
[392] | 91 | ##### |
---|
| 92 | ##### MESOSCALE : written by AS |
---|
| 93 | ##### |
---|
[562] | 94 | if typefile in ["meso"]: |
---|
[377] | 95 | if zelevel == 0. and opt.itp == 4: zelevel = 0.010 |
---|
[349] | 96 | ### winds or no winds |
---|
| 97 | if opt.winds : zefields = 'uvmet' |
---|
| 98 | else : zefields = '' |
---|
| 99 | ### var or no var |
---|
[392] | 100 | if zefields == '' : zefields = opt.var[j] |
---|
| 101 | else : zefields = zefields + "," + opt.var[j] |
---|
| 102 | if opt.var2 is not None : zefields = zefields + "," + opt.var2 |
---|
| 103 | ### call fortran routines |
---|
| 104 | for fff in range(len(zefiles)): |
---|
| 105 | newname = api_onelevel ( path_to_input = '', \ |
---|
| 106 | input_name = zefiles[fff], \ |
---|
| 107 | fields = zefields, \ |
---|
| 108 | interp_method = opt.itp, \ |
---|
| 109 | interp_level = ze_interp_levels, \ |
---|
| 110 | onelevel = zelevel, \ |
---|
| 111 | nocall = opt.nocall ) |
---|
| 112 | if fff == 0: zetab = newname |
---|
| 113 | else: zetab = np.append(zetab,newname) |
---|
[569] | 114 | if interpref: |
---|
| 115 | reffile = api_onelevel ( path_to_input = '', \ |
---|
| 116 | input_name = opt.fref, \ |
---|
| 117 | fields = zefields, \ |
---|
| 118 | interp_method = opt.itp, \ |
---|
| 119 | interp_level = ze_interp_levels, \ |
---|
| 120 | onelevel = zelevel, \ |
---|
| 121 | nocall = opt.nocall ) |
---|
[392] | 122 | zefiles = zetab #; print zefiles |
---|
[349] | 123 | zelevel = 0 ## so that zelevel could play again the role of nvert |
---|
[392] | 124 | ##### |
---|
| 125 | ##### GCM : written by AC |
---|
| 126 | ##### |
---|
| 127 | elif typefile == "gcm": |
---|
[475] | 128 | inputvar = zevars |
---|
| 129 | if opt.var2 is not None : inputvar = np.append(inputvar,opt.var2) |
---|
[392] | 130 | interpolated_files="" |
---|
| 131 | interpolated_files=call_zrecast(interp_mode=opt.itp,\ |
---|
| 132 | input_name=zefiles,\ |
---|
[475] | 133 | fields=inputvar,\ |
---|
[489] | 134 | limites = ze_interp_levels,\ |
---|
[464] | 135 | predefined=opt.intas) |
---|
[349] | 136 | |
---|
[392] | 137 | zefiles=interpolated_files |
---|
| 138 | if interpref: |
---|
| 139 | interpolated_ref="" |
---|
| 140 | interpolated_ref=call_zrecast(interp_mode=opt.itp,\ |
---|
[380] | 141 | input_name=[opt.fref],\ |
---|
[409] | 142 | fields=zevars,\ |
---|
[464] | 143 | predefined=opt.intas) |
---|
[380] | 144 | |
---|
[392] | 145 | reffile=interpolated_ref[0] |
---|
| 146 | else: |
---|
[429] | 147 | print "type not supported" |
---|
[392] | 148 | exit() |
---|
[377] | 149 | |
---|
[392] | 150 | ############# |
---|
| 151 | ### Main call |
---|
| 152 | name = planetoplot (zefiles,level=int(zelevel),vertmode=opt.itp,\ |
---|
| 153 | proj=opt.proj,back=opt.back,target=opt.tgt,stride=opt.ste,var=zevars,\ |
---|
[424] | 154 | colorb=opt.clb,winds=opt.winds,\ |
---|
[349] | 155 | addchar=lschar,interv=[zehour,zehourin],vmin=zevmin,vmax=zevmax,\ |
---|
| 156 | tile=opt.tile,zoom=opt.zoom,display=opt.display,\ |
---|
[424] | 157 | hole=opt.hole,save=opt.save,\ |
---|
| 158 | anomaly=opt.anomaly,var2=opt.var2,ndiv=opt.ndiv,\ |
---|
[578] | 159 | mult=opt.mult,zetitle=separatenames(opt.zetitle),\ |
---|
[359] | 160 | slon=zeslon,slat=zeslat,svert=zesvert,stime=zestime,\ |
---|
[377] | 161 | outputname=opt.out,resolution=opt.res,\ |
---|
[380] | 162 | ope=opt.operat,fileref=reffile,minop=opt.vminope,maxop=opt.vmaxope,titleref=opt.titref,\ |
---|
[385] | 163 | invert_y=opt.inverty,xaxis=zexaxis,yaxis=zeyaxis,ylog=opt.logy,yintegral=opt.column,\ |
---|
[453] | 164 | blat=opt.blat,blon=opt.blon,tsat=opt.tsat,flagnolow=opt.nolow,\ |
---|
[483] | 165 | mrate=opt.rate,mquality=opt.quality,trans=opt.trans,zarea=opt.area,axtime=opt.axtime,\ |
---|
[569] | 166 | redope=opt.redope,seevar=opt.seevar,xlab=opt.xlab,ylab=opt.ylab,lbls=separatenames(opt.labels)) |
---|
[392] | 167 | print 'DONE: '+name |
---|
[349] | 168 | system("rm -f to_be_erased") |
---|
| 169 | |
---|
| 170 | ######################################################### |
---|
| 171 | ### Generate a .sh file with the used command saved in it |
---|
[392] | 172 | command = "" |
---|
[349] | 173 | for arg in sys.argv: command = command + arg + ' ' |
---|
[424] | 174 | #if typefile not in ["meso","mesoapi"]: name = 'pycommand' |
---|
[451] | 175 | if opt.save == "gui": name = 'pycommand' |
---|
| 176 | elif opt.save == "avi": system("mv -f movie*.avi "+name+".avi") |
---|
| 177 | elif opt.save == "html": system("cat $PYTHONPATH/header.html > anim.html ; cat zepics >> anim.html ; cat $PYTHONPATH/body.html >> anim.html ; rm -rf zepics "+name+" ; mkdir "+name+" ; mv anim.html image*png "+name) |
---|
[349] | 178 | f = open(name+'.sh', 'w') |
---|
| 179 | f.write(command) |
---|
[392] | 180 | |
---|
[468] | 181 | #print "********** OPTIONS: ", opt |
---|
[392] | 182 | print "********************************************************** END" |
---|