Consider the following setup (in a simple 2D world):
There are three receivers A, B and C with known positions (A.x, A.y, B.x, B.y, C.x and C.y). Now meteor goes down at a point H (H.x, H.y) somewhere in the triangle created by these receivers. It produces a shockwave that is detected by each of the receivers. So each receiver will report a time stamp (ta, tb and tc) when it detects the shock wave.
Now what I would like to do is to compute the point of impact H from the receivers positions and time stamps.
I know that multilateration/trilateration can be used to compute the point of impact from the distances between H to each of the receivers (there are plenty of implementations available on github). But what I don't know is how I get these distances out of the time stamps. Because all the time stamps give me are relative information (e.g. the signal arrived n seconds later at receiver B than receiver A). But they don't give me the absolute distances to each receiver.
Could anyone point me in the right direction? I assume this problem has been solved many times before, so I might just be missing the right keywords to find a solution.