-
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.
Delete unused code and remove private stuff from public APIs
- Loading branch information
Showing
17 changed files
with
20 additions
and
775 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,11 @@ | ||
# flake8: noqa: F401 | ||
from .cartesian import CARTESIAN_COLS, CARTESIAN_UNITS, CartesianCoordinates | ||
from .cometary import COMETARY_COLS, COMETARY_UNITS, CometaryCoordinates | ||
from .conversions import convert_coordinates | ||
from .covariances import ( | ||
CoordinateCovariances, | ||
covariances_from_df, | ||
covariances_to_df, | ||
covariances_to_table, | ||
sample_covariance_random, | ||
sample_covariance_sigma_points, | ||
sigmas_from_df, | ||
sigmas_to_df, | ||
transform_covariances_jacobian, | ||
transform_covariances_sampling, | ||
weighted_covariance, | ||
weighted_mean, | ||
) | ||
from .jacobian import calc_jacobian | ||
from .keplerian import KEPLERIAN_COLS, KEPLERIAN_UNITS, KeplerianCoordinates | ||
from .origin import Origin, OriginCodes, OriginGravitationalParameters | ||
from .residuals import Residuals | ||
from .spherical import SPHERICAL_COLS, SPHERICAL_UNITS, SphericalCoordinates | ||
from .times import Times | ||
from .transform import ( | ||
_cartesian_to_cometary, | ||
_cartesian_to_keplerian, | ||
_cartesian_to_keplerian6, | ||
_cartesian_to_spherical, | ||
_cometary_to_cartesian, | ||
_keplerian_to_cartesian_a, | ||
_keplerian_to_cartesian_p, | ||
_keplerian_to_cartesian_q, | ||
_spherical_to_cartesian, | ||
cartesian_to_cometary, | ||
cartesian_to_keplerian, | ||
cartesian_to_spherical, | ||
cometary_to_cartesian, | ||
keplerian_to_cartesian, | ||
spherical_to_cartesian, | ||
transform_coordinates, | ||
) | ||
from .variants import create_coordinate_variants | ||
from .cartesian import CartesianCoordinates | ||
from .cometary import CometaryCoordinates | ||
from .covariances import CoordinateCovariances | ||
from .keplerian import KeplerianCoordinates | ||
from .origin import Origin, OriginCodes | ||
from .spherical import SphericalCoordinates | ||
from .transform import transform_coordinates | ||
|
||
# TODO: move this to an 'experimental' module | ||
# from .residuals import Residuals |
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.
Oops, something went wrong.