Ignore:
Timestamp:
07/06/06 16:48:41 (18 years ago)
Author:
pinsard
Message:

improvements of ReadWrite/?*.pro header

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ReadWrite/readoldopadistcoast.pro

    • Property svn:executable deleted
    • Property svn:keywords set to Id
    r121 r130  
    44;+ 
    55; @file_comments 
    6 ;      read the old binary direct access file that contains the 
    7 ;      distance to the coast in OPA. 
    8 ;      based on the OPA subroutines dtacof and parctl 
     6; read the old binary direct access file that contains the 
     7; distance to the coast in OPA. 
     8; based on the OPA subroutines dtacof and parctl 
    99; 
    1010; @categories for OPA before NetCDF 
    11 ; 
    1211; 
    1312; @returns  a structure that contains two elements: tdistcoast (the 
     
    1716; @history Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    1817;                      June, 2002 
     18; @version $Id$ 
    1919;- 
    2020;------------------------------------------------------------ 
     
    3636; @param jpiglo {in}{required} 
    3737; @param jpjglo {in}{required} 
    38 ; @param jpk {in}{required}  
     38; @param jpk {in}{required} 
    3939; dimensions of the opa grid 
    4040; 
     
    8181      return, -1 
    8282   endif 
    83 ; first record: six 64-bit integer to read.  
     83; first record: six 64-bit integer to read. 
    8484; default definition 
    8585   iimlu = long64(999) 
     
    8989   readu, numcost, iimlu, ijmlu, ikmlu 
    9090   if iimlu NE jpiglo then begin 
    91       print, 'iimlu = '+strtrim(iimlu, 1)+' differs from jpiglo ='+strtrim(jpiglo, 1)  
     91      print, 'iimlu = '+strtrim(iimlu, 1)+' differs from jpiglo ='+strtrim(jpiglo, 1) 
    9292      return, -1 
    9393   endif 
    9494   if ijmlu NE jpjglo then begin 
    95       print, 'ijmlu = '+strtrim(ijmlu, 1)+' differs from jpjglo ='+strtrim(jpjglo, 1)  
     95      print, 'ijmlu = '+strtrim(ijmlu, 1)+' differs from jpjglo ='+strtrim(jpjglo, 1) 
    9696      return, -1 
    9797   endif 
    9898   if ikmlu NE jpk then begin 
    99       print, 'ikmlu = '+strtrim(ikmlu, 1)+' differs from jpk ='+strtrim(jpk, 1)  
     99      print, 'ikmlu = '+strtrim(ikmlu, 1)+' differs from jpk ='+strtrim(jpk, 1) 
    100100      return, -1 
    101101   endif 
Note: See TracChangeset for help on using the changeset viewer.