Skip to content
Snippets Groups Projects
Commit 93d14e4a authored by Guylaine Prat's avatar Guylaine Prat
Browse files

Add informations in dump

parent 4f6c3b68
No related branches found
No related tags found
No related merge requests found
...@@ -514,7 +514,7 @@ public class Rugged { ...@@ -514,7 +514,7 @@ public class Rugged {
final int minLine, final int maxLine) { final int minLine, final int maxLine) {
final LineSensor sensor = getLineSensor(sensorName); final LineSensor sensor = getLineSensor(sensorName);
DumpManager.dumpInverseLocation(sensor, point, minLine, maxLine, lightTimeCorrection, DumpManager.dumpInverseLocation(sensor, point, ellipsoid, minLine, maxLine, lightTimeCorrection,
aberrationOfLightCorrection, atmosphericRefraction != null); aberrationOfLightCorrection, atmosphericRefraction != null);
final SensorMeanPlaneCrossing planeCrossing = getPlaneCrossing(sensorName, minLine, maxLine); final SensorMeanPlaneCrossing planeCrossing = getPlaneCrossing(sensorName, minLine, maxLine);
...@@ -713,11 +713,12 @@ public class Rugged { ...@@ -713,11 +713,12 @@ public class Rugged {
atmosphericRefraction.deactivateComputation(); atmosphericRefraction.deactivateComputation();
final SensorPixel sp0 = inverseLocation(sensorName, point, minLine, maxLine); final SensorPixel sp0 = inverseLocation(sensorName, point, minLine, maxLine);
atmosphericRefraction.reactivateComputation(); atmosphericRefraction.reactivateComputation();
// Reactivate the dump // Reactivate the dump
DumpManager.resume(wasSuspended); DumpManager.resume(wasSuspended);
if (sp0 == null) { if (sp0 == null) {
// In order for the dump to end nicely
DumpManager.endNicely();
// Impossible to find the point in the given min line and max line (without atmosphere) // Impossible to find the point in the given min line and max line (without atmosphere)
throw new RuggedException(RuggedMessages.INVALID_RANGE_FOR_LINES, minLine, maxLine, ""); throw new RuggedException(RuggedMessages.INVALID_RANGE_FOR_LINES, minLine, maxLine, "");
} }
...@@ -725,6 +726,8 @@ public class Rugged { ...@@ -725,6 +726,8 @@ public class Rugged {
// set up the starting point of the fixed point method // set up the starting point of the fixed point method
final double pixel0 = sp0.getPixelNumber(); final double pixel0 = sp0.getPixelNumber();
final double line0 = sp0.getLineNumber(); final double line0 = sp0.getLineNumber();
// Needed data for the dump
sensor.dumpRate(line0);
// Apply fixed point method until convergence in pixel and line // Apply fixed point method until convergence in pixel and line
// ------------------------------------------------------------ // ------------------------------------------------------------
...@@ -794,6 +797,8 @@ public class Rugged { ...@@ -794,6 +797,8 @@ public class Rugged {
sensorPixelGrid[uIndex][vIndex] = inverseLocation(sensorName, currentLat, currentLon, minLine, maxLine); sensorPixelGrid[uIndex][vIndex] = inverseLocation(sensorName, currentLat, currentLon, minLine, maxLine);
} catch (RuggedException re) { // This should never happen } catch (RuggedException re) { // This should never happen
// In order for the dump to end nicely
DumpManager.endNicely();
throw RuggedException.createInternalError(re); throw RuggedException.createInternalError(re);
} }
...@@ -802,7 +807,8 @@ public class Rugged { ...@@ -802,7 +807,8 @@ public class Rugged {
(sensorPixelGrid[uIndex][vIndex].getPixelNumber() < (-INVLOC_MARGIN) || (sensorPixelGrid[uIndex][vIndex].getPixelNumber() < (-INVLOC_MARGIN) ||
sensorPixelGrid[uIndex][vIndex].getPixelNumber() > (INVLOC_MARGIN + sensor.getNbPixels() - 1))) || sensorPixelGrid[uIndex][vIndex].getPixelNumber() > (INVLOC_MARGIN + sensor.getNbPixels() - 1))) ||
(sensorPixelGrid[uIndex][vIndex] == null) ) { (sensorPixelGrid[uIndex][vIndex] == null) ) {
// In order for the dump to end nicely
DumpManager.endNicely();
// Impossible to find the point in the given min line // Impossible to find the point in the given min line
throw new RuggedException(RuggedMessages.INVALID_RANGE_FOR_LINES, minLine, maxLine, ""); throw new RuggedException(RuggedMessages.INVALID_RANGE_FOR_LINES, minLine, maxLine, "");
} }
...@@ -852,6 +858,8 @@ public class Rugged { ...@@ -852,6 +858,8 @@ public class Rugged {
groundGridWithAtmosphere[uIndex][vIndex] = directLocation(date, sensorPosition, los); groundGridWithAtmosphere[uIndex][vIndex] = directLocation(date, sensorPosition, los);
} catch (RuggedException re) { // This should never happen } catch (RuggedException re) { // This should never happen
// In order for the dump to end nicely
DumpManager.endNicely();
throw RuggedException.createInternalError(re); throw RuggedException.createInternalError(re);
} }
} // end loop vIndex } // end loop vIndex
......
...@@ -108,6 +108,15 @@ public class DumpManager { ...@@ -108,6 +108,15 @@ public class DumpManager {
isSuspended = false; isSuspended = false;
} }
} }
/** In case dump is suspended and an exception is thrown,
* allow the dump to end nicely.
*/
public static void endNicely() {
isSuspended = false;
if (isActive()) deactivate();
}
/** Check if dump is active for this thread. /** Check if dump is active for this thread.
* @return true if dump is active for this thread * @return true if dump is active for this thread
...@@ -187,6 +196,7 @@ public class DumpManager { ...@@ -187,6 +196,7 @@ public class DumpManager {
/** Dump an inverse location computation. /** Dump an inverse location computation.
* @param sensor sensor * @param sensor sensor
* @param point point to localize * @param point point to localize
* @param ellipsoid the used ellipsoid
* @param minLine minimum line number * @param minLine minimum line number
* @param maxLine maximum line number * @param maxLine maximum line number
* @param lightTimeCorrection flag for light time correction * @param lightTimeCorrection flag for light time correction
...@@ -194,12 +204,14 @@ public class DumpManager { ...@@ -194,12 +204,14 @@ public class DumpManager {
* @param refractionCorrection flag for refraction correction * @param refractionCorrection flag for refraction correction
*/ */
public static void dumpInverseLocation(final LineSensor sensor, final GeodeticPoint point, public static void dumpInverseLocation(final LineSensor sensor, final GeodeticPoint point,
final ExtendedEllipsoid ellipsoid,
final int minLine, final int maxLine, final int minLine, final int maxLine,
final boolean lightTimeCorrection, final boolean aberrationOfLightCorrection, final boolean lightTimeCorrection, final boolean aberrationOfLightCorrection,
final boolean refractionCorrection) { final boolean refractionCorrection) {
if (isActive()) { if (isActive()) {
DUMP.get().dumpInverseLocation(sensor, point, minLine, maxLine, DUMP.get().dumpInverseLocation(sensor, point, minLine, maxLine,
lightTimeCorrection, aberrationOfLightCorrection, refractionCorrection); lightTimeCorrection, aberrationOfLightCorrection, refractionCorrection);
DUMP.get().dumpEllipsoid(ellipsoid);
} }
} }
......
...@@ -183,5 +183,12 @@ public class LineSensor { ...@@ -183,5 +183,12 @@ public class LineSensor {
public Vector3D getPosition() { public Vector3D getPosition() {
return position; return position;
} }
/** Dump the rate for the current line number
* @param lineNumber line number
*/
public void dumpRate(final double lineNumber) {
final double rate = datationModel.getRate(lineNumber);
DumpManager.dumpSensorRate(this, lineNumber, rate);
}
} }
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