Extract shared lines
extract_shared_lines(polygons)
Extract shared lines/borders/edges between polygons.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
polygons |
GeoDataFrame
|
The geodataframe that contains the polygon geometries to be examined for shared lines. |
required |
Returns:
Type | Description |
---|---|
GeoDataFrame
|
Geodataframe containing the shared lines that were found between the polygons. |
Source code in eis_toolkit/vector_processing/extract_shared_lines.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
|