from math import sqrt class Coordinates: """Represents a set of GPS coordinates (latitude/longitude).""" def __init__(self): self.latitude = 0 self.longitude = 0