keplemon 1.0.3__cp310-cp310-win_amd64.whl → 1.0.6__cp310-cp310-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of keplemon might be problematic. Click here for more details.
- keplemon/_keplemon.cp310-win_amd64.pyd +0 -0
- keplemon/bodies.pyi +13 -1
- keplemon/catalogs.pyi +2 -1
- keplemon/elements.py +6 -0
- keplemon/elements.pyi +33 -0
- keplemon/propagation.py +3 -1
- keplemon/propagation.pyi +8 -0
- keplemon/saal/sgp4_prop_interface.py +7 -0
- keplemon/saal/sgp4_prop_interface.pyi +9 -0
- {keplemon-1.0.3.dist-info → keplemon-1.0.6.dist-info}/METADATA +1 -1
- {keplemon-1.0.3.dist-info → keplemon-1.0.6.dist-info}/RECORD +13 -11
- {keplemon-1.0.3.dist-info → keplemon-1.0.6.dist-info}/WHEEL +1 -1
- {keplemon-1.0.3.dist-info → keplemon-1.0.6.dist-info}/entry_points.txt +0 -0
|
Binary file
|
keplemon/bodies.pyi
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# flake8: noqa
|
|
2
|
-
from keplemon.elements import TLE, CartesianState, Ephemeris, KeplerianState
|
|
2
|
+
from keplemon.elements import TLE, CartesianState, Ephemeris, KeplerianState, GeodeticPosition, OrbitPlotData
|
|
3
3
|
from keplemon.catalogs import TLECatalog
|
|
4
4
|
from keplemon.time import Epoch, TimeSpan
|
|
5
5
|
from keplemon.events import CloseApproach, CloseApproachReport, HorizonAccessReport
|
|
6
|
+
from keplemon.propagation import ForceProperties
|
|
6
7
|
|
|
7
8
|
class Earth:
|
|
8
9
|
@staticmethod
|
|
@@ -17,18 +18,26 @@ class Earth:
|
|
|
17
18
|
def get_kem() -> float: ...
|
|
18
19
|
|
|
19
20
|
class Satellite:
|
|
21
|
+
|
|
20
22
|
id: str
|
|
21
23
|
"""Unique identifier for the satellite."""
|
|
22
24
|
|
|
23
25
|
norad_id: int
|
|
24
26
|
"""Number corresponding to the satellite's NORAD catalog ID.
|
|
25
27
|
"""
|
|
28
|
+
|
|
29
|
+
force_properties: ForceProperties
|
|
30
|
+
"""Force properties of the satellite used for propagation"""
|
|
31
|
+
|
|
26
32
|
name: str | None
|
|
27
33
|
"""Human-readable name of the satellite"""
|
|
28
34
|
|
|
29
35
|
keplerian_state: KeplerianState | None
|
|
30
36
|
"""Keplerian state of the satellite at the epoch of the TLE, if available"""
|
|
31
37
|
|
|
38
|
+
geodetic_position: GeodeticPosition | None
|
|
39
|
+
"""Geodetic position of the satellite at the epoch of the TLE, if available"""
|
|
40
|
+
|
|
32
41
|
def __init__(self) -> None: ...
|
|
33
42
|
@classmethod
|
|
34
43
|
def from_tle(cls, tle: TLE) -> Satellite:
|
|
@@ -62,6 +71,8 @@ class Satellite:
|
|
|
62
71
|
"""
|
|
63
72
|
...
|
|
64
73
|
|
|
74
|
+
def get_plot_data(self, start: Epoch, end: Epoch, step: TimeSpan) -> OrbitPlotData | None: ...
|
|
75
|
+
|
|
65
76
|
class Constellation:
|
|
66
77
|
|
|
67
78
|
count: int
|
|
@@ -71,6 +82,7 @@ class Constellation:
|
|
|
71
82
|
"""Human-readable name of the constellation"""
|
|
72
83
|
|
|
73
84
|
def __init__(self) -> None: ...
|
|
85
|
+
def get_plot_data(self, start: Epoch, end: Epoch, step: TimeSpan) -> dict[str, OrbitPlotData]: ...
|
|
74
86
|
@classmethod
|
|
75
87
|
def from_tle_catalog(cls, tle_catalog: TLECatalog) -> Constellation:
|
|
76
88
|
"""
|
keplemon/catalogs.pyi
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# flake8: noqa
|
|
2
|
-
from keplemon.elements import TLE
|
|
2
|
+
from keplemon.elements import TLE, OrbitPlotData
|
|
3
3
|
|
|
4
4
|
class TLECatalog:
|
|
5
5
|
count: int
|
|
@@ -14,3 +14,4 @@ class TLECatalog:
|
|
|
14
14
|
def get_count(self) -> int: ...
|
|
15
15
|
def clear(self) -> None: ...
|
|
16
16
|
def __getitem__(self, satellite_id: str) -> TLE: ...
|
|
17
|
+
def get_plot_data(self) -> OrbitPlotData: ...
|
keplemon/elements.py
CHANGED
|
@@ -9,6 +9,9 @@ from keplemon._keplemon.elements import ( # type: ignore
|
|
|
9
9
|
TopocentricElements,
|
|
10
10
|
HorizonState,
|
|
11
11
|
HorizonElements,
|
|
12
|
+
GeodeticPosition,
|
|
13
|
+
OrbitPlotData,
|
|
14
|
+
OrbitPlotState,
|
|
12
15
|
)
|
|
13
16
|
|
|
14
17
|
__all__ = [
|
|
@@ -22,4 +25,7 @@ __all__ = [
|
|
|
22
25
|
"TopocentricElements",
|
|
23
26
|
"HorizonState",
|
|
24
27
|
"HorizonElements",
|
|
28
|
+
"GeodeticPosition",
|
|
29
|
+
"OrbitPlotData",
|
|
30
|
+
"OrbitPlotState",
|
|
25
31
|
]
|
keplemon/elements.pyi
CHANGED
|
@@ -4,6 +4,39 @@ from keplemon.time import Epoch
|
|
|
4
4
|
from keplemon.enums import Classification, KeplerianType, ReferenceFrame
|
|
5
5
|
from keplemon.events import CloseApproach
|
|
6
6
|
|
|
7
|
+
class OrbitPlotData:
|
|
8
|
+
satellite_id: str
|
|
9
|
+
epochs: list[str]
|
|
10
|
+
semi_major_axes: list[float]
|
|
11
|
+
eccentricities: list[float]
|
|
12
|
+
inclinations: list[float]
|
|
13
|
+
raans: list[float]
|
|
14
|
+
radii: list[float]
|
|
15
|
+
apogee_radii: list[float]
|
|
16
|
+
perigee_radii: list[float]
|
|
17
|
+
latitudes: list[float]
|
|
18
|
+
longitudes: list[float]
|
|
19
|
+
altitudes: list[float]
|
|
20
|
+
|
|
21
|
+
class GeodeticPosition:
|
|
22
|
+
"""
|
|
23
|
+
Args:
|
|
24
|
+
latitude: Latitude in **_degrees_**
|
|
25
|
+
longitude: Longitude in **_degrees_**
|
|
26
|
+
altitude: Altitude in **_kilometers_**
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
latitude: float
|
|
30
|
+
"""Latitude in **_degrees_**"""
|
|
31
|
+
|
|
32
|
+
longitude: float
|
|
33
|
+
"""Longitude in **_degrees_**"""
|
|
34
|
+
|
|
35
|
+
altitude: float
|
|
36
|
+
"""Altitude in **_kilometers_**"""
|
|
37
|
+
|
|
38
|
+
def __init__(self, latitude: float, longitude: float, altitude: float) -> None: ...
|
|
39
|
+
|
|
7
40
|
class HorizonElements:
|
|
8
41
|
"""
|
|
9
42
|
Args:
|
keplemon/propagation.py
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
from keplemon._keplemon.propagation import ( # type: ignore
|
|
2
2
|
ForceProperties,
|
|
3
|
+
b_star_to_drag_coefficient,
|
|
4
|
+
drag_coefficient_to_b_star,
|
|
3
5
|
)
|
|
4
6
|
|
|
5
|
-
__all__ = ["ForceProperties"]
|
|
7
|
+
__all__ = ["ForceProperties", "b_star_to_drag_coefficient", "drag_coefficient_to_b_star"]
|
keplemon/propagation.pyi
CHANGED
|
@@ -17,3 +17,11 @@ class ForceProperties:
|
|
|
17
17
|
mean_motion_dot: float,
|
|
18
18
|
mean_motion_dot_dot: float,
|
|
19
19
|
) -> None: ...
|
|
20
|
+
|
|
21
|
+
def b_star_to_drag_coefficient(b_star: float) -> float:
|
|
22
|
+
"""Convert B* to drag coefficient."""
|
|
23
|
+
...
|
|
24
|
+
|
|
25
|
+
def drag_coefficient_to_b_star(drag_coefficient: float) -> float:
|
|
26
|
+
"""Convert drag coefficient to B*."""
|
|
27
|
+
...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
keplemon-1.0.
|
|
2
|
-
keplemon-1.0.
|
|
3
|
-
keplemon-1.0.
|
|
1
|
+
keplemon-1.0.6.dist-info/METADATA,sha256=N2FoAuRlTq2QklipfVMJvGTMfbVhn_N91oIbe8WaLpg,863
|
|
2
|
+
keplemon-1.0.6.dist-info/WHEEL,sha256=Iz7QqxpWQRXToFIDkGspPPKDuV_klwuhW8ziiU5jhR8,96
|
|
3
|
+
keplemon-1.0.6.dist-info/entry_points.txt,sha256=eYbCkvQvWfRDQ0LzaCELov1xeLAxQEHlfdgNq-LXyb0,49
|
|
4
4
|
keplemon/AstroFunc.dll,sha256=RwDLeYGuSd3MxQ3O_Ljb0maS5KoDL8HZLpAvcQhDmnQ,357376
|
|
5
5
|
keplemon/AstroFunc.lib,sha256=q0Ob5NGUgbywJg6XqH48QLNmFv8T5p8NVLSx2kKkL4A,56480
|
|
6
6
|
keplemon/DllMain.dll,sha256=vYgOfGAUHn2z1MrVu9wV-k_LRdtuF8RuWrbuu2xk7jk,121344
|
|
@@ -30,7 +30,7 @@ keplemon/Vcm.lib,sha256=q2FPbH_DJXjIzNIzli2f1uV2faHHBjLbffZrL3Nagpw,19404
|
|
|
30
30
|
keplemon/__init__.py,sha256=JymfGXbJ9UJDdwRW0CXS7j5j_LPk1_P_ViKbjoTdCFU,861
|
|
31
31
|
keplemon/__init__.pyi,sha256=PgtL8CNupZCJibx07RLmFf56gMkCFx7voUIxBpeADO8,1349
|
|
32
32
|
keplemon/__main__.py,sha256=Bbbzny3eE3NOikVCEVFAGJiSRGooAkLzPwoSz-rpaxc,689
|
|
33
|
-
keplemon/_keplemon.cp310-win_amd64.pyd,sha256=
|
|
33
|
+
keplemon/_keplemon.cp310-win_amd64.pyd,sha256=CQWeZaVjzb-d3BEO4pLrinX0uKjsaviIvErt2EA41EQ,1581568
|
|
34
34
|
keplemon/assets/EGM-2008.GEO,sha256=K2nG8HGLATIHZYMfw3GSClYOTCuZ7rq4RdCeUNgCw5A,148770
|
|
35
35
|
keplemon/assets/EGM-96.GEO,sha256=VBkILuvEMwAPuWmUHy2PeyEfULOwJ4PEJLNf5hr84mU,148770
|
|
36
36
|
keplemon/assets/GEM_5-22.GEO,sha256=stemYLn1ChXa-VdLGHYfa15AXZa_xxGZQ65p4c3gffI,6852
|
|
@@ -43,11 +43,11 @@ keplemon/assets/SGP4_Open_License.txt,sha256=ThQ87DpbbXt-9K0-0U13tcZqsndte_UkaG3
|
|
|
43
43
|
keplemon/assets/WGS84-70.GEO,sha256=ARjEC_5s2SVd0Kh9udbTy1ztBwTeuBYPOhUVJgIqit8,148510
|
|
44
44
|
keplemon/assets/time_constants.dat,sha256=3nsYjFgq0QnTUHPxuQPdtMG-AqxShVbvmG2zPcZfdcA,1246208
|
|
45
45
|
keplemon/bodies.py,sha256=MjdAGL25eF5pA3KHo5ipjz0DDql5EEEbBqR735M254g,217
|
|
46
|
-
keplemon/bodies.pyi,sha256=
|
|
46
|
+
keplemon/bodies.pyi,sha256=fnwSde5vqtiTSZDyRVEg8YQjF_uTHPkLtcTABw9NcBM,7899
|
|
47
47
|
keplemon/catalogs.py,sha256=AKONH7zWBOnUZI0ty0lYiYZtrdILfKivoUgk1nU3PZ8,107
|
|
48
|
-
keplemon/catalogs.pyi,sha256=
|
|
49
|
-
keplemon/elements.py,sha256=
|
|
50
|
-
keplemon/elements.pyi,sha256=
|
|
48
|
+
keplemon/catalogs.pyi,sha256=UxwRVMfuySXNYOQ7KuCXtwHcu3zL3Fgo1sBP77qUKaU,606
|
|
49
|
+
keplemon/elements.py,sha256=Z0zzwjbOnqi4lXO4Iw5Nio2eZcdrlObzAJ2oLRDzyJY,640
|
|
50
|
+
keplemon/elements.pyi,sha256=EQEqEduwsMqhKjLPbbVS3eyGxNRQitLfzM8KhuxPDLs,10647
|
|
51
51
|
keplemon/enums.py,sha256=5MejXeSwXPtfpIYeNuFQH3LSIRf4aTFZTK2Q1AYyaEg,325
|
|
52
52
|
keplemon/enums.pyi,sha256=OSS71WesYTgzWGUSjpxaYtzj6XmoyLBXq_Zd13IBwyQ,2418
|
|
53
53
|
keplemon/estimation.py,sha256=Of0rHiapW4s1wRipBCZrp4oOiIzs794w1nhqM7AVrGs,236
|
|
@@ -58,8 +58,8 @@ keplemon/exceptions.py,sha256=kdFwToNBHfbpzj311wHfTDztdgwRg2-OM3sHYhmd3AI,107
|
|
|
58
58
|
keplemon/libifcoremd.dll,sha256=x8iFLCgtUCJjWdfdmQycUx9BlXcNCW-Q3MeGpcIN12k,1885224
|
|
59
59
|
keplemon/libiomp5md.dll,sha256=C2O3Lj2yJYPGTyH0Z1c4FSrflnSzxHARp6y0dE3H2ZI,2030632
|
|
60
60
|
keplemon/libmmd.dll,sha256=Qf9bE3FoMllIyq4gRjhGK-Al9PVonTI0O5GP-dwuhb4,4449832
|
|
61
|
-
keplemon/propagation.py,sha256=
|
|
62
|
-
keplemon/propagation.pyi,sha256=
|
|
61
|
+
keplemon/propagation.py,sha256=Seec61RMvwbD3JOlCs4VTqtYwr7j_a4qDE7Cuoe11rY,246
|
|
62
|
+
keplemon/propagation.pyi,sha256=BjBIlp_8fdEb5gii5OsvLtXfIzV_Mo2pLlX75bZ1SDo,715
|
|
63
63
|
keplemon/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
64
|
keplemon/saal/__init__.py,sha256=JS-tjVFqN1B3ZjIG2g7v1GrmUPi9eIv0_Le1reYuQ2o,126
|
|
65
65
|
keplemon/saal/__init__.pyi,sha256=7wosTC1KhEJis-zp2LlZmW7hlr8BzFO4gx0TJ9c3J80,148
|
|
@@ -67,8 +67,10 @@ keplemon/saal/astro_func_interface.py,sha256=6Y26Qtpg-vf4K5pya2DRzPyv4_4vnp9vmnr
|
|
|
67
67
|
keplemon/saal/astro_func_interface.pyi,sha256=b0QKQhoeBWZ1ouuux9ZoojHpNNnHlNz_bi8kalBgSA0,2808
|
|
68
68
|
keplemon/saal/obs_interface.py,sha256=ax8T4Y61pWh3VnQ4K2bCDNdrK-H6WKWr14pEDAY8WxE,257
|
|
69
69
|
keplemon/saal/obs_interface.pyi,sha256=Y9PE1t2Kdz1Sne1t_M-ctOp9G4hWGKgMMkuES6v1U6Q,235
|
|
70
|
+
keplemon/saal/sgp4_prop_interface.py,sha256=biuhXWIsauR4BO8chsWILfb8-E8OdRNWT5cSL3OYsVQ,134
|
|
71
|
+
keplemon/saal/sgp4_prop_interface.pyi,sha256=9NpOUhf03VQYVEyq1Kutqp6J6bZ3x0NCFSBlVY-Nb9s,244
|
|
70
72
|
keplemon/saal/time_func_interface.py,sha256=C18Q_PIMUFBcB0pHN6wlVj35Vrt83VQNKOEmHDHvZSA,438
|
|
71
73
|
keplemon/saal/time_func_interface.pyi,sha256=3QKtsuxMoTgG--bDvbVNcJyD8vfcAUlw2n69g1m0kNM,1578
|
|
72
74
|
keplemon/time.py,sha256=fa6AKPPU18lX44emrAy5ZZ5TRam-Vhm8ecsauvQ_wdg,2888
|
|
73
75
|
keplemon/time.pyi,sha256=bS5UrY2loeT2mzONRFl2LTG5ZLaC3EnCXKB8fZRks4Q,6529
|
|
74
|
-
keplemon-1.0.
|
|
76
|
+
keplemon-1.0.6.dist-info/RECORD,,
|
|
File without changes
|