<div dir="ltr"><div class="gmail_default" style="font-size:small">Arianna,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">My apologies, I forgot to set a very critical resource to make the plot be rotated correctly.  I had set the four corners of the projection but forgot this resource:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><div class="gmail_default" style="font-size:small">  res@mpLimitMode          = &quot;Corners&quot;</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Please use the attached script instead, and see the new image.</div><div class="gmail_default" style="font-size:small"><br></div>As a check that the data are being plotted correctly, I created a second script that plots the data in a Cylindrical Equidistant map projection, using the XLAT and XLONG read of the file to correctly project the data onto this projection.  See the attached plotlanduse_mod_latlon.ncl script and image.







<div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">--Mary</div><div class="gmail_default" style="font-size:small"><br></div></div><div class="gmail_default" style="font-size:small"><br></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 3:29 PM, 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 Mary,<div>thank you very much, now there is no problem with the filling!</div><div><br></div><div>Have you notice (and it happened to me before) that in the light blue you can see the world coast-line? (In the figure you sent me there is in the bottom right corner a part of Africa and Madagascar).. I wasn&#39;t able to do anything to remove them (without removing the coordinates..)</div><div><br></div><div>Thank you very much again</div><div><br></div><div>Cheers</div><div><br></div><div>Arianna</div></div><div class="HOEnZb"><div class="h5"><br><div class="gmail_quote"><div dir="ltr">Il giorno gio 19 gen 2017 alle ore 22:20 Mary Haley &lt;<a href="mailto:haley@ucar.edu" target="_blank">haley@ucar.edu</a>&gt; ha scritto:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class="m_3235394785142852093gmail_msg"><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small">Hi Arianna,</div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small"><br class="m_3235394785142852093gmail_msg"></div><div class="gmail_default m_3235394785142852093gmail_msg" 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 m_3235394785142852093gmail_msg" style="font-size:small"><br class="m_3235394785142852093gmail_msg"></div><div class="gmail_default m_3235394785142852093gmail_msg" 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 m_3235394785142852093gmail_msg" style="font-size:small"><br class="m_3235394785142852093gmail_msg"></div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small">  color 1 - all values &lt; 1</div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small">  color 2 - all values &gt;= 1 and &lt; 2</div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small">  color 3 - all values &gt;= 2 and &lt; 3</div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small">  color 4 - all values &gt;= 3 and &lt; 4</div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small">  color 5 - all values &gt;= 4 and &lt; 5</div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small">  color 6 - all values &gt;= 5</div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small"><br class="m_3235394785142852093gmail_msg"></div><div class="gmail_default m_3235394785142852093gmail_msg" 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 m_3235394785142852093gmail_msg" style="font-size:small"><br class="m_3235394785142852093gmail_msg"></div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small">Back to your contour levels:</div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small"><br class="m_3235394785142852093gmail_msg"></div><div class="gmail_default m_3235394785142852093gmail_msg" 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 m_3235394785142852093gmail_msg" style="font-size:small"><br class="m_3235394785142852093gmail_msg"></div><div class="gmail_default m_3235394785142852093gmail_msg" 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 m_3235394785142852093gmail_msg" style="font-size:small"><br class="m_3235394785142852093gmail_msg"></div><div class="gmail_default m_3235394785142852093gmail_msg" 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 m_3235394785142852093gmail_msg" style="font-size:small"><br class="m_3235394785142852093gmail_msg"></div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small">This is one way of doing it, by adding 0.1 to the levels:</div><div class="gmail_default m_3235394785142852093gmail_msg"><div class="gmail_default m_3235394785142852093gmail_msg">







<p class="m_3235394785142852093m_6658929288320496613gmail-p1 m_3235394785142852093gmail_msg"><span class="m_3235394785142852093m_6658929288320496613gmail-s1 m_3235394785142852093gmail_msg"></span>







</p><p class="m_3235394785142852093m_6658929288320496613gmail-p1 m_3235394785142852093gmail_msg"><span class="m_3235394785142852093m_6658929288320496613gmail-s1 m_3235394785142852093gmail_msg">  res@</span><span class="m_3235394785142852093m_6658929288320496613gmail-s2 m_3235394785142852093gmail_msg">cnLevels</span><span class="m_3235394785142852093m_6658929288320496613gmail-s1 m_3235394785142852093gmail_msg">  = </span><span class="m_3235394785142852093m_6658929288320496613gmail-s3 m_3235394785142852093gmail_msg">(/</span><span class="m_3235394785142852093m_6658929288320496613gmail-s1 m_3235394785142852093gmail_msg">1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14, 15,16,17,18,19</span><span class="m_3235394785142852093m_6658929288320496613gmail-s3 m_3235394785142852093gmail_msg">/)</span><span class="m_3235394785142852093m_6658929288320496613gmail-s1 m_3235394785142852093gmail_msg">+0.1</span></p><p class="m_3235394785142852093m_6658929288320496613gmail-p1 m_3235394785142852093gmail_msg">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="m_3235394785142852093m_6658929288320496613gmail-p1 m_3235394785142852093gmail_msg">







