Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. lat = [(40.59, 40.52, 40.621, 40.519, 40.56, 41.265, 40.61, 40.806, 41.259, 41.265, 41.264, 41.264, 41.259, 41.262, 41.263)]
  2. lon = [(69.532, 69.419, 69.354, 69.263, 69.478, 70.805, 69.706, 70.331, 70.815, 70.823, 70.815, 70.81, 70.824, 70.811, 70.811)]
  3. print("Farthest North = " + (str(max(lat))))
  4. print("Fathest West = " + (str(max(lon))))
  5. print("Farthest South = " + (str(min(lat))))
  6. print("Farthest East = " + (str(min(lon))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement