Ignore:
Timestamp:
03/03/08 17:16:49 (16 years ago)
Author:
kolasinski
Message:

change str_sep to strsplit in get_file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/procs/get_file.pro

    r2 r64  
    66@com_eg 
    77 
    8    machine = (str_sep(ncdf_db, ':'))[0]  
    9    path_remote = (str_sep(ncdf_db, ':'))[1]  
     8   str = strsplit(ncdf_db, ':', /EXTRACT) 
     9   machine = str[0] 
     10   path_remote = str[1]  
    1011 
    1112   IF machine NE 'local' THEN BEGIN  
     
    1617      ; check if file is in default directory 
    1718 
    18       local_dir = (str_sep(data_bases[0], ':'))[1] 
     19      local_dir = (strsplit(data_bases[0], ':', /EXTRACT))[1] 
    1920 
    2021      list = findfile(local_dir+file_name, count = nb_file) 
Note: See TracChangeset for help on using the changeset viewer.