Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rugged
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Orekit
Rugged
Commits
163ec709
Commit
163ec709
authored
10 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
New inverse localization performance improvement.
parent
dd1c79a5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/orekit/rugged/api/SensorMeanPlaneCrossing.java
+17
-20
17 additions, 20 deletions
...n/java/org/orekit/rugged/api/SensorMeanPlaneCrossing.java
with
17 additions
and
20 deletions
src/main/java/org/orekit/rugged/api/SensorMeanPlaneCrossing.java
+
17
−
20
View file @
163ec709
...
...
@@ -16,7 +16,7 @@
*/
package
org.orekit.rugged.api
;
import
java.util.Array
s
;
import
java.util.Array
List
;
import
java.util.List
;
import
org.apache.commons.math3.analysis.differentiation.DerivativeStructure
;
...
...
@@ -33,17 +33,11 @@ import org.orekit.utils.PVCoordinates;
/** Class dedicated to when ground point crosses mean sensor plane. */
class
SensorMeanPlaneCrossing
{
/** Converter between spacecraft and body. */
private
final
SpacecraftToObservedBody
scToBody
;
/** Line numbers of the middle sample point. */
private
final
double
midLine
;
/** Transforms sample from observed body frame to inertial frame. */
private
final
List
<
Transform
>
bodyToInertial
;
/** Transform
from inertial frame to spacecraft frame, for middle lin
e. */
private
final
Transform
midLineS
cToInert
;
/** Transform
s sample from spacecraft frame to inertial fram
e. */
private
final
List
<
Transform
>
s
cToInert
ial
;
/** Minimum line number in the search interval. */
private
final
int
minLine
;
...
...
@@ -87,7 +81,6 @@ class SensorMeanPlaneCrossing {
try
{
this
.
sensor
=
sensor
;
this
.
scToBody
=
scToBody
;
this
.
minLine
=
minLine
;
this
.
maxLine
=
maxLine
;
this
.
lightTimeCorrection
=
lightTimeCorrection
;
...
...
@@ -95,11 +88,13 @@ class SensorMeanPlaneCrossing {
this
.
maxEval
=
maxEval
;
this
.
accuracy
=
accuracy
;
midLine
=
0.5
*
(
minLine
+
maxLine
);
bodyToInertial
=
Arrays
.
asList
(
scToBody
.
getInertialToBody
(
sensor
.
getDate
(
minLine
)).
getInverse
(),
scToBody
.
getInertialToBody
(
sensor
.
getDate
(
midLine
)).
getInverse
(),
scToBody
.
getInertialToBody
(
sensor
.
getDate
(
maxLine
)).
getInverse
());
midLineScToInert
=
scToBody
.
getScToInertial
(
sensor
.
getDate
(
midLine
));
bodyToInertial
=
new
ArrayList
<
Transform
>(
maxLine
-
minLine
+
1
);
scToInertial
=
new
ArrayList
<
Transform
>(
maxLine
-
minLine
+
1
);
for
(
int
line
=
minLine
;
line
<=
maxLine
;
++
line
)
{
final
AbsoluteDate
date
=
sensor
.
getDate
(
line
);
bodyToInertial
.
add
(
scToBody
.
getInertialToBody
(
date
).
getInverse
());
scToInertial
.
add
(
scToBody
.
getScToInertial
(
date
));
}
}
catch
(
OrekitException
oe
)
{
throw
new
RuggedException
(
oe
,
oe
.
getSpecifier
(),
oe
.
getParts
());
...
...
@@ -174,9 +169,10 @@ class SensorMeanPlaneCrossing {
// as we know the solution is improved in the second stage of inverse localization.
// We expect two or three evaluations only. Each new evaluation shows up quickly in
// the performances as it involves frames conversions
double
crossingLine
=
midLine
;
Transform
bodyToInert
=
bodyToInertial
.
get
(
1
);
Transform
scToInert
=
midLineScToInert
;
final
int
midIndex
=
bodyToInertial
.
size
()
/
2
;
double
crossingLine
=
minLine
+
midIndex
;
Transform
bodyToInert
=
bodyToInertial
.
get
(
midIndex
);
Transform
scToInert
=
scToInertial
.
get
(
midIndex
);
boolean
atMin
=
false
;
boolean
atMax
=
false
;
for
(
int
i
=
0
;
i
<
maxEval
;
++
i
)
{
...
...
@@ -214,9 +210,10 @@ class SensorMeanPlaneCrossing {
atMax
=
false
;
}
final
int
inf
=
FastMath
.
max
(
0
,
FastMath
.
min
(
scToInertial
.
size
()
-
2
,
(
int
)
FastMath
.
floor
(
crossingLine
)));
final
AbsoluteDate
date
=
sensor
.
getDate
(
crossingLine
);
bodyToInert
=
Transform
.
interpolate
(
date
,
true
,
tru
e
,
bodyToInertial
);
scToInert
=
scToBody
.
getScToInertial
(
date
);
bodyToInert
=
Transform
.
interpolate
(
date
,
false
,
fals
e
,
bodyToInertial
.
subList
(
inf
,
inf
+
2
)
);
scToInert
=
Transform
.
interpolate
(
date
,
false
,
false
,
scToInertial
.
subList
(
inf
,
inf
+
2
)
);
}
return
null
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment