Last active
March 3, 2021 20:21
-
-
Save MartinThoma/e8e25e395311227b4a7eab02e65fc4e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Optional | |
import attr | |
@attr.s | |
class Position: | |
longitude: float = attr.ib() | |
latitude: float = attr.ib() | |
address: Optional[str] = attr.ib(default=None) | |
@longitude.validator | |
def check_long(self, attribute, v): | |
if not (-180 <= v <= 180): | |
raise ValueError(f"Longitude was {v}, but must be in [-180, +180]") | |
@latitude.validator | |
def check_lat(self, attribute, v): | |
if not (-90 <= v <= 90): | |
raise ValueError(f"Latitude was {v}, but must be in [-90, +90]") | |
pos1 = Position(49.0127913, 8.4231381, "Parkstraße 17") | |
pos2 = Position(42.1238762, 9.1649964) | |
def get_distance(p1: Position, p2: Position) -> float: | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment