Processing GPS data to velocity
25 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
marwardo
el 11 de Sept. de 2017
Comentada: Daniel
el 8 de Oct. de 2024
Hi
For an AUV project I'm doing we need to calculate the speed from the GPS coordinates. In order to calculate the speed we need to calculate the distance between the GPS coordinates. Since there is only a short distance between the points (less than 100m) I wan't to calculate it using the Euclidean distance between the points.
The issue is I have two single row arrays (1x21) whith all the latitude and longitude coordinates from the GPS and I'm not sure how to combine the to arrays to get a new array with the distances in it? - Can I use the pdist2(X,Y) command?
I have tried with pdist2(lat,lon,'euclidean') where lat and lon is the 1x21 arrays which just returns a single number When I try with lat and lon as 21x1 array it gives me a 21x21 array - I'm not sure I completely understands the pdist2(x,y) command?
Sorry if I'm touching on something that has been discussed in here before, but I have bin searching for several hours and I have not really gotten any further...
Best regards and thanks
0 comentarios
Respuesta aceptada
Star Strider
el 11 de Sept. de 2017
The pdist2 function is overkill for what you want to do. I don’t know what format your latitude and longitude arrays are (I assume decimal degrees rather than ‘d:m:s’). If so, the hypot function would work best.
Example —
LatLon = sortrows(rand(21,2),1)'*100; % Create (2x21) Data Array (Decimal Degrees)
Time = rand(21,1)*10; % Sampling Times
dLatLon = diff(LatLon'); % Convert To (21x2) & Take Successive Differences
DistDeg = hypot(dLatLon(:,1), dLatLon(:,2)); % Distance (Degree Differences)
d2m = 4E+7/360; % Degrees-To-Metres Conversion (Approximate)
DistMtr = DistDeg * d2m; % Distance (Metre Differences)
dTime = diff(Time); % Sampling Time Differences
Velocity = DistMtr ./ dTime; % Velocity (Metres/Time Unit)
Something like that should work.
2 comentarios
Más respuestas (1)
Jeppe Rasmussen
el 28 de Ag. de 2018
Just be very careful.
The longitude degrees coresponds to very varying meters depending on the latitude you are positioned.
At equator a degree longitude corresponds to roughly 111000 meters. Here in North Europe (54 degrees North) 1 degree longitude corresponds to 65576 meter. Latitude does not vay that much.
You can use:
To calculate conversion factor for the longitude degrees depending on your location
1 comentario
Daniel
el 8 de Oct. de 2024
Code snippet above does not seem right. d2m is not constant by latitude and also varies depending on how much of the diff comes from a latitude difference and how much comes from a longitude difference.
dLatLon = diff(LatLon');
does not produce distance arc in degrees.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!