Very old c++ sources that supplement this article https://celestrak.org/publications/AIAA/2008-6770/
contain TWOLINES.TXT dataset of TLE records. Some of them are 1 char shorter - they lack 1 char checksum value at the end. In this case the code I referred to can't read line 2 as len(line) >= 69 fails. If it would be >= 68 the TLE read successfully.
Sample TLEs from vallado's article:
https://github.com/brandon-rhodes/python-sgp4/blob/fac882aed0e8e5eb2cbd17409e00c7feb7c577ea/sgp4/io.py#L169
Very old c++ sources that supplement this article https://celestrak.org/publications/AIAA/2008-6770/ contain TWOLINES.TXT dataset of TLE records. Some of them are 1 char shorter - they lack 1 char checksum value at the end. In this case the code I referred to can't read line 2 as
len(line) >= 69
fails. If it would be>= 68
the TLE read successfully. Sample TLEs from vallado's article:May be it will be better to replace 69 with 68?