Skip to content

Garbaz/distance_difference_triangulation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Distance Difference Triangulation

Docs.rsLib.rsCrates.io

This crate consists of exactly one function: [distance_difference_triangulation].

The premise is as follows: You are at some unknown position in 2D space. There are three beacons. You do not know the distances to these three beacons, otherwise you could just do normal triangulation and be done with it. But you do know the differences between the distances to these beacons. You also know the distances between the beacons themselves. From this information, the function this crate provides computes your position, relative to the coordinate system defined by the beacons.

In mathematical terms:

Your unknown position is (x,y).

The unknown distances to the three beacons are d0, d1 and d2.

You do know dd01 = d0 - d1 and dd02 = d0 - d2 (and also dd12 = d1 - d2, but that's redundant).

You also know the distances between the beacons d01, d02 and d12.

The function of this crate computes for you your position in the coordinate system where beacon 0 is at (0,0) and beacon 1 is on the x axis.

See also triangulation_from_dist_diff.

About

Position triangulation from differences of distances

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published