Changeset 22941
- Timestamp:
- 07/13/18 14:22:25 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/modules/MeshProfileIntersection.m
r20875 r22941 7 7 % input: 8 8 % index,x,y is a triangulation 9 % filename: name of Argus style .expfile containing the segments (can be groups of disconnected segments)9 % filename: name of Argus or Shape file containing the segments (can be groups of disconnected segments) 10 10 % output: 11 11 % segments: array made of x1,y1,x2,y2,element_id lines (x1,y1) and (x2,y2) are segment extremities for a segment … … 19 19 end 20 20 21 [path,name,ext]=fileparts(filename); 22 if strcmpi(ext,'.shp'), 23 24 %convert to expfile and store in a temporary directory: 25 oldfilename=filename; 26 filename=[tempname '.exp']; 27 shp2exp(oldfilename,filename); 28 end 29 21 30 % Call mex module 22 31 [segments] = MeshProfileIntersection_matlab(index,x,y,filename);
Note:
See TracChangeset
for help on using the changeset viewer.