Closed RazerM closed 3 years ago
Example:
>>> from sgp4.earth_gravity import wgs84 >>> from sgp4.io import twoline2rv >>> line1 = '1 4859U 21001A 21007.63955392 .00000000 00000+0 00000+0 0 9990' >>> line2 = '2 4859 000.0000 000.0000 0000000 000.0000 000.0000 01.00000000 09' >>> s = twoline2rv(line1, line2, wgs84) >>> s.satnum -225141
Thanks so much for a complete working example, it made it easy for me to add a test case and then a fix. I'll plan for a release within the next few days to get this update out!
Thanks!
Example: