Menu

#69 No ground track for new satellites

None
open
nobody
5
2013-02-04
2011-10-01
SSC_Henrik
No

Map view does not display ground track for a satellite which has never completed an orbit (i.e. is at orbit 0).

Discussion

  • Charles Suprin

    Charles Suprin - 2011-10-02

    This would appear to be an artifact of the orbit field being an unsigned long and looking at a single orbit of ground track.

    Can you please confirm that you only want to look at the ground track of one orbit? If not I need to find another issue.

     
    • Charles Suprin

      Charles Suprin - 2013-03-11

      Falcon R/B 39116 seems to be showing the same symptoms with tle dated 13069.90479075.

       
  • Charles Suprin

    Charles Suprin - 2011-10-03

    Never mind the one ground track. This appears to be an issue no matter how many ground tracks.

    It appears that this is an issue from having sat_t->orbit being an unsigned long.

     
  • Charles Suprin

    Charles Suprin - 2011-10-03

    SVN commit 914 fixes this issue.

    sat_t->orbit was of type unsigned long as were other orbit counts in gtk-sat-map-groundtrack.c.
    These were made merely longs. A signed long (32-bit) gives us space for several thousand years in low earth orbit. (2^31/365/18).

     
  • Charles Suprin

    Charles Suprin - 2011-10-03
    • status: open --> open-fixed
     
  • Alexandru Csete

    Alexandru Csete - 2011-10-16

    I think we should give this some more thoughts. Clearly, the issue is in the ground track calculation algorithm and as far as I can see nothing has been fixed there. Changing the orbit counts to signed integer is a bad idea since negative counts have no physical meaning. I'm afraid this fix has only swept the real issue under the carpet.

     
  • Alexandru Csete

    Alexandru Csete - 2011-10-16
    • status: open-fixed --> open-accepted
     
  • Charles Suprin

    Charles Suprin - 2011-11-05

    SVN Revision 933 should be more resilient to problems with orbit number computation.

    The original bug was correct in that zero was a problematic value for well behaved TLE's. A zero orbit number would underflow to a large unsigned long value. The watchdog time would catch it. Then it would try to create a track and the first point had an orbit number greater than the max_orbit and the loop would edit with no values.

    The validation of the fix raised a second bug that for some TLE's the orbit_number was not monotonic. To handle these anomalous cases, the starting time now looks for when the orbit number is not start_orbit rather than less. Also the termination looks for a time that is not between the start and stop rather than after the stop.

    As for the interpretation of the orbit number, it would be good to get a firm reference for interpreting the orbit number. For instance does radioskaf-b get it's orbit number from the launch of ISS, the launch of the progress module that carried it, the launch from ISS, or some other time. Satellite debris fields might also yield some insight. If radioscaf-b has a smaller orbit number than the progress capsule that launched it at some time or ISS then a negative value might e interpreted as being the original satellite from the international designation.

    As for the signed versus unsigned question, either provides more range than the space allocated in the TLE format. The older code used signed and unsigned in different places. Either is fine.

     
  • Alexandru Csete

    Alexandru Csete - 2013-02-04
    • Status: open-accepted --> open
     

Log in to post a comment.