Changeset 22940


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

CHG: allow shapefiles.

Location:
issm/trunk-jpl/src/m/modules
Files:
2 edited

Legend:

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

    r20875 r22940  
    66%       
    77%   index,x,y: mesh triangulation
    8 %   contourname: name of .exp file containing the contours.
     8%   contourname: name of .exp or .shp file containing the contours.
    99%   interptype: string defining type of interpolation ('element', or 'node').
    1010%   edgevalue: integer (0, 1, or 2) defining the value associated to the nodes on the edges of the polygons.
     
    2525end
    2626
     27%Some conversion of files:
     28[path,name,ext]=fileparts(contourname);
     29if strcmpi(ext,'.shp'),
     30        %read contour from shapefile:
     31        contour=shpread(contourname);
     32
     33        %write it to a temporary filename:
     34        contourname=[tempname '.exp'];
     35        expwrite(contour,contourname);
     36end
     37
    2738%Call mex module
    2839[in_nod,in_elem] = ContourToMesh_matlab(index,x,y,contourname,interptype,edgevalue);
  • issm/trunk-jpl/src/m/modules/ContourToNodes.m

    r20811 r22940  
    66%
    77%   x,y: list of nodes
    8 %   contourname: name of .exp file containing the contours, or resulting structure from call to expread
     8%   contourname: name of Argus or Shape file containing the contours, or resulting structure from call to expread
    99%   edgevalue: integer (0, 1 or 2) defining the value associated to the nodes on the edges of the polygons
    1010%   flags: vector of flags (0 or 1), of size nodes
     
    1616end
    1717
     18%Some conversion of files: 
     19if ischar(contourname),
     20        [path,name,ext]=fileparts(contourname);
     21        if strcmpi(ext,'.shp'),
     22                %read contour from shapefile:
     23                contour=shpread(contourname);
     24
     25                %write it to a temporary filename:
     26                contourname=tempname;
     27                expwrite(contour,contourname);
     28        end
     29end
     30
    1831%Call mex module
    1932[flags] = ContourToNodes_matlab(x,y,contourname,edgevalue);
Note: See TracChangeset for help on using the changeset viewer.