<div dir="ltr"><div><div><div><div><div>This question is not clear (to me).<br><br></div>To what  "color table exercises" are you referring?<br><br></div><div>Also, it is best to indicate what version of NCL you are using:<br><br></div><div>%> ncl -V<br></div><div><br>----<br></div>If you have a variable that spans (say)<br><br><pre>  res@cnLevelSelectionMode = "ManualLevels"     ; set manual contour levels
  res@cnMinLevelValF       = -275.               ; set min contour level
  res@cnMaxLevelValF       =  350              ; set max contour level
  res@cnLevelSpacingF      =  25.               ; set contour spacing</pre>there are (350-(-275))/25 = 25 contour levels<br><br></div>By default, NCL adds 2 more levels to 'catch' values less than -275 and greater than 350. Hence, 27 (25+2) colors.<br><br></div>Say you are using the 256 color table:<br><br>  <a href="https://www.ncl.ucar.edu/Document/Graphics/ColorTables/amwg256.shtml">https://www.ncl.ucar.edu/Document/Graphics/ColorTables/amwg256.shtml</a><br><br></div>Then, by default, NCL will select every  27-th color so that <br><div><div><br>---<br></div><div>By default,<br><br><a href="https://www.ncl.ucar.edu/Document/Graphics/Resources/cn.shtml#cnSpanFillPalette">https://www.ncl.ucar.edu/Document/Graphics/Resources/cn.shtml#cnSpanFillPalette</a><br><br></div><div>   res@cnFillPallette = True<br><br></div><div>You can set this to False <br><br>   res@cnFillPallette = False      ; turn off spanning the color table<br><br>to select every color  but if you use the above settings you will get the 1st 27 colors in the 256-colr table.<br><br> <br></div><div><div><div><pre> res@cnLevelSelectionMode = "ManualLevels"     ; set manual contour levels
  res@cnMinLevelValF       = -275.               ; set min contour level
  res@cnMaxLevelValF       =  350              ; set max contour level
  res@cnLevelSpacingF      =  2.5               ; set contour spacing</pre><br> 350-(-275))/256 = 2.44    <br><br>   <br><pre>  res@cnLevelSpacingF      =  2.44               ; set contour spacing</pre> <br></div><div>Would use very color<br></div><div><div><br><br></div></div></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 27, 2017 at 3:09 PM, Grace Choi <span dir="ltr"><<a href="mailto:gracesh27@gmail.com" target="_blank">gracesh27@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hello everyone, <div><br></div><div>When I try on color table exercises on the ncl website, I only can get 31 colors to show up on my x11, as opposed to 255 colors that the example shows. Should I be particularly concerned about this?</div><div><br></div><div>Also, I am wondering if the issue above is related to the issue I've been having with other functions, such as <font color="#000000"><span style="white-space:pre-wrap">gsn_define_colormap(wks,"<wbr>rainbow"). When I expect to see actual rainbow colors, I only see different shades of blue on my map. Please help. </span></font></div><div><font color="#000000"><span style="white-space:pre-wrap"><br></span></font></div><div><font color="#000000"><span style="white-space:pre-wrap">Sincerely,</span></font></div><div><font color="#000000"><span style="white-space:pre-wrap">Grace</span></font></div></div>
<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>