-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port iod/od from THOR to adam_core (#125)
* basic tests and od/iod port * wip for testing fresh clone * working tests * placating formatter * revisions to pyproject to support editable dev install of adam-assist * Update _version.py attempts to appease linter * remove _version.py and add to gitignore
- Loading branch information
Showing
14 changed files
with
2,419 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
# flake8: noqa: F401 | ||
from .differential_correction import fit_least_squares | ||
from .evaluate import OrbitDeterminationObservations, evaluate_orbits | ||
from .fitted_orbits import FittedOrbitMembers, FittedOrbits | ||
from .outliers import remove_lowest_probability_observation | ||
from .fitted_orbits import FittedOrbitMembers, FittedOrbits, drop_duplicate_orbits | ||
from .gauss import gaussIOD | ||
from .gibbs import calcGibbs | ||
from .herrick_gibbs import calcHerrickGibbs | ||
from .iod import ( | ||
initial_orbit_determination, | ||
iod, | ||
select_observations, | ||
sort_by_id_and_time, | ||
) | ||
from .outliers import calculate_max_outliers, remove_lowest_probability_observation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.