Package org.orekit.rugged.linesensor
Class SensorMeanPlaneCrossing.CrossingResult
- java.lang.Object
-
- org.orekit.rugged.linesensor.SensorMeanPlaneCrossing.CrossingResult
-
- Enclosing class:
- SensorMeanPlaneCrossing
public static class SensorMeanPlaneCrossing.CrossingResult extends Object
Container for mean plane crossing result.
-
-
Constructor Summary
Constructors Constructor Description CrossingResult(AbsoluteDate crossingDate, double crossingLine, Vector3D target, Vector3D targetDirection, Vector3D targetDirectionDerivative)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbsoluteDate
getDate()
Get the crossing date.double
getLine()
Get the crossing line.Vector3D
getTarget()
Get the target ground point.Vector3D
getTargetDirection()
Get the normalized target direction in spacecraft frame at crossing.Vector3D
getTargetDirectionDerivative()
Get the derivative of the normalized target direction in spacecraft frame at crossing.
-
-
-
Constructor Detail
-
CrossingResult
public CrossingResult(AbsoluteDate crossingDate, double crossingLine, Vector3D target, Vector3D targetDirection, Vector3D targetDirectionDerivative)
Simple constructor.- Parameters:
crossingDate
- crossing datecrossingLine
- crossing linetarget
- target ground pointtargetDirection
- target direction in spacecraft frametargetDirectionDerivative
- derivative of the target direction in spacecraft frame with respect to line number
-
-
Method Detail
-
getDate
public AbsoluteDate getDate()
Get the crossing date.- Returns:
- crossing date
-
getLine
public double getLine()
Get the crossing line.- Returns:
- crossing line
-
getTarget
public Vector3D getTarget()
Get the target ground point.- Returns:
- target ground point
-
getTargetDirection
public Vector3D getTargetDirection()
Get the normalized target direction in spacecraft frame at crossing.- Returns:
- normalized target direction in spacecraft frame at crossing with respect to line number
-
getTargetDirectionDerivative
public Vector3D getTargetDirectionDerivative()
Get the derivative of the normalized target direction in spacecraft frame at crossing.- Returns:
- derivative of the normalized target direction in spacecraft frame at crossing with respect to line number
- Since:
- 2.0
-
-