source: issm/branches/trunk-larour-NatGeoScience2016/src/m/shp/shpread.m@ 21369

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

CHG: shpread: new ability to invert profile. shpwrite: added line support.

File size: 2.8 KB
Line 
1function Struct=shpread(filename,varargin)
2%SHPREAD - read a shape file and build a Structure
3%
4% This routine reads a shape file .shp and builds a Structure containing the
5% fields x and y corresponding to the coordinates, one for the filename of
6% the shp file, for the density, for the nodes, and a field closed to
7% indicate if the domain is closed.
8% If this initial shapefile is point only, the fields closed and
9% points are ommited
10% The first argument is the .shp file to be read and the second one (optional)
11% indicates if the last point shall be read (1 to read it, 0 not to).
12%
13% Usage:
14% Struct=shpread(filename)
15%
16% Example:
17% Struct=shpread('domainoutline.shp')
18%
19% See also EXPDOC, EXPWRITEASVERTICES
20
21%recover options
22options=pairoptions(varargin{:});
23
24%some checks
25if ~exist(filename),
26 error(['shpread error message: file ' filename ' not found!']);
27end
28
29%initialize number of profile
30count=0;
31
32%read shapefile
33shp=shaperead(filename);
34
35Struct=struct([]);
36fields=fieldnames(shp);
37for i=1:length(shp),
38 if strcmpi(shp(i).Geometry,'Polygon'),
39 x=shp(i).X'; y=shp(i).Y';
40 ids=find(isnan(x));
41 x(ids)=[]; y(ids)=[];
42
43 Struct(end+1).x=x;
44 Struct(end).y=y;
45 Struct(end).nods=length(x);
46 Struct(end).density=1;
47 Struct(end).closed=1;
48 if isfield(shp,'id'),
49 Struct(end).name=num2str(shp(i).id);
50 else
51 Struct(end).name='';
52 end
53 for j=1:length(fields),
54 field=fields{j};
55 if ~(strcmpi(field,'X') | strcmpi(field,'Y') | strcmpi(field,'id')),
56 Struct(end).(field)=shp(i).(field);
57 end
58 end
59 end
60
61 if strcmpi(shp(i).Geometry,'Line'),
62 x=shp(i).X'; y=shp(i).Y';
63 ids=find(isnan(x));
64 x(ids)=[]; y(ids)=[];
65
66 Struct(end+1).x=x;
67 Struct(end).y=y;
68 Struct(end).nods=length(x);
69 Struct(end).density=1;
70 Struct(end).closed=1;
71 if isfield(shp,'id'),
72 Struct(end).name=num2str(shp(i).id);
73 else
74 Struct(end).name='';
75 end
76 for j=1:length(fields),
77 field=fields{j};
78 if ~(strcmpi(field,'X') | strcmpi(field,'Y') | strcmpi(field,'id')),
79 Struct(end).(field)=shp(i).(field);
80 end
81 end
82 end
83
84
85 if strcmpi(shp(i).Geometry,'Point'),
86 x=shp(i).X'; y=shp(i).Y';
87 ids=find(isnan(x));
88 x(ids)=[]; y(ids)=[];
89
90 Struct(end+1).x=x;
91 Struct(end).y=y;
92 Struct(end).density=1;
93 if isfield(shp,'id'),
94 Struct(end).name=num2str(shp(i).id);
95 else
96 Struct(end).name='';
97 end
98 for j=1:length(fields),
99 field=fields{j};
100 if ~(strcmpi(field,'X') | strcmpi(field,'Y') | strcmpi(field,'id')),
101 Struct(end).(field)=shp(i).(field);
102 end
103 end
104 end
105end
106
107invert=getfieldvalue(options,'invert',0);
108if invert,
109 for i=1:length(Struct),
110 Struct(i).x=flipud(Struct(i).x);
111 Struct(i).y=flipud(Struct(i).y);
112 end
113end
114
115end
Note: See TracBrowser for help on using the repository browser.