union of polyshapes, problem with collinearity
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Alexandra Kopaleyshvili
el 23 de Mayo de 2021
Comentada: Alexandra Kopaleyshvili
el 23 de Mayo de 2021
Hello,
I have 15 polygons (of streets) that I can merge into one using the union function.
But if I want to unite only a few of them (that are close to each other), I get:
Error using polyshape/parseCollinear (line 946)
Parameter name must be 'KeepCollinearPoints'.
Error in polyshape/parseIntersectUnionArgs (line 973)
collinear =
polyshape.parseCollinear(varargin{next_inp:end});
Error in polyshape/union (line 42)
[has_clip, collinear] = polyshape.parseIntersectUnionArgs(false,
varargin{:});
Unfortunately, I don't really understand what MatLAB wants me to do to get my unified polygon groups.
Ah, and if polygons are collinear, I'd like to keep those collinear points.
Thank you!
2 comentarios
Matt J
el 23 de Mayo de 2021
I suggest you attach the arguments to your call to union() in a .mat file, so the community can explore the problem.
Respuesta aceptada
Matt J
el 23 de Mayo de 2021
Editada: Matt J
el 23 de Mayo de 2021
You just had a comma separated list in there by accident. The polyshapes must be given to union() as a vector.
load(websave('t','https://www.mathworks.com/matlabcentral/answers/uploaded_files/627388/streets_185.mat'));
A=union([Streetshape_185.L2{1,1}{:,1}],'KeepCollinearPoints',true)
plot(A)
Más respuestas (0)
Ver también
Categorías
Más información sobre Elementary Polygons en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!