<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p>Thanks, Mary, for your further suggestions.</p>
<p><br>
</p>
<p>After I got Alan's first email which helped me reassess my code,&nbsp;</p>
<p>I modified my code&nbsp;<span style="font-size: 12pt;">to remove the year dimension from most variables</span></p>
<p>to make them more manageable. &nbsp;Now the code</p>
<p>runs in 1 hour, rather than 1 day&#43;. &nbsp;</p>
<p><br>
</p>
<p>Michael</p>
<p><br>
</p>
<p></p>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/shea_util.ncl&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
begin</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
mns=(/&quot;01&quot;,&quot;02&quot;,&quot;03&quot;,&quot;04&quot;,&quot;05&quot;,&quot;06&quot;,&quot;07&quot;,&quot;08&quot;,&quot;09&quot;,&quot;10&quot;,&quot;11&quot;,&quot;12&quot;/)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
ndays=(/31,28,31,30,31,30,31,31,30,31,30,31/)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily365=new((/365,20,141,217/),float) ; 365 day calendar data</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily365@_FillValue=1e&#43;35</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily365=1e&#43;35</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
do iyr=0,19</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; data=new((/141,217,12,744/),float) ; hourly data</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; data@_FillValue=1e&#43;35</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; data=1e&#43;35</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; cnt=0</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; do im=0,11</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; prefix=(1980&#43;iyr)&#43;&quot;&quot;&#43;mns(im)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; b=addfile(&quot;/volumes/data1/yafang/Downscaling/ACCESS1-0/historical/output/ACCESS_SRF.&quot;&#43;(1980&#43;iyr)&#43;&quot;&quot;&#43;mns(im)&#43;&quot;0100.nc&quot;,&quot;r&quot;) ; read hourly SRF data</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; iy=b-&gt;iy</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; jx=b-&gt;jx</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; xlat=b-&gt;xlat</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; xlon=b-&gt;xlon</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; snow=b-&gt;snv ; liquid equiv of snow on ground</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; dims=dimsizes(snow)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; nt=dims(0)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; data(:,:,im,0:nt-1)=snow(iy|:,jx|:,time|:)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; delete(snow)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; delete(b)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; delete(dims)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; cnt=cnt&#43;1</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; end do</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; data@_FillValue=1e&#43;20</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; daily=new((/141,217,12,31/),float) ; daily data per month</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; daily@_FillValue=1e&#43;35</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; daily=1e&#43;35</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; cnt=0</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; do id=0,30</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; daily(:,:,:,id)=dim_avg(data(:,:,:,cnt:cnt&#43;23)) ; convert hourly to daily data</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; cnt=cnt&#43;24</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; end do</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; delete(data)</div>
<br style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px;">
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp;&nbsp;cnt=0</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; do im=0,11</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; do id=0,ndays(im)-1</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; &nbsp; daily365(cnt,iyr,:,:)=daily(:,:,im,id) ; convert daily data per month to 365 day calendar</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; &nbsp; cnt=cnt&#43;1</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; &nbsp; end do</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; end do</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; delete(daily)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
end do</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212=new((/19,212,141,217/),float) ; 212 day calendar data for Sep-Mar</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212@_FillValue=1e&#43;35</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212=1e&#43;35</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
do iyr=0,18</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; daily212(iyr,0:121,:,:)=daily365(243:364,iyr,:,:) ; retrieve Sep-Mar</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp; daily212(iyr,122:211,:,:)=daily365(0:89,iyr&#43;1,:,:)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
end do</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
delete(daily365)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
year=ispan(0,18,1)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
year!0=&quot;year&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
year&amp;year=year</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
time=ispan(0,211,1)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
time!0=&quot;time&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
time&amp;time=time</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212!0=&quot;year&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212!1=&quot;time&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212!2=&quot;iy&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212!3=&quot;jx&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212&amp;year=year</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212&amp;time=time</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212&amp;iy=iy</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212&amp;jx=jx</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212@long_name = &quot;liquid snow water on ground&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212@units = &quot;kg m-2&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212@coordinates=&quot;xlat xlon&quot;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
daily212@grid_mapping = &quot;rcm_map&quot;</div>
<br style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px;">
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp;</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
system(&quot;rm save_daily212_actual_snv_access_late20_faster.nc&quot;)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
out=addfile(&quot;save_daily212_actual_snv_access_late20_faster.nc&quot;,&quot;c&quot;)</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
out-&gt;daily212=daily212</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
out-&gt;xlat=xlat</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
out-&gt;xlon=xlon</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
out-&gt;iy=iy</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
out-&gt;jx=jx</div>
<br style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px;">
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 0px;">
&nbsp;</div>
<br>
<p></p>
<p><br>
</p>
<p><br>
</p>
<div id="Signature">
<div id="divtagdefaultwrapper" style="font-size:12pt; color:#000000; background-color:#FFFFFF; font-family:Calibri,Arial,Helvetica,sans-serif">
Michael Notaro<br>
<div>Associate Director<br>
</div>
<div>Nelson Institute Center for Climatic Research<br>
</div>
<div>University of Wisconsin-Madison<br>
</div>
<div>Phone: (608) 261-1503<br>
</div>
<div>Email: mnotaro@wisc.edu<br>
</div>
</div>
</div>
<br>
<br>
<div style="color: rgb(0, 0, 0);">
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>From:</b> Mary Haley &lt;haley@ucar.edu&gt;<br>
<b>Sent:</b> Tuesday, January 12, 2016 1:34 PM<br>
<b>To:</b> Alan Brammer<br>
<b>Cc:</b> Michael Notaro; ncl-talk@ucar.edu<br>
<b>Subject:</b> Re: [ncl-talk] Slow code</font>
<div>&nbsp;</div>
</div>
<div>
<div dir="ltr">
<div class="gmail_default"><font color="#000000">Hi folks,</font></div>
<div class="gmail_default"><font color="#000000"><br>
</font></div>
<div class="gmail_default"><font color="#000000">These are all good suggestions.</font></div>
<div class="gmail_default"><font color="#000000"><br>
</font></div>
<div class="gmail_default"><font color="#000000">Another thing that is expensive in NCL is reordering arrays with syntax like:</font></div>
<div class="gmail_default"><font color="#000000"><br>
</font></div>
<div class="gmail_default"><font color="#000000"><span style="font-family:Calibri,Arial,Helvetica,sans-serif">snow(iy|:,jx|:,time|:),</span><br>
</font></div>
<div class="gmail_default"><span style="font-family:Calibri,Arial,Helvetica,sans-serif"><font color="#000000"><br>
</font></span></div>
<div class="gmail_default"><span style="font-family:Calibri,Arial,Helvetica,sans-serif"><font color="#000000">NCL makes a copy of the array when you do this, and it has to swap all the dimensions every time in the loop.</font></span></div>
<div class="gmail_default"><span style="font-family:Calibri,Arial,Helvetica,sans-serif"><font color="#000000"><br>
</font></span></div>
<div class="gmail_default"><span style="font-family:Calibri,Arial,Helvetica,sans-serif"><font color="#000000">Isf reordering the array is absolutely necessary? I see that you are reordering and then calling &quot;dim_avg_n&quot;. Since you are already using dim_avg_n,
 why not leave the array as is and just change the dimension you do the average on?</font></span></div>
<div class="gmail_default"><span style="font-family:Calibri,Arial,Helvetica,sans-serif"><font color="#000000"><br>
</font></span></div>
<div class="gmail_default"><span style="font-family:Calibri,Arial,Helvetica,sans-serif"><font color="#000000">--Mary</font></span></div>
<div class="gmail_default"><span style="font-family:Calibri,Arial,Helvetica,sans-serif"><font color="#000000"><br>
</font></span></div>
<div class="gmail_extra"><font color="#000000"><br>
</font>
<div class="gmail_quote"><font color="#000000">On Tue, Jan 12, 2016 at 8:30 AM, Alan Brammer
<span dir="ltr">&lt;<a href="mailto:abrammer@albany.edu" target="_blank">abrammer@albany.edu</a>&gt;</span> wrote:<br>
</font>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex">
<div style="word-wrap:break-word"><span style="font-family:Calibri,Arial,Helvetica,sans-serif; background-color:rgb(255,255,255)"><font color="#000000">Hi Michael,&nbsp;</font></span>
<div><font face="Calibri, Arial, Helvetica, sans-serif" color="#000000"><span style="background-color:rgb(255,255,255)"><br>
</span></font></div>
<div><font face="Calibri, Arial, Helvetica, sans-serif" color="#000000"><span style="background-color:rgb(255,255,255)"><br>
</span></font>
<div><font color="#000000"><font face="Calibri, Arial, Helvetica, sans-serif"><span style="background-color:rgb(255,255,255)">I was going to suggest reshape that data array but it’s 20GB and is going to be&nbsp;unnecessarily slow whatever.&nbsp; Do you actually need
 to store all the hourly data? the below edits suggest that you don’t.&nbsp; The below uses less than a 1GB of memory rather than 20&#43;GB. &nbsp;</span></font><br>
</font>
<div><font color="#000000"><br>
</font></div>
<div><font color="#000000"><font face="Calibri, Arial, Helvetica, sans-serif"><span style="background-color:rgb(255,255,255)">&nbsp;This is&nbsp;</span></font><span style="font-family:Calibri,Arial,Helvetica,sans-serif; background-color:rgb(255,255,255)">obviously untested
 so may need editing.&nbsp;</span></font></div>
<div><font face="Calibri, Arial, Helvetica, sans-serif" color="#000000"><span style="background-color:rgb(255,255,255)">(requires 6.1.1 or newer. )</span></font></div>
<div><font face="Calibri, Arial, Helvetica, sans-serif" color="#000000"><span style="background-color:rgb(255,255,255)"><br>
</span></font></div>
<div><font face="Calibri, Arial, Helvetica, sans-serif" color="#000000"><span style="background-color:rgb(255,255,255)"><br>
</span></font></div>
<div><font color="#000000"><font face="Calibri, Arial, Helvetica, sans-serif"><span style="background-color:rgb(255,255,255)"><span class="">
<div>mns=(/&quot;01&quot;,&quot;02&quot;,&quot;03&quot;,&quot;04&quot;,&quot;05&quot;,&quot;06&quot;,&quot;07&quot;,&quot;08&quot;,&quot;09&quot;,&quot;10&quot;,&quot;11&quot;,&quot;12&quot;/)</div>
<div>ndays=(/31,28,31,30,31,30,31,31,30,31,30,31/)</div>
<div><br>
</div>
</span>
<div>daily=new((/141,217,20,12,31/),float) ; hourly data</div>
<div>daily@_FillValue=1e&#43;35</div>
<div>daily=1e&#43;35</div>
<span class="">
<div><br>
</div>
<div>cnt=0</div>
<div>do iyr=0,19</div>
<div>&nbsp; do im=0,11</div>
<div>&nbsp; &nbsp; prefix=(1980&#43;iyr)&#43;&quot;&quot;&#43;mns(im)</div>
<div>&nbsp; &nbsp; b=addfile(&quot;/volumes/data1/yafang/Downscaling/ACCESS1-0/historical/output/ACCESS_SRF.&quot;&#43;(1980&#43;iyr)&#43;&quot;&quot;&#43;mns(im)&#43;&quot;<a href="http://0100.nc" target="_blank">0100.nc</a>&quot;,&quot;r&quot;) ; read hourly SRF data</div>
<div>&nbsp; &nbsp; iy=b-&gt;iy</div>
<div>&nbsp; &nbsp; jx=b-&gt;jx</div>
</span>
<div>&nbsp; &nbsp; xlat=b-&gt;xlat &nbsp;<span style="white-space:pre-wrap"> </span>; These aren’t doing anything?</div>
<div>&nbsp; &nbsp; xlon=b-&gt;xlon <span style="white-space:pre-wrap"></span>; These aren’t doing anything?</div>
</span></font><font face="Calibri, Arial, Helvetica, sans-serif"><span style="background-color:rgb(255,255,255)">
<div>&nbsp; &nbsp; snow =b-&gt;snv ; liquid equiv of snow on ground</div>
<div>&nbsp; &nbsp; dims=dimsizes(snow)</div>
<div>&nbsp; &nbsp; nt=dims(0)</div>
<div><br>
</div>
<div>&nbsp; &nbsp; snow4d := reshape( snow(iy|:,jx|:,time|:), (/dims(1), dims(2), ndays(im), 24/) ) ; I assume snow is originally (time|:,iy|:,ix|:)</div>
<div>&nbsp; &nbsp; daily(:,:,iyr,im,:ndays(im)-1)=dim_avg_n(snow4d, 3)</div>
<span class="">
<div><br>
</div>
<div>&nbsp; &nbsp; delete(snow)</div>
<div>&nbsp; &nbsp; delete(b)</div>
<div>&nbsp; &nbsp; delete(dims)</div>
<div>&nbsp; &nbsp; cnt=cnt&#43;1</div>
<div>&nbsp; end do</div>
<div>end do</div>
<div><br>
</div>
</span>
<div>daily@_FillValue=1e&#43;20</div>
<div><br>
</div>
</span></font></font></div>
<div><font color="#000000"><br>
</font></div>
<div><font face="Calibri, Arial, Helvetica, sans-serif" color="#000000"><span style="background-color:rgb(255,255,255)">Good luck,&nbsp;</span></font></div>
<span class="HOEnZb"><font color="#000000">
<div><font face="Calibri, Arial, Helvetica, sans-serif"><span style="background-color:rgb(255,255,255)"><br>
</span></font></div>
<div><font face="Calibri, Arial, Helvetica, sans-serif"><span style="background-color:rgb(255,255,255)"><br>
</span></font></div>
<div><font face="Calibri, Arial, Helvetica, sans-serif"><span style="background-color:rgb(255,255,255)">Alan Brammer.</span></font></div>
</font></span>
<div>
<div class="h5">
<div><font face="Calibri, Arial, Helvetica, sans-serif" color="#000000"><span style="background-color:rgb(255,255,255)"><br>
</span></font></div>
<div><font color="#000000"><br>
</font></div>
<div><font face="Calibri, Arial, Helvetica, sans-serif" color="#000000"><span style="background-color:rgb(255,255,255)"><br>
</span></font></div>
<div><font face="Calibri, Arial, Helvetica, sans-serif" color="#000000"><span style="background-color:rgb(255,255,255)"><br>
</span></font>
<div>
<blockquote type="cite">
<div><font color="#000000">On 12 Jan 2016, at 10:00, Michael Notaro &lt;<a href="mailto:mnotaro@wisc.edu" target="_blank">mnotaro@wisc.edu</a>&gt; wrote:</font></div>
<font color="#000000"><br>
</font>
<div>
<div style="font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; font-family:Calibri,Arial,Helvetica,sans-serif; background-color:rgb(255,255,255)">
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">Thanks for your email.</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">Actually, this is the main part slowing me down, not the top part of the code with the addfiles.</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<p style="margin-top:0px; margin-bottom:0px"></p>
<blockquote type="cite">
<div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif">
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">cnt=0</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">do id=0,30</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; daily(:,:,:,:,id)=dim_avg(data(:,:,:,:,cnt:cnt&#43;23)) ; convert hourly to daily data &nbsp; &nbsp; ***** THIS PART IS SLOW *****</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; cnt=cnt&#43;24</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">end do</font></div>
</div>
</div>
</blockquote>
<div>
<div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif">
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">Any way to perform this task quicker?</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">Michael</font></div>
</div>
</div>
</div>
<font color="#000000"><br>
</font>
<p style="margin-top:0px; margin-bottom:0px"></p>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; background-color:rgb(255,255,255)">
<font color="#000000">Michael Notaro<br>
</font>
<div><font color="#000000">Associate Director<br>
</font></div>
<div><font color="#000000">Nelson Institute Center for Climatic Research<br>
</font></div>
<div><font color="#000000">University of Wisconsin-Madison<br>
</font></div>
<div><font color="#000000">Phone: <a href="tel:%28608%29%20261-1503" value="&#43;16082611503" target="_blank">
(608) 261-1503</a><br>
</font></div>
<div><font color="#000000">Email:<span>&nbsp;</span><a href="mailto:mnotaro@wisc.edu" target="_blank">mnotaro@wisc.edu</a><br>
</font></div>
</div>
</div>
<font color="#000000"><br>
<br>
</font>
<div><font color="#000000">
<hr style="display:inline-block; width:1120.125px">
</font>
<div dir="ltr"><font face="Calibri, sans-serif" color="#000000"><b>From:</b><span>&nbsp;</span>Guido Cioni &lt;<a href="mailto:guidocioni@gmail.com" target="_blank">guidocioni@gmail.com</a>&gt;<br>
<b>Sent:</b><span>&nbsp;</span>Tuesday, January 12, 2016 8:57 AM<br>
<b>To:</b><span>&nbsp;</span>Michael Notaro<br>
<b>Cc:</b><span>&nbsp;</span><a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>
<b>Subject:</b><span>&nbsp;</span>Re: [ncl-talk] Slow code</font>
<div><font color="#000000">&nbsp;</font></div>
</div>
<div><font color="#000000">Everyone here will tell you that using loops in NCL it’s not efficient :)</font>
<div><font color="#000000">But from my experience I think that the main thing slowing you down is that you are using addfile at every iteration.&nbsp;</font></div>
<div><font color="#000000">Does creating a whole file and reading that in the beginning would change what you are trying to compute?&nbsp;<br>
</font>
<div>
<div style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
<font color="#000000"><br>
Guido Cioni</font></div>
<div style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
<font color="#000000"><a href="http://guidocioni.altervista.org/" target="_blank">http://guidocioni.altervista.org</a>&nbsp;</font></div>
<div style="margin-bottom:20px; overflow:auto; width:1143px">
<table cellspacing="0" style="width:1028px; overflow:auto; padding-top:20px; padding-bottom:20px; margin-top:20px; border-top-width:1px; border-top-style:dotted; border-top-color:rgb(200,200,200); border-bottom-width:1px; border-bottom-style:dotted; border-bottom-color:rgb(200,200,200); background-color:rgb(255,255,255)">
<tbody>
<tr valign="top" style="border-spacing:0px">
<td colspan="1" style="width:250px; display:table-cell; padding-right:20px">
<div style="min-height:145px; margin:auto; display:table; width:250px; background-color:rgb(255,255,255)">
<a href="http://guidocioni.altervista.org/" target="_blank" style="display:table-cell; text-align:center"><font color="#000000"><img width="250" height="145" style="display: inline-block; margin-left: auto; margin-right: auto; max-width: 250px; max-height: 250px; min-height: 145px; width: 250px; border-width: 0px; vertical-align: bottom; -webkit-user-select: none;" src="http://guidocioni.altervista.org/nuovosito/wp-content/uploads/2015/10/Screenshot.png"></font></a></div>
</td>
<td colspan="2" style="vertical-align:top; padding:0px; display:table-cell">
<div></div>
<div style="font-weight:normal; font-family:wf_segoe-ui_light,'Segoe UI Light','Segoe WP Light','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif; line-height:21px">
<a href="http://guidocioni.altervista.org/" target="_blank" style="text-decoration:none"><font color="#000000">Guido Cioni</font></a></div>
<div style="margin:10px 0px 16px; font-weight:normal; font-family:wf_segoe-ui_normal,'Segoe UI','Segoe WP',Tahoma,Arial,sans-serif; line-height:14px">
<a href="http://guidocioni.altervista.org/" target="_blank"><font color="#000000">guidocioni.altervista.org</font></a></div>
<div style="display:block; font-weight:normal; font-family:wf_segoe-ui_normal,'Segoe UI','Segoe WP',Tahoma,Arial,sans-serif; line-height:20px; max-height:100px; overflow:hidden">
<font color="#000000">Le stazioni sono state riparate ed i dati vengono nuovamente aggiornati in tempo reale. Purtroppo a causa di numerosi malfunzionamenti i dati pluviometrici di Pisa e ...</font></div>
</td>
</tr>
</tbody>
</table>
</div>
<font color="#000000"><br>
</font></div>
<font color="#000000"><br>
</font>
<div>
<blockquote type="cite">
<div><font color="#000000">On 12 Jan 2016, at 15:35, Michael Notaro &lt;<a href="mailto:mnotaro@wisc.edu" target="_blank">mnotaro@wisc.edu</a>&gt; wrote:</font></div>
<font color="#000000"><br>
</font>
<div>
<div style="font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; font-family:Calibri,Arial,Helvetica,sans-serif; background-color:rgb(255,255,255)">
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">Does anyone have a recommendation to speed up my code?</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">It's been running for a day now.&nbsp; I put asterisks next to the real slow loop.</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">Basically, that part is converting a large array of hourly data into daily data.</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">Thanks, Michael</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<p style="margin-top:0px; margin-bottom:0px"></p>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">mns=(/&quot;01&quot;,&quot;02&quot;,&quot;03&quot;,&quot;04&quot;,&quot;05&quot;,&quot;06&quot;,&quot;07&quot;,&quot;08&quot;,&quot;09&quot;,&quot;10&quot;,&quot;11&quot;,&quot;12&quot;/)</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">ndays=(/31,28,31,30,31,30,31,31,30,31,30,31/)</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">data=new((/141,217,20,12,744/),float) ; hourly data</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">data@_FillValue=1e&#43;35</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">data=1e&#43;35</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">cnt=0</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">do iyr=0,19</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; do im=0,11</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; prefix=(1980&#43;iyr)&#43;&quot;&quot;&#43;mns(im)</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; b=addfile(&quot;/volumes/data1/yafang/Downscaling/ACCESS1-0/historical/output/ACCESS_SRF.&quot;&#43;(1980&#43;iyr)&#43;&quot;&quot;&#43;mns(im)&#43;&quot;<a href="http://0100.nc" target="_blank">0100.nc</a>&quot;,&quot;r&quot;) ; read hourly SRF
 data</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; iy=b-&gt;iy</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; jx=b-&gt;jx</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; xlat=b-&gt;xlat</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; xlon=b-&gt;xlon</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; snow=b-&gt;snv ; liquid equiv of snow on ground</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; dims=dimsizes(snow)</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; nt=dims(0)</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; data(:,:,iyr,im,0:nt-1)=snow(iy|:,jx|:,time|:)</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; delete(snow)</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; delete(b)</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; delete(dims)</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; &nbsp; cnt=cnt&#43;1</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; end do</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">end do</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">data@_FillValue=1e&#43;20</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">daily=new((/141,217,20,12,31/),float) ; daily data per month</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">daily@_FillValue=1e&#43;35</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">daily=1e&#43;35</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">cnt=0</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">do id=0,30</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; daily(:,:,:,:,id)=dim_avg(data(:,:,:,:,cnt:cnt&#43;23)) ; convert hourly to daily data &nbsp; &nbsp; ***** THIS PART IS SLOW *****</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">&nbsp; cnt=cnt&#43;24</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">end do</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000">delete(data)</font></div>
<font color="#000000"><br>
</font>
<p style="margin-top:0px; margin-bottom:0px"></p>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div style="margin-top:0px; margin-bottom:0px"><font color="#000000"><br>
</font></div>
<div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; background-color:rgb(255,255,255)">
<font color="#000000">Michael Notaro<br>
</font>
<div><font color="#000000">Associate Director<br>
</font></div>
<div><font color="#000000">Nelson Institute Center for Climatic Research<br>
</font></div>
<div><font color="#000000">University of Wisconsin-Madison<br>
</font></div>
<div><font color="#000000">Phone: <a href="tel:%28608%29%20261-1503" value="&#43;16082611503" target="_blank">
(608) 261-1503</a><br>
</font></div>
<div><font color="#000000">Email:<span>&nbsp;</span><a href="mailto:mnotaro@wisc.edu" target="_blank">mnotaro@wisc.edu</a><br>
</font></div>
</div>
</div>
</div>
<font color="#000000"><span style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; float:none; display:inline!important">_______________________________________________</span><br style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
<span style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; float:none; display:inline!important">ncl-talk
 mailing list</span><br style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
<a href="mailto:ncl-talk@ucar.edu" target="_blank" style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">ncl-talk@ucar.edu</a><br style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
<span style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; float:none; display:inline!important">List instructions,
 subscriber options, unsubscribe:</span><br style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank" style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a></font></div>
</blockquote>
</div>
<font color="#000000"><br>
</font></div>
</div>
</div>
</div>
<font color="#000000"><span style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; float:none; display:inline!important">_______________________________________________</span><br style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
<span style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; float:none; display:inline!important">ncl-talk
 mailing list</span><br style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
<a href="mailto:ncl-talk@ucar.edu" target="_blank" style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">ncl-talk@ucar.edu</a><br style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
<span style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; float:none; display:inline!important">List instructions,
 subscriber options, unsubscribe:</span><br style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank" style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br style="font-family:Helvetica; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px">
</font></div>
</blockquote>
</div>
<font color="#000000"><br>
</font></div>
</div>
</div>
</div>
</div>
</div>
<font color="#000000"><br>
_______________________________________________<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/mailman/listinfo/ncl-talk</a><br>
<br>
</font></blockquote>
</div>
<br>
</div>
</div>
</div>
</div>
</div>
</body>
</html>