libpysal.cg.get_shared_segments¶
Returns the line segments in common to both polygons.
A Polygon.
A Polygon.
Return only a
bool. Default isFalse.
common (list) – The shared line segments between
poly1andpoly2._ret_bool (bool) – Whether
poly1andpoly2share a segment (True) or not (False).
Examples
>>> from libpysal.cg.shapes import Polygon >>> x = [0, 0, 1, 1] >>> y = [0, 1, 1, 0] >>> poly1 = Polygon(list(map(Point, zip(x, y))) ) >>> x = [a+1 for a in x] >>> poly2 = Polygon(list(map(Point, zip(x, y))) ) >>> get_shared_segments(poly1, poly2, bool_ret=True) True