I have a trajectory defined in Lat/Long coordinates in "n" points. I need to estimate its length over the surface of the earth:
Lat = [la1 la2 la3 la4 la5 la6];
Lon = [lo1 lo2 lo3 lo4 lo5 lo6];
How can I do this in Matlab? I've tried to use the command distance, but it seems it doesn't do this?
Thanks!