momepy.extend_lines¶
-
momepy.extend_lines(gdf, tolerance, target=
None, barrier=None, extension=0)[source]¶ Extends lines from gdf to itself or target within a set tolerance
Extends unjoined ends of LineString segments to join with other segments or target. If
targetis passed, extend lines to target. Otherwise extend lines to itself.If
barrieris passed, each extended line is checked for intersection withbarrier. If they intersect, extended line is not returned. This can be useful if you don’t want to extend street network segments through buildings.- Parameters:¶
- gdf : GeoDataFrame¶
GeoDataFrame containing LineString geometry
- tolerance : float¶
tolerance in snapping (by how much could be each segment extended).
- target : GeoDataFrame, GeoSeries¶
target geometry to which
gdfgets extended. Has to be (Multi)LineString geometry.- barrier : GeoDataFrame, GeoSeries¶
extended line is not used if it intersects barrier
- extension : float¶
by how much to extend line beyond the snapped geometry. Useful when creating enclosures to avoid floating point imprecision.
- Returns:¶
GeoDataFrame of with extended geometry
- Return type:¶
GeoDataFrame
See also