Basics
API DOCS
Calculate the great-circle distance between two points on Earth’s surface using the Haversine formula.
lat1 (float) – Latitude of the first point in radians.
lat2 (float) – Latitude of the second point in radians.
lon1 (float) – Longitude of the first point in radians.
lon2 (float) – Longitude of the second point in radians.
distance – Distance between the two points in kilometers.
float