Anpassung auf 3 Nachkommastellen

This commit is contained in:
2025-07-10 14:28:04 +02:00
parent f76ce362d2
commit 6b4ffe49ac
+2 -2
View File
@@ -22,9 +22,9 @@ def read_custom_properties(par_path):
value = variable.Value
if name == 'Mittiges_Koordinatensystem_X_Translation':
breite = round(value*2000, 1)
breite = round(value*2000, 3)
elif name == 'Mittiges_Koordinatensystem_Y_Translation':
hoehe = round(value*2000, 1)
hoehe = round(value*2000, 3)
doc.Close(False)