<div dir="ltr">Well, OK, without seeing the script and possibly the data, its difficult to say what's going on.<br></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Sep 25, 2018 at 1:25 AM <<a href="mailto:G.Monte@isac.cnr.it">G.Monte@isac.cnr.it</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Yes, I set *resources* of course.<br>
<br>
Giulio Monte<br>
<br>
<br>
<br>
<br>
> Hi,<br>
><br>
> Its unclear what might be wrong without seeing your script. If this is<br>
> exactly what you have in your script...<br>
><br>
> cnExplicitLabelBarLabelsOn = True<br>
> lbLabelBarOn               = True<br>
> lbLabelsOn                 = True<br>
> lbBoxLinesOn               = False<br>
> lbBoxSeparatorLinesOn      = False<br>
> lbLabelStrings             = (/"100","150","200","250"/)<br>
><br>
> ...then this would not have any effect on your plot, although I would have<br>
> expected some sort of reasonable defaults. The above is setting<br>
> *variables*<br>
> by those names -- you want to set *resources* that then get passed into<br>
> the<br>
> plotting function; something like:<br>
><br>
> res = True<br>
> ...<br>
> res@cnExplicitLabelBarLabelsOn = True<br>
> res@lbLabelBarOn               = True<br>
> res@lbLabelsOn                 = True<br>
> res@lbBoxLinesOn               = False<br>
> res@lbBoxSeparatorLinesOn      = False<br>
> res@lbLabelStrings             = (/"100","150","200","250"/)<br>
> ...<br>
> plot = gsn_csm_contour_XXX(wks, ....., res)<br>
><br>
> Is this what you have?<br>
><br>
><br>
><br>
> On Mon, Sep 24, 2018 at 8:46 AM <<a href="mailto:G.Monte@isac.cnr.it" target="_blank">G.Monte@isac.cnr.it</a>> wrote:<br>
><br>
>> Dears all,<br>
>> I had a contouring map with a 100-spaced intervals in the label bar, so<br>
>> I<br>
>> decided to set a label string with four/five labels in some<br>
>> rapresentative<br>
>> positions of this bar. Here the commands I used (in NCL 6.4.0):<br>
>><br>
>> cnExplicitLabelBarLabelsOn = True<br>
>> lbLabelBarOn               = True<br>
>> lbLabelsOn                 = True<br>
>> lbBoxLinesOn               = False<br>
>> lbBoxSeparatorLinesOn      = False<br>
>> lbLabelStrings             = (/"100","150","200","250"/)<br>
>><br>
>> The script did run, but only the first value of my label string was<br>
>> written, while I had Label_21, Label_42, Label_63, Label_84 for the<br>
>> others. Moreover, I realized that even if I set the first value at 150,<br>
>> it<br>
>> is placed at the same position where the previous one was. I just cannot<br>
>> understand where the problems are.<br>
>><br>
>> Giulio Monte<br>
>><br>
>><br>
>><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>
>><br>
><br>
<br>
<br>
</blockquote></div>