Processing GPS data to velocity
显示 更早的评论
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
采纳的回答
更多回答(1 个)
Jeppe Rasmussen
2018-8-28
1 个投票
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 个评论
Daniel
2024-10-8
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.
类别
在 帮助中心 和 File Exchange 中查找有关 Coordinate Reference Systems 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!