<div dir="ltr"><div>Thanks a lot for your suggestions. I have modified my script as per your suggestions, but instead of overlaying plot am getting a single plot, and it is taking a lot of time for only two files (for testing purpose I am doing with 2 files out of 14) not able to understand where am I making the mistake. The plot and the modified script is attached herewith.<br><br></div><div>Thanks,<br></div>Ipsita<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Nov 14, 2015 at 12:50 AM, Dennis Shea <span dir="ltr">&lt;<a href="mailto:shea@ucar.edu" target="_blank">shea@ucar.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">   diri  = &quot;./&quot;           ; input directory<br>
   fili    = systemfunc(&quot;cd &quot;+diri+&quot; ; ls MT1SAPS*h5&quot;)   ; all desired files<br>
   print(fili)<br>
   nfili  = dimsizes(fili)<br>
<br>
   res = True                                             ; define once<br>
   res@gsnDraw           = False<br>
   res@gsnFrame         = False<br>
   res@gsnAddCyclic    = False<br>
<br>
   res1 = True<br>
       :<br>
   wks   = gsn_open_wks (&quot;PDF&quot;,&quot;xx1&quot;)<br>
<br>
   do nf=0,nfili-1                                               ;<br>
loop over each file<br>
         rh  =<br>
         if (nf.eq.0) then<br>
              PLOT = gsn_csm_contour_map (wks, rh, res)<br>
         else<br>
             plot      =  gsn_csm_contour(wks, rh, res)<br>
             overlay(PLOT, plot)<br>
         end if<br>
    end do           ; nf loop<br>
<br>
   draw(PLOT)<br>
   frame(wks)<br>
<br>
===============<br>
<br>
Why are you doing this<br>
<br>
 delete(fn)<br>
 delete(f)<br>
 delete(vnlon)<br>
 delete(ulon)<br>
 delete(vnlat)<br>
 delete(ulat)<br>
 delete(vnrr)<br>
 delete(urr)<br>
 delete(rr)<br>
 delete(dims)<br>
 delete(nlon)<br>
 delete(nlat)<br>
<br>
If the variables are the same size, they will overwrite the previous values.<br>
<br>
If they are not the same size:<br>
<br>
    delete( [/ fn, f, vnlon, ulon,......... /] )     delete multiple<br>
variable in one command<br>
<br>
or, use NCL&#39;s   := reassignment syntax<br>
<br>
     urr := f-&gt;$vnrr$   ; if urr exists; delete and  write with new values<br>
<br>
<a href="http://www.ncl.ucar.edu/Document/Manuals/Ref_Manual/NclVariables.shtml#Reassignment" rel="noreferrer" target="_blank">http://www.ncl.ucar.edu/Document/Manuals/Ref_Manual/NclVariables.shtml#Reassignment</a><br>
<br>
====<br>
<div><div class="h5"><br>
<br>
<br>
<br>
<br>
<br>
<br>
On Thu, Nov 12, 2015 at 10:25 PM, Ipsita Putatunda<br>
&lt;<a href="mailto:ipsita.putatunda@gmail.com">ipsita.putatunda@gmail.com</a>&gt; wrote:<br>
&gt; Dear NCL users,<br>
&gt;      I want to make a single plot for all satellite passes (15 swath per<br>
&gt; day) data. the script and the plot am getting from this is as attached. for<br>
&gt; testing purpose I made it with only two files, but still the plot is not<br>
&gt; coming exactly what I want. Could you please help me to fix this issue. Is<br>
&gt; there any simpler way to do this plot? Any help in this issue will be<br>
&gt; appreciated.<br>
&gt;<br>
&gt; Thanks in advance,<br>
&gt; Ipsita<br>
&gt;<br>
</div></div>&gt; _______________________________________________<br>
&gt; ncl-talk mailing list<br>
&gt; <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt; List instructions, subscriber options, unsubscribe:<br>
&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
&gt;<br>
</blockquote></div><br></div>