Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There are 37 instances where tri-lateration performs better than multi-lateration, 26 instances where multi-lateration performs better than tri-lateration and in the rest both perform equally well. The reasons for this could be one or more of the followingreason as far as I understand is:

We sorted the Target files on the basis of distance between the target and landmark. This promoted those lat/long values to the top of the list which were closer to the target. Though any such sorting technique on these values doesn't affect multi-lateration results but it makes a huge impact on tri-lateration results. The reason being the way these two techniques use these values. Multi-lateration considers all values and figures out regions of intersection whereas tri-lateration simply takes three values to find an intersection region. If we have more landmarks and some of them fairly close to the target, multi-lateration will give good results. Even if some values aren't really good, it won't cause multi-lateration to behave in an entirely different way. However in case of tri-lateration, better the landmark estimates we have better the results are. Since we are only considering three values here, even a single one of those three values can make a big difference.

I'm inferring this from sorted Target files for tri-lateration. Before sorting Target files we were getting way-off results. We then tested our approach of taking RTT into account and manually re-arranged values to produce fairly accurate results. Later sorting on the basis of RTT failed as RTT isn't always directly related to distance. Our latest try involved sorting on the basis of distance instead of RTT, which proved to be quite successful.

...