class Coordinates: """Represents a set of GPS coordinates (longitude/latitude).""" def __init__(self, x=0, y=0): self.longitude = x self.latitude = y