libpysal.cg.convex_hull

libpysal.cg.convex_hull(points)[source]

Returns the convex hull of a set of points.

Parameters:
pointslist

A list of points for computing the convex hull.

Returns:
stacklist

A list of points representing the convex hull.

Examples

>>> points = [Point((0, 0)), Point((4, 4)), Point((4, 0)), Point((3, 1))]
>>> convex_hull(points)
[(0.0, 0.0), (4.0, 0.0), (4.0, 4.0)]