Ignore:
Timestamp:
Dec 5, 2011, 2:50:20 PM (13 years ago)
Author:
tnavarro
Message:

GRAPHICS: transparent fields and 3 new background images

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTIL/PYTHON/planetoplot.py

    r451 r453  
    5555           flagnolow=False,\
    5656           mrate=None,\
    57            mquality=False):
     57           mquality=False,\
     58           trans=1):
    5859
    5960
     
    363364                            #zelevels = np.linspace(zevmin*(1. + 1.e-7),zevmax*(1. - 1.e-7)) #,num=20)
    364365                            zelevels = np.linspace(zevmin,zevmax,num=ticks)
    365                             if mapmode == 1:       m.contourf( x, y, what_I_plot_frame, zelevels, cmap = palette)
    366                             elif mapmode == 0:     contourf( x, y, what_I_plot_frame, zelevels, cmap = palette)
     366                            if mapmode == 1:       m.contourf( x, y, what_I_plot_frame, zelevels, cmap = palette, alpha=trans)
     367                            elif mapmode == 0:     contourf( x, y, what_I_plot_frame, zelevels, cmap = palette, alpha=trans)
    367368                        else:
    368                             if mapmode == 1:       m.pcolor( x, y, what_I_plot_frame, cmap = palette, vmin=zevmin, vmax=zevmax )
    369                             elif mapmode == 0:     pcolor( x, y, what_I_plot_frame, cmap = palette, vmin=zevmin, vmax=zevmax )
     369                            if mapmode == 1:       m.pcolor( x, y, what_I_plot_frame, cmap = palette, vmin=zevmin, vmax=zevmax ,alpha=trans)
     370                            elif mapmode == 0:     pcolor( x, y, what_I_plot_frame, cmap = palette, vmin=zevmin, vmax=zevmax ,alpha=trans)
    370371                        if colorb != 'nobar':       
    371372                            if (fileref is not None) and (index_f is numplot-1):   daformat = "%.3f"
Note: See TracChangeset for help on using the changeset viewer.