4

I have start point (latitude) I know direction, lets say strictly north, and I want to calculate latitude which is 100 meters above the start point.

The same for longitude.

I believe there should be a simple way to do that, but I couldn't find any relevant to this, only how to calculate distance knowing start and end points.

Fezter
  • 21,867
  • 11
  • 68
  • 123
endryha
  • 171
  • 1
  • 1
  • 5
  • 1/ How far are the "jump" distances? Only few hundreds of meters or 5000km? 2/ What is your area of interest (min/max latitude)? – julien Apr 03 '14 at 12:54
  • single jump from one point to another would be really tiny, I would say even tens of meters, area is not determined – endryha Apr 03 '14 at 13:25
  • There is a quite complicated formula, it is called Clarke's method or something like that. If I find it in my materials, I'll post it here. – dmh126 Apr 03 '14 at 13:36
  • 1
    If you want to do this correctly, the Lengthy formula is given on this page: http://www.movable-type.co.uk/scripts/latlong.html Go to the section titled: Destination point given distance and bearing from start point – Devdatta Tengshe Apr 03 '14 at 14:08

1 Answers1

1

There is no simple and accurate way to do it because ellipsoid. conversion to meters varies depending latitude.

See : Understanding terms in Length of Degree formula?

one way to make it very simple (but not very accurate) is use table from http://en.wikipedia.org/wiki/Decimal_degrees. use 0.001 degrees and trigonometry to solve points

simpleuser001
  • 3,864
  • 18
  • 21
  • thank you, actually I don't need good precision and the moment, so probably I can use data from table – endryha Apr 03 '14 at 13:34