<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
<pre style="background-color: rgb(255, 255, 255);" class=""><i class="">Dear Grads users,</i><i class="">
</i><i class=""><br class=""></i></pre>
<pre style="background-color: rgb(255, 255, 255);" class="">I want to make time series plot for multiple files with different time resolutions.</pre>
<pre style="background-color: rgb(255, 255, 255);" class="">The file with coarse resolution has monthly accumulation precipitation, while the one with fine resolution has daily precipitation. Both of them have 16 years of data. I can do the grid interpolation (see the first attachment), and also write a separate script to convert monthly data to daily precipitation because different months has different days (attachment 2), but how to combine them to make daily time series plots for the whole time period? Or maybe there is one command to convert monthly data to daily directly using Grads? Thank you very much.</pre>
<pre style="background-color: rgb(255, 255, 255);" class=""><br class=""></pre>
<pre style="background-color: rgb(255, 255, 255);" class="">Kelly</pre>
<pre style="background-color: rgb(255, 255, 255);" class="">-----------------------------------------</pre>
<pre style="background-color: rgb(255, 255, 255);" class=""><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">&nbsp;'reinit'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">* open coarse data</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">&nbsp;'open 3A11.ctl’</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class=""><pre style="font-size: 12px;" class=""><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">*open fine data 3A25</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">'open 3A25_fine.ctl'</div><div class=""><span style="font-family: Menlo; font-size: 14px;" class="">&nbsp;</span><span style="font-family: Menlo; font-size: 14px;" class="">'set grads off'</span></div></pre></div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">&nbsp; 'set x 1 72'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">&nbsp; 'set y 1 16'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">&nbsp; 'set z 1 1'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">&nbsp; 'set t 1 204'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class=""><br class=""></div><div style="margin: 0px; font-size: 14px; font-family: Menlo; min-height: 16px;" class="">* to interplate grid resolution from fine to coarse</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">'define newvar=lterp(sfcr.2,mr.1)'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">'set sdfwrite newvar.nc'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">&nbsp;'sdfwrite newvar'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo; min-height: 16px;" class=""><br class=""></div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">&nbsp;'set x 1'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">&nbsp;'set y 1'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class=""><br class=""></div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">'d tloop(aave(newvar,lon=0,lon=360,lat=-90,lat=90))'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class="">&nbsp;'d tloop(aave(mr.1,lon=0,lon=360,lat=-90,lat=90))'</div><div style="margin: 0px; font-size: 14px; font-family: Menlo;" class=""><div style="margin: 0px;" class="">——————————————————————</div><div style="margin: 0px;" class=""><br class=""></div><div style="margin: 0px;" class=""><div style="margin: 0px;" class="">'reinit'</div><div style="margin: 0px;" class="">&nbsp;mday = '31 28 31 30 31 30 31 31 30 31 30 31'</div><div style="margin: 0px;" class="">&nbsp;month = '01 02 03 04 05 06 07 08 09 10 11 12'</div><div style="margin: 0px; min-height: 16px;" class=""><br class=""></div><div style="margin: 0px;" class="">&nbsp;'open 3A11.ctl'</div><div style="margin: 0px;" class="">&nbsp;'set t 1 204'</div><div style="margin: 0px;" class="">'define davg = md'</div><div style="margin: 0px;" class="">&nbsp;'set x 1 72'</div><div style="margin: 0px;" class="">&nbsp;'set y 1 16'</div><div style="margin: 0px;" class=""><br class=""></div><div style="margin: 0px;" class="">&nbsp;yr1 = 1998</div><div style="margin: 0px;" class="">&nbsp;yr2 = 2014</div><div style="margin: 0px; min-height: 16px;" class=""><br class=""></div><div style="margin: 0px;" class="">&nbsp; yr = yr1</div><div style="margin: 0px;" class="">&nbsp; while(yr&lt;=yr2)</div><div style="margin: 0px; min-height: 16px;" class=""><br class=""></div><div style="margin: 0px;" class="">&nbsp; leap = 0</div><div style="margin: 0px;" class="">&nbsp; if(math_mod(yr,400) = 0 | math_mod(yr,4) = 0 &amp; math_mod(yr,100) != 0)</div><div style="margin: 0px; min-height: 16px;" class=""><br class=""></div><div style="margin: 0px;" class="">&nbsp; leap = 1</div><div style="margin: 0px; min-height: 16px;" class=""><br class=""></div><div style="margin: 0px;" class="">* say yr' is a leap year.'</div><div style="margin: 0px;" class="">&nbsp;endif</div><div style="margin: 0px; min-height: 16px;" class=""><br class=""></div><div style="margin: 0px;" class="">&nbsp; &nbsp; imon = 1</div><div style="margin: 0px;" class="">&nbsp; &nbsp; while(imon &lt;= 12)</div><div style="margin: 0px;" class="">&nbsp; &nbsp; md = subwrd(mday,imon)</div><div style="margin: 0px;" class="">&nbsp; &nbsp; mc = subwrd(month,imon)</div><div style="margin: 0px;" class="">&nbsp; &nbsp; if(imon = 2); md = md &#43; leap; endif;</div><div style="margin: 0px;" class="">***** How to pass &quot;md” to the monthly precipitation (mr) listed in the first script???&quot; </div><div style="margin: 0px;" class=""> </div><div style="margin: 0px;" class="">imon = imon &#43; 1</div><div style="margin: 0px;" class="">&nbsp; endwhile</div><div style="margin: 0px;" class="">&nbsp;&nbsp; yr = yr &#43; 1</div><div style="margin: 0px;" class="">&nbsp; endwhile</div></div></div><div style="margin: 0px; font-size: 14px; font-family: Menlo; min-height: 16px;" class=""><br class=""></div>
</pre>
<pre style="background-color: rgb(255, 255, 255);" class=""><br class=""></pre>
<pre style="background-color: rgb(255, 255, 255);" class=""><br class=""></pre>
<div class=""><br class="">
</div>
</body>
</html>