Distance calculation using Haversine formula

버전 1.1.0.0 (4.61 KB) 작성자: Josiah Renfree
Compute the distance between two locations using the Haversine formula
다운로드 수: 5.5K
업데이트 날짜: 2014/8/26

라이선스 보기

This program calculates the distance between two locations (latitude and longitude) using the Haversine formula. The Haversine formula gives the shortest distance between two points over the earth's surface, ignoring elevation, hills, etc...
The program accepts two inputs that can be locations specified as either degrees, minutes, and seconds or by decimal degrees. The output is the distance in km, n.mi, and miles.

Examples:

haversine('53 08 50N, 001 50 58W', '52 12 16N, 000 08 26E') returns 170.2547

haversine([53.1472 -1.8494], '52 12.16N, 000 08.26E') returns 170.2508

haversine([53.1472 -1.8494], [52.2044 0.1406]) returns 170.2563

인용 양식

Josiah Renfree (2024). Distance calculation using Haversine formula (https://www.mathworks.com/matlabcentral/fileexchange/27785-distance-calculation-using-haversine-formula), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2009b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

Removed use of the deg2rad function, which required the Mapping toolbox. The conversion is now done by simply multiplying degrees by pi/180.

Clarified in the help section that the first element in LOC is latitude and the second is longitude.

1.0.0.0