Hello All,<br><br>  I am attempting to plot data on a single surface using GrADS v1.9b4, however, when I plot different times the data seems to shift eastward by a degree or two.  The data is on a 1x1 grid (89.5S-89.5N,.5E-359.5E).  I wrote the data out to GrADS binary format using this FORTRAN code:<br>
<br>***I cut out only the relevant piece of code, data variable fv was set-up previously***<br><br>    open(10,file=&#39;oclgradsfrwatvol0_700.bin&#39;,<br>     *    status=&#39;unknown&#39;,form=&#39;unformatted&#39;)<br>
c    open(10,file=&#39;oclgradsfrwatvol0_300.bin&#39;,<br>c     *    status=&#39;unknown&#39;,form=&#39;unformatted&#39;)<br>c    open(10,file=&#39;oclgradsfrwatvol0_100.bin&#39;,<br>c     *    status=&#39;unknown&#39;,form=&#39;unformatted&#39;)<br>
<br>    do iii = 1,tdim<br>    <br>      write(10) ((fv(iii,i,j), i=1,idim),j=1,jdim) <br>      <br>      write(99,*) ((fv(iii,i,j),ri(iii,i,j),rj(iii,i,j),i=1,idim),j=1,jdim)<br>      <br>      enddo<br>      close(10)<br>
      end      <br><br>As you can see by looking at the code, I also write out the data to a fort.99 file.  The data is written correctly to the fort.99 file, thus I am assuming it was written correctly to the *.bin file.  Just for your information tdim is time dimension, in this case it is set to 60 for 60 months, idim is longitude dimension, set to 360, and jdim is latitude dimension set to 180.  My control file is as follows: <br>
    <br>DSET    oclgradsfrwatvol0_700.bin<br>TITLE   FW<br>OPTIONS sequential<br>UNDEF   -9999.000<br>XDEF 360 linear 0.5 1.0<br>YDEF 180 linear -89.5  1.0<br>ZDEF 1  levels 0<br>TDEF 60  linear 01JAN2006 1mo<br>VARS 1<br>
frwvol 1 0 fwvol<br>ENDVARS    <br clear="all"><br><br>Now, when I do run the control file and set time to 1, I get 0 for the value at gridpoint .5E,89.5S, where in reality I should be getting -9999 (undefined).  I&#39;m sure I am just missing something minor, but I can&#39;t figure out what it is.  It&#39;s just weird that it is writing out the data correctly, but when GrADS is ran, it seems to shift the data to the east as I increase the time.   <br>
<br>Thanks,<br>Jim<br><br>