Processing GPS data to velocity
Show older comments
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
Accepted Answer
More Answers (1)
Jeppe Rasmussen
on 28 Aug 2018
1 vote
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 Comment
Daniel
on 8 Oct 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.
Categories
Find more on Coordinate Reference Systems in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!