Skip to content
Snippets Groups Projects
Commit 18229f95 authored by leprob001's avatar leprob001
Browse files

chore: toaData struct is now added to the trajectory object

parent e4ab3f97
No related branches found
No related tags found
No related merge requests found
319
\ No newline at end of file
320
\ No newline at end of file
......@@ -23,7 +23,8 @@ end
trajectoryVelocities, ...
trajectoryTimeDivergenceToGps, ...
trajectorySegmentSize, ...
trajectoryVariationResults ...
trajectoryVariationResults, ...
toaData ...
] = calculateTrajectoryWithTrackParameter(trackParameter, false);
......@@ -31,6 +32,7 @@ end
trajectoryObject = struct();
trajectoryObject.trackParameter = artoaWorkspace.trackParameter;
trajectoryObject.offsets = artoaWorkspace.editOffsets.offsets;
trajectoryObject.toaData = toaData;
% trajectory contains [lat lon]
trajectoryObject.latitude = trajectory(:, 1);
trajectoryObject.longitude = trajectory(:, 2);
......@@ -59,7 +61,8 @@ trajectoryObject.temperature(dateIndices) = artoaWorkspace.temperature(indices);
trajectoryVelocities, ...
trajectoryTimeDivergenceToGps, ...
trajectorySegmentSize, ...
trajectoryVariationResults ...
trajectoryVariationResults, ...
toaData ...
] = calculateTrajectoryWithTrackParameter(pTrackingParameter, pStartEndPosition)
pressureAndDate = { ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment