Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Orekit
Orekit
Commits
fe9c002d
Commit
fe9c002d
authored
Dec 04, 2022
by
Romain Serra
Browse files
Fixed issue
#980
parent
4948fa11
Pipeline
#2730
passed with stages
in 32 minutes and 57 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/changes/changes.xml
View file @
fe9c002d
...
...
@@ -20,6 +20,9 @@
<title>
Orekit Changes
</title>
</properties>
<body>
<action
dev=
"serrof"
type=
"fix"
issue=
"980"
>
Fixed wrong wrapper in deprecated KeplerianOrbit's and FieldKeplerianOrbit's methods for anomaly conversions.
</action>
<release
version=
"11.3"
date=
"2022-10-25"
description=
"Version 11.3 is a minor release of Orekit.
It includes both new features and bug fixes. New features introduced in 11.3 are:
...
...
src/main/java/org/orekit/orbits/FieldKeplerianOrbit.java
View file @
fe9c002d
...
...
@@ -622,10 +622,10 @@ public class FieldKeplerianOrbit<T extends CalculusFieldElement<T>> extends Fiel
* @param <T> type of the field elements
* @return v the true anomaly
* @deprecated As of 11.3, replaced by
* {@link FieldKeplerianAnomalyUtility#ellipticEccentricTo
Mean
(CalculusFieldElement, CalculusFieldElement)}.
* {@link FieldKeplerianAnomalyUtility#ellipticEccentricTo
True
(CalculusFieldElement, CalculusFieldElement)}.
*/
public
static
<
T
extends
CalculusFieldElement
<
T
>>
T
ellipticEccentricToTrue
(
final
T
E
,
final
T
e
)
{
return
FieldKeplerianAnomalyUtility
.
ellipticEccentricTo
Mean
(
e
,
E
);
return
FieldKeplerianAnomalyUtility
.
ellipticEccentricTo
True
(
e
,
E
);
}
/** Computes the elliptic eccentric anomaly from the true anomaly.
...
...
src/main/java/org/orekit/orbits/KeplerianOrbit.java
View file @
fe9c002d
...
...
@@ -611,7 +611,7 @@ public class KeplerianOrbit extends Orbit {
* @deprecated As of 11.3, replaced by {@link KeplerianAnomalyUtility#ellipticMeanToEccentric(double, double)}.
*/
public
static
double
meanToEllipticEccentric
(
final
double
M
,
final
double
e
)
{
return
KeplerianAnomalyUtility
.
ellipticEccentric
ToMean
(
e
,
M
);
return
KeplerianAnomalyUtility
.
elliptic
MeanTo
Eccentric
(
e
,
M
);
}
/** Computes the mean anomaly from the elliptic eccentric anomaly.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment