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

Removed GPS soundsource markers before deployment of the soundsource.

parent 9995b8ff
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,10 @@ for o = 1:length(fnames)
selection = (gpsDates > soundSourceEnd);
gpsDates(selection) = NaN;
predictedToas(selection) = NaN;
% remove gps dates before deployment of soundsource
selection = (gpsDates < soundSourceBegin);
gpsDates(selection) = NaN;
predictedToas(selection) = NaN;
clear selection;
artoaGui.editTimeOfArrival.scatterToaFromGps.(fnames{o}) = scatter( ...
......
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