I use trilateration to determine the coordinates of a mobile anchor with other fixed anchors. (2D)
Here is the algorithm I use and it works very well.
The problem is that I have several possible coordinates, here is an example :
P (red) is the original point; Px (blue) are the calculated point.
Representation of the coordinates calculated by trilateration
I would like to find a mathematical algorithm that uses all the points Px to calculate an approximate point of P that we can call Pappr.
This algorithm must remove the points that are too far away.
In the previous example, they are all good, but we can imagine some very distant point such as P10, P11 amd P12 which should be ignored in this example.
Representation of calculated coordinates, some of which must be ignored
I have no idea how to calculate Pappr with all the Px coordinates.
Does somebody have an idea ?
I have no idea how to calculate Pappr with all the Px coordinates.
Does somebody have an idea ?