Problem 2497. Distance between two GPS Coordinates

A problem that arises when performing geographically weighted regression is determining the distance between GPS coordinates. GIS (geographical information system) data is usually reported as a function of latitude and longitude.
A common form of GIS data is a CSV file of latitude, longitude, z triples, where z is some quantity that varies with space.
As a prelude to interpolation, the distance between a given point and every other given point in an area needs to be calculated.
Given a set of GPS coordinates, return the distance (in miles) between each point and every point around it using the haversine formula ( http://en.wikipedia.org/wiki/Haversine_formula ) and taking the radius of Earth to be 3959 miles.
See Test Suite for Examples

Solution Stats

27.59% Correct | 72.41% Incorrect
Last Solution submitted on Jan 15, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers32

Suggested Problems

More from this Author9

Community Treasure Hunt

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

Start Hunting!