Skip to content
Snippets Groups Projects
Commit 2961e570 authored by Tamihiro Yuzawa's avatar Tamihiro Yuzawa Committed by tamihiro
Browse files

Fix variable assignment in the example script

parent 84ef9d75
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ def get_distance(start, end):
coord_factor = 10000000.0
lat_1 = start.latitude / coord_factor
lat_2 = end.latitude / coord_factor
lon_1 = start.latitude / coord_factor
lon_1 = start.longitude / coord_factor
lon_2 = end.longitude / coord_factor
lat_rad_1 = math.radians(lat_1)
lat_rad_2 = math.radians(lat_2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment