Skip to content

Geopy

Geocoding library for Python.

두 지점간의 거리

from geopy import distance
newport_ri = (41.49008, -71.312796)
cleveland_oh = (41.499498, -81.695391)
print(distance.distance(newport_ri, cleveland_oh).miles)

See also

Favorite site