Changeset 383 for trunk/UTIL
- Timestamp:
- Nov 14, 2011, 5:42:58 PM (13 years ago)
- Location:
- trunk/UTIL/PYTHON
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTIL/PYTHON/gcm.py
r382 r383 175 175 outputname=opt.out,resolution=opt.res,\ 176 176 ope=opt.operat,fileref=reffile,minop=opt.vminope,maxop=opt.vmaxope,titleref=opt.titref,\ 177 invert_y=opt.inverty,xaxis=zexaxis,yaxis=zeyaxis,ylog=opt.logy,yintegral=opt. yint)177 invert_y=opt.inverty,xaxis=zexaxis,yaxis=zeyaxis,ylog=opt.logy,yintegral=opt.column) 178 178 print 'Done: '+name 179 179 system("rm -f to_be_erased") -
trunk/UTIL/PYTHON/meso.py
r382 r383 172 172 outputname=opt.out,resolution=opt.res,\ 173 173 ope=opt.operat,fileref=reffile,minop=opt.vminope,maxop=opt.vmaxope,titleref=opt.titref,\ 174 invert_y=opt.inverty,xaxis=zexaxis,yaxis=zeyaxis,ylog=opt.logy,yintegral=opt. yint)174 invert_y=opt.inverty,xaxis=zexaxis,yaxis=zeyaxis,ylog=opt.logy,yintegral=opt.column) 175 175 print 'Done: '+name 176 176 system("rm -f to_be_erased") -
trunk/UTIL/PYTHON/myscript.py
r382 r383 43 43 parser.add_option('--lon', action='append',dest='slon', type="string", default=None, help='slices along lon. 2 comma-separated values: averaging') 44 44 parser.add_option('--vert', action='append',dest='svert', type="string", default=None, help='slices along vert. 2 comma-separated values: averaging') 45 parser.add_option('-- yint', action='store_true',dest='yint', default=False,help='changethe function of --vert z1,z2 from MEAN to INTEGRATE along z')45 parser.add_option('--column', action='store_true',dest='column', default=False,help='changes the function of --vert z1,z2 from MEAN to INTEGRATE along z') 46 46 parser.add_option('--time', action='append',dest='stime', type="string", default=None, help='slices along time. 2 comma-separated values: averaging') 47 47 parser.add_option('--xmax', action='store',dest='xmax', type="float", default=None, help='max value for x-axis in contour-plots [max(xaxis)]')
Note: See TracChangeset
for help on using the changeset viewer.