python-sgp4 icon indicating copy to clipboard operation
python-sgp4 copied to clipboard

Python version of the SGP4 satellite position library

Results 11 python-sgp4 issues
Sort by recently updated
recently updated
newest added

Added a test case also following the example set by the xml and csv tests - I think it's ready for review

When installing `sgp4` on `Debian 12` under a `venv` I got the following warning: ``` DEPRECATION: sgp4 is being installed using the legacy 'setup.py install' method, because it does not...

It seems to affect nothing but perhaps it will be better to replace this line https://github.com/brandon-rhodes/python-sgp4/blob/fac882aed0e8e5eb2cbd17409e00c7feb7c577ea/sgp4/propagation.py#L1802 with ``` temp_mm = xlm - argpm - nodem mm = temp_mm % twopi...

https://github.com/brandon-rhodes/python-sgp4/blob/fac882aed0e8e5eb2cbd17409e00c7feb7c577ea/sgp4/tests.py#L37-L38 This code is not working anymore in python 3.12: it seems that the default value is evaluated before the attribute is returned: `AttributeError: 'TestCase' object has no attribute 'assertRaisesRegexp'....

Hi, I use `sgp4` in some of my projects and realized that the new accelerated wrapper is OpenMP enabled. However, at least for the conda packages, which I usually use,...

I'd like implement an additional API for "zipped" parallel computation with the SatrecArray. The [current computation](https://github.com/brandon-rhodes/python-sgp4/blob/master/extension/wrapper.cpp#L72-L74) uses the "outer product" of the Satrecs and the julian dates, generating a total...

feature request

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7. Release notes Sourced from actions/download-artifact's releases. v4.1.7 What's Changed Update @​actions/artifact dependency by @​bethanyj28 in actions/download-artifact#325 Full Changelog: https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7 v4.1.6 What's Changed updating @actions/artifact...

dependencies

Failure looks like this: ``` ERROR: test_export_tle_sgp4init (sgp4.tests.TestFunctions.test_export_tle_sgp4init) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/andrew/python-sgp4/.tox/py312/lib/python3.12/site-packages/sgp4/tests.py", line 252, in test_export_tle_sgp4init outline1, outline2 = export_tle(sat) ^^^^^^^^^^^^^^^ File "/home/andrew/python-sgp4/.tox/py312/lib/python3.12/site-packages/sgp4/exporter.py", line 89, in...

First, thank you for all your work on this library! We are in the process of moving to Python 3.13, and while the library itself is compatible, there are no...

I was reading through the source to understand if the Python Global Interpreter Lock is released when calling `sgp4` on a large SatrecArray. From what I can tell, the C...