libpysal.cg.arcdist(pt0, pt1, radius=6371.0)[source]¶Arc distance between two points on a sphere.
| Parameters: | pt0 : point
pt1 : point
radius : radius of the sphere
|
|---|---|
| Returns: | The arc distance between pt0 and pt1 using supplied radius |
Examples
>>> pt0 = (0,0)
>>> pt1 = (180,0)
>>> d = arcdist(pt0,pt1,RADIUS_EARTH_MILES)
>>> d == math.pi*RADIUS_EARTH_MILES
True