Created
March 3, 2021 22:54
-
-
Save MartinThoma/20666e9ef3b68ac5eec2751981c5f6c0 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 | |
from dataclasses import dataclass | |
@dataclass | |
class Position: | |
longitude: float | |
latitude: float | |
address: Optional[str] = None | |
pos1 = Position(49.0127913, 8.4231381, "Parkstraße 17") | |
pos2 = Position(42.1238762, 9.1649964, None) | |
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