Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new function geodetic_2_ecef #98

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

new function geodetic_2_ecef #98

wants to merge 1 commit into from

Conversation

plutonheaven
Copy link
Collaborator

Simple conversion function between geodetic coordinates and Cartesian coordinates.

def test_geodetic_2_ecef():
tolerance_ecef = 1e-3

expected_ecef = [6378137.0, 0.0, 0.0]
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it make sense here to put

 computed_ecef = helpers.geodetic_2_ecef(
        expected_geodetic[0], expected_geodetic[1], expected_geodetic[2]
    )
    assert (
        np.linalg.norm(np.array(expected_ecef) - np.array(computed_ecef))
        < tolerance_ecef
    )

into a loop or helper function?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants