<div dir="ltr">Hi Karin,<div><br></div><div>Thanks for helping me solve this problem. I'm curious, when I looked up this <span style="font-size:13px">pmTickMarkDisplayMode, it gave no indication about a box around the plot. How did you figure this one out? I'm trying to better understand NCL. </span></div><div><span style="font-size:13px"><br></span></div><div><span style="font-size:13px">/M</span></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 Wed, Jul 20, 2016 at 11:00 AM, Karin Meier-Fleischer <span dir="ltr"><<a href="mailto:meier-fleischer@dkrz.de" target="_blank">meier-fleischer@dkrz.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div bgcolor="#FFFFFF" text="#000000">
Hi Marston,<br>
<br>
you have to comment or delete the line 26 with the
res@pmTickMarkDisplayMode resource attribute, too.<br>
<br>
Bye,<br>
Karin<br>
<br>
<div>Am 20.07.16 um 09:55 schrieb Marston
Johnston:<br>
</div><div><div class="h5">
<blockquote type="cite">
<div dir="ltr">Hi Karin,
<div><br>
</div>
<div>Thanks for the tip but I'm afraid it didn't work :-(</div>
<div>Here's link to the figure. I'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" target="_blank">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 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: <a href="tel:%2B46-31-7864901" value="+46317864901" target="_blank">+46-31-7864901</a> <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"><<a href="mailto:meier-fleischer@dkrz.de" target="_blank">meier-fleischer@dkrz.de</a>></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>> Hi,<br>
><br>
> I have a 3 plot panel plot that keeps putting a
border around each individual plot.<br>
> Does any one know how to remove the border?<br>
><br>
> /M<br>
><br>
> My code:<br>
><br>
> begin<br>
> season = 7 ; JJA 2006<br>
> ifile = "/run/clr/<a href="http://clr-sky_seasavg2005_2006.nc" rel="noreferrer" target="_blank">clr-sky_seasavg2005_2006.nc</a>"<br>
> clrsky = GetSeason(ifile,season)<br>
> ifile := "run/allsky/<a href="http://all-sky_seasavg2005_2006.nc" rel="noreferrer" target="_blank">all-sky_seasavg2005_2006.nc</a>"<br>
> allsky = GetSeason(ifile,season)<br>
> printVarSummary(clrsky)<br>
> printVarSummary(allsky)<br>
><br>
> wks = gsn_open_wks("x11","clr_all_comp")<br>
><br>
> plot = new(3,graphic)<br>
><br>
> res = True<br>
> res@gsnDraw = False ;
don't draw<br>
> res@gsnFrame = False ;
don't advance frame<br>
> res@cnInfoLabelOn = False ;
turn off cn info label<br>
> res@cnLinesOn = False<br>
> res@cnLineLabelsOn = False ;
Turn off line labels<br>
> res@cnFillOn = True ;
turn on color<br>
> res@cnFillPalette = "gui_default"<br>
><br>
> res@mpCenterLonF = 180<br>
> res@mpProjection = "Mollweide"<br>
> res@mpGridAndLimbOn = True<br>
> res@pmTickMarkDisplayMode = "Always"<br>
> res@mpGridLatSpacingF = 30<br>
> res@mpGridLonSpacingF = 60<br>
> res@mpFillOn = False<br>
> res@lbLabelBarOn = True<br>
> res@lbLabelFontHeightF = .018<br>
><br>
> res@cnLevelSelectionMode = "ManualLevels"<br>
> res@cnMinLevelValF = 250.<br>
> res@cnMaxLevelValF = 290.<br>
> res@cnLevelSpacingF = 5.<br>
><br>
> plot(0) =
gsn_csm_contour_map(wks,clrsky(4,:,:),res)<br>
> plot(1) =
gsn_csm_contour_map(wks,allsky(4,:,:),res)<br>
><br>
> res@cnLevelSelectionMode = "ManualLevels"<br>
> res@cnMinLevelValF = -10.<br>
> res@cnMaxLevelValF = 10.<br>
> res@cnLevelSpacingF = 1.<br>
><br>
> diff = Darr(clrsky(4,:,:),allsky(4,:,:))<br>
> printVarInfo(diff,"diff")<br>
><br>
> res@cnFillPalette = "BlAqGrWh2YeOrReVi22"<br>
> res@lbLabelBarOn = True<br>
> plot(2) = gsn_csm_contour_map(wks,diff,res)<br>
><br>
> resP = True
; modify the panel plot<br>
> resP@gsnPanelFigureStrings = (/"a)","b)","c)"/)
; add strings to panel<br>
> resP@gsnPanelFigureStringsFontHeightF = 0.015<br>
> resP@amJust = "TopLeft"<br>
> gsn_panel(wks,plot,(/3,1/),resP) ;
now draw as one plot<br>
> end<br>
</div>
</div>
> _______________________________________________<br>
> ncl-talk mailing list<br>
> <a href="mailto:ncl-talk@ucar.edu" target="_blank">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>
_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">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>
</blockquote>
</div></div></div>
</blockquote></div><br></div>