You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 14, 2023. It is now read-only.
Just found a small error in the R_polar_jupiter constant from the poliastro.constants.general module. Value should be 6.6854e7 and not 6.6854.
The following code should solve the problem:
R_polar_jupiter=Constant(
"R_polar_jupiter",
"Jupiter polar radius",
6.6854e7,
"m",
10000,
"IAU Working Group on Cartographic Coordinates and Rotational Elements: 2009",
system="si",
)
🐞 Problem
Just found a small error in the
R_polar_jupiterconstant from thepoliastro.constants.generalmodule. Value should be6.6854e7and not6.6854.The following code should solve the problem: