Skip to content

Commit

Permalink
add covariance
Browse files Browse the repository at this point in the history
  • Loading branch information
akoumjian committed May 10, 2024
1 parent 8afb136 commit 6b93706
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions adam_core/dynamics/tests/test_impacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ def test_calculate_impacts():
time=Timestamp.from_iso8601(["2020-01-01T00:00:00"] * 3),
origin=Origin.from_kwargs(code=["SUN"] * 3),
frame="ecliptic",
covariance=CoordinateCovariances.from_sigmas(
np.array(
[
[1.0, 1.0, 1.0, 1.0, 1.0, 1.0],
[1.0, 1.0, 1.0, 1.0, 1.0, 1.0],
[1.0, 1.0, 1.0, 1.0, 1.0, 1.0],
]
)
),
),
)

Expand Down

0 comments on commit 6b93706

Please sign in to comment.