keplemon 0.3.4__cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 1.0.1__cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.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.cpython-39-aarch64-linux-gnu.so +0 -0
- keplemon/bodies.pyi +8 -8
- keplemon/catalogs.pyi +4 -4
- keplemon/elements.pyi +5 -1
- keplemon/saal/astro_func_interface.py +2 -0
- keplemon/saal/astro_func_interface.pyi +12 -0
- {keplemon-0.3.4.dist-info → keplemon-1.0.1.dist-info}/METADATA +1 -1
- {keplemon-0.3.4.dist-info → keplemon-1.0.1.dist-info}/RECORD +10 -10
- {keplemon-0.3.4.dist-info → keplemon-1.0.1.dist-info}/WHEEL +0 -0
- {keplemon-0.3.4.dist-info → keplemon-1.0.1.dist-info}/entry_points.txt +0 -0
|
Binary file
|
keplemon/bodies.pyi
CHANGED
|
@@ -17,12 +17,11 @@ class Earth:
|
|
|
17
17
|
def get_kem() -> float: ...
|
|
18
18
|
|
|
19
19
|
class Satellite:
|
|
20
|
-
|
|
21
|
-
"""
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
bookkeeping.
|
|
20
|
+
id: str
|
|
21
|
+
"""Unique identifier for the satellite."""
|
|
22
|
+
|
|
23
|
+
norad_id: int
|
|
24
|
+
"""Number corresponding to the satellite's NORAD catalog ID.
|
|
26
25
|
"""
|
|
27
26
|
name: str | None
|
|
28
27
|
"""Human-readable name of the satellite"""
|
|
@@ -100,7 +99,7 @@ class Constellation:
|
|
|
100
99
|
start: Epoch,
|
|
101
100
|
end: Epoch,
|
|
102
101
|
step: TimeSpan,
|
|
103
|
-
) -> dict[
|
|
102
|
+
) -> dict[str, Ephemeris]:
|
|
104
103
|
"""
|
|
105
104
|
Args:
|
|
106
105
|
start: UTC epoch of the start of the ephemeris
|
|
@@ -155,7 +154,8 @@ class Constellation:
|
|
|
155
154
|
"""
|
|
156
155
|
...
|
|
157
156
|
|
|
158
|
-
def __getitem__(self, satellite_id:
|
|
157
|
+
def __getitem__(self, satellite_id: str) -> Satellite: ...
|
|
158
|
+
def __setitem__(self, satellite_id: str, sat: Satellite) -> None: ...
|
|
159
159
|
def get_horizon_access_report(
|
|
160
160
|
self,
|
|
161
161
|
site: Observatory,
|
keplemon/catalogs.pyi
CHANGED
|
@@ -8,9 +8,9 @@ class TLECatalog:
|
|
|
8
8
|
@classmethod
|
|
9
9
|
def from_tle_file(cls, filename: str) -> TLECatalog: ...
|
|
10
10
|
def add(self, tle: TLE) -> None: ...
|
|
11
|
-
def get(self, satellite_id:
|
|
12
|
-
def remove(self, satellite_id:
|
|
13
|
-
def keys(self) -> list[
|
|
11
|
+
def get(self, satellite_id: str) -> TLE: ...
|
|
12
|
+
def remove(self, satellite_id: str) -> None: ...
|
|
13
|
+
def keys(self) -> list[str]: ...
|
|
14
14
|
def get_count(self) -> int: ...
|
|
15
15
|
def clear(self) -> None: ...
|
|
16
|
-
def __getitem__(self, satellite_id:
|
|
16
|
+
def __getitem__(self, satellite_id: str) -> TLE: ...
|
keplemon/elements.pyi
CHANGED
|
@@ -2,6 +2,7 @@ from keplemon._keplemon.saal.astro_func_interface import ( # type: ignore
|
|
|
2
2
|
teme_to_topo,
|
|
3
3
|
ra_dec_to_az_el_time,
|
|
4
4
|
ra_dec_to_az_el,
|
|
5
|
+
mean_motion_to_sma,
|
|
5
6
|
XA_TOPO_RA,
|
|
6
7
|
XA_TOPO_DEC,
|
|
7
8
|
XA_TOPO_AZ,
|
|
@@ -30,4 +31,5 @@ __all__ = [
|
|
|
30
31
|
"XA_TOPO_ELDOT",
|
|
31
32
|
"XA_TOPO_RANGEDOT",
|
|
32
33
|
"XA_TOPO_SIZE",
|
|
34
|
+
"mean_motion_to_sma",
|
|
33
35
|
]
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# flake8: noqa: F401
|
|
2
2
|
|
|
3
|
+
def mean_motion_to_sma(mean_motion: float) -> float:
|
|
4
|
+
"""
|
|
5
|
+
Convert mean motion to semi-major axis.
|
|
6
|
+
|
|
7
|
+
Args:
|
|
8
|
+
mean_motion: Mean motion in revolutions/day.
|
|
9
|
+
|
|
10
|
+
Returns:
|
|
11
|
+
Semi-major axis in kilometers.
|
|
12
|
+
"""
|
|
13
|
+
...
|
|
14
|
+
|
|
3
15
|
def ra_dec_to_az_el(
|
|
4
16
|
theta: float,
|
|
5
17
|
lat: float,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
keplemon-0.
|
|
2
|
-
keplemon-0.
|
|
3
|
-
keplemon-0.
|
|
1
|
+
keplemon-1.0.1.dist-info/METADATA,sha256=pNkY37gHCiZHc29A7iUPR7QOVjLDzEYLDUcWIg4Wnks,863
|
|
2
|
+
keplemon-1.0.1.dist-info/WHEEL,sha256=Q-O06xgXBV8cZrwP4LPVudxOkWzxo0BsGODgsGdf8I4,129
|
|
3
|
+
keplemon-1.0.1.dist-info/entry_points.txt,sha256=eYbCkvQvWfRDQ0LzaCELov1xeLAxQEHlfdgNq-LXyb0,49
|
|
4
4
|
keplemon.libs/libastrofunc-d5d29f1a.so,sha256=e5roPhiI5MEQZvQ6o8SY2c2WhSThxXGHLE5HdJzP_1Y,468593
|
|
5
5
|
keplemon.libs/libdllmain-83b073db.so,sha256=YD97bgzxLVt6Yip-fNxEKSOj3iYCtBmaip0d2RpBQgs,331977
|
|
6
6
|
keplemon.libs/libelops-d6961cbd.so,sha256=4XTr3Ip2PWvjLVBAGe53r77_M6t5R9_L3go4KS-BKfI,331017
|
|
@@ -19,7 +19,7 @@ keplemon.libs/libvcm-460d66c8.so,sha256=yDcaK-v2FOOiFf-doyTvPcGPvRK_vuNMMEomKNac
|
|
|
19
19
|
keplemon/__init__.py,sha256=M9q5lNYh_BE6l4xCGJ5IH5PQH9aNm4q_r67ljsNkKvM,832
|
|
20
20
|
keplemon/__init__.pyi,sha256=uE60ln_KJgcfvKburVmbcKT0h_wLPgjBWuyNLgI8ETI,1295
|
|
21
21
|
keplemon/__main__.py,sha256=-3GVkDOA0lV0MIqU9gPb4zbVimg2lA8HMkvdPDw1O28,669
|
|
22
|
-
keplemon/_keplemon.cpython-39-aarch64-linux-gnu.so,sha256=
|
|
22
|
+
keplemon/_keplemon.cpython-39-aarch64-linux-gnu.so,sha256=0LkrEOPldgIxIr0_oes_THdqzcg8rav6kZhfhSQ7f7o,2298505
|
|
23
23
|
keplemon/assets/EGM-2008.GEO,sha256=K2nG8HGLATIHZYMfw3GSClYOTCuZ7rq4RdCeUNgCw5A,148770
|
|
24
24
|
keplemon/assets/EGM-96.GEO,sha256=VBkILuvEMwAPuWmUHy2PeyEfULOwJ4PEJLNf5hr84mU,148770
|
|
25
25
|
keplemon/assets/GEM_5-22.GEO,sha256=stemYLn1ChXa-VdLGHYfa15AXZa_xxGZQ65p4c3gffI,6852
|
|
@@ -32,11 +32,11 @@ keplemon/assets/SGP4_Open_License.txt,sha256=0WofOXQb5YJqnYhXWXnBdCajiTJQAT60UAk
|
|
|
32
32
|
keplemon/assets/WGS84-70.GEO,sha256=ARjEC_5s2SVd0Kh9udbTy1ztBwTeuBYPOhUVJgIqit8,148510
|
|
33
33
|
keplemon/assets/time_constants.dat,sha256=qDpJ2UrQvIDfxsBc4P2AdLS-b2lyR7RCzjqmeG4Ypl8,1226736
|
|
34
34
|
keplemon/bodies.py,sha256=XnaY6XTuj8CHM3XOwOSY3E8nSo0RWwCcAY0FGxAVWa8,208
|
|
35
|
-
keplemon/bodies.pyi,sha256=
|
|
35
|
+
keplemon/bodies.pyi,sha256=0B_g7p0zFD9E6CkYf0HwkIJ1_jYOMs8P7UUjpQwihQY,7163
|
|
36
36
|
keplemon/catalogs.py,sha256=lw71NiXlVtb-z3pQR03afxtkLca4HJcnpZ6kDCcR-Lk,102
|
|
37
|
-
keplemon/catalogs.pyi,sha256=
|
|
37
|
+
keplemon/catalogs.pyi,sha256=ls2HTk7CMGnxutyR5XLsVtzMuB_OoB45-Vhj4BpKQEw,524
|
|
38
38
|
keplemon/elements.py,sha256=QSSiUGN8cA8X85FR-CVfy8lwsNrBtrQbrw9HWr_cH3I,481
|
|
39
|
-
keplemon/elements.pyi,sha256=
|
|
39
|
+
keplemon/elements.pyi,sha256=8ZbXx4euKeW4Bj5jUhP87npmNoesmD4DpND1u3JxnTs,9437
|
|
40
40
|
keplemon/enums.py,sha256=Jh0tFHg_rZXnOyLUXmHjSm3MSZFbvQKTBcP0BqHXeMY,308
|
|
41
41
|
keplemon/enums.pyi,sha256=s9uqkm3Zrx6HLV4dQBScRiUy0CT4QoQwFjaCLOEMW1c,2330
|
|
42
42
|
keplemon/estimation.py,sha256=2K87pFhOfaFohbAtBXv2SA6m_oIN-56toJOftu350fY,228
|
|
@@ -66,12 +66,12 @@ keplemon/propagation.pyi,sha256=YSA3cBzgHLW3_dykrjMX4PbReYJmz5Z7bzfuibPaegc,464
|
|
|
66
66
|
keplemon/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
67
|
keplemon/saal/__init__.py,sha256=aoTB13q7IvXuQ80jgGCnwXA29yjpOqLiTdrtyjyRqLE,123
|
|
68
68
|
keplemon/saal/__init__.pyi,sha256=GPB5f0dcK7srvSDq2i5wvHMyi-OYZakMvlrstKdDwkk,143
|
|
69
|
-
keplemon/saal/astro_func_interface.py,sha256=
|
|
70
|
-
keplemon/saal/astro_func_interface.pyi,sha256=
|
|
69
|
+
keplemon/saal/astro_func_interface.py,sha256=uJuJAV4beTHjk5Jr5rHzMkeBFSo-2vDiW818AnIEYPs,702
|
|
70
|
+
keplemon/saal/astro_func_interface.pyi,sha256=8__K4QTOYGAAwgIm5KloUADXNrR3fOrReyiN8RZcVhQ,2696
|
|
71
71
|
keplemon/saal/obs_interface.py,sha256=EtsaPKixjMWfCUpMd79SvhCs3f9sRcBaal6-ickj3Vs,248
|
|
72
72
|
keplemon/saal/obs_interface.pyi,sha256=eIXbFnZSF3cX3MyXaCYLUAp0wUAbJiQ4rosqpXdf2I0,228
|
|
73
73
|
keplemon/saal/time_func_interface.py,sha256=cshqJ15p_gcenMdmVuXTIoLeij1gsgVi0tujRQ4O6kA,421
|
|
74
74
|
keplemon/saal/time_func_interface.pyi,sha256=GCj_EOmOceJorYQLGQQj1fE2cHxPvNrYml1DLvsaMy4,1508
|
|
75
75
|
keplemon/time.py,sha256=vvHcwWQ1JXPaQSvdBfXYZrk2_-ukDw0RnXDeN5wy3nU,2792
|
|
76
76
|
keplemon/time.pyi,sha256=S2Ul8fpuWnor9wKNFBxLwAiwrGrVN_LJH_xy6WSocv4,6260
|
|
77
|
-
keplemon-0.
|
|
77
|
+
keplemon-1.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|