Umrechnung geod cart
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user