Source code for aequilibrae.utils.geo_utils

"""Convenience functions for working with geospatial data.
"""

import numpy as np


[docs] def haversine(lon1, lat1, lon2, lat2): """ Calculate the great circle distance between two points on the earth (specified in decimal degrees) """ lon1, lat1, lon2, lat2 = map(np.radians, [lon1, lat1, lon2, lat2]) dlon = lon2 - lon1 dlat = lat2 - lat1 a = np.sin(dlat / 2.0) ** 2 + np.cos(lat1) * np.cos(lat2) * np.sin(dlon / 2.0) ** 2 c = 2.0 * np.arcsin(np.sqrt(a)) distance_m = 6367000.0 * c return distance_m