This package is a numpy version of haversine. Compared with haversine, our implementation is much more efficient when dealing with list-wise distance calculation.
from fasthaversine import haversine
haversine(points1, points2, unit='km')
where points1
and points2
are two list of tuples (lat, lon).