From 0a0073ccce94fb1c80b0ea5be65f52208985f76c Mon Sep 17 00:00:00 2001 From: Pim Nelissen Date: Tue, 14 Apr 2026 15:08:49 +0200 Subject: [PATCH] hotfix for export filename --- src/pg_rad/utils/export.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pg_rad/utils/export.py b/src/pg_rad/utils/export.py index 483e29f..0d9fffd 100644 --- a/src/pg_rad/utils/export.py +++ b/src/pg_rad/utils/export.py @@ -67,8 +67,7 @@ def generate_csv_name(sim: SimulationOutput) -> str: [ str(round(s.activity))+"MBq", str(round(s.dist_from_path))+"m", - str(round(s.position[0])), - str(round(s.position[1])), + str(round(s.position[0]))+'_'+str(round(s.position[1])) ] for s in sim.sources ]