Skip to content
Snippets Groups Projects
Verified Commit 185dfcf2 authored by leprob001's avatar leprob001
Browse files

feat: Extended range of GPS dates by 10 on both ends

parent 5ab57b5a
No related branches found
No related tags found
No related merge requests found
......@@ -56,11 +56,11 @@ for o = 1:length(fnames)
end
% remove gps dates that are past end mission of sound source
selection = (gpsDates > soundSourceEnd);
selection = (gpsDates > soundSourceEnd + 10);
gpsDates(selection) = NaN;
predictedToas(selection) = NaN;
% remove gps dates before deployment of soundsource
selection = (gpsDates < soundSourceBegin);
selection = (gpsDates < soundSourceBegin - 10);
gpsDates(selection) = NaN;
predictedToas(selection) = NaN;
clear selection;
......
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