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

Bufgix, wrong distance km to m conversion.

parent edd521a7
No related branches found
No related tags found
No related merge requests found
187
\ No newline at end of file
188
\ No newline at end of file
......@@ -55,7 +55,7 @@ error('Tracking method implementation not finished yet!');
% calculate the average speed in m/s
% distances are stored in km
% dates as rafos dates
diffDistances = diff(distances) / 1000; % now in [m]
diffDistances = diff(distances) * 1000; % now in [m]
diffDates = diff(dates) * 24 * 3600; % now in [s]
hvel = abs(diffDistances ./ diffDates);
end
......
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