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
|
Rev | Line | |
---|
[21759] | 1 | function 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);
|
---|
| 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 |
|
---|
[18211] | 25 | shp=expread(expfilename);
|
---|
| 26 |
|
---|
| 27 | %initialize number of profile
|
---|
| 28 | count=0;
|
---|
| 29 |
|
---|
| 30 | contours=struct([]);
|
---|
| 31 | for 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;
|
---|
| 49 | end
|
---|
| 50 |
|
---|
[21759] | 51 | shapewrite(contours,shpfilename);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.