source: issm/branches/trunk-larour-NatGeoScience2016/src/m/exp/exp2shp.m@ 21759

Last change on this file since 21759 was 21759, checked in by Eric.Larour, 8 years ago

CHG: merged branch back to trunk-jpl 21754.

File size: 1.2 KB
RevLine 
[21759]1function exp2shp(expfilename,shpfilename,geometry)
[18211]2%SHPWRITE - write a shape file from a contour structure
3%
4% Usage:
[21759]5% exp2shp(expfilename,shpfilename,geometry)
[18211]6%
7% Example:
[21759]8% exp2shp('domainoutline.exp','domainoutline.shp')
9% exp2shp('domainoutline.exp','domainoutline.shp','Polygon')
10% exp2shp('massfluxgate.exp','massfluxgate.shp','Line')
[18211]11%
12% See also SHPREAD, SHPWRITE, SHP2EXP
13
[21759]14%check file extensions
15[pathstr,name,ext] = fileparts(shpfilename);
16if ~strcmp(ext,'.shp'),
17 error(['Shapefile ' shpfilename ' does not have an extension .shp']);
18end
19
20[pathstr,name,ext] = fileparts(expfilename);
21if ~strcmp(ext,'.exp'),
22 error(['Exp file ' expfilename ' does not have an extension .exp']);
23end
24
[18211]25shp=expread(expfilename);
26
27%initialize number of profile
28count=0;
29
30contours=struct([]);
31for i=1:length(shp),
[18213]32 if nargin < 3
33 if length(shp(1).x) == 1
34 geometry = 'Point';
35 elseif length(shp(1).x) < 3
36 geometry = 'Line';
[21372]37 else
38 if (shp(1).x(end)==shp(1).x(1) && shp(1).y(end)==shp(1).y(1)),
[21759]39 geometry = 'Polygon';
[21372]40 else
[21759]41 geometry = 'Line';
[21372]42 end
[18213]43 end
44 end
45 contours(i).Geometry=geometry;
[18211]46 contours(i).id=i;
47 contours(i).X=shp(i).x;
48 contours(i).Y=shp(i).y;
49end
50
[21759]51shapewrite(contours,shpfilename);
Note: See TracBrowser for help on using the repository browser.