<div dir="ltr"><div class="gmail_default" style="font-size:small">The map tickmark labeling code in NCL doesn&#39;t always work well with &quot;non simple&quot; map projections.  I think what you are seeing is correct, but is simply the nature of the projection you have.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">To turn off the top and right tickmarks, try:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">res@tmYROn = False</div><div class="gmail_default" style="font-size:small">res@tmXTOn = False</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">If you want better looking tickmarks, then you should look at example mptick_9.ncl at:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style=""><a href="http://www.ncl.ucar.edu/Applications/mptick.shtml">http://www.ncl.ucar.edu/Applications/mptick.shtml</a><br></div><div class="gmail_default" style=""><br></div><div class="gmail_default" style="">As the instructions state, you should be able to copy the &quot;add_map_tickmarks&quot; function to your own code, and then call it yourself. </div><div class="gmail_default" style=""><br></div><div class="gmail_default" style="">To control what tickmarks you want on the plot, you need to set:</div><div class="gmail_default" style=""><br></div><div class="gmail_default" style=""><pre>;---We&#39;re putting tickmarks on two axes.
  tmres          = True
  tmres@tmYLValues = ispan(20,50,10)
  tmres@tmXBValues = ispan(-130,-70,10)

;---Attach the new map tickmarks.
  map = add_map_tickmarks(wks,map,tmres)</pre><pre><font face="arial, helvetica, sans-serif">Of course, you will need to change the ispan range to whatever values you want.</font></pre><pre><font face="arial, helvetica, sans-serif">--Mary</font></pre><pre><br></pre></div><div class="gmail_extra"><div class="gmail_quote">On Thu, Jul 2, 2015 at 8:47 AM, Michele Petrini <span dir="ltr">&lt;<a href="mailto:mpetrini139@yahoo.it" target="_blank">mpetrini139@yahoo.it</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Dear helpdesk,<br>
I am plotting two overlaid contours over a map with gsn_csm_contour_map_overlay. Everything works pretty fine but the tickmarks. I set res1@pmTickMarkDisplayMode  = &quot;Always&quot; and I get the output you can see in the .ps I attach. What I made wrong? Furthermore, is it possible to have longitude and latitude tickmarks on just one side (bottom and left sides, resp.) of the plot?<br>
<br>
Thank you,<br>
<br>
Michele<br>
<br>
-- <br>
<br>
***<br>
Michele Petrini<br>
<br>
Ph.D. student in Earth Science and Fluid Mechanics<br>
<br>
Università degli studi di Trieste,<br>
Dipartimento di Matematica e Geoscienze<br>
Palazzina C - via Weiss 1, 34128 Trieste, Italy<br>
<br>
Email: <a href="mailto:mpetrini139@yahoo.it" target="_blank">mpetrini139@yahoo.it</a><br>
Skype: michele.petrins<br>
Mobile: <a href="tel:%2B39%203398367372" value="+393398367372" target="_blank">+39 3398367372</a><br>
<br>
<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>
<br></blockquote></div><br></div></div>