mirror of
https://github.com/pim-n/pg-rad
synced 2026-04-24 17:58:11 +02:00
add waypoints (XY/East North) to CountRateOutput
This commit is contained in:
@ -48,6 +48,8 @@ class SimulationEngine:
|
||||
)
|
||||
|
||||
return CountRateOutput(
|
||||
self.landscape.path.x_list,
|
||||
self.landscape.path.y_list,
|
||||
acq_points,
|
||||
sub_points,
|
||||
cps,
|
||||
|
||||
@ -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]
|
||||
|
||||
Reference in New Issue
Block a user