CrazyCoder
CrazyCoder

Reputation: 2605

Mid point of two point where latitude and longitude given

I am trying to find the midpoint of two points where latitude and longitude of those points are given. Using Haversine formula I can able to find the distance between between those points. I guess, I can also able find the midpoint by dividing the distance by 2. After that how can find the latitude and longitude of that midpoint. Thanks in advance

Upvotes: 0

Views: 2008

Answers (2)

DwB
DwB

Reputation: 38328

This was covered by Dr. Math. Latitude and Longitude of a Point Halfway between Two Points

Upvotes: 1

Chris B. Behrens
Chris B. Behrens

Reputation: 6295

Find the Haversine distances of the latitudes and longitudes separately, and then apply the distance to each coordinate separately.

Upvotes: 0

Related Questions