Home |
Search |
Today's Posts |
#11
![]() |
|||
|
|||
![]() |
#12
![]() |
|||
|
|||
![]()
Tim Wescott wrote:
Doing it by carrier phase would be better, if you could arrange a phase reference. With hard-mounted receivers (or with a 2nd transmitter in a known location) you can broadcast a time reference and do a reverse-GPS sorta thing. I thought about the reverse-GPS approach, but couldn't figure out how to determine absolute position. The most I could come up with was that you'd know times-of-arrival at the various receivers, and that would give you deltas from the earliest time-of-arrival. But until you know the distance of the transmitter from any one of the receivers, you can't determine position w.r.t. _any_ of them. As soon as you have distance from one of the receivers and N deltas, you have a fix in (min(N-1,3)) dimensions -- assuming that the processor knows where all the receivers (or antennas, at least) is in that space. So what am I missing? -- Mike Andrews Tired old sysadmin |
#13
![]() |
|||
|
|||
![]()
Tim Wescott wrote:
Doing it by carrier phase would be better, if you could arrange a phase reference. With hard-mounted receivers (or with a 2nd transmitter in a known location) you can broadcast a time reference and do a reverse-GPS sorta thing. I thought about the reverse-GPS approach, but couldn't figure out how to determine absolute position. The most I could come up with was that you'd know times-of-arrival at the various receivers, and that would give you deltas from the earliest time-of-arrival. But until you know the distance of the transmitter from any one of the receivers, you can't determine position w.r.t. _any_ of them. As soon as you have distance from one of the receivers and N deltas, you have a fix in (min(N-1,3)) dimensions -- assuming that the processor knows where all the receivers (or antennas, at least) is in that space. So what am I missing? -- Mike Andrews Tired old sysadmin |
#14
![]() |
|||
|
|||
![]()
Mike Andrews wrote:
Tim Wescott wrote: Doing it by carrier phase would be better, if you could arrange a phase reference. With hard-mounted receivers (or with a 2nd transmitter in a known location) you can broadcast a time reference and do a reverse-GPS sorta thing. I thought about the reverse-GPS approach, but couldn't figure out how to determine absolute position. The most I could come up with was that you'd know times-of-arrival at the various receivers, and that would give you deltas from the earliest time-of-arrival. But until you know the distance of the transmitter from any one of the receivers, you can't determine position w.r.t. _any_ of them. As soon as you have distance from one of the receivers and N deltas, you have a fix in (min(N-1,3)) dimensions -- assuming that the processor knows where all the receivers (or antennas, at least) is in that space. So what am I missing? OK, maybe reverse LORAN. If you know the difference in the times of arrival between two stations you can plot the hyperbolic surface where your transmitter must lie. With four stations you should have six different surfaces. The intersections won't agree, but you can get a maximum likelihood estimation of the transmitter's position in three-dimensional space. Being a mathematician by trade would make this easier, and more fun... Actually three receivers would do it unambiguously most of the time, but four would be more accurate at the cost of a bunch more math. -- Tim Wescott Wescott Design Services http://www.wescottdesign.com |
#15
![]() |
|||
|
|||
![]()
Mike Andrews wrote:
Tim Wescott wrote: Doing it by carrier phase would be better, if you could arrange a phase reference. With hard-mounted receivers (or with a 2nd transmitter in a known location) you can broadcast a time reference and do a reverse-GPS sorta thing. I thought about the reverse-GPS approach, but couldn't figure out how to determine absolute position. The most I could come up with was that you'd know times-of-arrival at the various receivers, and that would give you deltas from the earliest time-of-arrival. But until you know the distance of the transmitter from any one of the receivers, you can't determine position w.r.t. _any_ of them. As soon as you have distance from one of the receivers and N deltas, you have a fix in (min(N-1,3)) dimensions -- assuming that the processor knows where all the receivers (or antennas, at least) is in that space. So what am I missing? OK, maybe reverse LORAN. If you know the difference in the times of arrival between two stations you can plot the hyperbolic surface where your transmitter must lie. With four stations you should have six different surfaces. The intersections won't agree, but you can get a maximum likelihood estimation of the transmitter's position in three-dimensional space. Being a mathematician by trade would make this easier, and more fun... Actually three receivers would do it unambiguously most of the time, but four would be more accurate at the cost of a bunch more math. -- Tim Wescott Wescott Design Services http://www.wescottdesign.com |
#16
![]() |
|||
|
|||
![]()
Tim Wescott wrote:
Mike Andrews wrote: I thought about the reverse-GPS approach, but couldn't figure out how to determine absolute position. The most I could come up with was that you'd know times-of-arrival at the various receivers, and that would give you deltas from the earliest time-of-arrival. But until you know the distance of the transmitter from any one of the receivers, you can't determine position w.r.t. _any_ of them. As soon as you have distance from one of the receivers and N deltas, you have a fix in (min(N-1,3)) dimensions -- assuming that the processor knows where all the receivers (or antennas, at least) is in that space. OK, maybe reverse LORAN. If you know the difference in the times of arrival between two stations you can plot the hyperbolic surface where your transmitter must lie. With four stations you should have six different surfaces. The intersections won't agree, but you can get a maximum likelihood estimation of the transmitter's position in three-dimensional space. Being a mathematician by trade would make this easier, and more fun... While I do computer science now, rather than math, my degree is the 5-year Bachelor's in math, for what _that's_ worth. Every now and again I get to actually use a bit of real math at work, generally to the amazement of the in-juh-nears here at WeBuildHighways. My point here is definitely not to wave my degree, as I'm quite sure that others here have degrees more advanced than mine, or do math for a living instead of as a hobby, etc., but to point out that having a math background didn't make it any easier for me. It's still fun, though. Actually three receivers would do it unambiguously most of the time, but four would be more accurate at the cost of a bunch more math. Seems to me that N+1 receivers gives you an unambiguous fix in (min(N-1,3))-space: 2 receivers locate the transmitter on a line, 3 locate it on a plane, and 4 locate it in 3 dimensions. Since we only get to sense 3 spatial dimensions, more than 4 receivers are useful only to provide an overdetermined solution, which may permit more precision. Of course, the "closer" the receivers are to one another as seen by the transmitter (think of the solid angle that the receiver array subtends from the transmitter), the more ill-conditioned the matrix of coefficients that one uses to determine the position. An interesting variation on the problem would be one in which the receivers also received or derived some precise time signal, such as GPS time, and the transmitter to be located transmitted a signal which contained a precise time referenced to the same standard. This turns out to provide a good location for the transmitter, I believe. -- Mike Andrews Tired old sysadmin |
#17
![]() |
|||
|
|||
![]()
Tim Wescott wrote:
Mike Andrews wrote: I thought about the reverse-GPS approach, but couldn't figure out how to determine absolute position. The most I could come up with was that you'd know times-of-arrival at the various receivers, and that would give you deltas from the earliest time-of-arrival. But until you know the distance of the transmitter from any one of the receivers, you can't determine position w.r.t. _any_ of them. As soon as you have distance from one of the receivers and N deltas, you have a fix in (min(N-1,3)) dimensions -- assuming that the processor knows where all the receivers (or antennas, at least) is in that space. OK, maybe reverse LORAN. If you know the difference in the times of arrival between two stations you can plot the hyperbolic surface where your transmitter must lie. With four stations you should have six different surfaces. The intersections won't agree, but you can get a maximum likelihood estimation of the transmitter's position in three-dimensional space. Being a mathematician by trade would make this easier, and more fun... While I do computer science now, rather than math, my degree is the 5-year Bachelor's in math, for what _that's_ worth. Every now and again I get to actually use a bit of real math at work, generally to the amazement of the in-juh-nears here at WeBuildHighways. My point here is definitely not to wave my degree, as I'm quite sure that others here have degrees more advanced than mine, or do math for a living instead of as a hobby, etc., but to point out that having a math background didn't make it any easier for me. It's still fun, though. Actually three receivers would do it unambiguously most of the time, but four would be more accurate at the cost of a bunch more math. Seems to me that N+1 receivers gives you an unambiguous fix in (min(N-1,3))-space: 2 receivers locate the transmitter on a line, 3 locate it on a plane, and 4 locate it in 3 dimensions. Since we only get to sense 3 spatial dimensions, more than 4 receivers are useful only to provide an overdetermined solution, which may permit more precision. Of course, the "closer" the receivers are to one another as seen by the transmitter (think of the solid angle that the receiver array subtends from the transmitter), the more ill-conditioned the matrix of coefficients that one uses to determine the position. An interesting variation on the problem would be one in which the receivers also received or derived some precise time signal, such as GPS time, and the transmitter to be located transmitted a signal which contained a precise time referenced to the same standard. This turns out to provide a good location for the transmitter, I believe. -- Mike Andrews Tired old sysadmin |
#18
![]() |
|||
|
|||
![]()
Mike Andrews wrote:
Tim Wescott wrote: Mike Andrews wrote: I thought about the reverse-GPS approach, but couldn't figure out how to determine absolute position. The most I could come up with was that you'd know times-of-arrival at the various receivers, and that would give you deltas from the earliest time-of-arrival. But until you know the distance of the transmitter from any one of the receivers, you can't determine position w.r.t. _any_ of them. As soon as you have distance from one of the receivers and N deltas, you have a fix in (min(N-1,3)) dimensions -- assuming that the processor knows where all the receivers (or antennas, at least) is in that space. OK, maybe reverse LORAN. If you know the difference in the times of arrival between two stations you can plot the hyperbolic surface where your transmitter must lie. With four stations you should have six different surfaces. The intersections won't agree, but you can get a maximum likelihood estimation of the transmitter's position in three-dimensional space. Being a mathematician by trade would make this easier, and more fun... While I do computer science now, rather than math, my degree is the 5-year Bachelor's in math, for what _that's_ worth. Every now and again I get to actually use a bit of real math at work, generally to the amazement of the in-juh-nears here at WeBuildHighways. My point here is definitely not to wave my degree, as I'm quite sure that others here have degrees more advanced than mine, or do math for a living instead of as a hobby, etc., but to point out that having a math background didn't make it any easier for me. It's still fun, though. Actually three receivers would do it unambiguously most of the time, but four would be more accurate at the cost of a bunch more math. Seems to me that N+1 receivers gives you an unambiguous fix in (min(N-1,3))-space: 2 receivers locate the transmitter on a line, 3 locate it on a plane, and 4 locate it in 3 dimensions. Since we only get to sense 3 spatial dimensions, more than 4 receivers are useful only to provide an overdetermined solution, which may permit more precision. Of course, the "closer" the receivers are to one another as seen by the transmitter (think of the solid angle that the receiver array subtends from the transmitter), the more ill-conditioned the matrix of coefficients that one uses to determine the position. An interesting variation on the problem would be one in which the receivers also received or derived some precise time signal, such as GPS time, and the transmitter to be located transmitted a signal which contained a precise time referenced to the same standard. This turns out to provide a good location for the transmitter, I believe. But if you put GPS into the transmitter for the time signal why not just have it get it's own position and transmit it, ala APRS locators? -- Tim Wescott Wescott Design Services http://www.wescottdesign.com |
#19
![]() |
|||
|
|||
![]()
Mike Andrews wrote:
Tim Wescott wrote: Mike Andrews wrote: I thought about the reverse-GPS approach, but couldn't figure out how to determine absolute position. The most I could come up with was that you'd know times-of-arrival at the various receivers, and that would give you deltas from the earliest time-of-arrival. But until you know the distance of the transmitter from any one of the receivers, you can't determine position w.r.t. _any_ of them. As soon as you have distance from one of the receivers and N deltas, you have a fix in (min(N-1,3)) dimensions -- assuming that the processor knows where all the receivers (or antennas, at least) is in that space. OK, maybe reverse LORAN. If you know the difference in the times of arrival between two stations you can plot the hyperbolic surface where your transmitter must lie. With four stations you should have six different surfaces. The intersections won't agree, but you can get a maximum likelihood estimation of the transmitter's position in three-dimensional space. Being a mathematician by trade would make this easier, and more fun... While I do computer science now, rather than math, my degree is the 5-year Bachelor's in math, for what _that's_ worth. Every now and again I get to actually use a bit of real math at work, generally to the amazement of the in-juh-nears here at WeBuildHighways. My point here is definitely not to wave my degree, as I'm quite sure that others here have degrees more advanced than mine, or do math for a living instead of as a hobby, etc., but to point out that having a math background didn't make it any easier for me. It's still fun, though. Actually three receivers would do it unambiguously most of the time, but four would be more accurate at the cost of a bunch more math. Seems to me that N+1 receivers gives you an unambiguous fix in (min(N-1,3))-space: 2 receivers locate the transmitter on a line, 3 locate it on a plane, and 4 locate it in 3 dimensions. Since we only get to sense 3 spatial dimensions, more than 4 receivers are useful only to provide an overdetermined solution, which may permit more precision. Of course, the "closer" the receivers are to one another as seen by the transmitter (think of the solid angle that the receiver array subtends from the transmitter), the more ill-conditioned the matrix of coefficients that one uses to determine the position. An interesting variation on the problem would be one in which the receivers also received or derived some precise time signal, such as GPS time, and the transmitter to be located transmitted a signal which contained a precise time referenced to the same standard. This turns out to provide a good location for the transmitter, I believe. But if you put GPS into the transmitter for the time signal why not just have it get it's own position and transmit it, ala APRS locators? -- Tim Wescott Wescott Design Services http://www.wescottdesign.com |
#20
![]() |
|||
|
|||
![]()
Tim Wescott wrote:
Mike Andrews wrote: [snip] An interesting variation on the problem would be one in which the receivers also received or derived some precise time signal, such as GPS time, and the transmitter to be located transmitted a signal which contained a precise time referenced to the same standard. This turns out to provide a good location for the transmitter, I believe. But if you put GPS into the transmitter for the time signal why not just have it get it's own position and transmit it, ala APRS locators? (Shhhhhh! Pay no attention to the man behind the curtain.) That, of course, is an elegant solution to the problem, but I didn't consider it because it appeared to be outside the postulates given. -- Mike Andrews Tired old sysadmin |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
WTB: Johnson Viking Directional Coupler for KW Matchbox | Boatanchors | |||
Making 2.4GHz antenna more directional | Antenna | |||
DJ-V5T Programmer (RT Systems) - Install without floppy - solution | Equipment | |||
DJ-V5T Programmer (RT Systems) - Install without floppy - solution | Equipment | |||
Directional antenna wanted. | Antenna |