raygeo.geo.algo.analysis
Path analysis utilities for inspecting and cleaning geometry data.
Provides functions for removing duplicate points from point sequences and extracting individual points from path data.
Functions
remove_duplicates()
remove_duplicates(points: Sequence[Point]) -> Polygon
Remove duplicate points from a sequence.
Returns: List of unique points.
| Parameter | Type | Description |
|---|---|---|
points | Sequence[Point] | Sequence of (x, y) points. |
| Returns | Polygon |