Tabelle Genauigkeiten und Import für Strecken und Richtungen fertig

This commit is contained in:
2025-12-18 12:04:16 +01:00
parent c38d8b3572
commit feb33a5c93
7 changed files with 1376 additions and 6466 deletions

View File

@@ -62,4 +62,10 @@ class Einheitenumrechnung:
gon = Decimal(gon)
pi = Decimal(str(math.pi))
rad = (gon / Decimal(200)) * pi
return rad
def mgon_to_rad_Decimal(gon):
gon = Decimal(gon)
pi = Decimal(str(math.pi))
rad = (gon / Decimal(200000)) * pi
return rad