open-space-toolkit-astrodynamics 17.2.0__py312-none-manylinux2014_x86_64.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.
Files changed (151) hide show
  1. open_space_toolkit_astrodynamics-17.2.0.dist-info/METADATA +30 -0
  2. open_space_toolkit_astrodynamics-17.2.0.dist-info/RECORD +151 -0
  3. open_space_toolkit_astrodynamics-17.2.0.dist-info/WHEEL +5 -0
  4. open_space_toolkit_astrodynamics-17.2.0.dist-info/top_level.txt +1 -0
  5. open_space_toolkit_astrodynamics-17.2.0.dist-info/zip-safe +1 -0
  6. ostk/__init__.py +1 -0
  7. ostk/astrodynamics/OpenSpaceToolkitAstrodynamicsPy.cpython-312-x86_64-linux-gnu.so +0 -0
  8. ostk/astrodynamics/__init__.py +11 -0
  9. ostk/astrodynamics/__init__.pyi +720 -0
  10. ostk/astrodynamics/access.pyi +577 -0
  11. ostk/astrodynamics/conjunction/__init__.pyi +121 -0
  12. ostk/astrodynamics/conjunction/close_approach.pyi +89 -0
  13. ostk/astrodynamics/conjunction/message/__init__.pyi +3 -0
  14. ostk/astrodynamics/conjunction/message/ccsds.pyi +705 -0
  15. ostk/astrodynamics/converters.py +130 -0
  16. ostk/astrodynamics/converters.pyi +58 -0
  17. ostk/astrodynamics/data/__init__.pyi +3 -0
  18. ostk/astrodynamics/data/provider.pyi +22 -0
  19. ostk/astrodynamics/dataframe.py +597 -0
  20. ostk/astrodynamics/display.py +281 -0
  21. ostk/astrodynamics/dynamics.pyi +311 -0
  22. ostk/astrodynamics/eclipse.pyi +70 -0
  23. ostk/astrodynamics/estimator.pyi +268 -0
  24. ostk/astrodynamics/event_condition.pyi +910 -0
  25. ostk/astrodynamics/flight/__init__.pyi +626 -0
  26. ostk/astrodynamics/flight/profile/__init__.pyi +99 -0
  27. ostk/astrodynamics/flight/profile/model.pyi +179 -0
  28. ostk/astrodynamics/flight/system.pyi +268 -0
  29. ostk/astrodynamics/guidance_law.pyi +416 -0
  30. ostk/astrodynamics/libopen-space-toolkit-astrodynamics.so.17 +0 -0
  31. ostk/astrodynamics/pytrajectory/__init__.py +1 -0
  32. ostk/astrodynamics/pytrajectory/__init__.pyi +3 -0
  33. ostk/astrodynamics/pytrajectory/pystate.py +263 -0
  34. ostk/astrodynamics/pytrajectory/pystate.pyi +66 -0
  35. ostk/astrodynamics/solver.pyi +432 -0
  36. ostk/astrodynamics/test/__init__.py +1 -0
  37. ostk/astrodynamics/test/access/__init__.py +1 -0
  38. ostk/astrodynamics/test/access/test_generator.py +319 -0
  39. ostk/astrodynamics/test/access/test_visibility_criterion.py +201 -0
  40. ostk/astrodynamics/test/conftest.py +119 -0
  41. ostk/astrodynamics/test/conjunction/close_approach/__init__.py +0 -0
  42. ostk/astrodynamics/test/conjunction/close_approach/test_generator.py +228 -0
  43. ostk/astrodynamics/test/conjunction/message/ccsds/__init__.py +1 -0
  44. ostk/astrodynamics/test/conjunction/message/ccsds/conftest.py +325 -0
  45. ostk/astrodynamics/test/conjunction/message/ccsds/data/cdm.json +303 -0
  46. ostk/astrodynamics/test/conjunction/message/ccsds/test_cdm.py +416 -0
  47. ostk/astrodynamics/test/conjunction/test_close_approach.py +244 -0
  48. ostk/astrodynamics/test/data/provider/test_off_nadir.py +58 -0
  49. ostk/astrodynamics/test/dynamics/__init__.py +1 -0
  50. ostk/astrodynamics/test/dynamics/data/Tabulated_Earth_Gravity.csv +565 -0
  51. ostk/astrodynamics/test/dynamics/data/Tabulated_Earth_Gravity_Truth.csv +100 -0
  52. ostk/astrodynamics/test/dynamics/test_atmospheric_drag.py +128 -0
  53. ostk/astrodynamics/test/dynamics/test_central_body_gravity.py +58 -0
  54. ostk/astrodynamics/test/dynamics/test_dynamics.py +50 -0
  55. ostk/astrodynamics/test/dynamics/test_position_derivative.py +51 -0
  56. ostk/astrodynamics/test/dynamics/test_tabulated.py +138 -0
  57. ostk/astrodynamics/test/dynamics/test_third_body_gravity.py +67 -0
  58. ostk/astrodynamics/test/dynamics/test_thruster.py +157 -0
  59. ostk/astrodynamics/test/eclipse/__init__.py +1 -0
  60. ostk/astrodynamics/test/eclipse/test_generator.py +138 -0
  61. ostk/astrodynamics/test/estimator/test_orbit_determination_solver.py +261 -0
  62. ostk/astrodynamics/test/estimator/test_tle_solver.py +216 -0
  63. ostk/astrodynamics/test/event_condition/test_angular_condition.py +113 -0
  64. ostk/astrodynamics/test/event_condition/test_boolean_condition.py +55 -0
  65. ostk/astrodynamics/test/event_condition/test_brouwer_lyddane_mean_long_condition.py +135 -0
  66. ostk/astrodynamics/test/event_condition/test_coe_condition.py +135 -0
  67. ostk/astrodynamics/test/event_condition/test_instant_condition.py +48 -0
  68. ostk/astrodynamics/test/event_condition/test_logical_condition.py +120 -0
  69. ostk/astrodynamics/test/event_condition/test_real_condition.py +50 -0
  70. ostk/astrodynamics/test/flight/__init__.py +1 -0
  71. ostk/astrodynamics/test/flight/profile/model/test_tabulated_profile.py +115 -0
  72. ostk/astrodynamics/test/flight/system/__init__.py +1 -0
  73. ostk/astrodynamics/test/flight/system/test_propulsion_system.py +64 -0
  74. ostk/astrodynamics/test/flight/system/test_satellite_system.py +83 -0
  75. ostk/astrodynamics/test/flight/system/test_satellite_system_builder.py +71 -0
  76. ostk/astrodynamics/test/flight/test_maneuver.py +231 -0
  77. ostk/astrodynamics/test/flight/test_profile.py +293 -0
  78. ostk/astrodynamics/test/flight/test_system.py +45 -0
  79. ostk/astrodynamics/test/guidance_law/test_constant_thrust.py +177 -0
  80. ostk/astrodynamics/test/guidance_law/test_guidance_law.py +60 -0
  81. ostk/astrodynamics/test/guidance_law/test_heterogeneous_guidance_law.py +164 -0
  82. ostk/astrodynamics/test/guidance_law/test_qlaw.py +209 -0
  83. ostk/astrodynamics/test/solvers/__init__.py +1 -0
  84. ostk/astrodynamics/test/solvers/test_finite_difference_solver.py +196 -0
  85. ostk/astrodynamics/test/solvers/test_least_squares_solver.py +334 -0
  86. ostk/astrodynamics/test/solvers/test_temporal_condition_solver.py +161 -0
  87. ostk/astrodynamics/test/test_access.py +128 -0
  88. ostk/astrodynamics/test/test_converters.py +290 -0
  89. ostk/astrodynamics/test/test_dataframe.py +1355 -0
  90. ostk/astrodynamics/test/test_display.py +184 -0
  91. ostk/astrodynamics/test/test_event_condition.py +80 -0
  92. ostk/astrodynamics/test/test_import.py +26 -0
  93. ostk/astrodynamics/test/test_root_solver.py +70 -0
  94. ostk/astrodynamics/test/test_trajectory.py +126 -0
  95. ostk/astrodynamics/test/test_utilities.py +338 -0
  96. ostk/astrodynamics/test/test_viewer.py +318 -0
  97. ostk/astrodynamics/test/trajectory/__init__.py +1 -0
  98. ostk/astrodynamics/test/trajectory/model/test_nadir_trajectory.py +87 -0
  99. ostk/astrodynamics/test/trajectory/model/test_tabulated_trajectory.py +303 -0
  100. ostk/astrodynamics/test/trajectory/model/test_target_scan_trajectory.py +126 -0
  101. ostk/astrodynamics/test/trajectory/orbit/__init__.py +1 -0
  102. ostk/astrodynamics/test/trajectory/orbit/message/__init__.py +1 -0
  103. ostk/astrodynamics/test/trajectory/orbit/message/spacex/__init__.py +1 -0
  104. ostk/astrodynamics/test/trajectory/orbit/message/spacex/conftest.py +18 -0
  105. ostk/astrodynamics/test/trajectory/orbit/message/spacex/data/opm_1.yaml +44 -0
  106. ostk/astrodynamics/test/trajectory/orbit/message/spacex/test_opm.py +108 -0
  107. ostk/astrodynamics/test/trajectory/orbit/models/__init__.py +1 -0
  108. ostk/astrodynamics/test/trajectory/orbit/models/kepler/__init__.py +1 -0
  109. ostk/astrodynamics/test/trajectory/orbit/models/kepler/test_brouwer_lyddane_mean.py +65 -0
  110. ostk/astrodynamics/test/trajectory/orbit/models/kepler/test_brouwer_lyddane_mean_long.py +102 -0
  111. ostk/astrodynamics/test/trajectory/orbit/models/kepler/test_brouwer_lyddane_mean_short.py +102 -0
  112. ostk/astrodynamics/test/trajectory/orbit/models/kepler/test_coe.py +305 -0
  113. ostk/astrodynamics/test/trajectory/orbit/models/sgp4/__init__.py +1 -0
  114. ostk/astrodynamics/test/trajectory/orbit/models/sgp4/test_tle.py +337 -0
  115. ostk/astrodynamics/test/trajectory/orbit/models/test_kepler.py +130 -0
  116. ostk/astrodynamics/test/trajectory/orbit/models/test_modified_equinoctial.py +142 -0
  117. ostk/astrodynamics/test/trajectory/orbit/models/test_propagated.py +234 -0
  118. ostk/astrodynamics/test/trajectory/orbit/models/test_sgp4.py +1 -0
  119. ostk/astrodynamics/test/trajectory/orbit/models/test_tabulated.py +380 -0
  120. ostk/astrodynamics/test/trajectory/orbit/test_model.py +1 -0
  121. ostk/astrodynamics/test/trajectory/orbit/test_pass.py +75 -0
  122. ostk/astrodynamics/test/trajectory/state/coordinate_subset/test_angular_velocity.py +30 -0
  123. ostk/astrodynamics/test/trajectory/state/coordinate_subset/test_attitude_quaternion.py +18 -0
  124. ostk/astrodynamics/test/trajectory/state/coordinate_subset/test_cartesian_acceleration.py +136 -0
  125. ostk/astrodynamics/test/trajectory/state/coordinate_subset/test_cartesian_position.py +107 -0
  126. ostk/astrodynamics/test/trajectory/state/coordinate_subset/test_cartesian_velocity.py +115 -0
  127. ostk/astrodynamics/test/trajectory/state/test_coordinate_broker.py +84 -0
  128. ostk/astrodynamics/test/trajectory/state/test_coordinate_subset.py +58 -0
  129. ostk/astrodynamics/test/trajectory/state/test_numerical_solver.py +316 -0
  130. ostk/astrodynamics/test/trajectory/test_local_orbital_frame_direction.py +81 -0
  131. ostk/astrodynamics/test/trajectory/test_local_orbital_frame_factory.py +119 -0
  132. ostk/astrodynamics/test/trajectory/test_model.py +1 -0
  133. ostk/astrodynamics/test/trajectory/test_orbit.py +212 -0
  134. ostk/astrodynamics/test/trajectory/test_propagator.py +452 -0
  135. ostk/astrodynamics/test/trajectory/test_segment.py +694 -0
  136. ostk/astrodynamics/test/trajectory/test_sequence.py +550 -0
  137. ostk/astrodynamics/test/trajectory/test_state.py +629 -0
  138. ostk/astrodynamics/test/trajectory/test_state_builder.py +172 -0
  139. ostk/astrodynamics/trajectory/__init__.pyi +1982 -0
  140. ostk/astrodynamics/trajectory/model.pyi +259 -0
  141. ostk/astrodynamics/trajectory/orbit/__init__.pyi +349 -0
  142. ostk/astrodynamics/trajectory/orbit/message/__init__.pyi +3 -0
  143. ostk/astrodynamics/trajectory/orbit/message/spacex.pyi +264 -0
  144. ostk/astrodynamics/trajectory/orbit/model/__init__.pyi +648 -0
  145. ostk/astrodynamics/trajectory/orbit/model/brouwerLyddaneMean.pyi +121 -0
  146. ostk/astrodynamics/trajectory/orbit/model/kepler.pyi +709 -0
  147. ostk/astrodynamics/trajectory/orbit/model/sgp4.pyi +330 -0
  148. ostk/astrodynamics/trajectory/state/__init__.pyi +402 -0
  149. ostk/astrodynamics/trajectory/state/coordinate_subset.pyi +208 -0
  150. ostk/astrodynamics/utilities.py +396 -0
  151. ostk/astrodynamics/viewer.py +851 -0
