Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rowanwins/polygon-splitter
A small (<10kb minified) javascript library for splitting polygons by a polyline.
https://github.com/rowanwins/polygon-splitter
computational-geometry geometry polygon
Last synced: 11 days ago
JSON representation
A small (<10kb minified) javascript library for splitting polygons by a polyline.
- Host: GitHub
- URL: https://github.com/rowanwins/polygon-splitter
- Owner: rowanwins
- License: mit
- Created: 2019-02-07T11:34:26.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-07-06T05:03:56.000Z (over 2 years ago)
- Last Synced: 2024-10-14T06:27:45.929Z (25 days ago)
- Topics: computational-geometry, geometry, polygon
- Language: JavaScript
- Homepage: https://rowanwins.github.io/polygon-splitter/debug/dist/index.html
- Size: 630 KB
- Stars: 47
- Watchers: 4
- Forks: 5
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- Funding: FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
## polygon-splitter
A small (<10kb minified) javascript library for splitting geojson polygons by a polyline.Works with
- Concave polygons
- Polygons with holes
- Single & Multi-part geometries### Install
````
npm install polygon-splitter
````### API
Accepts either a geojson `Feature` or `Geometry` (inc `MultiPolygon` and `MultiLineString`).```js
import polygonSplitter from 'polygon-splitter'
// or
const polygonSplitter = require('polygon-splitter')const polygon = {
"type": "Polygon",
"coordinates": [[[0, 0],[10, -10], [20, 0], [10, 10], [0, 0]]]
}const polyline = {
"type": "LineString",
"coordinates": [[20, 10], [5, 0], [20, -10]]
}
const output = polygonSplitter(polygon, polyline)
```### Performance
Splitting a polygon with a hole into 4 pieces.
Compared with an approach [outlined here](http://kuanbutts.com/2020/07/07/subdivide-polygon-with-linestring/), and also another [one described here](https://gis.stackexchange.com/a/344277)
````
polygon-splitter x 228,391 ops/sec ±0.63% (88 runs sampled)
alternate approach x 2,052 ops/sec ±3.60% (78 runs sampled)
alternate approach 2 x 900 ops/sec ±3.60% (78 runs sampled)
````### Describing the algorithm
This is basically my own implementation of this algorithm. If you're interested in the details it's probably best to read to the source code.
Some key points of understanding
- Each intersection point will be used in two output polygons so we'll need to keep track of how many times we visit each intersection point in constructing the output
- The algorithm works by switching back and forth walking along the polyline and polygon to collect an output polygon
- An output polygon must contain at least one stretch from the linestring, and at least one stretch from the polgon, but it might also contain many, so we'll use a while loop to just keep going till we get back to the start
- For each intersection point we mark whether the polyline is heading into the polygon or not, this is helpful for knowing which we need to walk the polyline in constructing the output (eg it could be backwards or forwards).### Acknowledgements
Thanks to mourner for the most excellent [robust-predicates library](https://github.com/mourner/robust-predicates).Thanks for my employer [FrontierSI](http://frontiersi.com.au/) for freeing up some of my time to finish off this algorithm.