필터 지우기
필터 지우기

Fill inside a polygon with a color

조회 수: 29 (최근 30일)
BN
BN 2020년 5월 3일
댓글: Patrick Laux 2021년 7월 13일
Dear all,
I want to fill a polygon that I readed from shapefile with blue in order to visualzing it as lake. I searched alot and tried:
S2 = shaperead('lake.shp');
polygonwater1_y = S2(1).X;
polygonwater1_x = S2(1).Y;
fill (polygonwater1_y,polygonwater1_x,'b')
And:
patch (polygonwater1_y,polygonwater1_x,'b')
But as you can see below, unfortunately, it doesn't fill:
Do you know how can I do to fill it?
Thank you
  댓글 수: 2
KSSV
KSSV 2020년 5월 3일
Atatch the data.
BN
BN 2020년 5월 3일
Dear KSSV
I attached data here. There is my shapefile containing 3 lakes. I want to fill all of them by blue.
Thank you.

댓글을 달려면 로그인하십시오.

채택된 답변

KSSV
KSSV 2020년 5월 3일
편집: KSSV 2020년 5월 3일
It happned because, your region have multiple regions inside and they have NaN's.
shfile = "Lakes/lakes.shp" ;
S = shaperead(shfile) ;
N = length(S) ;
x = S(3).X ; y = S(3).Y ; % Picked the 3rd region
idx = find(isnan(x)) ; % find positions of NaNs
idx = [1 idx length(x)] ; % append first and last position
figure
hold on
for i = 1:length(idx)-1
pos = idx(i):idx(i+1) ; % gEt the required position
xi = x(pos) ; yi = y(pos) ; % GEt the corodinates
% Remove NaN's
xi(isnan(xi)) = [] ;
yi(isnan(yi)) = [] ;
patch(xi,yi,'b') ; % color the area
end
  댓글 수: 4
KSSV
KSSV 2020년 8월 26일
Because the user wanted the third region.
Patrick Laux
Patrick Laux 2021년 7월 13일
smart procedure

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Steven Lord
Steven Lord 2020년 8월 26일
Another way to plot and work with this data is to create a polyshape for each region.
S = shaperead('lakes.shp');
for k = 1:numel(S)
P(k) = polyshape(S(k).X, S(k).Y); % This will issue a warning each time
end
plot(P(3), 'FaceColor', 'r')
% Or plot all of them
figure
plot(P)
Some of the functions for working with polyshape objects may be of use to you. For example, computing the area of the polyshape agrees pretty well with the Shape_Area from the shape file.
[area(P(3)); S(3).Shape_Area; area(P(3))-S(3).Shape_Area]
  댓글 수: 2
Ishaan Chauhan
Ishaan Chauhan 2021년 2월 18일
Do you know of any ways to code to ignore the warnings?
Patrick Laux
Patrick Laux 2021년 7월 13일
warning off

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Elementary Polygons에 대해 자세히 알아보기

태그

제품


릴리스

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by