Skip to content

Commit

Permalink
ensure orbits_abberated is an Orbits (sometimes it was becoming Varia…
Browse files Browse the repository at this point in the history
…ntOrbits) (#128)
  • Loading branch information
ntellis authored Dec 6, 2024
1 parent 8fda15b commit 45907c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adam_core/propagator/propagator.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def _add_light_time(
lt_tol: float = 1e-12,
max_iter: int = 10,
):
orbits_aberrated = orbits.empty()
orbits_aberrated = Orbits.empty()
lts = np.zeros(len(orbits))
for i, (orbit, observer) in enumerate(zip(orbits, observers)):
# Set the running variables
Expand Down

0 comments on commit 45907c1

Please sign in to comment.