Skip to content
Snippets Groups Projects
Commit c512330e authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Added writing of grid file to full test.

parent 7deb441d
No related branches found
No related tags found
No related merge requests found
...@@ -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.5e-3); LineDatation lineDatation = new LinearLineDatation(dimension / 2, 1.0 / 1.5e-3);
double firstLine = 520; 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 t1 = System.currentTimeMillis(); long t2 = System.currentTimeMillis();
out.close(); out.close();
System.out.println((pixels / (1.0e-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.0e-3 *(t1 - t0), sizeM, 1.0e-3 *(t2 - t1), pixels / (1.0e-3 * (t2 - t1)));
} catch (IOException ioe) { } catch (IOException ioe) {
Assert.fail(ioe.getLocalizedMessage()); Assert.fail(ioe.getLocalizedMessage());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment