<div dir="ltr">Hi Karin,<div><br></div><div>Thanks for the tip but I&#39;m afraid it didn&#39;t work :-(</div><div>Here&#39;s link to the figure. I&#39;m trying to remove the outer rectangular border, if that is at all possible.</div><div><br></div><div><a href="https://www.dropbox.com/s/s28l6zrauo6ti2v/clr_all_comp_seasons.pdf?dl=0">https://www.dropbox.com/s/s28l6zrauo6ti2v/clr_all_comp_seasons.pdf?dl=0</a><br></div><div><br></div><div>Appreciate your help with this :-)</div><div>/M</div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><font color="#0000ff">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</font></div><div><font color="#0000ff">Marston S. Johnston, PhD</font></div><div><font color="#0000ff">Department of Earth Sciences</font></div><div><font color="#0000ff">University of Gothenburg</font><span style="color:rgb(0,0,255)">, Sweden</span></div><div><font color="#0000ff">Email: <a href="mailto:marston.johnston@gu.se" target="_blank">marston.johnston@gu.se</a> </font></div><div><font color="#0000ff">Phone: +46-31-7864901 <br></font></div><div><font color="#0000ff">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</font></div><div><font color="#0000ff">Only the fruitful thing is true!</font></div></div></div></div></div></div>
<br><div class="gmail_quote">On Tue, Jul 19, 2016 at 5:47 PM, Karin Meier-Fleischer <span dir="ltr">&lt;<a href="mailto:meier-fleischer@dkrz.de" target="_blank">meier-fleischer@dkrz.de</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Marston,<br>
<br>
to disable the perimeter box around the Mollweide plot use<br>
<br>
   res@mpPerimOn   =  False<br>
<br>
Bye,<br>
Karin<br>
<br>
Am 19.07.16 um 15:38 schrieb Marston Johnston:<br>
<div><div class="h5">&gt; Hi,<br>
&gt;<br>
&gt; I have a 3 plot panel plot that keeps putting a border around each individual plot.<br>
&gt; Does any one know how to remove the border?<br>
&gt;<br>
&gt; /M<br>
&gt;<br>
&gt; My code:<br>
&gt;<br>
&gt; begin<br>
&gt;    season = 7 ; JJA 2006<br>
&gt;    ifile = &quot;/run/clr/<a href="http://clr-sky_seasavg2005_2006.nc" rel="noreferrer" target="_blank">clr-sky_seasavg2005_2006.nc</a>&quot;<br>
&gt;    clrsky = GetSeason(ifile,season)<br>
&gt;    ifile := &quot;run/allsky/<a href="http://all-sky_seasavg2005_2006.nc" rel="noreferrer" target="_blank">all-sky_seasavg2005_2006.nc</a>&quot;<br>
&gt;    allsky = GetSeason(ifile,season)<br>
&gt;    printVarSummary(clrsky)<br>
&gt;    printVarSummary(allsky)<br>
&gt;<br>
&gt;    wks = gsn_open_wks(&quot;x11&quot;,&quot;clr_all_comp&quot;)<br>
&gt;<br>
&gt;    plot = new(3,graphic)<br>
&gt;<br>
&gt;    res                       = True<br>
&gt;    res@gsnDraw               = False           ; don&#39;t draw<br>
&gt;    res@gsnFrame              = False           ; don&#39;t advance frame<br>
&gt;    res@cnInfoLabelOn         = False           ; turn off cn info label<br>
&gt;    res@cnLinesOn             = False<br>
&gt;    res@cnLineLabelsOn        = False           ; Turn off line labels<br>
&gt;    res@cnFillOn              = True            ; turn on color<br>
&gt;    res@cnFillPalette   = &quot;gui_default&quot;<br>
&gt;<br>
&gt;    res@mpCenterLonF          = 180<br>
&gt;    res@mpProjection          = &quot;Mollweide&quot;<br>
&gt;    res@mpGridAndLimbOn       = True<br>
&gt;    res@pmTickMarkDisplayMode = &quot;Always&quot;<br>
&gt;    res@mpGridLatSpacingF     = 30<br>
&gt;    res@mpGridLonSpacingF     = 60<br>
&gt;    res@mpFillOn              = False<br>
&gt;    res@lbLabelBarOn          = True<br>
&gt;    res@lbLabelFontHeightF    = .018<br>
&gt;<br>
&gt;    res@cnLevelSelectionMode  = &quot;ManualLevels&quot;<br>
&gt;    res@cnMinLevelValF        = 250.<br>
&gt;    res@cnMaxLevelValF        = 290.<br>
&gt;    res@cnLevelSpacingF       = 5.<br>
&gt;<br>
&gt;    plot(0) = gsn_csm_contour_map(wks,clrsky(4,:,:),res)<br>
&gt;    plot(1) = gsn_csm_contour_map(wks,allsky(4,:,:),res)<br>
&gt;<br>
&gt;    res@cnLevelSelectionMode  = &quot;ManualLevels&quot;<br>
&gt;    res@cnMinLevelValF        = -10.<br>
&gt;    res@cnMaxLevelValF        = 10.<br>
&gt;    res@cnLevelSpacingF       = 1.<br>
&gt;<br>
&gt;    diff = Darr(clrsky(4,:,:),allsky(4,:,:))<br>
&gt;    printVarInfo(diff,&quot;diff&quot;)<br>
&gt;<br>
&gt;    res@cnFillPalette   = &quot;BlAqGrWh2YeOrReVi22&quot;<br>
&gt;    res@lbLabelBarOn    = True<br>
&gt;    plot(2) = gsn_csm_contour_map(wks,diff,res)<br>
&gt;<br>
&gt;    resP                       = True                   ; modify the panel plot<br>
&gt;    resP@gsnPanelFigureStrings = (/&quot;a)&quot;,&quot;b)&quot;,&quot;c)&quot;/) ; add strings to panel<br>
&gt;    resP@gsnPanelFigureStringsFontHeightF = 0.015<br>
&gt;    resP@amJust                = &quot;TopLeft&quot;<br>
&gt;    gsn_panel(wks,plot,(/3,1/),resP)               ; now draw as one plot<br>
&gt; end<br>
</div></div>&gt; _______________________________________________<br>
&gt; ncl-talk mailing list<br>
&gt; <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt; List instructions, subscriber options, unsubscribe:<br>
&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
</blockquote></div><br></div>