Umrechnung geod cart

This commit is contained in:
2025-10-22 18:07:17 +02:00
parent dcf1780f44
commit b7d437e0ca
4 changed files with 162 additions and 7 deletions

View File

@@ -10,9 +10,7 @@ def xyz(x: float, y: float, z: float, stellen: int) -> str:
:param stellen: Anzahl Nachkommastellen
:return: String zur Ausgabe der Koordinaten
"""
return f"""x = {(round(x,stellen))} m
y = {(round(y,stellen))} m
z = {(round(z,stellen))} m"""
return f"""x = {(round(x,stellen))} m y = {(round(y,stellen))} m z = {(round(z,stellen))} m"""
def gms(name: str, rad: float, stellen: int) -> str: