• 1 Post
  • 166 Comments
Joined 1 year ago
cake
Cake day: July 14th, 2023

help-circle


















  • 10,152 Km between Atlanta and Tbilisi, and ChatGPT gave the pseudocode below as an explanation, which I didn’t double check before making this comment!

    
    # Coordinates for Atlanta, Georgia, USA
    atlanta_coords = (33.7490, -84.3880)
    
    # Coordinates for Tbilisi, Georgia (country)
    tbilisi_coords = (41.7151, 44.8271)
    
    # Calculate the straight line distance through the Earth
    geopy.distance.great_circle(atlanta_coords, tbilisi_coords).km```