open-space-toolkit-physics 11.3.0__py310-none-manylinux2014_aarch64.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. open_space_toolkit_physics-11.3.0.dist-info/METADATA +29 -0
  2. open_space_toolkit_physics-11.3.0.dist-info/RECORD +104 -0
  3. open_space_toolkit_physics-11.3.0.dist-info/WHEEL +5 -0
  4. open_space_toolkit_physics-11.3.0.dist-info/top_level.txt +1 -0
  5. open_space_toolkit_physics-11.3.0.dist-info/zip-safe +1 -0
  6. ostk/__init__.py +1 -0
  7. ostk/physics/OpenSpaceToolkitPhysicsPy.cpython-310-aarch64-linux-gnu.so +0 -0
  8. ostk/physics/__init__.py +6 -0
  9. ostk/physics/__init__.pyi +488 -0
  10. ostk/physics/coordinate/__init__.pyi +1002 -0
  11. ostk/physics/coordinate/frame/__init__.pyi +30 -0
  12. ostk/physics/coordinate/frame/provider/__init__.pyi +77 -0
  13. ostk/physics/coordinate/frame/provider/iau.pyi +64 -0
  14. ostk/physics/coordinate/frame/provider/iers.pyi +584 -0
  15. ostk/physics/coordinate/spherical.pyi +421 -0
  16. ostk/physics/data/__init__.pyi +459 -0
  17. ostk/physics/data/provider.pyi +21 -0
  18. ostk/physics/environment/__init__.pyi +108 -0
  19. ostk/physics/environment/atmospheric/__init__.pyi +181 -0
  20. ostk/physics/environment/atmospheric/earth.pyi +552 -0
  21. ostk/physics/environment/gravitational/__init__.pyi +559 -0
  22. ostk/physics/environment/gravitational/earth.pyi +56 -0
  23. ostk/physics/environment/magnetic/__init__.pyi +171 -0
  24. ostk/physics/environment/magnetic/earth.pyi +56 -0
  25. ostk/physics/environment/object/__init__.pyi +430 -0
  26. ostk/physics/environment/object/celestial/__init__.pyi +248 -0
  27. ostk/physics/environment/object/celestial/moon.pyi +2 -0
  28. ostk/physics/environment/object/celestial/sun.pyi +2 -0
  29. ostk/physics/libopen-space-toolkit-physics.so.11 +0 -0
  30. ostk/physics/py.typed +0 -0
  31. ostk/physics/test/__init__.py +1 -0
  32. ostk/physics/test/coordinate/__init__.py +1 -0
  33. ostk/physics/test/coordinate/frame/__init__.py +1 -0
  34. ostk/physics/test/coordinate/frame/provider/__init__.py +1 -0
  35. ostk/physics/test/coordinate/frame/provider/iers/__init__.py +1 -0
  36. ostk/physics/test/coordinate/frame/provider/iers/conftest.py +38 -0
  37. ostk/physics/test/coordinate/frame/provider/iers/data/finals2000A.data +10953 -0
  38. ostk/physics/test/coordinate/frame/provider/iers/data/ser7.dat +524 -0
  39. ostk/physics/test/coordinate/frame/provider/iers/test_bulletin_a.py +108 -0
  40. ostk/physics/test/coordinate/frame/provider/iers/test_finals_2000a.py +93 -0
  41. ostk/physics/test/coordinate/frame/provider/iers/test_manager.py +205 -0
  42. ostk/physics/test/coordinate/spherical/__init__.py +1 -0
  43. ostk/physics/test/coordinate/spherical/test_aer.py +143 -0
  44. ostk/physics/test/coordinate/spherical/test_lla.py +514 -0
  45. ostk/physics/test/coordinate/test_axes.py +116 -0
  46. ostk/physics/test/coordinate/test_frame.py +107 -0
  47. ostk/physics/test/coordinate/test_position.py +201 -0
  48. ostk/physics/test/coordinate/test_transform.py +294 -0
  49. ostk/physics/test/coordinate/test_velocity.py +180 -0
  50. ostk/physics/test/data/conftest.py +34 -0
  51. ostk/physics/test/data/data/manifest.json +22 -0
  52. ostk/physics/test/data/provider/test_provider.py +34 -0
  53. ostk/physics/test/data/test_direction.py +40 -0
  54. ostk/physics/test/data/test_manifest.py +43 -0
  55. ostk/physics/test/data/test_manifest_manager.py +62 -0
  56. ostk/physics/test/data/test_scalar.py +54 -0
  57. ostk/physics/test/data/test_vector.py +70 -0
  58. ostk/physics/test/environment/__init__.py +1 -0
  59. ostk/physics/test/environment/atmospheric/__init__.py +1 -0
  60. ostk/physics/test/environment/atmospheric/earth/__init__.py +1 -0
  61. ostk/physics/test/environment/atmospheric/earth/conftest.py +67 -0
  62. ostk/physics/test/environment/atmospheric/earth/data/SW-Last5Years.test.csv +22 -0
  63. ostk/physics/test/environment/atmospheric/earth/data/SpaceWeather-All-v1.2.test.txt +811 -0
  64. ostk/physics/test/environment/atmospheric/earth/test_cssi_space_weather.py +126 -0
  65. ostk/physics/test/environment/atmospheric/earth/test_exponential.py +34 -0
  66. ostk/physics/test/environment/atmospheric/earth/test_manager.py +173 -0
  67. ostk/physics/test/environment/atmospheric/earth/test_nrlmsise00.py +34 -0
  68. ostk/physics/test/environment/atmospheric/test_earth.py +141 -0
  69. ostk/physics/test/environment/gravitational/__init__.py +1 -0
  70. ostk/physics/test/environment/gravitational/earth/__init__.py +1 -0
  71. ostk/physics/test/environment/gravitational/earth/test_manager.py +76 -0
  72. ostk/physics/test/environment/gravitational/test_earth.py +103 -0
  73. ostk/physics/test/environment/gravitational/test_moon.py +55 -0
  74. ostk/physics/test/environment/gravitational/test_spherical.py +36 -0
  75. ostk/physics/test/environment/gravitational/test_sun.py +53 -0
  76. ostk/physics/test/environment/magnetic/__init__.py +1 -0
  77. ostk/physics/test/environment/magnetic/earth/test_manager.py +64 -0
  78. ostk/physics/test/environment/magnetic/test_earth.py +38 -0
  79. ostk/physics/test/environment/object/__init__.py +1 -0
  80. ostk/physics/test/environment/object/celestial/__init__ .py +1 -0
  81. ostk/physics/test/environment/object/celestial/test_earth.py +174 -0
  82. ostk/physics/test/environment/object/celestial/test_moon.py +17 -0
  83. ostk/physics/test/environment/object/celestial/test_sun.py +17 -0
  84. ostk/physics/test/environment/object/test_celestial.py +12 -0
  85. ostk/physics/test/test_environment.py +97 -0
  86. ostk/physics/test/test_import.py +25 -0
  87. ostk/physics/test/time/__init__.py +1 -0
  88. ostk/physics/test/time/test_date.py +136 -0
  89. ostk/physics/test/time/test_date_time.py +230 -0
  90. ostk/physics/test/time/test_duration.py +215 -0
  91. ostk/physics/test/time/test_instant.py +103 -0
  92. ostk/physics/test/time/test_interval.py +432 -0
  93. ostk/physics/test/time/test_scale.py +11 -0
  94. ostk/physics/test/time/test_time.py +114 -0
  95. ostk/physics/test/unit/__init__.py +1 -0
  96. ostk/physics/test/unit/derived/__init__.py +1 -0
  97. ostk/physics/test/unit/derived/test_angle.py +368 -0
  98. ostk/physics/test/unit/test_derived.py +152 -0
  99. ostk/physics/test/unit/test_electric_current.py +5 -0
  100. ostk/physics/test/unit/test_length.py +297 -0
  101. ostk/physics/test/unit/test_mass.py +141 -0
  102. ostk/physics/test/unit/test_time.py +101 -0
  103. ostk/physics/time.pyi +1744 -0
  104. ostk/physics/unit.pyi +1590 -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: ...) -> 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
+ ...