Answer the question
In order to leave comments, you need to log in
How to get circle coordinates?
How to get N coordinates around a circle within a radius of 1km?
For example:
There is a point with coordinates: 55.754755, 37.620584
And I need to get the N-th number of points along a radius of 1 km.
In my case, these are the coordinates of the earth's surface:
I need to get several points on the circle (marked with lines).
Answer the question
In order to leave comments, you need to log in
It is necessary to use the Vincenty formulas for solving direct and inverse problems.
Straight: Based on the current latitude, longitude, bearing and distance, calculate the coordinates of another point.
Inverse: given the coordinates of two points. It is necessary to calculate the distance between them and the azimuths.
You need to solve a direct problem.
https://en.wikipedia.org/wiki/Vincenty%27s_formulae
https://movable-type.co.uk/scripts/latlong-vincent...
You need polar coordinates
Formulas to translate:
x = x0 + R*cos(phi)
y = y0 + R*cos(pi/2 - phi) = y0 + R*sin(phi)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question