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
c512330e
Commit
c512330e
authored
11 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Added writing of grid file to full test.
parent
7deb441d
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
src/test/java/org/orekit/rugged/core/RuggedImplTest.java
+37
-13
37 additions, 13 deletions
src/test/java/org/orekit/rugged/core/RuggedImplTest.java
with
37 additions
and
13 deletions
src/test/java/org/orekit/rugged/core/RuggedImplTest.java
+
37
−
13
View file @
c512330e
...
@@ -19,8 +19,10 @@ package org.orekit.rugged.core;
...
@@ -19,8 +19,10 @@ package org.orekit.rugged.core;
import
java.io.File
;
import
java.io.File
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.io.
PrintStream
;
import
java.io.
RandomAccessFile
;
import
java.net.URISyntaxException
;
import
java.net.URISyntaxException
;
import
java.nio.MappedByteBuffer
;
import
java.nio.channels.FileChannel
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.Arrays
;
import
java.util.Arrays
;
import
java.util.List
;
import
java.util.List
;
...
@@ -31,7 +33,9 @@ import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
...
@@ -31,7 +33,9 @@ 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
;
import
org.junit.Rule
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.junit.rules.TemporaryFolder
;
import
org.orekit.attitudes.AttitudeProvider
;
import
org.orekit.attitudes.AttitudeProvider
;
import
org.orekit.attitudes.NadirPointing
;
import
org.orekit.attitudes.NadirPointing
;
import
org.orekit.attitudes.YawCompensation
;
import
org.orekit.attitudes.YawCompensation
;
...
@@ -72,6 +76,9 @@ import org.orekit.utils.IERSConventions;
...
@@ -72,6 +76,9 @@ import org.orekit.utils.IERSConventions;
public
class
RuggedImplTest
{
public
class
RuggedImplTest
{
@Rule
public
TemporaryFolder
tempFolder
=
new
TemporaryFolder
();
@Test
@Test
public
void
testSetContextWithoutOrekit
()
public
void
testSetContextWithoutOrekit
()
throws
RuggedException
,
OrekitException
,
URISyntaxException
{
throws
RuggedException
,
OrekitException
,
URISyntaxException
{
...
@@ -163,6 +170,9 @@ public class RuggedImplTest {
...
@@ -163,6 +170,9 @@ public class RuggedImplTest {
public
void
testMayonVolcano
()
public
void
testMayonVolcano
()
throws
RuggedException
,
OrekitException
,
URISyntaxException
{
throws
RuggedException
,
OrekitException
,
URISyntaxException
{
long
t0
=
System
.
currentTimeMillis
();
int
dimension
=
2000
;
String
path
=
getClass
().
getClassLoader
().
getResource
(
"orekit-data"
).
toURI
().
getPath
();
String
path
=
getClass
().
getClassLoader
().
getResource
(
"orekit-data"
).
toURI
().
getPath
();
DataProvidersManager
.
getInstance
().
addProvider
(
new
DirectoryCrawler
(
new
File
(
path
)));
DataProvidersManager
.
getInstance
().
addProvider
(
new
DirectoryCrawler
(
new
File
(
path
)));
BodyShape
earth
=
createEarth
();
BodyShape
earth
=
createEarth
();
...
@@ -182,12 +192,12 @@ public class RuggedImplTest {
...
@@ -182,12 +192,12 @@ public class RuggedImplTest {
// position: 1.5m in front (+X) and 20 cm above (-Z) of the S/C center of mass
// 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, 960 pixels
// los: swath in the (YZ) plane, centered at +Z, ±10° aperture, 960 pixels
List
<
PixelLOS
>
los
=
createLOS
(
new
Vector3D
(
1.5
,
0
,
-
0.2
),
Vector3D
.
PLUS_K
,
Vector3D
.
PLUS_I
,
List
<
PixelLOS
>
los
=
createLOS
(
new
Vector3D
(
1.5
,
0
,
-
0.2
),
Vector3D
.
PLUS_K
,
Vector3D
.
PLUS_I
,
FastMath
.
toRadians
(
10.0
),
960
);
FastMath
.
toRadians
(
10.0
),
dimension
);
// linear datation model: at reference time we get line 1000, and the rate is one line every 1.5ms
// 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
);
LineDatation
lineDatation
=
new
LinearLineDatation
(
dimension
/
2
,
1.0
/
1.5
e
-
3
);
double
firstLine
=
52
0
;
int
firstLine
=
0
;
double
lastLine
=
1480
;
int
lastLine
=
dimension
;
Propagator
propagator
=
createPropagator
(
earth
,
gravityField
,
orbit
);
Propagator
propagator
=
createPropagator
(
earth
,
gravityField
,
orbit
);
propagator
.
propagate
(
crossing
.
shiftedBy
(
lineDatation
.
getDate
(
firstLine
)
-
1.0
));
propagator
.
propagate
(
crossing
.
shiftedBy
(
lineDatation
.
getDate
(
firstLine
)
-
1.0
));
...
@@ -208,23 +218,37 @@ public class RuggedImplTest {
...
@@ -208,23 +218,37 @@ public class RuggedImplTest {
rugged
.
setLineSensor
(
"line"
,
los
,
lineDatation
);
rugged
.
setLineSensor
(
"line"
,
los
,
lineDatation
);
try
{
try
{
PrintStream
out
=
new
PrintStream
(
new
File
(
new
File
(
System
.
getProperty
(
"user.home"
)),
"x.dat"
));
long
t0
=
System
.
currentTimeMillis
();
int
size
=
(
lastLine
-
firstLine
)
*
los
.
size
()
*
3
*
Integer
.
SIZE
;
RandomAccessFile
out
=
new
RandomAccessFile
(
tempFolder
.
newFile
(),
"rw"
);
MappedByteBuffer
buffer
=
out
.
getChannel
().
map
(
FileChannel
.
MapMode
.
READ_WRITE
,
0
,
size
);
long
t1
=
System
.
currentTimeMillis
();
int
pixels
=
0
;
int
pixels
=
0
;
for
(
double
line
=
firstLine
;
line
<
lastLine
;
line
++)
{
for
(
double
line
=
firstLine
;
line
<
lastLine
;
line
++)
{
GroundPoint
[]
gp
=
rugged
.
directLocalization
(
"line"
,
line
);
GroundPoint
[]
gp
=
rugged
.
directLocalization
(
"line"
,
line
);
for
(
int
i
=
0
;
i
<
gp
.
length
;
++
i
)
{
for
(
int
i
=
0
;
i
<
gp
.
length
;
++
i
)
{
out
.
format
(
Locale
.
US
,
"%6.1f %3d %9.3f%n"
,
line
,
i
,
gp
[
i
].
getAltitude
());
final
int
latCode
=
(
int
)
FastMath
.
rint
(
FastMath
.
scalb
(
gp
[
i
].
getLatitude
(),
29
));
final
int
lonCode
=
(
int
)
FastMath
.
rint
(
FastMath
.
scalb
(
gp
[
i
].
getLongitude
(),
29
));
final
int
altCode
=
(
int
)
FastMath
.
rint
(
FastMath
.
scalb
(
gp
[
i
].
getAltitude
(),
17
));
buffer
.
putInt
(
latCode
);
buffer
.
putInt
(
lonCode
);
buffer
.
putInt
(
altCode
);
}
}
pixels
+=
los
.
size
();
pixels
+=
los
.
size
();
out
.
println
();
if
(
line
%
100
==
0
)
{
if
(
line
%
20
==
0
)
{
System
.
out
.
format
(
Locale
.
US
,
"%5.0f%n"
,
line
);
System
.
out
.
println
(
line
);
}
}
}
}
long
t
1
=
System
.
currentTimeMillis
();
long
t
2
=
System
.
currentTimeMillis
();
out
.
close
();
out
.
close
();
System
.
out
.
println
((
pixels
/
(
1.0
e
-
3
*
(
t1
-
t0
)))
+
" pixels/s"
);
int
sizeM
=
size
/
(
1024
*
1024
);
System
.
out
.
format
(
Locale
.
US
,
"%n%n%5dx%5d:%n"
+
" Orekit initialization and DEM creation : %5.1fs%n"
+
" direct localization and %3dM grid writing: %5.1fs (%.0f px/s)%n"
,
lastLine
-
firstLine
,
los
.
size
(),
1.0
e
-
3
*(
t1
-
t0
),
sizeM
,
1.0
e
-
3
*(
t2
-
t1
),
pixels
/
(
1.0
e
-
3
*
(
t2
-
t1
)));
}
catch
(
IOException
ioe
)
{
}
catch
(
IOException
ioe
)
{
Assert
.
fail
(
ioe
.
getLocalizedMessage
());
Assert
.
fail
(
ioe
.
getLocalizedMessage
());
}
}
...
...
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