From 7941a792e00180e4129407f4c4be563b192fee11 Mon Sep 17 00:00:00 2001 From: Michael Stangl Date: Mon, 20 Jul 2026 09:45:11 +0200 Subject: [PATCH] =?UTF-8?q?Reihenfolge=20des=20Sivas=20CSV=20Exports=20ge?= =?UTF-8?q?=C3=A4ndert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/export_sivas.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/export_sivas.py b/lib/export_sivas.py index e8048f1..451a1f1 100644 --- a/lib/export_sivas.py +++ b/lib/export_sivas.py @@ -224,12 +224,12 @@ def build_kreisel_details(block): except (ValueError, TypeError): hoehe_m = "0" return { + "Hoehe in m": hoehe_m, + "Kreiselart": attribs.get("KREISELART", "STANDARD"), "Abstand (Kreiselachse A - Kreiselachse) in Meter": abstand_m, "Anzahl der Separatoren": attribs.get("N_SEPARATOREN", "2"), - "Kreiselart": attribs.get("KREISELART", "STANDARD"), "Anzahl der Scanner": attribs.get("N_SCANNER", "0"), "Anzahl der Rampen": attribs.get("N_RAMPEN", "0"), - "Hoehe in m": hoehe_m, "Drehrichtung": attribs.get("DREHRICHTUNG", "UZS"), "Drehung": block.get("rotation", 0.0), }