libpysal.cg.get_points_dist¶
- libpysal.cg.get_points_dist(pt1, pt2)[source]¶
Returns the distance between a pair of points.
- Parameters:
- pt1
libpysal.cg.Point
A point.
- pt2
libpysal.cg.Point
The other point.
- pt1
- Returns:
- dist
float
The distance between
pt1
andpt2
.
- dist
Examples
>>> get_points_dist(Point((4, 4)), Point((4, 8))) 4.0
>>> get_points_dist(Point((0, 0)), Point((0, 0))) 0.0