<div dir="ltr"><div><div>What version of NCL do you have?<br><br></div>The attached script  uses a 6.4.0 function: calculate_daily_values<br></div>It is untested ... don&#39;t have multiple hourly files.<br><div><br><a href="https://www.ncl.ucar.edu/Document/Functions/Contributed/calculate_daily_values.shtml">https://www.ncl.ucar.edu/Document/Functions/Contributed/calculate_daily_values.shtml</a><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Aug 3, 2017 at 1:44 PM, Bucaram Carbo, Carlos <span dir="ltr">&lt;<a href="mailto:carlos.bucaramcarbo@und.edu" target="_blank">carlos.bucaramcarbo@und.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">
<div id="m_5968108709842570154divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Helvetica,sans-serif" dir="ltr">
<br>
<div style="color:rgb(49,54,59)">
<div>
<div id="m_5968108709842570154divtagdefaultwrapper" dir="ltr" style="font-size:12pt;color:rgb(0,0,0);font-family:Calibri,Helvetica,sans-serif,&quot;EmojiFont&quot;,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;,NotoColorEmoji,&quot;Segoe UI Symbol&quot;,&quot;Android Emoji&quot;,EmojiSymbols">
<p>Dear NCL Support,</p>
<p><br>
</p>
<p>We are trying to find a script that <span>would read 24 individual 1-hour wrfout_d01* output files for every day of an entire month of the year, then </span>average the individual hourly ground level ozone (o3) concentrations data over each daily 24-hour
 period (at lowest level nl=0), and write a new netcdf file with an gridded o3 average concentration for that specific day. The end result would be a visual representation of a gridded o3 average concentration for any specific day, if possible. </p>
<p><br>
</p>
<p>When searching on previous archives we found the following response to a somewhat similar inquire back in 2011, but we are not sure if it would apply in our case:<br>
</p>
<p><br>
</p>
<p><a href="https://www.ncl.ucar.edu/Support/talk_archives/2011/1358.html" class="m_5968108709842570154OWAAutoLink" id="m_5968108709842570154LPlnk901292" target="_blank">https://www.ncl.ucar.edu/<wbr>Support/talk_archives/2011/<wbr>1358.html</a></p>
<br>
<div>NCL: <br>
<p>    x3 = f-&gt;X ; (time,lat,lon) time is 3-hrly <br>
    dimx3 = dimsizes(x3) <br>
    ntim3 = dimx3(0) <br>
</p>
<p>    nsd = 8 ; number of samples per day <br>
</p>
<p>    xday = x3(::nsd,:,:) ; create array with meta data <br>
</p>
<p>    do nt=0,ntim3-1,nsd <br>
       xday(nt/nsd,:,:) = (/ dum_avg_n(nt:nt+nsd-1,:,:) /) <br>
    end do <br>
</p>
<p>    diro = &quot;./&quot; ; output directory <br>
    filo = &quot;<a href="http://day.nc" target="_blank">day.nc</a>&quot; <br>
    system (&quot;/bin/rm -f &quot;+diro+filo) <br>
    fnc = addfile (diro+filo, &quot;c&quot;) <br>
</p>
<p>    filAtt = 0 <br>
    filAtt@title = &quot;...&quot; <br>
    filAtt@Conventions = &quot;None&quot; <br>
    filAtt@creation_date = systemfunc(&quot;date&quot;) <br>
    fileattdef( fnc, filAtt ) ; create file attributes <br>
</p>
    filedimdef(ncdf,&quot;time&quot;,-1,<wbr>True) ; make time UNLIMITED <br>
    fnc-&gt;XDAY = xday </div>
<br>
Also attached you will find the current <i></i><b><i><span style="color:rgb(0,111,201)">w</span><span style="color:rgb(0,111,201)">r</span><span style="color:rgb(0,111,201)">f</span><span style="color:rgb(0,111,201)">_</span><span style="color:rgb(0,111,201)">o</span><span style="color:rgb(0,111,201)">z</span><span style="color:rgb(0,111,201)">o</span><span style="color:rgb(0,111,201)">n</span><span style="color:rgb(0,111,201)">e</span><span style="color:rgb(0,111,201)">.</span><span style="color:rgb(0,111,201)">n</span><span style="color:rgb(0,111,201)">c</span><span style="color:rgb(0,111,201)">l</span></i></b>
 script which we  use to post-process each individual 1-hour wrfout_d01* file for o3<span>, as a well as a sample post-processed image for a specific day and hour of 2010.</span><br>
<br>
Any specific direction from your side regarding this issue would be greatly appreciated.<br>
<br>
With best regards,<br>
<br>
<br>
Carlos J. Bucaram<br>
Graduate Research Assistant<br>
University of North Dakota<br>
Department of Chemical Engineering<br>
<p>Harrington Hall Room 223<br>
241 Centennial Dr., Grand Forks, ND</p>
<p>58202-7101</p>
<br>
<br>
<br>
<p></p>
</div>
</div>
</div>
</div>
</div>

<br>______________________________<wbr>_________________<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/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>