-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinearizeTrack.m
52 lines (39 loc) · 1.75 KB
/
linearizeTrack.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
clear; clc; close all;
trackData = importdata('sonoma.csv'); %import raw csv from SwiftNav
trackData = trackData.data; %cut off the header
trackData = trackData(1500:18280, :); %cut the data so there is no overlap
lat = trackData(:, 2);
lon = trackData(:, 3);
elev = trackData(:, 4);
%project latitude and longitude onto the globe to convert to meters
[y, x, z] = geodetic2ned(lat, lon, elev, lat(1), lon(1), elev(1), referenceEllipsoid('GRS80','m'));
x = smooth(x, 5); %basic smoothing
y = smooth(y, 5);
z = -smooth(z, 5); %the elevation in the raw GPS log is inverted. fix it
%x = downsample(x, 20);
%y = downsample(y, 20);
%z = downsample(z, 20);
scatter3(x, y, z); %plot the raw GPS trace in meters
xlabel('x'); ylabel('y'); zlabel('z');
rawTrack = [x, y, z];
totalDist = 0;
%distLog = [];
subsampledTrack = rawTrack(1, :);
linearizedTrack = [0, 0];
for i = 2:length(rawTrack)
dist = norm(subsampledTrack(end, :) - rawTrack(i, :)); %calculate the euclidean distance from the previous point to the current point
if (totalDist + dist) / 5 > size(subsampledTrack, 1) %this spaces out the points to every 5 meters
totalDist = totalDist + dist;
subsampledTrack = [subsampledTrack; rawTrack(i, :)]; %append point to subsampled points
linearizedTrack = [linearizedTrack; totalDist, rawTrack(i, 3)]; %keep track of 2D track
end
end
%figure;
%scatter3(subsampledTrack(:, 1), subsampledTrack(:, 2), subsampledTrack(:, 3));
csvwrite('sonomaMeters.csv', subsampledTrack);
csvwrite('sonomaLinearized.csv', linearizedTrack);
figure;
plot(linearizedTrack(:, 1), linearizedTrack(:, 2));
xlabel('Distance along track in m');
ylabel('Relative elevation in m');
grid on;