We have a scenario, where user needs to split the polygon/multipolygon in N equal number of polygons.
As I could not find any similar API to perform the split based on Area, I thought of two scenarios:
-
Get Polygon center point, create lines emerging from the point, and create equal polygons.
-
Draw horizontal or vertical lines, divide in equal parts.
Can you please provide me the approach to implement one/both with pros and cons if not already exists?