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

docs: clarify altitude definition in Orbit constructors #475

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ inline void OpenSpaceToolkitAstrodynamicsPy_Trajectory_Orbit(pybind11::module& a
Args:
epoch (Instant): The epoch.
altitude (Length): The altitude.
altitude (Length): The altitude (wrt. equatorial radius).
inclination (Angle): The inclination.
celestial_object (Celestial): The celestial object.
Expand All @@ -303,8 +303,8 @@ inline void OpenSpaceToolkitAstrodynamicsPy_Trajectory_Orbit(pybind11::module& a
Args:
epoch (Instant): The epoch.
apoapsis_altitude (Length): The apoapsis altitude.
periapsis_altitude (Length): The periapsis altitude.
apoapsis_altitude (Length): The apoapsis altitude (wrt. equatorial radius).
periapsis_altitude (Length): The periapsis altitude (wrt. equatorial radius).
celestial_object (Celestial): The celestial object.
Returns:
Expand All @@ -323,7 +323,7 @@ inline void OpenSpaceToolkitAstrodynamicsPy_Trajectory_Orbit(pybind11::module& a
Args:
epoch (Instant): The epoch.
altitude (Length): The altitude.
altitude (Length): The altitude (wrt. equatorial radius).
celestial_object (Celestial): The celestial object.
Returns:
Expand Down Expand Up @@ -365,7 +365,7 @@ inline void OpenSpaceToolkitAstrodynamicsPy_Trajectory_Orbit(pybind11::module& a
Args:
epoch (Instant): The epoch.
altitude (Length): The altitude.
altitude (Length): The altitude (wrt. equatorial radius).
local_time_at_descending_node (Time): The local time at descending node.
celestial_object (Celestial): The celestial object.
argument_of_latitude (Angle): The argument of latitude.
Expand Down Expand Up @@ -410,7 +410,7 @@ inline void OpenSpaceToolkitAstrodynamicsPy_Trajectory_Orbit(pybind11::module& a
Args:
epoch (Instant): The epoch.
altitude (Length): The altitude.
altitude (Length): The altitude (wrt. equatorial radius).
celestial_object (Celestial): The celestial object.
eccentricity (float): The eccentricity.
inclination (Angle): The inclination.
Expand Down
Loading