mirror of
https://github.com/pim-n/pg-rad
synced 2026-04-24 19:48:10 +02:00
add waypoints (XY/East North) to CountRateOutput
This commit is contained in:
@ -48,6 +48,8 @@ class SimulationEngine:
|
|||||||
)
|
)
|
||||||
|
|
||||||
return CountRateOutput(
|
return CountRateOutput(
|
||||||
|
self.landscape.path.x_list,
|
||||||
|
self.landscape.path.y_list,
|
||||||
acq_points,
|
acq_points,
|
||||||
sub_points,
|
sub_points,
|
||||||
cps,
|
cps,
|
||||||
|
|||||||
@ -5,7 +5,9 @@ from dataclasses import dataclass
|
|||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
class CountRateOutput:
|
class CountRateOutput:
|
||||||
acquisition_points: List[float]
|
x: List[float]
|
||||||
|
y: List[float]
|
||||||
|
distance: List[float]
|
||||||
sub_points: List[float]
|
sub_points: List[float]
|
||||||
cps: List[float]
|
cps: List[float]
|
||||||
integrated_counts: List[float]
|
integrated_counts: List[float]
|
||||||
|
|||||||
Reference in New Issue
Block a user