Question

create polygon from point.

  • 10 May 2019
  • 1 reply
  • 1 view

Badge +2

I want a polygon that contains all points per group. (postcode)

BUT the polygon may NOT contain points from another group.

I want the maximum area. but it must not overlap.

I have used the HullAccumulator but I get an overlap with that.

the red line is what i want.


1 reply

Userlevel 1
Badge +10

For this sort of scenario I'd use a VornoiDiagrammer to create polygons round each point, and then dissolve based on postcode to create postcode areas

Reply