Changeset 22941


Ignore:
Timestamp:
07/13/18 14:22:25 (7 years ago)
Author:
Eric.Larour
Message:

CHG: allow shapefiles.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/modules/MeshProfileIntersection.m

    r20875 r22941  
    77%          input:
    88%               index,x,y is a triangulation
    9 %               filename: name of Argus style .exp file 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)
    1010%          output:
    1111%               segments: array made of x1,y1,x2,y2,element_id lines (x1,y1) and (x2,y2) are segment extremities for a segment
     
    1919end
    2020
     21[path,name,ext]=fileparts(filename);
     22if 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);
     28end
     29
    2130% Call mex module
    2231[segments] = MeshProfileIntersection_matlab(index,x,y,filename);
Note: See TracChangeset for help on using the changeset viewer.