<br clear="all">Hi All,<br><br>Did someone come across a problem like this: when wrote  data back , the  display changed unnormal in Grads? because many &quot;contour lines&quot; disappeared , Can you tell me why?  Please help me, thank you.<br>
<br>In accessory , there are some files of my data and pictures. Please have a look, the code I used as following :<br><br>###<br>       program read_DOMAIN_INFO<br>       implicit none<br>       integer  jx,iy,i,j<br>!       real  yy,xx,z<br>
       parameter (iy=110,jx=140)    <br>       real  ht(jx,iy)<br>       open(10,file=&#39;<a href="http://DOMAIN.INFO">DOMAIN.INFO</a>&#39;,form=&#39;unformatted&#39;<br>     $ ,recl=jx*iy*4, access=&#39;direct&#39;,convert=&#39;big_endian&#39;)    ! replace 4 to 1 if IFC, I use PGI<br>
<br>        read(10,rec=2)   ht <br><br>     do i=65,75<br><br>        ht(i,30) = 5000.<br>        ht(i,55)=5000.<br>     enddo<br><br>      write(10,rec=2) ht<br><br>       print *, &#39;end of program&#39;<br>      close(10)<br>
<br>       end<br>###<br><br>Sincerely.<br><br><br><br><br>