How can I get the latitude and longitude of “x” meter from ref latitude and longitude?

后端 未结 4 1721
自闭症患者
自闭症患者 2021-01-14 05:21

I have a distance in meters and ref latitude and longitude. Now I want latitude and longitude from the given ref point on x meters in four direction (south, north, east and

4条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-14 06:09

    The other way to calculate this is to convert degree to radian: Pi radian is equals to 180 degree. The simple point about radian is the length on the circle (surface of Earth) is radius * radian. Thus, 1 degree * pi / 180 * 6360Km = 110.947Km where pi = 3.14.

    Latitude and longitude values move north-south and east-west respectively, so the above calculation could be mapped to those if the movement is along with their direction, otherwise sinus and cosinus functions must be used for mapping.

提交回复
热议问题