Changeset 22821 for issm/trunk-jpl/src/m/coordsystems/gmtmaskparallel.m
- Timestamp:
- 05/31/18 10:42:48 (7 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl
- Property svn:mergeinfo changed
/issm/trunk merged: 22763,22765-22768,22771-22776,22781,22783,22785,22788,22790,22792
- Property svn:mergeinfo changed
-
issm/trunk-jpl/src
- Property svn:mergeinfo changed
/issm/trunk/src merged: 22771,22781,22790,22792
- Property svn:mergeinfo changed
-
issm/trunk-jpl/src/m/coordsystems/gmtmaskparallel.m
r20129 r22821 23 23 end 24 24 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 25 38 %Build xjobs script: 26 39 fid=fopen('xjobs.script','w'); 27 40 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); 29 42 end 30 43 fclose(fid);
Note:
See TracChangeset
for help on using the changeset viewer.