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

Merge branch 'master' into debug-dump

parents 64579bd0 aa56b36e
No related branches found
No related tags found
No related merge requests found
...@@ -292,7 +292,7 @@ public class RuggedBuilder { ...@@ -292,7 +292,7 @@ public class RuggedBuilder {
* Note that this method is relevant <em>only</em> if the algorithm specified * Note that this method is relevant <em>only</em> if the algorithm specified
* in {@link #setAlgorithm(AlgorithmId)} is {@link * in {@link #setAlgorithm(AlgorithmId)} is {@link
* AlgorithmId#CONSTANT_ELEVATION_OVER_ELLIPSOID CONSTANT_ELEVATION_OVER_ELLIPSOID}. * AlgorithmId#CONSTANT_ELEVATION_OVER_ELLIPSOID CONSTANT_ELEVATION_OVER_ELLIPSOID}.
* If it is called for this algorithm, the elevation set here will be ignored. * If it is called for another algorithm, the elevation set here will be ignored.
* </p> * </p>
* @param constantElevation constant elevation to use * @param constantElevation constant elevation to use
* @return the builder instance * @return the builder instance
...@@ -564,17 +564,17 @@ public class RuggedBuilder { ...@@ -564,17 +564,17 @@ public class RuggedBuilder {
* {@link #setTrajectory(InertialFrameId, List, int, CartesianDerivativesFilter, List, int, AngularDerivativesFilter)}, * {@link #setTrajectory(InertialFrameId, List, int, CartesianDerivativesFilter, List, int, AngularDerivativesFilter)},
* or {@link #setTimeSpan(AbsoluteDate, AbsoluteDate, double, double)}. * or {@link #setTimeSpan(AbsoluteDate, AbsoluteDate, double, double)}.
* </p> * </p>
* @param dumpStream stream from where to read previous instance dumped interpolator * @param storageStream stream from where to read previous instance {@link #storeInterpolator(OutputStream)
* (caller opened it and remains responsible for closing it) * stored interpolator} (caller opened it and remains responsible for closing it)
* @return the builder instance * @return the builder instance
* @exception RuggedException if dump file cannot be loaded * @exception RuggedException if storage stream cannot be parsed
* or if frames do not match the ones referenced in the dump file * or if frames do not match the ones referenced in the storage stream
* @see #setTrajectory(InertialFrameId, List, int, CartesianDerivativesFilter, List, int, AngularDerivativesFilter) * @see #setTrajectory(InertialFrameId, List, int, CartesianDerivativesFilter, List, int, AngularDerivativesFilter)
* @see #setTrajectory(Frame, List, int, CartesianDerivativesFilter, List, int, AngularDerivativesFilter) * @see #setTrajectory(Frame, List, int, CartesianDerivativesFilter, List, int, AngularDerivativesFilter)
* @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator)
* @see #dumpInterpolator(OutputStream) * @see #storeInterpolator(OutputStream)
*/ */
public RuggedBuilder setTrajectoryAndTimeSpan(final InputStream dumpStream) public RuggedBuilder setTrajectoryAndTimeSpan(final InputStream storageStream)
throws RuggedException { throws RuggedException {
try { try {
this.inertial = null; this.inertial = null;
...@@ -587,7 +587,7 @@ public class RuggedBuilder { ...@@ -587,7 +587,7 @@ public class RuggedBuilder {
this.pvaPropagator = null; this.pvaPropagator = null;
this.iStep = Double.NaN; this.iStep = Double.NaN;
this.iN = -1; this.iN = -1;
this.scToBody = (SpacecraftToObservedBody) new ObjectInputStream(dumpStream).readObject(); this.scToBody = (SpacecraftToObservedBody) new ObjectInputStream(storageStream).readObject();
this.minDate = scToBody.getMinDate(); this.minDate = scToBody.getMinDate();
this.maxDate = scToBody.getMaxDate(); this.maxDate = scToBody.getMaxDate();
this.tStep = scToBody.getTStep(); this.tStep = scToBody.getTStep();
...@@ -603,7 +603,7 @@ public class RuggedBuilder { ...@@ -603,7 +603,7 @@ public class RuggedBuilder {
} }
} }
/** Dump frames transform interpolator. /** Store frames transform interpolator.
* <p> * <p>
* This method allows to reuse the interpolator built in one instance, to build * This method allows to reuse the interpolator built in one instance, to build
* another instance by calling {@link #setTrajectoryAndTimeSpan(InputStream)}. * another instance by calling {@link #setTrajectoryAndTimeSpan(InputStream)}.
...@@ -614,9 +614,9 @@ public class RuggedBuilder { ...@@ -614,9 +614,9 @@ public class RuggedBuilder {
* <p> * <p>
* This method must be called <em>after</em> both the ellipsoid and trajectory have been set. * This method must be called <em>after</em> both the ellipsoid and trajectory have been set.
* </p> * </p>
* @param dumpStream stream where to dump the interpolator * @param storageStream stream where to store the interpolator
* (caller opened it and remains responsible for closing it) * (caller opened it and remains responsible for closing it)
* @exception RuggedException if interpolator cannot be written to file * @exception RuggedException if interpolator cannot be written to stream
* @see #setEllipsoid(EllipsoidId, BodyRotatingFrameId) * @see #setEllipsoid(EllipsoidId, BodyRotatingFrameId)
* @see #setEllipsoid(OneAxisEllipsoid) * @see #setEllipsoid(OneAxisEllipsoid)
* @see #setTrajectory(InertialFrameId, List, int, CartesianDerivativesFilter, List, int, AngularDerivativesFilter) * @see #setTrajectory(InertialFrameId, List, int, CartesianDerivativesFilter, List, int, AngularDerivativesFilter)
...@@ -624,10 +624,10 @@ public class RuggedBuilder { ...@@ -624,10 +624,10 @@ public class RuggedBuilder {
* @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator)
* @see #setTrajectoryAndTimeSpan(InputStream) * @see #setTrajectoryAndTimeSpan(InputStream)
*/ */
public void dumpInterpolator(final OutputStream dumpStream) throws RuggedException { public void storeInterpolator(final OutputStream storageStream) throws RuggedException {
try { try {
createInterpolatorIfNeeded(); createInterpolatorIfNeeded();
new ObjectOutputStream(dumpStream).writeObject(scToBody); new ObjectOutputStream(storageStream).writeObject(scToBody);
} catch (IOException ioe) { } catch (IOException ioe) {
throw new RuggedException(ioe, LocalizedFormats.SIMPLE_MESSAGE, ioe.getMessage()); throw new RuggedException(ioe, LocalizedFormats.SIMPLE_MESSAGE, ioe.getMessage());
} }
......
...@@ -23,7 +23,7 @@ import org.orekit.rugged.utils.ParametricModel; ...@@ -23,7 +23,7 @@ import org.orekit.rugged.utils.ParametricModel;
import org.orekit.time.AbsoluteDate; import org.orekit.time.AbsoluteDate;
/** Interface representing a line-of-sight which depends on time. /** Interface representing a line-of-sight which depends on time.
* @see LineSensor * @see org.orekit.rugged.linesensor.LineSensor
* @author Luc Maisonobe * @author Luc Maisonobe
*/ */
public interface TimeDependentLOS extends ParametricModel { public interface TimeDependentLOS extends ParametricModel {
......
...@@ -190,10 +190,10 @@ Finally we can initialize Rugged. It looks like this: ...@@ -190,10 +190,10 @@ Finally we can initialize Rugged. It looks like this:
import org.orekit.rugged.api.EllipsoidId; import org.orekit.rugged.api.EllipsoidId;
import org.orekit.rugged.api.InertialFrameId; import org.orekit.rugged.api.InertialFrameId;
import org.orekit.rugged.api.Rugged; import org.orekit.rugged.api.Rugged;
import org.orekit.rugged.api.RuggedBuilder;
import org.orekit.rugged.errors.RuggedException; import org.orekit.rugged.errors.RuggedException;
import org.orekit.utils.AngularDerivativesFilter; import org.orekit.utils.AngularDerivativesFilter;
import org.orekit.utils.CartesianDerivativesFilter; import org.orekit.utils.CartesianDerivativesFilter;
import org.orekit.utils.IERSConventions;
Rugged rugged = new RuggedBuilder(). Rugged rugged = new RuggedBuilder().
setAlgorithm(demAlgoId). setAlgorithm(demAlgoId).
setDigitalElevationModel(demTileUpdater, nbTiles). setDigitalElevationModel(demTileUpdater, nbTiles).
...@@ -225,7 +225,7 @@ Elevation Model in this tutorial, we could have omitted this call and it would h ...@@ -225,7 +225,7 @@ Elevation Model in this tutorial, we could have omitted this call and it would h
We preferred to let it in so users do not forget to set the Digital Elevation Model for intersection We preferred to let it in so users do not forget to set the Digital Elevation Model for intersection
algorithms that really use them. As the model will be ignored, we can put the parameters for this algorithms that really use them. As the model will be ignored, we can put the parameters for this
setter to `null` and `0`. Of course if another algorithm had been chosen, null parameters would clearly setter to `null` and `0`. Of course if another algorithm had been chosen, null parameters would clearly
not work, this is explained in another tutorial: [[DirectLocationWithDEM|Direct location with a DEM]]. not work, this is explained in another tutorial: [Direct location with a DEM](direct-location-with-DEM.html).
The *setEllipsoid* setter defines the shape and orientation of the ellipsoid. We use simple predefined enumerates: The *setEllipsoid* setter defines the shape and orientation of the ellipsoid. We use simple predefined enumerates:
`EllipsoidId.WGS84`, `InertialFrameId.EME2000`, but could also use a custom ellipsoid if needed. `EllipsoidId.WGS84`, `InertialFrameId.EME2000`, but could also use a custom ellipsoid if needed.
...@@ -246,14 +246,13 @@ final timeTolerance parameter is simply a margin used before and after the final ...@@ -246,14 +246,13 @@ final timeTolerance parameter is simply a margin used before and after the final
allow a slight extrapolation if during a search the interval is slightly overshoot. A typical value is allow a slight extrapolation if during a search the interval is slightly overshoot. A typical value is
to allow a few images lines so for example a 5 lines tolerance would imply computing the tolerance as: to allow a few images lines so for example a 5 lines tolerance would imply computing the tolerance as:
timeTolerance = 5 / lineSensor.getRate(0)). timeTolerance = 5 / lineSensor.getRate(0)).
`BodyRotatingFrameId.ITRF`
The *setTrajectory* setter defines the spacecraft evolution. The arguments are the list of time-stamped positions and The *setTrajectory* setter defines the spacecraft evolution. The arguments are the list of time-stamped positions and
velocities as well as the inertial frame with respect to which they are defined and options for interpolation: velocities as well as the inertial frame with respect to which they are defined and options for interpolation:
number of points to use and type of filter for derivatives. The interpolation polynomials for nbPVPoints number of points to use and type of filter for derivatives. The interpolation polynomials for nbPVPoints
without any derivatives (case of CartesianDerivativesFilter.USE_P: only positions are used, without velocities) without any derivatives (case of `CartesianDerivativesFilter.USE_P`: only positions are used, without velocities)
have a degree nbPVPoints - 1. In case of computation with velocities included (case of have a degree nbPVPoints - 1. In case of computation with velocities included (case of
CartesianDerivativesFilter.USE_PV), the interpolation polynomials have a degree 2*nbPVPoints - 1. If the `CartesianDerivativesFilter.USE_PV`), the interpolation polynomials have a degree 2*nbPVPoints - 1. If the
positions/velocities data are of good quality and separated by a few seconds, one may choose only a few points positions/velocities data are of good quality and separated by a few seconds, one may choose only a few points
but interpolate with both positions and velocities; in other cases, one may choose more points but interpolate but interpolate with both positions and velocities; in other cases, one may choose more points but interpolate
only with positions. We find similar arguments for the attitude quaternions. only with positions. We find similar arguments for the attitude quaternions.
......
...@@ -370,7 +370,7 @@ public class RuggedBuilderTest { ...@@ -370,7 +370,7 @@ public class RuggedBuilderTest {
addLineSensor(lineSensor); addLineSensor(lineSensor);
ByteArrayOutputStream bos = new ByteArrayOutputStream(); ByteArrayOutputStream bos = new ByteArrayOutputStream();
original.dumpInterpolator(bos); original.storeInterpolator(bos);
Assert.assertTrue(bos.size() > 100000); Assert.assertTrue(bos.size() > 100000);
Assert.assertTrue(bos.size() < 200000); Assert.assertTrue(bos.size() < 200000);
...@@ -434,7 +434,7 @@ public class RuggedBuilderTest { ...@@ -434,7 +434,7 @@ public class RuggedBuilderTest {
FileOutputStream fos = new FileOutputStream(tempFolder.newFile()); FileOutputStream fos = new FileOutputStream(tempFolder.newFile());
fos.close(); fos.close();
try { try {
original.dumpInterpolator(fos); original.storeInterpolator(fos);
Assert.fail("an exception should have been thrown"); Assert.fail("an exception should have been thrown");
} catch (RuggedException re) { } catch (RuggedException re) {
Assert.assertEquals(IOException.class, re.getCause().getClass()); Assert.assertEquals(IOException.class, re.getCause().getClass());
...@@ -482,7 +482,7 @@ public class RuggedBuilderTest { ...@@ -482,7 +482,7 @@ public class RuggedBuilderTest {
2, AngularDerivativesFilter.USE_R); 2, AngularDerivativesFilter.USE_R);
ByteArrayOutputStream bos = new ByteArrayOutputStream(); ByteArrayOutputStream bos = new ByteArrayOutputStream();
original.dumpInterpolator(bos); original.storeInterpolator(bos);
Assert.assertTrue(bos.size() > 100000); Assert.assertTrue(bos.size() > 100000);
Assert.assertTrue(bos.size() < 200000); Assert.assertTrue(bos.size() < 200000);
......
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