R
R
rigslava2020-06-03 11:22:38
Python
rigslava, 2020-06-03 11:22:38

How to get the coordinates of the second point, knowing the coordinates of the first, and the distance between them?

There is point A, there is its latitude and longitude, I know that from point A at a certain distance (not large max 5 km), there is point B, I know the distance between them in x and y. How can I get the coordinates of point B?
For example, there is a point 55.734316, 37.625327 and let's say at the same latitude but 1 km to the east there is point B, how to get the coordinates of point B.

Answer the question

In order to leave comments, you need to log in

4 answer(s)
T
Timur Pokrovsky, 2020-06-03
@Makaroshka007

point 1 (x1,y1)
distance (x2,y2)
point 2 = point 1 + distance = (x1 + x2, y1 + y2)
just add everything

A
Anton R., 2020-06-03
@anton_reut

No way, because one more point (vector) is needed, this is called Triangulation. You're missing another one.
5ed7635197c4d544787942.png

R
rigslava, 2020-06-03
@rigslava

https://ru.wikibooks.org/wiki/Implementation_algorithm...
I found how to convert from geographic to CM, it seems to suit me, maybe someone else knows how to do the reverse conversion.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question