Using OMM in place of TLE #243
-
Inspired by the note that Celestrak is providing satellite data formats alternate to One thing which I added in and wanted clarification: given that |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Only if you know that you want to ignore all of the satellites with numbers of greater than length 5, I suppose? It would depend on what you're doing and whether all those satellites are irrelevant to you. If some of them would be useful to you, then probably you'll not want to throw them out but instead rewrite their numbers to lower numbers that PyEphem can accept, and have a Python dictionary or something to keep up with which satellite objects had which numbers originally before you rewrote them. |
Beta Was this translation helpful? Give feedback.
-
@brandon-rhodes Your answer got me thinking about not dropping satellites, but rather, swapping the satellite (catalog) number for something less than length five before I request a TLE from
You can see that the I did a search and noticed in
versus
Could this somehow be the reason for the truncation? I've somewhat hijacked my own question/discussion. I'm happy to move/refer this to a new issue if need be over at python-sgp4. |
Beta Was this translation helpful? Give feedback.
Only if you know that you want to ignore all of the satellites with numbers of greater than length 5, I suppose? It would depend on what you're doing and whether all those satellites are irrelevant to you. If some of them would be useful to you, then probably you'll not want to throw them out but instead rewrite their numbers to lower numbers that PyEphem can accept, and have a Python dictionary or something to keep up with which satellite objects had which numbers originally before you rewrote them.