- Timestamp:
- Mar 14, 2012, 10:45:39 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTIL/PYTHON/planetoplot.py
r579 r580 75 75 fmtvar,definecolorvec,defcolorb,getprefix,putpoints,calculate_bounds,errormess,definesubplot,\ 76 76 zoomset,getcoorddef,getwinddef,whatkindfile,reducefield,bounds,getstralt,getfield,smooth,nolow,\ 77 getname,localtime,check_localtime,polarinterv,getsindex,define_axis,determineplot,readslices,bidimfind,getlschar,hole_bounds 77 getname,localtime,check_localtime,polarinterv,getsindex,define_axis,determineplot,readslices,bidimfind,getlschar,hole_bounds,windamplitude 78 78 from mymath import deg,max,min,mean,get_tsat,writeascii,fig2data,fig2img 79 79 import matplotlib as mpl … … 613 613 if mult != 1: plottitle = '{:.0e}'.format(mult) + "*" + plottitle 614 614 if zetitle[0] != "fill": 615 plottitle = zetitle[index_f] 615 if index_f < len(zetitle): plottitle = zetitle[index_f] 616 else: plottitle = zetitle[0] 616 617 if titleref is "fill": titleref=zetitle[index_f] 617 618 if fileref is not None:
Note: See TracChangeset
for help on using the changeset viewer.