open-space-toolkit-astrodynamics 15.0.0__py39-none-manylinux2014_x86_64.whl → 15.2.0__py39-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.
@@ -24,11 +24,16 @@ from ostk.physics.coordinate import Frame
24
24
  from ostk.physics.coordinate.spherical import LLA
25
25
 
26
26
  from ostk.astrodynamics.flight import Profile
27
+ from ostk.astrodynamics.trajectory import Orbit
27
28
  from ostk.astrodynamics.trajectory import State
28
29
 
29
30
  from .converters import coerce_to_datetime
30
31
  from .utilities import lla_from_position
31
32
 
33
+ DEFAULT_SATELLITE_IMAGE: str = (
34
+ "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADJSURBVDhPnZHRDcMgEEMZjVEYpaNklIzSEfLfD4qNnXAJSFWfhO7w2Zc0Tf9QG2rXrEzSUeZLOGm47WoH95x3Hl3jEgilvDgsOQUTqsNl68ezEwn1vae6lceSEEYvvWNT/Rxc4CXQNGadho1NXoJ+9iaqc2xi2xbt23PJCDIB6TQjOC6Bho/sDy3fBQT8PrVhibU7yBFcEPaRxOoeTwbwByCOYf9VGp1BYI1BA+EeHhmfzKbBoJEQwn1yzUZtyspIQUha85MpkNIXB7GizqDEECsAAAAASUVORK5CYII="
35
+ )
36
+
32
37
 
33
38
  @dataclass
34
39
  class Sensor:
@@ -57,6 +62,8 @@ class Viewer:
57
62
  cesium_token: str | None = None,
58
63
  width: str = "1500px",
59
64
  height: str = "800px",
65
+ zoom_to_entity: bool = True,
66
+ track_entity: bool = True,
60
67
  ) -> None:
61
68
  self._interval: Interval = interval
62
69
 
@@ -81,8 +88,8 @@ class Viewer:
81
88
  scene_mode_picker=False,
82
89
  selection_indicator=False,
83
90
  scene3d_only=True,
84
- zoom_to_entity=True,
85
- track_entity=True,
91
+ zoom_to_entity=zoom_to_entity,
92
+ track_entity=track_entity,
86
93
  default_access_token=cesium_token,
87
94
  )
88
95
 
@@ -90,6 +97,73 @@ class Viewer:
90
97
  def interval(self) -> Interval:
91
98
  return self._interval
92
99
 
100
+ def add_orbit(
101
+ self,
102
+ orbit: Orbit,
103
+ step: Duration,
104
+ name: str = "Satellite",
105
+ show_orbital_track: bool = False,
106
+ color: str | None = None,
107
+ image: str | None = None,
108
+ ) -> None:
109
+ """
110
+ Add Orbit to Viewer.
111
+
112
+ Args:
113
+ orbit (Orbit): Orbit to be added.
114
+ step (Duration): Step between two consecutive states.
115
+ name (str, optional): Name of the orbit. Defaults to "Satellite".
116
+ show_orbital_track (bool, optional): Whether to show the orbital track. Defaults to False.
117
+ color (str, optional): Color of the orbit. Defaults to None.
118
+ image (str, optional): Logo to be added. Defaults to None.
119
+ """
120
+ instants: list[Instant] = self._interval.generate_grid(step)
121
+ states: list[State] = orbit.get_states_at(instants)
122
+ llas: list[LLA] = _generate_llas(states)
123
+
124
+ cesium_positions: cesiumpy.SampledPositionProperty = (
125
+ _generate_sampled_position_from_states(states)
126
+ )
127
+
128
+ self._viewer.entities.add(
129
+ cesiumpy.Billboard(
130
+ name=name,
131
+ position=cesium_positions,
132
+ image=image or DEFAULT_SATELLITE_IMAGE,
133
+ )
134
+ )
135
+
136
+ self._viewer.entities.add(
137
+ cesiumpy.Label(
138
+ position=cesium_positions,
139
+ text=name,
140
+ scale=1.0,
141
+ fill_color=color or cesiumpy.color.WHITE,
142
+ pixel_offset=[0.0, 20.0],
143
+ )
144
+ )
145
+
146
+ if show_orbital_track:
147
+ self._viewer.entities.add(
148
+ cesiumpy.Polyline(
149
+ positions=cesiumpy.entities.cartesian.Cartesian3Array(
150
+ functools.reduce(
151
+ operator.iconcat,
152
+ [
153
+ [
154
+ float(lla.get_longitude().in_degrees()),
155
+ float(lla.get_latitude().in_degrees()),
156
+ float(lla.get_altitude().in_meters()),
157
+ ]
158
+ for lla in llas
159
+ ],
160
+ [],
161
+ )
162
+ ),
163
+ width=1,
164
+ )
165
+ )
166
+
93
167
  def add_profile(
94
168
  self,
95
169
  profile: Profile,
@@ -144,7 +218,7 @@ class Viewer:
144
218
  )
145
219
 
146
220
  satellite = cesiumpy.Satellite(
147
- position=_generate_sampled_position(instants, llas),
221
+ position=_generate_sampled_position_from_llas(instants, llas),
148
222
  orientation=_generate_sampled_orientation(states),
149
223
  availability=cesiumpy.TimeIntervalCollection(
150
224
  intervals=[
@@ -294,7 +368,7 @@ def _generate_llas(states: list[State]) -> list[LLA]:
294
368
  ]
295
369
 
296
370
 
297
- def _generate_sampled_position(
371
+ def _generate_sampled_position_from_llas(
298
372
  instants: list[Instant],
299
373
  llas: list[LLA],
300
374
  ) -> cesiumpy.SampledPositionProperty:
@@ -344,6 +418,33 @@ def _generate_sampled_orientation(states: list[State]) -> cesiumpy.SampledProper
344
418
  )
345
419
 
346
420
 
421
+ def _generate_sampled_position_from_states(
422
+ states: list[State],
423
+ ) -> cesiumpy.SampledPositionProperty:
424
+ """
425
+ Generate a sampled position property from a list of OSTk States.
426
+
427
+ Args:
428
+ states (list[State]): A list of OSTk States.
429
+
430
+ Returns:
431
+ cesiumpy.SampledPositionProperty: Sampled position property.
432
+ """
433
+
434
+ return cesiumpy.SampledPositionProperty(
435
+ samples=[
436
+ (
437
+ coerce_to_datetime(state.get_instant()),
438
+ _cesium_from_ostk_position(
439
+ position=state.in_frame(Frame.ITRF()).get_position()
440
+ ),
441
+ None,
442
+ )
443
+ for state in states
444
+ ],
445
+ )
446
+
447
+
347
448
  def _cesium_from_ostk_position(
348
449
  position: Position,
349
450
  instant: Instant | None = None,