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
74d9b0d2
Commit
74d9b0d2
authored
11 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
New global test (temporary, much too computing intensive).
parent
1d212e0e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rugged-core/src/test/java/org/orekit/rugged/core/RuggedImplTest.java
+61
-2
61 additions, 2 deletions
.../src/test/java/org/orekit/rugged/core/RuggedImplTest.java
with
61 additions
and
2 deletions
rugged-core/src/test/java/org/orekit/rugged/core/RuggedImplTest.java
+
61
−
2
View file @
74d9b0d2
...
@@ -18,10 +18,16 @@ package org.orekit.rugged.core;
...
@@ -18,10 +18,16 @@ package org.orekit.rugged.core;
import
java.io.File
;
import
java.io.File
;
import
java.io.IOException
;
import
java.io.PrintStream
;
import
java.net.URISyntaxException
;
import
java.net.URISyntaxException
;
import
java.util.ArrayList
;
import
java.util.Arrays
;
import
java.util.Arrays
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Locale
;
import
org.apache.commons.math3.geometry.euclidean.threed.Rotation
;
import
org.apache.commons.math3.geometry.euclidean.threed.Vector3D
;
import
org.apache.commons.math3.ode.nonstiff.DormandPrince853Integrator
;
import
org.apache.commons.math3.ode.nonstiff.DormandPrince853Integrator
;
import
org.apache.commons.math3.util.FastMath
;
import
org.apache.commons.math3.util.FastMath
;
import
org.junit.Assert
;
import
org.junit.Assert
;
...
@@ -49,6 +55,10 @@ import org.orekit.orbits.PositionAngle;
...
@@ -49,6 +55,10 @@ import org.orekit.orbits.PositionAngle;
import
org.orekit.propagation.Propagator
;
import
org.orekit.propagation.Propagator
;
import
org.orekit.propagation.SpacecraftState
;
import
org.orekit.propagation.SpacecraftState
;
import
org.orekit.propagation.numerical.NumericalPropagator
;
import
org.orekit.propagation.numerical.NumericalPropagator
;
import
org.orekit.rugged.api.GroundPoint
;
import
org.orekit.rugged.api.LineDatation
;
import
org.orekit.rugged.api.LinearLineDatation
;
import
org.orekit.rugged.api.PixelLOS
;
import
org.orekit.rugged.api.Rugged
;
import
org.orekit.rugged.api.Rugged
;
import
org.orekit.rugged.api.RuggedException
;
import
org.orekit.rugged.api.RuggedException
;
import
org.orekit.rugged.api.SatellitePV
;
import
org.orekit.rugged.api.SatellitePV
;
...
@@ -167,9 +177,46 @@ public class RuggedImplTest {
...
@@ -167,9 +177,46 @@ public class RuggedImplTest {
new
VolcanicConeElevationUpdater
(
summit
,
new
VolcanicConeElevationUpdater
(
summit
,
FastMath
.
toRadians
(
30.0
),
16.0
,
FastMath
.
toRadians
(
30.0
),
16.0
,
FastMath
.
toRadians
(
1.0
),
1201
);
FastMath
.
toRadians
(
1.0
),
1201
);
AbsoluteDate
crossing
=
new
AbsoluteDate
(
"2012-01-06T02:27:16.139"
,
TimeScalesFactory
.
getUTC
());
final
AbsoluteDate
crossing
=
new
AbsoluteDate
(
"2012-01-06T02:27:16.139"
,
TimeScalesFactory
.
getUTC
());
// TODO: test the direct localization
RuggedImpl
rugged
=
new
RuggedImpl
();
rugged
.
setGeneralContext
(
null
,
crossing
,
Rugged
.
Algorithm
.
DUVENHAGE
,
Rugged
.
Ellipsoid
.
WGS84
,
Rugged
.
InertialFrame
.
EME2000
,
Rugged
.
BodyRotatingFrame
.
ITRF
,
propagator
);
rugged
.
setUpTilesManagement
(
updater
,
8
);
// one line sensor
// position: 1.5m in front (+X) and 20 cm above (-Z) of the S/C center of mass
// los: swath in the (YZ) plane, centered at +Z, ±10° aperture, 4800 pixels
List
<
PixelLOS
>
los
=
createLOS
(
new
Vector3D
(
1.5
,
0
,
-
0.2
),
Vector3D
.
PLUS_K
,
Vector3D
.
PLUS_I
,
FastMath
.
toRadians
(
10.0
),
4800
);
// linear datation model: at reference time we get line 1000, and the rate is one line every 1.5ms
LineDatation
lineDatation
=
new
LinearLineDatation
(
1000.0
,
1.0
/
1.5
e
-
3
);
rugged
.
setSensor
(
"line"
,
los
,
lineDatation
);
try
{
PrintStream
out
=
new
PrintStream
(
new
File
(
new
File
(
System
.
getProperty
(
"user.home"
)),
"x.dat"
));
long
t0
=
System
.
currentTimeMillis
();
for
(
double
line
=
-
1400
;
line
<
3400
;
line
++)
{
GroundPoint
[]
gp
=
rugged
.
directLocalization
(
"line"
,
line
);
for
(
int
i
=
0
;
i
<
gp
.
length
;
++
i
)
{
out
.
format
(
Locale
.
US
,
"%6.1f %3d %9.3f%n"
,
line
,
i
,
gp
[
i
].
getAltitude
());
}
out
.
println
();
System
.
out
.
println
(
line
);
}
long
t1
=
System
.
currentTimeMillis
();
out
.
close
();
System
.
out
.
println
((
t1
-
t0
)
+
" ms"
);
}
catch
(
IOException
ioe
)
{
Assert
.
fail
(
ioe
.
getLocalizedMessage
());
}
}
}
...
@@ -267,5 +314,17 @@ public class RuggedImplTest {
...
@@ -267,5 +314,17 @@ public class RuggedImplTest {
}
}
private
List
<
PixelLOS
>
createLOS
(
Vector3D
offset
,
Vector3D
center
,
Vector3D
normal
,
double
halfAperture
,
int
n
)
{
List
<
PixelLOS
>
list
=
new
ArrayList
<
PixelLOS
>(
n
);
for
(
int
i
=
0
;
i
<
n
;
++
i
)
{
double
alpha
=
(
halfAperture
*
(
2
*
i
+
1
-
n
))
/
(
n
-
1
);
Vector3D
los
=
new
Rotation
(
normal
,
alpha
).
applyTo
(
center
);
list
.
add
(
new
PixelLOS
(
offset
.
getX
(),
offset
.
getY
(),
offset
.
getZ
(),
los
.
getX
(),
los
.
getY
(),
los
.
getZ
()));
}
return
list
;
}
}
}
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