<div dir="ltr"><div class="gmail_default" style="font-size:small">At first I thought the problem was with the &quot;delete&quot; plot lines:</div><div class="gmail_default" style="font-size:small">







<p class=""><span class="">  </span><span class="">delete</span><span class="">(plotA)                                 </span>;otherwise all 10 will overlay on each other             <br>  <span class="">delete</span>(plotB)</p><p class="">But I did a little test, and it worked for me, whether I deleted the plots are not. Still, you might try commenting out the delete calls to see if this helps.</p><p class="">To save yourself a few lines of code, you shouldn&#39;t need &quot;plotA&quot;; this should work fine:</p>







<p class=""><font face="monospace, monospace"><span class="">do</span> i=0,<span class="">dimsizes</span>(te0inds)-1<br></font><span style="font-family:monospace,monospace">  </span><span class="" style="font-family:monospace,monospace">plot(i)</span><span style="font-family:monospace,monospace"> = </span><span class="" style="font-family:monospace,monospace">gsn_csm_contour_map</span><span style="font-family:monospace,monospace">(wks,phi(te0inds(i),3,:,:),res)<br></span><span style="font-family:monospace,monospace">  </span><span style="font-family:monospace,monospace">plotB = </span><span class="" style="font-family:monospace,monospace">gsn_csm_contour</span><span style="font-family:monospace,monospace">(wks,wspd925(te0inds(i),:,:),wres)<br></span><span class="" style="font-family:monospace,monospace">  </span><span class="" style="font-family:monospace,monospace">overlay</span><span class="" style="font-family:monospace,monospace">(</span><span class="" style="font-family:monospace,monospace">plot(i)</span><span class="" style="font-family:monospace,monospace">,plotB)                      </span><span style="font-family:monospace,monospace">; result will be </span><span class="" style="font-family:monospace,monospace">plotA</span><span style="font-family:monospace,monospace"> <br></span><span style="font-family:monospace,monospace">  </span><span class="" style="font-family:monospace,monospace">delete</span><span style="font-family:monospace,monospace">(plotB)<br></span><span style="font-family:monospace,monospace">end</span><span class="" style="font-family:monospace,monospace"> </span><span style="font-family:monospace,monospace">do</span></p><p class="">Are you getting any kind of error message?  I couldn&#39;t tell from your script if there were any issues.</p><p class="">Usually if I have problems with gsn_panel, I try drawing one or more of the plots individually to make sure they&#39;re not blank.  Right before the gsn_panel calls, try:</p><p class=""><font face="monospace, monospace"><span class="">do</span> i=0,<span class="">dimsizes</span>(te0inds)-1<br></font><span style="font-family:monospace,monospace">  draw(plot(i))<br></span><span style="font-family:monospace,monospace">  frame(wks)<br></span><span style="font-family:monospace,monospace">end</span><span class="" style="font-family:monospace,monospace"> </span><span style="font-family:monospace,monospace">do</span></p><p class="">--Mary<br></p><p class=""><br></p></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, May 16, 2015 at 1:07 PM, Philip Martin <span dir="ltr">&lt;<a href="mailto:philip.martin@sjsu.edu" target="_blank">philip.martin@sjsu.edu</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">Hello NCL users,<div><br></div><div><div><div style="color:rgb(0,0,0);font-size:12.8000001907349px">I am trying to make multiple pages of panel plots (5 per page) from several files, but only one plot shows up on each page after the first. The graphic arrays of interest are embedded within a while loop - I did not think it would be an issue. I don&#39;t seem to have any major issues with calculations. Any assistance would be greatly appreciated. Thanks in advance!</div><div style="color:rgb(0,0,0);font-size:12.8000001907349px"><br></div><div style="color:rgb(0,0,0);font-size:12.8000001907349px">I am running NCL version 6.2.1 on x86_64 gcc (GCC) 4.4.6 20110731 (Red Hat 4.4.6-3). My program is attached (plotting routines at line 214 - end). </div></div><span class="HOEnZb"><font color="#888888"><div style="color:rgb(0,0,0);font-size:12.8000001907349px"><br></div>-- <br><div><div dir="ltr">Philip Martin-Edwards<div>Teaching Associate</div><div>Dept. of Meteorology and Climate Science</div><div>San Jose State University</div></div></div>
</font></span></div></div>
<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>
<br></blockquote></div><br></div></div>