Changeset 16718
- Timestamp:
- 11/12/13 14:14:04 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/shp/shpwrite.m
r16339 r16718 14 14 count=0; 15 15 16 17 16 contours=struct([]); 18 17 for i=1:length(shp), 19 contours(i).Geometry='Polygon'; 18 if strcmpi(shp(i).Geometry,'Point'), 19 contours(i).Geometry='Point'; 20 else strcmpi(shp(i).Geometry,'Polygon'), 21 contours(i).Geometry='Polygon'; 22 end 20 23 contours(i).id=i; 21 24 contours(i).X=shp(i).x;
Note:
See TracChangeset
for help on using the changeset viewer.