0

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

CrazyCoder
  • 2,465
  • 8
  • 36
  • 57

2 Answers2

1

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

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
DwB
  • 37,124
  • 11
  • 56
  • 82
0

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

Chris B. Behrens
  • 6,255
  • 8
  • 45
  • 71