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