Skip to content

Commit

Permalink
Merge pull request #56 from mapilio/remove_print
Browse files Browse the repository at this point in the history
Update distance.py
  • Loading branch information
bonj4 committed Jan 25, 2024
2 parents c073941 + 95d43d9 commit befa6d6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion calculation/distance.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ def bearing(**kwargs):
dLmd = radians(destLon - startLon)
aci = atan2(sin(dLmd) * cosPhi2,
cos(phi1) * sin(phi2) - sin(phi1) * cosPhi2 * cos(dLmd))
print(aci * TO_DEG)
return aci * TO_DEG

@staticmethod
Expand Down

0 comments on commit befa6d6

Please sign in to comment.