Ignore:
Timestamp:
05/31/18 10:42:48 (7 years ago)
Author:
Mathieu Morlighem
Message:

merged trunk and trunk-jpl

Location:
issm/trunk-jpl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl

  • issm/trunk-jpl/src

  • issm/trunk-jpl/src/m/coordsystems/gmtmaskparallel.m

    r20129 r22821  
    2323        end
    2424
     25        %Find path to gmt, list all possible known paths to gmt (you may need to add yours to the list)
     26   paths = {[issmdir() '/bin/gmt'],[issmdir() '/externalpackages/gmt/install/bin/gmt'],'/Applications/GMT-5.4.3.app/Contents/Resources/bin/gmt'};
     27   gmtpath = '';
     28   for i=paths
     29      if exist(i{1},'file'),
     30         gmtpath = i{1};
     31                        break;
     32      end
     33   end
     34   if isempty(gmtpath),
     35                error('gmt not found, make sure it is properly installed, or add its path to this file (line 26)');
     36   end
     37
    2538        %Build xjobs script:
    2639        fid=fopen('xjobs.script','w');
    2740        for i=1:length(nnv)-1,
    28                 fprintf(fid,'gmt gmtselect ./all_vertices%i.txt -h0 -Df -R0/360/-90/90  -A0 -JQ180/200 -Nk/s/s/k/s > ./oce_vertices%i.txt\n',i,i);
     41                fprintf(fid,'%s gmtselect ./all_vertices%i.txt -h0 -Df -R0/360/-90/90  -A0 -JQ180/200 -Nk/s/s/k/s > ./oce_vertices%i.txt\n',gmtpath,i,i);
    2942        end
    3043        fclose(fid);
Note: See TracChangeset for help on using the changeset viewer.