Skip to main content
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 @krishnamohan​ 

 

Please, try to use the transformer HullReplacer.

 

Thanks in Advance,

Danilo


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...

  1. Copy the IDs of the poles to the lines using PointOnAreOverlayer, merging the attributes
  2. Copy the attributes of the lines to the points, using another PointOnAreaOverlayer, merging the attributes
  3. 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.

Poles_and_points 


Something like this...

  1. Copy the IDs of the poles to the lines using PointOnAreOverlayer, merging the attributes
  2. Copy the attributes of the lines to the points, using another PointOnAreaOverlayer, merging the attributes
  3. 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.

Poles_and_points 

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.

Poles_and_points_alternative_ending


Thank you


Reply