open-space-toolkit-physics 11.2.1__py313-none-manylinux2014_aarch64.whl → 12.0.0__py313-none-manylinux2014_aarch64.whl
Sign up to get free protection for your applications and to get access to all the features.
- {open_space_toolkit_physics-11.2.1.dist-info → open_space_toolkit_physics-12.0.0.dist-info}/METADATA +3 -3
- {open_space_toolkit_physics-11.2.1.dist-info → open_space_toolkit_physics-12.0.0.dist-info}/RECORD +35 -13
- {open_space_toolkit_physics-11.2.1.dist-info → open_space_toolkit_physics-12.0.0.dist-info}/WHEEL +1 -1
- ostk/physics/OpenSpaceToolkitPhysicsPy.cpython-313-aarch64-linux-gnu.so +0 -0
- ostk/physics/__init__.pyi +488 -0
- ostk/physics/coordinate/__init__.pyi +1002 -0
- ostk/physics/coordinate/frame/__init__.pyi +30 -0
- ostk/physics/coordinate/frame/provider/__init__.pyi +77 -0
- ostk/physics/coordinate/frame/provider/iau.pyi +64 -0
- ostk/physics/coordinate/frame/provider/iers.pyi +584 -0
- ostk/physics/coordinate/spherical.pyi +421 -0
- ostk/physics/data/__init__.pyi +459 -0
- ostk/physics/data/provider.pyi +21 -0
- ostk/physics/environment/__init__.pyi +108 -0
- ostk/physics/environment/atmospheric/__init__.pyi +181 -0
- ostk/physics/environment/atmospheric/earth.pyi +552 -0
- ostk/physics/environment/gravitational/__init__.pyi +559 -0
- ostk/physics/environment/gravitational/earth.pyi +56 -0
- ostk/physics/environment/magnetic/__init__.pyi +171 -0
- ostk/physics/environment/magnetic/earth.pyi +56 -0
- ostk/physics/environment/object/__init__.pyi +430 -0
- ostk/physics/environment/object/celestial/__init__.pyi +248 -0
- ostk/physics/environment/object/celestial/moon.pyi +2 -0
- ostk/physics/environment/object/celestial/sun.pyi +2 -0
- ostk/physics/libopen-space-toolkit-physics.so.12 +0 -0
- ostk/physics/test/coordinate/frame/provider/iers/conftest.py +2 -5
- ostk/physics/test/coordinate/frame/provider/iers/test_bulletin_a.py +1 -4
- ostk/physics/test/coordinate/frame/provider/iers/test_finals_2000a.py +1 -4
- ostk/physics/test/coordinate/spherical/test_lla.py +24 -0
- ostk/physics/test/coordinate/test_position.py +129 -134
- ostk/physics/test/environment/atmospheric/earth/test_cssi_space_weather.py +11 -8
- ostk/physics/time.pyi +1744 -0
- ostk/physics/unit.pyi +1590 -0
- ostk/physics/libopen-space-toolkit-physics.so.11 +0 -0
- {open_space_toolkit_physics-11.2.1.dist-info → open_space_toolkit_physics-12.0.0.dist-info}/top_level.txt +0 -0
- {open_space_toolkit_physics-11.2.1.dist-info → open_space_toolkit_physics-12.0.0.dist-info}/zip-safe +0 -0
@@ -0,0 +1,30 @@
|
|
1
|
+
from __future__ import annotations
|
2
|
+
import ostk.physics.time
|
3
|
+
from . import provider
|
4
|
+
__all__ = ['Provider', 'provider']
|
5
|
+
class Provider:
|
6
|
+
"""
|
7
|
+
|
8
|
+
Frame provider.
|
9
|
+
|
10
|
+
"""
|
11
|
+
@staticmethod
|
12
|
+
def _pybind11_conduit_v1_(*args, **kwargs):
|
13
|
+
...
|
14
|
+
def get_transform_at(self, instant: ostk.physics.time.Instant) -> ...:
|
15
|
+
"""
|
16
|
+
Get the transform at a given instant.
|
17
|
+
|
18
|
+
Args:
|
19
|
+
instant (Instant): An instant
|
20
|
+
|
21
|
+
Returns:
|
22
|
+
Transform: Transform
|
23
|
+
"""
|
24
|
+
def is_defined(self) -> bool:
|
25
|
+
"""
|
26
|
+
Check if the Static provider is defined
|
27
|
+
|
28
|
+
Returns:
|
29
|
+
bool: True if defined
|
30
|
+
"""
|
@@ -0,0 +1,77 @@
|
|
1
|
+
from __future__ import annotations
|
2
|
+
import ostk.physics.coordinate.frame
|
3
|
+
import ostk.physics.time
|
4
|
+
import typing
|
5
|
+
from . import iau
|
6
|
+
from . import iers
|
7
|
+
__all__ = ['Dynamic', 'Static', 'iau', 'iers']
|
8
|
+
class Dynamic(ostk.physics.coordinate.frame.Provider):
|
9
|
+
"""
|
10
|
+
|
11
|
+
Dynamic provider.
|
12
|
+
|
13
|
+
|
14
|
+
"""
|
15
|
+
@staticmethod
|
16
|
+
def _pybind11_conduit_v1_(*args, **kwargs):
|
17
|
+
...
|
18
|
+
@staticmethod
|
19
|
+
def undefined() -> Dynamic:
|
20
|
+
"""
|
21
|
+
Get an undefined dynamic provider.
|
22
|
+
"""
|
23
|
+
def __init__(self, generator: typing.Any) -> None:
|
24
|
+
"""
|
25
|
+
Constructor.
|
26
|
+
|
27
|
+
Args:
|
28
|
+
generator: Generator function.
|
29
|
+
"""
|
30
|
+
def get_transform_at(self, instant: ostk.physics.time.Instant) -> ...:
|
31
|
+
"""
|
32
|
+
Get the transform at a given instant.
|
33
|
+
|
34
|
+
Args:
|
35
|
+
instant (Instant): An instant
|
36
|
+
|
37
|
+
Returns:
|
38
|
+
Transform: Transform
|
39
|
+
"""
|
40
|
+
def is_defined(self) -> bool:
|
41
|
+
"""
|
42
|
+
Check if the Dynamic provider is defined
|
43
|
+
|
44
|
+
Returns:
|
45
|
+
bool: True if defined
|
46
|
+
"""
|
47
|
+
class Static(ostk.physics.coordinate.frame.Provider):
|
48
|
+
"""
|
49
|
+
|
50
|
+
Static provider.
|
51
|
+
|
52
|
+
|
53
|
+
"""
|
54
|
+
@staticmethod
|
55
|
+
def _pybind11_conduit_v1_(*args, **kwargs):
|
56
|
+
...
|
57
|
+
def __init__(self, arg0: typing.Any) -> None:
|
58
|
+
"""
|
59
|
+
Constructor.
|
60
|
+
"""
|
61
|
+
def get_transform_at(self, instant: ostk.physics.time.Instant) -> ...:
|
62
|
+
"""
|
63
|
+
Get the transform at a given instant.
|
64
|
+
|
65
|
+
Args:
|
66
|
+
instant (Instant): An instant
|
67
|
+
|
68
|
+
Returns:
|
69
|
+
Transform: Transform
|
70
|
+
"""
|
71
|
+
def is_defined(self) -> bool:
|
72
|
+
"""
|
73
|
+
Check if the Static provider is defined
|
74
|
+
|
75
|
+
Returns:
|
76
|
+
bool: True if defined
|
77
|
+
"""
|
@@ -0,0 +1,64 @@
|
|
1
|
+
from __future__ import annotations
|
2
|
+
import typing
|
3
|
+
__all__ = ['Theory']
|
4
|
+
class Theory:
|
5
|
+
"""
|
6
|
+
|
7
|
+
IAU theory.
|
8
|
+
|
9
|
+
The IAU 2000A precession-nutation theory relates the International Celestial Reference
|
10
|
+
Frame to the International Terrestrial Reference Frame and has been effective since
|
11
|
+
January 2003. In 2006, the IAU moved to adopt a more dynamically consistent precession
|
12
|
+
model to complement the IAU 2000A nutation theory.
|
13
|
+
|
14
|
+
:reference: https://www.researchgate.net/publication/289753602_The_IAU_2000A_and_IAU_2006_precession-nutation_theories_and_their_implementation
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
Members:
|
19
|
+
|
20
|
+
IAU_2000A :
|
21
|
+
The IAU 2000A theory.
|
22
|
+
|
23
|
+
|
24
|
+
IAU_2000B :
|
25
|
+
The IAU 2000B theory.
|
26
|
+
|
27
|
+
|
28
|
+
IAU_2006 :
|
29
|
+
The IAU 2006 theory.
|
30
|
+
|
31
|
+
"""
|
32
|
+
IAU_2000A: typing.ClassVar[Theory] # value = <Theory.IAU_2000A: 0>
|
33
|
+
IAU_2000B: typing.ClassVar[Theory] # value = <Theory.IAU_2000B: 1>
|
34
|
+
IAU_2006: typing.ClassVar[Theory] # value = <Theory.IAU_2006: 2>
|
35
|
+
__members__: typing.ClassVar[dict[str, Theory]] # value = {'IAU_2000A': <Theory.IAU_2000A: 0>, 'IAU_2000B': <Theory.IAU_2000B: 1>, 'IAU_2006': <Theory.IAU_2006: 2>}
|
36
|
+
@staticmethod
|
37
|
+
def _pybind11_conduit_v1_(*args, **kwargs):
|
38
|
+
...
|
39
|
+
def __eq__(self, other: typing.Any) -> bool:
|
40
|
+
...
|
41
|
+
def __getstate__(self) -> int:
|
42
|
+
...
|
43
|
+
def __hash__(self) -> int:
|
44
|
+
...
|
45
|
+
def __index__(self) -> int:
|
46
|
+
...
|
47
|
+
def __init__(self, value: int) -> None:
|
48
|
+
...
|
49
|
+
def __int__(self) -> int:
|
50
|
+
...
|
51
|
+
def __ne__(self, other: typing.Any) -> bool:
|
52
|
+
...
|
53
|
+
def __repr__(self) -> str:
|
54
|
+
...
|
55
|
+
def __setstate__(self, state: int) -> None:
|
56
|
+
...
|
57
|
+
def __str__(self) -> str:
|
58
|
+
...
|
59
|
+
@property
|
60
|
+
def name(self) -> str:
|
61
|
+
...
|
62
|
+
@property
|
63
|
+
def value(self) -> int:
|
64
|
+
...
|