Ignore:
Timestamp:
06/19/06 16:14:56 (18 years ago)
Author:
smasson
Message:

new compilation options (compile_opt idl2, strictarrsubs) in each routine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Grid/smallmeshmask.pro

    r103 r114  
    1010;------------------------------------------------------ 
    1111PRO ncdf_transfer, inid, outid, inname, outname 
     12; 
     13  compile_opt idl2, strictarrsubs 
     14; 
    1215  IF n_elements(outname) EQ 0 THEN outname = inname 
    1316  ncdf_varget, inid, inname, zzz 
     
    4447;- 
    4548PRO smallmeshmask, ncfilein, ncfileout, IODIR = iodir 
     49; 
     50; 
     51  compile_opt idl2, strictarrsubs 
    4652; 
    4753  filein = isafile(FILE = ncfilein, IODIR = iodir, /NEW) 
     
    7682    dimid = (where(strmid(listdims, 0, 5) EQ 'depth'))[0] 
    7783    IF dimid NE -1 THEN ncdf_diminq, cdfid, dimid, name, jpk ELSE BEGIN  
    78       report, 'We could not find the vertical dimension..., its name must be z or start with depth' 
     84      dummy = report('We could not find the vertical dimension..., its name must be z or start with depth') 
    7985      return 
    8086    ENDELSE  
Note: See TracChangeset for help on using the changeset viewer.