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/micromeshmask.pro

    r103 r114  
    2020;------------------------------------------------------ 
    2121PRO ncdf_transfer, inid, outid, inname, outname 
     22; 
     23  compile_opt idl2, strictarrsubs 
     24; 
    2225  IF n_elements(outname) EQ 0 THEN outname = inname 
    2326  ncdf_varget, inid, inname, zzz 
     
    4245;- 
    4346PRO micromeshmask, ncfilein, ncfileout, IODIR = iodir 
     47; 
     48; 
     49  compile_opt idl2, strictarrsubs 
    4450; 
    4551  filein = isafile(FILE = ncfilein, IODIR = iodir, /NEW) 
     
    7884    dimid = (where(strmid(listdims, 0, 5) EQ 'depth'))[0] 
    7985    IF dimid NE -1 THEN ncdf_diminq, cdfid, dimid, name, jpk ELSE BEGIN  
    80       report, 'We could not find the vertical dimension..., its name must be z or start with depth' 
     86      dummy = report('We could not find the vertical dimension..., its name must be z or start with depth') 
    8187      return 
    8288    ENDELSE  
Note: See TracChangeset for help on using the changeset viewer.