Package org.orekit.attitudes
Class TargetPointing
- java.lang.Object
-
- org.orekit.attitudes.GroundPointing
-
- org.orekit.attitudes.TargetPointing
-
- All Implemented Interfaces:
Serializable,AttitudeProvider
public class TargetPointing extends GroundPointing
This class handles target pointing attitude provider.This class represents the attitude provider where the satellite z axis is pointing to a ground point target.
The target position is defined in a body frame specified by the user. It is important to make sure this frame is consistent.
The object
TargetPointingis guaranteed to be immutable.- Author:
- Véronique Pommier-Maurussane
- See Also:
GroundPointing, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TargetPointing(Frame inertialFrame, GeodeticPoint targetGeo, BodyShape shape)Creates a new instance from body shape and target expressed in geodetic coordinates.TargetPointing(Frame inertialFrame, Frame bodyFrame, org.hipparchus.geometry.euclidean.threed.Vector3D target)Creates a new instance from body frame and target expressed in Cartesian coordinates.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends org.hipparchus.RealFieldElement<T>>
TimeStampedFieldPVCoordinates<T>getTargetPV(FieldPVCoordinatesProvider<T> pvProv, FieldAbsoluteDate<T> date, Frame frame)Compute the target point position/velocity in specified frame.TimeStampedPVCoordinatesgetTargetPV(PVCoordinatesProvider pvProv, AbsoluteDate date, Frame frame)Compute the target point position/velocity in specified frame.-
Methods inherited from class org.orekit.attitudes.GroundPointing
getAttitude, getAttitude, getBodyFrame
-
-
-
-
Constructor Detail
-
TargetPointing
public TargetPointing(Frame inertialFrame, Frame bodyFrame, org.hipparchus.geometry.euclidean.threed.Vector3D target)
Creates a new instance from body frame and target expressed in Cartesian coordinates.- Parameters:
inertialFrame- frame in which orbital velocities are computedbodyFrame- body frame.target- target position in body frame- Since:
- 7.1
-
TargetPointing
public TargetPointing(Frame inertialFrame, GeodeticPoint targetGeo, BodyShape shape)
Creates a new instance from body shape and target expressed in geodetic coordinates.- Parameters:
inertialFrame- frame in which orbital velocities are computedtargetGeo- target defined as a geodetic point in body shape frameshape- body shape- Since:
- 7.1
-
-
Method Detail
-
getTargetPV
public TimeStampedPVCoordinates getTargetPV(PVCoordinatesProvider pvProv, AbsoluteDate date, Frame frame)
Compute the target point position/velocity in specified frame.This method is
publiconly to allow users to subclass this abstract class from other packages. It is not intended to be used directly.- Specified by:
getTargetPVin classGroundPointing- Parameters:
pvProv- provider for PV coordinatesdate- date at which target point is requestedframe- frame in which observed ground point should be provided- Returns:
- observed ground point position (element 0) and velocity (at index 1) in specified frame
-
getTargetPV
public <T extends org.hipparchus.RealFieldElement<T>> TimeStampedFieldPVCoordinates<T> getTargetPV(FieldPVCoordinatesProvider<T> pvProv, FieldAbsoluteDate<T> date, Frame frame)
Compute the target point position/velocity in specified frame.- Specified by:
getTargetPVin classGroundPointing- Type Parameters:
T- type of the fiels elements- Parameters:
pvProv- provider for PV coordinatesdate- date at which target point is requestedframe- frame in which observed ground point should be provided- Returns:
- observed ground point position (element 0) and velocity (at index 1) in specified frame
-
-