</p><p class="m_3235394785142852093m_6658929288320496613gmail-p1 m_3235394785142852093gmail_msg"><span class="m_3235394785142852093m_6658929288320496613gmail-s1 m_3235394785142852093gmail_msg">  res@</span><span class="m_3235394785142852093m_6658929288320496613gmail-s2 m_3235394785142852093gmail_msg">cnFillColors</span><span class="m_3235394785142852093m_6658929288320496613gmail-s1 m_3235394785142852093gmail_msg">     = colorscheme        </span><span class="m_3235394785142852093m_6658929288320496613gmail-s3 m_3235394785142852093gmail_msg">; distinct colors for categories<br class="m_3235394785142852093gmail_msg"> ; res@gsnSpreadColors = False           ; comment this or remove it</span></p><p class="m_3235394785142852093m_6658929288320496613gmail-p1 m_3235394785142852093gmail_msg">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="m_3235394785142852093m_6658929288320496613gmail-p1 m_3235394785142852093gmail_msg">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="m_3235394785142852093m_6658929288320496613gmail-p1 m_3235394785142852093gmail_msg">I&#39;ve attached the modified script and a new PNG.</p><p class="m_3235394785142852093m_6658929288320496613gmail-p1 m_3235394785142852093gmail_msg"><br class="m_3235394785142852093gmail_msg"></p><p class="m_3235394785142852093m_6658929288320496613gmail-p1 m_3235394785142852093gmail_msg">--Mary</p></div></div><div class="gmail_default m_3235394785142852093gmail_msg" style="font-size:small"><br class="m_3235394785142852093gmail_msg"></div></div><div class="gmail_extra m_3235394785142852093gmail_msg"><br class="m_3235394785142852093gmail_msg"><div class="gmail_quote m_3235394785142852093gmail_msg"></div></div><div class="gmail_extra m_3235394785142852093gmail_msg"><div class="gmail_quote m_3235394785142852093gmail_msg">On Thu, Jan 19, 2017 at 10:57 AM, Arianna Valmassoi <span dir="ltr" class="m_3235394785142852093gmail_msg">&lt;<a href="mailto:arianna.valmassoi@gmail.com" class="m_3235394785142852093gmail_msg" target="_blank">arianna.valmassoi@gmail.com</a>&gt;</span> wrote:<br class="m_3235394785142852093gmail_msg"></div></div><div class="gmail_extra m_3235394785142852093gmail_msg"><div class="gmail_quote m_3235394785142852093gmail_msg"><blockquote class="gmail_quote m_3235394785142852093gmail_msg" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class="m_3235394785142852093gmail_msg">Hi all,<div class="m_3235394785142852093gmail_msg"><br class="m_3235394785142852093gmail_msg"></div><div class="m_3235394785142852093gmail_msg">I&#39;m working with WRF and it&#39;s landuse representation. In the plot output I have the following problems:</div><div class="m_3235394785142852093gmail_msg"><ul class="m_3235394785142852093gmail_msg"><li class="m_3235394785142852093gmail_msg">label: there is one more tic in the label with the first color, and has a name I did not put.</li><li class="m_3235394785142852093gmail_msg">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 class="m_3235394785142852093gmail_msg">Domain visualization: I can&#39;t use the model coordinates (even using other plot option) </li></ul><div class="m_3235394785142852093gmail_msg"><br class="m_3235394785142852093gmail_msg"></div></div><div class="m_3235394785142852093gmail_msg">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 class="m_3235394785142852093gmail_msg"><br class="m_3235394785142852093gmail_msg"></div><div class="m_3235394785142852093gmail_msg">Thank a lot for any help and sorry if it&#39;s a duplicate problem!</div><div class="m_3235394785142852093gmail_msg"><br class="m_3235394785142852093gmail_msg"></div><div class="m_3235394785142852093gmail_msg">Cheers,</div><div class="m_3235394785142852093gmail_msg">Arianna Valmassoi</div></div><span class="m_3235394785142852093m_6658929288320496613HOEnZb m_3235394785142852093gmail_msg"><font color="#888888" class="m_3235394785142852093gmail_msg"><div dir="ltr" class="m_3235394785142852093gmail_msg">-- <br class="m_3235394785142852093gmail_msg"></div><div data-smartmail="gmail_signature" class="m_3235394785142852093gmail_msg"><div dir="ltr" class="m_3235394785142852093gmail_msg">Arianna Valmassoi</div></div>
</font></span><br class="m_3235394785142852093gmail_msg"></blockquote></div></div><div class="gmail_extra m_3235394785142852093gmail_msg"><div class="gmail_quote m_3235394785142852093gmail_msg"><blockquote class="gmail_quote m_3235394785142852093gmail_msg" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">______________________________<wbr>_________________<br class="m_3235394785142852093gmail_msg">
ncl-talk mailing list<br class="m_3235394785142852093gmail_msg">
<a href="mailto:ncl-talk@ucar.edu" class="m_3235394785142852093gmail_msg" target="_blank">ncl-talk@ucar.edu</a><br class="m_3235394785142852093gmail_msg">
List instructions, subscriber options, unsubscribe:<br class="m_3235394785142852093gmail_msg">
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" class="m_3235394785142852093gmail_msg" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br class="m_3235394785142852093gmail_msg">
<br class="m_3235394785142852093gmail_msg"></blockquote></div><br class="m_3235394785142852093gmail_msg"></div>
</blockquote></div></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></blockquote></div><br></div>