Splitting
- Split Polygons by multiple LineStrings
- Split rectangles along North-South axis
- Split rotated rectangles into equal parts
- Split Polygons into equal-area parts
- Splitting by Line creates narrow gap in Polygonal coverage
- Splitting Polygon creates invalid coverage with holes
Split Polygons by multiple LineStrings
Split rectangles along North-South axis
Split rotated rectangles into equal parts
See also next problem
Split Polygons into equal-area parts
http://blog.cleverelephant.ca/2018/06/polygon-splitting.html
Does this really result in equal-area subdivision? The Voronoi-of-centroid step is distance-based, not area based…. So may not always work? Would be good to try this on a bunch of country outines
Splitting by Line creates narrow gap in Polygonal coverage
The cause is that vertex introduced by splitting is not present in adjacent polygon.
- Perhaps differencing splitting line from surrounding intersecting polygon would introduce that vertex?
- Or is it better to snap surrounding polygons to split vertices? Probably need a complex process to do this - not really something that can be done easily in DB?
Splitting Polygon creates invalid coverage with holes
https://gis.stackexchange.com/questions/344716/holes-after-st-split-with-postgis
Solution
None so far. Need some way to create a clean coverage