add waypoints (XY/East North) to CountRateOutput

This commit is contained in:
Pim Nelissen
2026-03-31 10:47:51 +02:00
parent 591d81b8a3
commit 7ed12989f4
2 changed files with 5 additions and 1 deletions

View File

@ -48,6 +48,8 @@ class SimulationEngine:
)
return CountRateOutput(
self.landscape.path.x_list,
self.landscape.path.y_list,
acq_points,
sub_points,
cps,

View File

@ -5,7 +5,9 @@ from dataclasses import dataclass
@dataclass
class CountRateOutput:
acquisition_points: List[float]
x: List[float]
y: List[float]
distance: List[float]
sub_points: List[float]
cps: List[float]
integrated_counts: List[float]