Changeset 201 for trunk/MESOSCALE/PLOT


Ignore:
Timestamp:
Jul 7, 2011, 7:10:54 PM (13 years ago)
Author:
aslmd
Message:

MESOSCALE: python. a few bug fixes and additions.

Location:
trunk/MESOSCALE/PLOT/PYTHON
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MESOSCALE/PLOT/PYTHON/mylib/myplot.py

    r199 r201  
    255255    return m
    256256
     257def fmtvar (whichvar="def"):
     258        fmtvar    =     { \
     259                "tk":           "%.0f",\
     260                "tpot":         "%.0f",\
     261                "def":          "%.1e",\
     262                "PTOT":         "%.0f",\
     263                "USTM":         "%.2f",\
     264                        }
     265        if whichvar not in fmtvar:
     266                whichvar = "def"
     267        return fmtvar[whichvar]
     268
    257269def marsmap (whichone="vishires"):
    258270        whichlink =     { \
    259271                "vis":          "http://maps.jpl.nasa.gov/pix/mar0kuu2.jpg",\
    260                 "vishires":     "http://users.info.unicaen.fr/~karczma/TEACH/InfoGeo/Images/Planets/MarsMap_2500x1250.jpg",\
     272                "vishires":     "http://dl.dropbox.com/u/11078310/MarsMap_2500x1250.jpg",\
    261273                "mola":         "http://www.lns.cornell.edu/~seb/celestia/mars-mola-2k.jpg",\
    262                 "molabw":       "http://users.info.unicaen.fr/~karczma/TEACH/InfoGeo/Images/Planets/MarsElevation_2500x1250.jpg",\
     274                "molabw":       "http://dl.dropbox.com/u/11078310/MarsElevation_2500x1250.jpg",\
    263275                        }
    264276        if whichone not in whichlink:
  • trunk/MESOSCALE/PLOT/PYTHON/scripts/winds.py

    r199 r201  
    1616           numplot=4,\
    1717           var=None,\
    18            colorb=None,\
     18           colorb=True,\
    1919           winds=True,\
    2020           addchar=None,\
    2121           interv=[0,1],\
    2222           vmin=None,\
    23            vmax=None):
     23           vmax=None,\
     24           tile=False):
    2425
    2526    ####################################################################################################################
     
    2930    ### Load librairies and functions
    3031    from netCDF4 import Dataset
    31     from myplot import getcoord2d,define_proj,makeplotpng,simplinterv,vectorfield,ptitle,latinterv,getproj,wrfinterv,dumpbdy
     32    from myplot import getcoord2d,define_proj,makeplotpng,simplinterv,vectorfield,ptitle,latinterv,getproj,wrfinterv,dumpbdy,fmtvar
    3233    from mymath import deg,max,min,mean
    3334    from matplotlib.pyplot import contourf, subplot, figure, rcParams, savefig, colorbar, pcolor
     
    111112            elif dimension == 3:   field = nc.variables[var][:,:,:]
    112113            elif dimension == 4:   field = nc.variables[var][:,nvert,:,:] 
    113         dev = np.std(field)*2.5
     114        dev = np.std(field)*3.0
    114115        if vmin is None:  zevmin = mean(field) - dev
    115116        else:             zevmin = vmin
     
    117118        else:             zevmax = vmax
    118119        print "bounds ", zevmin, zevmax
    119   
     120 
    120121    ###########################
    121122    ### Get length of time axis
     
    146147        if   numplot == 4:
    147148            sub = 221
    148             fig.subplots_adjust(wspace = 0.1, hspace = 0.3)
     149            #fig.subplots_adjust(wspace = 0.1, hspace = 0.3)
     150            fig.subplots_adjust(wspace = 0.3, hspace = 0.3)
    149151            rcParams['font.size'] = int( rcParams['font.size'] * 2. / 3. )
    150152        elif numplot == 2:
     
    203205            ### If only one local time is requested (numplot < 0)
    204206       elif numplot <= 0:
    205            if ltst + numplot != 0:   continue
    206            else:                            found_lct = True
     207           if int(ltst) + numplot != 0:         continue
     208           else:                                found_lct = True
    207209
    208210       ### Map projection
     
    216218               if dimension == 2:                what_I_plot = field[:,:]
    217219               elif dimension == 3:              what_I_plot = field[i,:,:]
    218            #contourf( x, y, what_I_plot, 30, cmap = get_cmap(name=colorb), vmin=zevmin, vmax=zevmax )
    219            pcolor( x, y, what_I_plot, cmap = get_cmap(name=colorb), vmin=zevmin, vmax=zevmax )
    220            if colorb:     colorbar(fraction=0.05,pad=0.1,format='%.1e')
     220           if not tile:
     221               zelevels = np.linspace(zevmin,zevmax)
     222               contourf( x, y, what_I_plot, cmap = get_cmap(name=colorb), levels = zelevels )
     223           else:   
     224               pcolor( x, y, what_I_plot, cmap = get_cmap(name=colorb), vmin=zevmin, vmax=zevmax )
     225           if colorb:     colorbar(fraction=0.05,pad=0.1,format=fmtvar(var))
    221226
    222227       ### Vector plot
     
    288293    parser.add_option('-n', action='store', dest='numplot',     type="int",     default=4,     help='number of plots (def=1)(<0: 1 plot of LT -*numplot*)')
    289294    parser.add_option('-i', action='store', dest='interp',      type="int",     default=None,  help='interpolation method (2: press, 3: z-amr, 4:z-als)')
    290     parser.add_option('-c', action='store', dest='colorb',      type="string",  default=None,  help='change colormap (and draw a colorbar)')
     295    parser.add_option('-c', action='store', dest='colorb',      type="string",  default=True,  help='change colormap (and draw a colorbar)')
    291296    parser.add_option('-x', action='store_false', dest='winds',                 default=True,  help='flag: no wind vectors')
    292297    parser.add_option('-m', action='store', dest='vmin',        type="float",   default=None,  help='bounding minimum value for color plot')   
    293298    parser.add_option('-M', action='store', dest='vmax',        type="float",   default=None,  help='bounding maximum value for color plot')
     299    parser.add_option('-T', action='store_true', dest='tile',                   default=False, help='draw a tiled plot')
     300    #parser.add_option('-V', action='store', dest='comb',        type="float",   default=None,  help='a defined combination of variables')
    294301    (opt,args) = parser.parse_args()
    295302    if opt.namefile is None:
     
    326333    name = winds (zefile,int(zelevel),\
    327334           proj=opt.proj,back=opt.back,target=opt.target,stride=opt.stride,var=opt.var,numplot=opt.numplot,colorb=opt.colorb,winds=opt.winds,\
    328            addchar=lschar,interv=[zehour,zehourin],vmin=opt.vmin,vmax=opt.vmax)
     335           addchar=lschar,interv=[zehour,zehourin],vmin=opt.vmin,vmax=opt.vmax,tile=opt.tile)
    329336
    330337    #########################################################
Note: See TracChangeset for help on using the changeset viewer.