Creating and enclosed polygon of the point data.
Hi,
I have a pole data connected to houses. I wanted to create an enclosed polygon with the pole and all its corresponding demand points. Can some one help.
Attached is the requirement
Hi,
I have a pole data connected to houses. I wanted to create an enclosed polygon with the pole and all its corresponding demand points. Can some one help.
Attached is the requirement
Page 1 / 1
Hi,
I want to enclose them, but this is actually connecting all the points
Krishna
Hi,
I want to enclose them, but this is actually connecting all the points
Krishna
Please, share us your data.
Hi,
Please find the data.
Something like this...
- Copy the IDs of the poles to the lines using PointOnAreOverlayer, merging the attributes
- Copy the attributes of the lines to the points, using another PointOnAreaOverlayer, merging the attributes
- Calculate the convex hull of the points and the poles, group by pole ID
Note: I renamed the attributes of the poles and the points, as they had the same attribute name.
Something like this...
- Copy the IDs of the poles to the lines using PointOnAreOverlayer, merging the attributes
- Copy the attributes of the lines to the points, using another PointOnAreaOverlayer, merging the attributes
- Calculate the convex hull of the points and the poles, group by pole ID
Note: I renamed the attributes of the poles and the points, as they had the same attribute name.
Hi,
Many thanks for the same. But it is not serving my purpose. I need to create polygons like this in the below screenshot
You can replace the HullAccumulator with a VoronoiDiagrammer (no special settings), followed by a Dissolver grouping by pole ID. This will fill your whole plane.
Thank you