Dear Grads users,<br>I am a very beginner in GrADS. <br><br>I have a multi-year SST data. I want to get a time series monthly and annual mean plot of this data<br>in a specified region in the same figure, keeping same x-axis (time) and y-axis (SST).<br>
<br>Please see below the code I am having, I also attach the figure I am getting out of it.<br>The annual mean value is found to be constant for all the 25 years I considered.<br>Definitely some mistake I am making in the code, which I am not able to identify.<br>
<br>Can somebody please help me the correct way of doing it?<br><br>--------------------------------------------------------------<br>&#39;sdfopen <a href="http://sst_mon_81_07.nc">sst_mon_81_07.nc</a>&#39;<br><br>&#39;set x 1 360&#39;<br>
&#39;set y 1 180&#39;<br>&#39;set z 1&#39;<br>&#39;set t 1 311&#39;<br><br>&#39;set lon 30&#39;<br>&#39;set lat 5&#39;<br>&#39;set t 2 301&#39;<br>&#39;define sstarea=aave(sst.1,lon=30,lon=78,lat=5,lat=31)&#39;<br>&#39;set gxout line&#39;;&#39;set cstyle 1&#39;;&#39;set cmark 3&#39;;&#39;set ccolor 1&#39;<br>
&#39;d tloop(sstarea)&#39;<br><br><br>&#39;set x 1 360&#39;<br>&#39;set y 1 180&#39;<br>&#39;set z 1&#39;<br>&#39;set t 1 311&#39;<br><br>ts = 1<br>while ( ts &lt;= 25 )<br>&#39;set t &#39;ts * 12<br>&#39;define sstave = ave(sst,t-10,t+1)&#39;<br>
ts = ts + 1<br>endwhile<br><br>&#39;set lon 30&#39;<br>&#39;set lat 5&#39;<br>&#39;set t 1 25&#39;<br>&#39;set gxout line&#39;;&#39;set cstyle 2&#39;;&#39;set cmark 5&#39;;&#39;set ccolor 3&#39;<br>&#39;d tloop(aave(sstave,lon=30,lon=78,lat=5,lat=31))&#39;<br>
<br>--------------------------------------------------------------<br>
<br><br><br>