Changeset 22940
- Timestamp:
- 07/13/18 14:22:10 (7 years ago)
- Location:
- issm/trunk-jpl/src/m/modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/modules/ContourToMesh.m
r20875 r22940 6 6 % 7 7 % 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. 9 9 % interptype: string defining type of interpolation ('element', or 'node'). 10 10 % edgevalue: integer (0, 1, or 2) defining the value associated to the nodes on the edges of the polygons. … … 25 25 end 26 26 27 %Some conversion of files: 28 [path,name,ext]=fileparts(contourname); 29 if 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); 36 end 37 27 38 %Call mex module 28 39 [in_nod,in_elem] = ContourToMesh_matlab(index,x,y,contourname,interptype,edgevalue); -
issm/trunk-jpl/src/m/modules/ContourToNodes.m
r20811 r22940 6 6 % 7 7 % x,y: list of nodes 8 % contourname: name of .expfile containing the contours, or resulting structure from call to expread8 % contourname: name of Argus or Shape file containing the contours, or resulting structure from call to expread 9 9 % edgevalue: integer (0, 1 or 2) defining the value associated to the nodes on the edges of the polygons 10 10 % flags: vector of flags (0 or 1), of size nodes … … 16 16 end 17 17 18 %Some conversion of files: 19 if 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 29 end 30 18 31 %Call mex module 19 32 [flags] = ContourToNodes_matlab(x,y,contourname,edgevalue);
Note:
See TracChangeset
for help on using the changeset viewer.