<div dir="ltr"><div class="gmail_default" style="font-size:small">Hi Arianna,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">NCL does its contouring by filling the contours based on what values fall above or below a contour level, and not exactly equal to a contour level.  This causes confusion when your data is all integers.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">If you specify contour levels of 1,2,3,4,5, then NCL is going to create a contour plot with *6* colors, where the colors represent the following:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">  color 1 - all values &lt; 1</div><div class="gmail_default" style="font-size:small">  color 2 - all values &gt;= 1 and &lt; 2</div><div class="gmail_default" style="font-size:small">  color 3 - all values &gt;= 2 and &lt; 3</div><div class="gmail_default" style="font-size:small">  color 4 - all values &gt;= 3 and &lt; 4</div><div class="gmail_default" style="font-size:small">  color 5 - all values &gt;= 4 and &lt; 5</div><div class="gmail_default" style="font-size:small">  color 6 - all values &gt;= 5</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">This is why you see the extra &quot;Label_1&quot;, because NCL only expects (n-1) labels if you have n colors, because it&#39;s assuming you are labelling *between* values.  When you tell it to center the labels, then suddenly you are one label short, and hence NCL gives you the &quot;Label_1&quot; label.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Back to your contour levels:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">In your code, you set the first contour level to 1, so this means that the first color (darkgreen) is going to represent all values &lt; 1, which means any value equal to 0, since you only have integer values.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Then, then next color, &quot;forestgreen&quot; is going to represent all values &gt;=1 and &lt; 2, which, again, in your case, since you just have integers, is going to be all colors equal to 1.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">If you want the first color to represent all values equal to 1, and the second color all values equal to 2, and you want twenty colors total, where the last color represents values equal to 20, then you need to create 19 contour levels that start just slightly higher than 1, 2, 3, 4, etc:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">This is one way of doing it, by adding 0.1 to the levels:</div><div class="gmail_default"><div class="gmail_default">







<p class="gmail-p1"><span class="gmail-s1"></span>







</p><p class="gmail-p1"><span class="gmail-s1">  res@</span><span class="gmail-s2">cnLevels</span><span class="gmail-s1">  = </span><span class="gmail-s3">(/</span><span class="gmail-s1">1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14, 15,16,17,18,19</span><span class="gmail-s3">/)</span><span class="gmail-s1">+0.1</span></p><p class="gmail-p1">I see you are using cnFillPalette, which is okay, but it&#39;s better to use cnFillColors when you have a specific color for each contour level.  This way you don&#39;t need to mess with gsnSpreadColors:</p><p class="gmail-p1">







</p><p class="gmail-p1"><span class="gmail-s1">  res@</span><span class="gmail-s2">cnFillColors</span><span class="gmail-s1">     = colorscheme        </span><span class="gmail-s3">; distinct colors for categories<br> ; res@gsnSpreadColors = False           ; comment this or remove it</span></p><p class="gmail-p1">If you are trying to plot this data over a map, you generally want to use wrf_contour *and* wrf_map_overlays.  But, your XLAT and XLONG on the file do not have a time dimension, which is going to cause problems for wrf_map_overlays.</p><p class="gmail-p1">So, I modified your code to use gsn_csm_contour_map instead, but I used the map projection defined on the file.</p><p class="gmail-p1">I&#39;ve attached the modified script and a new PNG.</p><p class="gmail-p1"><br></p><p class="gmail-p1">--Mary</p></div></div><div class="gmail_default" style="font-size:small"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jan 19, 2017 at 10:57 AM, Arianna Valmassoi <span dir="ltr">&lt;<a href="mailto:arianna.valmassoi@gmail.com" target="_blank">arianna.valmassoi@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi all,<div><br></div><div>I&#39;m working with WRF and it&#39;s landuse representation. In the plot output I have the following problems:</div><div><ul><li>label: there is one more tic in the label with the first color, and has a name I did not put.</li><li>assign color to discrete numbers: I had to impose to the landcat to start with zero, not as one as it is, otherwise the first level will not match</li><li>Domain visualization: I can&#39;t use the model coordinates (even using other plot option) </li></ul><div><br></div></div><div>I attach here both the code and the .nc file, in order to help the debug category 13 should be red and category 17 light blue.</div><div><br></div><div>Thank a lot for any help and sorry if it&#39;s a duplicate problem!</div><div><br></div><div>Cheers,</div><div>Arianna Valmassoi</div></div><span class="HOEnZb"><font color="#888888"><div dir="ltr">-- <br></div><div data-smartmail="gmail_signature"><div dir="ltr">Arianna Valmassoi</div></div>
</font></span><br>______________________________<wbr>_________________<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/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>