@@ -0,0 +1,705 @@
1
+ from __future__ import annotations
2
+ import numpy
3
+ import ostk.astrodynamics.trajectory
4
+ import ostk.core.container
5
+ import ostk.core.filesystem
6
+ import ostk.core.type
7
+ import ostk.physics.coordinate
8
+ import ostk.physics.time
9
+ import ostk.physics.unit
10
+ import typing
11
+ __all__ = ['CDM']
12
+ class CDM:
13
+ """
14
+
15
+ Conjunction Data Message.
16
+
17
+ Ref: https://public.ccsds.org/Pubs/508x0b1e2s.pdf
18
+
19
+
20
+ """
21
+ class Data:
22
+ """
23
+
24
+ Conjunction Data Message data.
25
+
26
+ Ref: https://public.ccsds.org/Pubs/508x0b1e2s.pdf
27
+
28
+
29
+ """
30
+ def __init__(self, time_last_observation_start: ostk.physics.time.Instant, time_last_observation_end: ostk.physics.time.Instant, recommended_od_span: ostk.physics.time.Duration, actual_od_span: ostk.physics.time.Duration, observations_available: ostk.core.type.Integer, observations_used: ostk.core.type.Integer, tracks_available: ostk.core.type.Integer, tracks_used: ostk.core.type.Integer, residuals_accepted: ostk.core.type.Real, weighted_rms: ostk.core.type.Real, area_pc: ostk.core.type.Real, area_drag: ostk.core.type.Real, area_srp: ostk.core.type.Real, mass: ostk.physics.unit.Mass, cd_area_over_mass: ostk.core.type.Real, cr_area_over_mass: ostk.core.type.Real, thrust_acceleration: ostk.core.type.Real, sedr: ostk.core.type.Real, state: ostk.astrodynamics.trajectory.State = ..., covariance_matrix: numpy.ndarray[numpy.float64[m, n]] = ...) -> None:
31
+ """
32
+ Constructor.
33
+
34
+ Args:
35
+ time_last_observation_start (Instant): The time of the last observation start.
36
+ time_last_observation_end (Instant): The time of the last observation end.
37
+ recommended_od_span (Duration): The recommended OD span.
38
+ actual_od_span (Duration): The actual OD span.
39
+ observations_available (int): The number of observations available.
40
+ observations_used (int): The number of observations used.
41
+ tracks_available (int): The number of tracks available.
42
+ tracks_used (int): The number of tracks used.
43
+ residuals_accepted (float): The residuals accepted.
44
+ weighted_rms (float): The weighted RMS.
45
+ area_pc (float): The area PC.
46
+ area_drag (float): The area drag.
47
+ area_srp (float): The area SRP.
48
+ mass (Mass): The mass.
49
+ cd_area_over_mass (float): The CD area over mass.
50
+ cr_area_over_mass (float): The CR area over mass.
51
+ thrust_acceleration (float): The thrust acceleration.
52
+ sedr (float): The SEDR.
53
+ state (State): The state.
54
+ covariance_matrix (MatrixXd): The covariance matrix.
55
+ """
56
+ @property
57
+ def actual_od_span(self) -> ostk.physics.time.Duration:
58
+ """
59
+ The actual OD span.
60
+ """
61
+ @property
62
+ def area_drag(self) -> ostk.core.type.Real:
63
+ """
64
+ The area drag.
65
+ """
66
+ @property
67
+ def area_pc(self) -> ostk.core.type.Real:
68
+ """
69
+ The area PC.
70
+ """
71
+ @property
72
+ def area_srp(self) -> ostk.core.type.Real:
73
+ """
74
+ The area SRP.
75
+ """
76
+ @property
77
+ def cd_area_over_mass(self) -> ostk.core.type.Real:
78
+ """
79
+ The CD area over mass.
80
+ """
81
+ @property
82
+ def covariance_matrix(self) -> numpy.ndarray[numpy.float64[m, n]]:
83
+ """
84
+ The covariance matrix.
85
+ """
86
+ @property
87
+ def cr_area_over_mass(self) -> ostk.core.type.Real:
88
+ """
89
+ The CR area over mass.
90
+ """
91
+ @property
92
+ def mass(self) -> ostk.physics.unit.Mass:
93
+ """
94
+ The mass.
95
+ """
96
+ @property
97
+ def observations_available(self) -> ostk.core.type.Integer:
98
+ """
99
+ The number of observations available.
100
+ """
101
+ @property
102
+ def observations_used(self) -> ostk.core.type.Integer:
103
+ """
104
+ The number of observations used.
105
+ """
106
+ @property
107
+ def recommended_od_span(self) -> ostk.physics.time.Duration:
108
+ """
109
+ The recommended OD span.
110
+ """
111
+ @property
112
+ def residuals_accepted(self) -> ostk.core.type.Real:
113
+ """
114
+ The residuals accepted.
115
+ """
116
+ @property
117
+ def sedr(self) -> ostk.core.type.Real:
118
+ """
119
+ The SEDR.
120
+ """
121
+ @property
122
+ def state(self) -> ostk.astrodynamics.trajectory.State:
123
+ """
124
+ The state.
125
+ """
126
+ @property
127
+ def thrust_acceleration(self) -> ostk.core.type.Real:
128
+ """
129
+ The thrust acceleration.
130
+ """
131
+ @property
132
+ def time_last_observation_end(self) -> ostk.physics.time.Instant:
133
+ """
134
+ The time of the last observation end.
135
+ """
136
+ @property
137
+ def time_last_observation_start(self) -> ostk.physics.time.Instant:
138
+ """
139
+ The time of the last observation start.
140
+ """
141
+ @property
142
+ def tracks_available(self) -> ostk.core.type.Integer:
143
+ """
144
+ The number of tracks available.
145
+ """
146
+ @property
147
+ def tracks_used(self) -> ostk.core.type.Integer:
148
+ """
149
+ The number of tracks used.
150
+ """
151
+ @property
152
+ def weighted_rms(self) -> ostk.core.type.Real:
153
+ """
154
+ The weighted RMS.
155
+ """
156
+ class Header:
157
+ """
158
+
159
+ Conjunction Data Message header.
160
+
161
+ Ref: https://public.ccsds.org/Pubs/508x0b1e2s.pdf
162
+
163
+
164
+ """
165
+ def __init__(self, *, ccsds_cdm_version: ostk.core.type.String, comment: ostk.core.type.String = ..., creation_date: ostk.physics.time.Instant, originator: ostk.core.type.String, message_for: ostk.core.type.String = ..., message_id: ostk.core.type.String) -> None:
166
+ """
167
+ Constructor.
168
+
169
+ Args:
170
+ ccsds_cdm_version (str): The CCSDS CDM version.
171
+ comment (str): The comment.
172
+ creation_date (Instant): The creation date.
173
+ originator (str): The originator.
174
+ message_for (str): The message for.
175
+ message_id (str): The message ID.
176
+ """
177
+ @property
178
+ def ccsds_cdm_version(self) -> ostk.core.type.String:
179
+ """
180
+ The CCSDS CDM version.
181
+ """
182
+ @property
183
+ def comment(self) -> ostk.core.type.String:
184
+ """
185
+ The comment.
186
+ """
187
+ @property
188
+ def creation_date(self) -> ostk.physics.time.Instant:
189
+ """
190
+ The creation date.
191
+ """
192
+ @property
193
+ def message_for(self) -> ostk.core.type.String:
194
+ """
195
+ The message for.
196
+ """
197
+ @property
198
+ def message_id(self) -> ostk.core.type.String:
199
+ """
200
+ The message ID.
201
+ """
202
+ @property
203
+ def originator(self) -> ostk.core.type.String:
204
+ """
205
+ The originator.
206
+ """
207
+ class Metadata:
208
+ """
209
+
210
+ Conjunction Data Message metadata.
211
+
212
+ Ref: https://public.ccsds.org/Pubs/508x0b1e2s.pdf
213
+
214
+
215
+ """
216
+ def __init__(self, *, comment: ostk.core.type.String = ..., object: ostk.core.type.String, object_designator: ostk.core.type.Integer, catalog_name: ostk.core.type.String = ..., object_name: ostk.core.type.String, international_designator: ostk.core.type.String, object_type: CDM.ObjectType, operator_contact_position: ostk.core.type.String = ..., operator_organization: ostk.core.type.String = ..., operator_phone: ostk.core.type.String = ..., operator_email: ostk.core.type.String = ..., ephemeris_name: ostk.core.type.String, covariance_method: ostk.core.type.String, maneuverable: ostk.core.type.String, orbit_center: ostk.core.type.String = ..., reference_frame: ostk.core.type.String, gravity_model: ostk.core.type.String = ..., atmospheric_model: ostk.core.type.String = ..., n_body_perturbations: ostk.core.type.String = ..., solar_radiation_pressure: bool = False, earth_tides: bool = False, in_track_thrust: bool = False) -> None:
217
+ """
218
+ Constructor.
219
+
220
+ Args:
221
+ comment (str): The comment.
222
+ object (str): The object.
223
+ object_designator (int): The object designator.
224
+ catalog_name (str): The catalog name.
225
+ object_name (str): The object name.
226
+ international_designator (str): The international designator.
227
+ object_type (ObjectType): The object type.
228
+ operator_contact_position (str): The operator contact position.
229
+ operator_organization (str): The operator organization.
230
+ operator_phone (str): The operator phone.
231
+ operator_email (str): The operator email.
232
+ ephemeris_name (str): The ephemeris name.
233
+ covariance_method (str): The covariance method.
234
+ maneuverable (str): The maneuverable.
235
+ orbit_center (str): The orbit center.
236
+ reference_frame (str): The reference frame.
237
+ gravity_model (str): The gravity model.
238
+ atmospheric_model (str): The atmospheric model.
239
+ n_body_perturbations (str): The n-body perturbations.
240
+ solar_radiation_pressure (bool): The solar radiation pressure.
241
+ earth_tides (bool): The earth tides.
242
+ in_track_thrust (bool): The in-track thrust.
243
+ """
244
+ @property
245
+ def atmospheric_model(self) -> ostk.core.type.String:
246
+ """
247
+ The atmospheric model.
248
+ """
249
+ @property
250
+ def catalog_name(self) -> ostk.core.type.String:
251
+ """
252
+ The catalog name.
253
+ """
254
+ @property
255
+ def comment(self) -> ostk.core.type.String:
256
+ """
257
+ The comment.
258
+ """
259
+ @property
260
+ def covariance_method(self) -> ostk.core.type.String:
261
+ """
262
+ The covariance method.
263
+ """
264
+ @property
265
+ def earth_tides(self) -> bool:
266
+ """
267
+ The earth tides.
268
+ """
269
+ @property
270
+ def ephemeris_name(self) -> ostk.core.type.String:
271
+ """
272
+ The ephemeris name.
273
+ """
274
+ @property
275
+ def gravity_model(self) -> ostk.core.type.String:
276
+ """
277
+ The gravity model.
278
+ """
279
+ @property
280
+ def in_track_thrust(self) -> bool:
281
+ """
282
+ The in-track thrust.
283
+ """
284
+ @property
285
+ def international_designator(self) -> ostk.core.type.String:
286
+ """
287
+ The international designator.
288
+ """
289
+ @property
290
+ def maneuverable(self) -> ostk.core.type.String:
291
+ """
292
+ The maneuverable.
293
+ """
294
+ @property
295
+ def n_body_perturbations(self) -> ostk.core.type.String:
296
+ """
297
+ The n-body perturbations.
298
+ """
299
+ @property
300
+ def object(self) -> ostk.core.type.String:
301
+ """
302
+ The object.
303
+ """
304
+ @property
305
+ def object_designator(self) -> ostk.core.type.Integer:
306
+ """
307
+ The object designator.
308
+ """
309
+ @property
310
+ def object_name(self) -> ostk.core.type.String:
311
+ """
312
+ The object name.
313
+ """
314
+ @property
315
+ def object_type(self) -> CDM.ObjectType:
316
+ """
317
+ The object type.
318
+ """
319
+ @property
320
+ def operator_contact_position(self) -> ostk.core.type.String:
321
+ """
322
+ The operator contact position.
323
+ """
324
+ @property
325
+ def operator_email(self) -> ostk.core.type.String:
326
+ """
327
+ The operator email.
328
+ """
329
+ @property
330
+ def operator_organization(self) -> ostk.core.type.String:
331
+ """
332
+ The operator organization.
333
+ """
334
+ @property
335
+ def operator_phone(self) -> ostk.core.type.String:
336
+ """
337
+ The operator phone.
338
+ """
339
+ @property
340
+ def orbit_center(self) -> ostk.core.type.String:
341
+ """
342
+ The orbit center.
343
+ """
344
+ @property
345
+ def reference_frame(self) -> ostk.core.type.String:
346
+ """
347
+ The reference frame.
348
+ """
349
+ @property
350
+ def solar_radiation_pressure(self) -> bool:
351
+ """
352
+ The solar radiation pressure.
353
+ """
354
+ class ObjectType:
355
+ """
356
+
357
+ Object type.
358
+
359
+
360
+ Members:
361
+
362
+ Payload : Payload
363
+
364
+ RocketBody : Rocket Body
365
+
366
+ Debris : Debris
367
+
368
+ Unknown : Unknown
369
+
370
+ Other : Other
371
+ """
372
+ Debris: typing.ClassVar[CDM.ObjectType] # value = <ObjectType.Debris: 2>
373
+ Other: typing.ClassVar[CDM.ObjectType] # value = <ObjectType.Other: 4>
374
+ Payload: typing.ClassVar[CDM.ObjectType] # value = <ObjectType.Payload: 0>
375
+ RocketBody: typing.ClassVar[CDM.ObjectType] # value = <ObjectType.RocketBody: 1>
376
+ Unknown: typing.ClassVar[CDM.ObjectType] # value = <ObjectType.Unknown: 3>
377
+ __members__: typing.ClassVar[dict[str, CDM.ObjectType]] # value = {'Payload': <ObjectType.Payload: 0>, 'RocketBody': <ObjectType.RocketBody: 1>, 'Debris': <ObjectType.Debris: 2>, 'Unknown': <ObjectType.Unknown: 3>, 'Other': <ObjectType.Other: 4>}
378
+ def __eq__(self, other: typing.Any) -> bool:
379
+ ...
380
+ def __getstate__(self) -> int:
381
+ ...
382
+ def __hash__(self) -> int:
383
+ ...
384
+ def __index__(self) -> int:
385
+ ...
386
+ def __init__(self, value: int) -> None:
387
+ ...
388
+ def __int__(self) -> int:
389
+ ...
390
+ def __ne__(self, other: typing.Any) -> bool:
391
+ ...
392
+ def __repr__(self) -> str:
393
+ ...
394
+ def __setstate__(self, state: int) -> None:
395
+ ...
396
+ def __str__(self) -> str:
397
+ ...
398
+ @property
399
+ def name(self) -> str:
400
+ ...
401
+ @property
402
+ def value(self) -> int:
403
+ ...
404
+ class RelativeMetadata:
405
+ """
406
+
407
+ Relative metadata.
408
+
409
+ Ref: https://public.ccsds.org/Pubs/508x0b1e2s.pdf
410
+
411
+
412
+ """
413
+ def __init__(self, *, comment: ostk.core.type.String = ..., time_of_closest_approach: ostk.physics.time.Instant, miss_distance: ostk.physics.unit.Length, relative_position: ostk.physics.coordinate.Position = ..., relative_velocity: ostk.physics.coordinate.Velocity = ..., start_screen_period: ostk.physics.time.Instant, end_screen_period: ostk.physics.time.Instant, screen_volume_frame: ostk.core.type.String = ..., screen_volume_shape: ostk.core.type.String = ..., screen_volume_x: ostk.core.type.Real = ..., screen_volume_y: ostk.core.type.Real = ..., screen_volume_z: ostk.core.type.Real = ..., screen_entry_time: ostk.physics.time.Instant, screen_exit_time: ostk.physics.time.Instant, collision_probability: ostk.core.type.Real, collision_probability_method: ostk.core.type.String) -> None:
414
+ """
415
+ Constructor.
416
+
417
+ Args:
418
+ comment (str): The comment.
419
+ time_of_closest_approach (Instant): The time of closest approach.
420
+ miss_distance (Distance): The miss distance.
421
+ relative_position (Position): The relative position.
422
+ relative_velocity (Velocity): The relative velocity.
423
+ start_screen_period (Instant): The start screen period.
424
+ end_screen_period (Instant): The end screen period.
425
+ screen_volume_frame (str): The screen volume frame.
426
+ screen_volume_shape (str): The screen volume shape.
427
+ screen_volume_x (float): The screen volume x.
428
+ screen_volume_y (float): The screen volume y.
429
+ screen_volume_z (float): The screen volume z.
430
+ screen_entry_time (Instant): The screen entry time.
431
+ screen_exit_time (Instant): The screen exit time.
432
+ collision_probability (Probability): The collision probability.
433
+ collision_probability_method (str): The collision probability method.
434
+ """
435
+ @property
436
+ def collision_probability(self) -> ostk.core.type.Real:
437
+ """
438
+ The collision probability.
439
+ """
440
+ @property
441
+ def collision_probability_method(self) -> ostk.core.type.String:
442
+ """
443
+ The collision probability method.
444
+ """
445
+ @property
446
+ def comment(self) -> ostk.core.type.String:
447
+ """
448
+ The comment.
449
+ """
450
+ @property
451
+ def end_screen_period(self) -> ostk.physics.time.Instant:
452
+ """
453
+ The end screen period.
454
+ """
455
+ @property
456
+ def miss_distance(self) -> ostk.physics.unit.Length:
457
+ """
458
+ The miss distance.
459
+ """
460
+ @property
461
+ def relative_position(self) -> ostk.physics.coordinate.Position:
462
+ """
463
+ The relative position.
464
+ """
465
+ @property
466
+ def relative_velocity(self) -> ostk.physics.coordinate.Velocity:
467
+ """
468
+ The relative velocity.
469
+ """
470
+ @property
471
+ def screen_entry_time(self) -> ostk.physics.time.Instant:
472
+ """
473
+ The screen entry time.
474
+ """
475
+ @property
476
+ def screen_exit_time(self) -> ostk.physics.time.Instant:
477
+ """
478
+ The screen exit time.
479
+ """
480
+ @property
481
+ def screen_volume_frame(self) -> ostk.core.type.String:
482
+ """
483
+ The screen volume frame.
484
+ """
485
+ @property
486
+ def screen_volume_shape(self) -> ostk.core.type.String:
487
+ """
488
+ The screen volume shape.
489
+ """
490
+ @property
491
+ def screen_volume_x(self) -> ostk.core.type.Real:
492
+ """
493
+ The screen volume x.
494
+ """
495
+ @property
496
+ def screen_volume_y(self) -> ostk.core.type.Real:
497
+ """
498
+ The screen volume y.
499
+ """
500
+ @property
501
+ def screen_volume_z(self) -> ostk.core.type.Real:
502
+ """
503
+ The screen volume z.
504
+ """
505
+ @property
506
+ def start_screen_period(self) -> ostk.physics.time.Instant:
507
+ """
508
+ The start screen period.
509
+ """
510
+ @property
511
+ def time_of_closest_approach(self) -> ostk.physics.time.Instant:
512
+ """
513
+ The time of closest approach.
514
+ """
515
+ @staticmethod
516
+ def dictionary(dictionary: ostk.core.container.Dictionary) -> CDM:
517
+ """
518
+ Get the CDM dictionary.
519
+
520
+ Returns:
521
+ Dictionary: The CDM dictionary.
522
+ """
523
+ @staticmethod
524
+ def load(file: ostk.core.filesystem.File) -> CDM:
525
+ """
526
+ Load a CDM from a file.
527
+
528
+ Args:
529
+ file (str): The file to load.
530
+
531
+ Returns:
532
+ CDM: The loaded CDM.
533
+ """
534
+ @staticmethod
535
+ def object_type_from_string(string: ostk.core.type.String) -> CDM.ObjectType:
536
+ """
537
+ Get the object type from a string.
538
+
539
+ Args:
540
+ string (str): The string to get the object type from.
541
+
542
+ Returns:
543
+ CDM::ObjectType: The object type.
544
+ """
545
+ @staticmethod
546
+ def parse(string: ostk.core.type.String) -> CDM:
547
+ """
548
+ Parse a CDM from a string.
549
+
550
+ Args:
551
+ string (str): The string to parse.
552
+
553
+ Returns:
554
+ CDM: The parsed CDM.
555
+ """
556
+ @staticmethod
557
+ def undefined() -> CDM:
558
+ """
559
+ Get an undefined CDM.
560
+
561
+ Returns:
562
+ CDM: An undefined CDM.
563
+ """
564
+ def __init__(self, header: typing.Any, relative_metadata: typing.Any, objects_metadata_array: list[...], objects_data_array: list[...]) -> None:
565
+ """
566
+ Constructor.
567
+
568
+ Args:
569
+ header (CDM::Header): The CDM header.
570
+ relative_metadata (CDM::RelativeMetadata): The relative metadata.
571
+ objects_metadata_array (Array<CDM::Metadata>): The objects metadata array.
572
+ objects_data_array (Array<CDM::Data>): The objects data array.
573
+ """
574
+ def get_ccsds_cdm_version(self) -> ostk.core.type.String:
575
+ """
576
+ Get the CCSDS CDM version.
577
+
578
+ Returns:
579
+ str: The CCSDS CDM version.
580
+ """
581
+ def get_collision_probability(self) -> ostk.core.type.Real:
582
+ """
583
+ Get the collision probability.
584
+
585
+ Returns:
586
+ Probability: The collision probability.
587
+ """
588
+ def get_collision_probability_method(self) -> ostk.core.type.String:
589
+ """
590
+ Get the collision probability method.
591
+
592
+ Returns:
593
+ str: The collision probability method.
594
+ """
595
+ def get_creation_instant(self) -> ostk.physics.time.Instant:
596
+ """
597
+ Get the creation instant.
598
+
599
+ Returns:
600
+ Instant: The creation instant.
601
+ """
602
+ def get_data_array(self) -> list[...]:
603
+ """
604
+ Get the objects data array.
605
+
606
+ Returns:
607
+ Array<CDM::Data>: The objects data array.
608
+ """
609
+ def get_header(self) -> ...:
610
+ """
611
+ Get the CDM header.
612
+
613
+ Returns:
614
+ CDM::Header: The CDM header.
615
+ """
616
+ def get_message_for(self) -> ostk.core.type.String:
617
+ """
618
+ Get the message for.
619
+
620
+ Returns:
621
+ str: The message for.
622
+ """
623
+ def get_message_id(self) -> ostk.core.type.String:
624
+ """
625
+ Get the message ID.
626
+
627
+ Returns:
628
+ str: The message ID.
629
+ """
630
+ def get_metadata_array(self) -> list[...]:
631
+ """
632
+ Get the objects metadata array.
633
+
634
+ Returns:
635
+ Array<CDM::Metadata>: The objects metadata array.
636
+ """
637
+ def get_miss_distance(self) -> ostk.physics.unit.Length:
638
+ """
639
+ Get the miss distance.
640
+
641
+ Returns:
642
+ Distance: The miss distance.
643
+ """
644
+ def get_object_data_at(self, index: int) -> ...:
645
+ """
646
+ Get the object data at the specified index.
647
+
648
+ Args:
649
+ index (int): The index of the object data.
650
+
651
+ Returns:
652
+ Data: The object data.
653
+ """
654
+ def get_object_metadata_at(self, index: int) -> ...:
655
+ """
656
+ Get the object metadata at the specified index.
657
+
658
+ Args:
659
+ index (int): The index of the object metadata.
660
+
661
+ Returns:
662
+ CDM::Metadata: The object metadata.
663
+ """
664
+ def get_originator(self) -> ostk.core.type.String:
665
+ """
666
+ Get the originator.
667
+
668
+ Returns:
669
+ str: The originator.
670
+ """
671
+ def get_relative_metadata(self) -> ...:
672
+ """
673
+ Get the relative metadata.
674
+
675
+ Returns:
676
+ CDM::RelativeMetadata: The relative metadata.
677
+ """
678
+ def get_relative_position(self) -> ostk.physics.coordinate.Position:
679
+ """
680
+ Get the relative position.
681
+
682
+ Returns:
683
+ Position: The relative position.
684
+ """
685
+ def get_relative_velocity(self) -> ostk.physics.coordinate.Velocity:
686
+ """
687
+ Get the relative velocity.
688
+
689
+ Returns:
690
+ Velocity: The relative velocity.
691
+ """
692
+ def get_time_of_closest_approach(self) -> ostk.physics.time.Instant:
693
+ """
694
+ Get the time of closest approach.
695
+
696
+ Returns:
697
+ Instant: The time of closest approach.
698
+ """
699
+ def is_defined(self) -> bool:
700
+ """
701
+ Check if the CDM is defined.
702
+
703
+ Returns:
704
+ bool: True if the CDM is defined, False otherwise.
705
+ """