-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Information about IRA tracks #114
Comments
The value of ra_pos_y in the formula seems to be no greater than 4096:Let me change that here: The value of ra_pos_y ranges from -2048 to 2048,In tle, some Iridium orbits can reach about 6000km |
The position is encoded in 4 km steps. You have to multiply these numbers with 4000 to get to the XYZ (ECEF) coordinate in meters. |
Does that mean the orbit could be off by 4km?
Does that mean the orbit could be off by 4km |
Yes, the precision of this field is 4km in x/y/z, so the position can be off by as much as sqrt(3)*4000m. You can see that the lat/lon/alt conversion (e.g. at https://github.com/muccc/iridium-toolkit/blob/master/bitsparser.py#L1521 ) contain a "*4" for the altitude (in km). |
If I have a string of IRA signal demodulated bits, do not do other operations, such as adding time-stamped bits to bits, etc., and know the position of BPSK (iridium access) in bits, Use ‘’bitstream_bch=de_interleave3(bits(length(iridium access: length(iridium access)+96)) deinterleasing and self.ra_sat= int(self.bitstream_bch[0:7],2) # sv_id ‘’ does not get the correct value, how can I change it?What information is original IRA information?Does the deinterleaver length need to change if no additional information is added? |
Line 1506 in c1cb31b
Does the satellite id also need to be added a constant to be the real id, compared to TLE? And what's the constant? After all, [0:7] has a maximum of 127。 |
Have you watched one of the talks we gave at HOPE or CCC congress? That may answer some of the questions you have. For the |
Can you help me determine the coordinates of an Iridium subscriber? |
This issue is about IRA packets. Those contain positional info about the satellite and the spot beam. |
Thank you very much for the quick response and help! |
iridium-toolkit/bitsparser.py
Line 1509 in c1cb31b
The text was updated successfully, but these errors were encountered: