tletools icon indicating copy to clipboard operation
tletools copied to clipboard

Library to work with two-line element set files

Results 5 tletools issues
Sort by recently updated
recently updated
newest added

Hello Installing on my Debian bookworm setup using `sudo pip install TLE-tools` gave this error: ``` astropy/table/_np_utils.c:196:12: fatal error: longintrepr.h: No such file or directory 196 | #include "longintrepr.h" |...

Hello! can you include example code for how to convert an entire list of TLE's and load them into a pandas dataframe, with one column per line?

question

https://github.com/FedericoStra/tletools/blob/6ccf12aea705044fb4c780382739c1cf0ea45e6e/tletools/tle.py#L169 By adding the original line1 and line2 to TLE/TLEu object, users can use the original SGP4 predictor with sgp4 or orbit_predictor. ``` orbprop = orbit_predictor.sources.get_predictor_from_tle_lines( (tle_obj.line1, tle_obj.line2))` for x...

- [ ] Features - [ ] Add checksum verification - [ ] Improve support for loading TLE set files as a `pandas.DataFrame` by adding more options - [ ]...

enhancement

Your original TLE functions are very useful, but I believe this function pair could extend its usability: TLE.from_orbit() and tle.to_lines() They are useful for us to ingest a orbit through...