<div dir="ltr"><div class="gmail_default" style="font-size:small">​Hi Cathy,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">None of the &quot;gsnXXXXX&quot; resources are recognized by setvalues or getvalues, because the gsnXXXX resources are ones that the gsn_xxxx scripts recognize, and not one that the core NCL language recognizes.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">If you need to plot the data with the cyclic point added, but still be able to use setvalues in the way that this example does, then you can try the unadvertised gsn_add_cyclic_point function which is what &quot;gsnAddCyclic&quot; uses &quot;under the hood&quot;.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">So, for example, instead of:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style><div class="gmail_default" style="font-size:small"><font face="courier new, monospace">  t  = t(0,:,:)</font></div><div style="font-size:small"><br></div><div style="font-size:small">use this:</div><div style="font-size:small"><br></div><div style><div style><font face="courier new, monospace">  t  = gsn_add_cyclic_point(a-&gt;t(0,:,:))                     ; Read first time step     </font></div></div><div style="font-size:small"><br></div><div style="font-size:small">and instead of:</div></div><div class="gmail_default" style="font-size:small"><pre style="color:rgb(0,0,0);word-wrap:break-word;white-space:pre-wrap">    setvalues plot@data
      &quot;sfDataArray&quot; : (/a-&gt;t(i,:,:)/)
    end setvalues</pre><pre style="color:rgb(0,0,0);word-wrap:break-word;white-space:pre-wrap"><font face="arial, helvetica, sans-serif">use:</font></pre><pre style="color:rgb(0,0,0);word-wrap:break-word;white-space:pre-wrap"><pre style="word-wrap:break-word;white-space:pre-wrap">    setvalues plot@data
      &quot;sfDataArray&quot; : (/gsn_add_cyclic_point(a-&gt;t(i,:,:))/)
    end setvalues</pre><pre style="word-wrap:break-word;white-space:pre-wrap"><font face="arial, helvetica, sans-serif">--Mary</font></pre><pre style="word-wrap:break-word;white-space:pre-wrap"><br></pre></pre></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Nov 19, 2014 at 12:44 PM, Cathy Smith (NOAA Affiliate) <span dir="ltr">&lt;<a href="mailto:cathy.smith@noaa.gov" target="_blank">cathy.smith@noaa.gov</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi-<br>
I followed this example<br>
<br>
<a href="https://www.ncl.ucar.edu/Applications/Scripts/animate_1.ncl" target="_blank">https://www.ncl.ucar.edu/Applications/Scripts/animate_1.ncl</a><br>
<br>
to generate animations. If I set<br>
<br>
res@gsnAddCyclic       = True<br>
<br>
for the first plot, it is plotted correctly. But, subsequent plots all<br>
plotted incorrectly as it appears that set values didn&#39;t recognize the<br>
cyclic True setting.<br>
(The array values were stretched to fill the 1 longitude longer data<br>
array). We could verify this was the case as when we manually created an<br>
extra longitude for the data array after the first plot, then it worked.<br>
<br>
Can set values be made to use use the gsnAddCycle setting that exists?<br>
Or, is there another way that doesn&#39;t involve manually adding the extra<br>
longitude?<br>
<br>
Let me know if more info is needed. In this case, I was using V6.1.2<br>
<br>
Cathy Smith<br>
<br>
<br>
<br>
<br>
----------------------------------------------<br>
NOAA/ESRL PSD and CU CIRES<br>
<a href="tel:303-497-6263" value="+13034976263">303-497-6263</a><br>
<a href="http://www.esrl.noaa.gov/psd/people/cathy.smith/" target="_blank">http://www.esrl.noaa.gov/psd/people/cathy.smith/</a><br>
Emails about data/webpages may get quicker responses from emailing<br>
<a href="mailto:esrl.psd.data@noaa.gov">esrl.psd.data@noaa.gov</a><br>
_______________________________________________<br>
ncl-talk mailing list<br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
</blockquote></div><br></div>