Package org.orekit.bodies
Interface IAUPole
- All Superinterfaces:
Serializable
Interface for IAU pole and prime meridian orientations.
This interface defines methods compliant with the report of the IAU/IAG Working Group on Cartographic Coordinates and Rotational Elements of the Planets and Satellites (WGCCRE). These definitions are common for all recent versions of this report published every three years.
The precise values of pole direction and W angle coefficients may vary from publication year as models are adjusted. The latest value of constants for implementing this interface can be found in the working group site.
- Author:
- Luc Maisonobe
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault Vector3DgetNode(AbsoluteDate date) Get the body Q Node direction in ICRF frame.default <T extends CalculusFieldElement<T>>
FieldVector3D<T> getNode(FieldAbsoluteDate<T> date) Get the body Q Node direction in ICRF frame.getPole(AbsoluteDate date) Get the body North pole direction in ICRF frame.<T extends CalculusFieldElement<T>>
FieldVector3D<T> getPole(FieldAbsoluteDate<T> date) Get the body North pole direction in ICRF frame.doubleGet the prime meridian angle.<T extends CalculusFieldElement<T>>
TgetPrimeMeridianAngle(FieldAbsoluteDate<T> date) Get the prime meridian angle.booleanReturnstrueif this pole and prime meridian is the same as the GCRF (and therefore ICRF) pole and prime meridian.
-
Method Details
-
getPole
Get the body North pole direction in ICRF frame.- Parameters:
date- current date- Returns:
- body North pole direction in ICRF frame
-
getPole
Get the body North pole direction in ICRF frame.- Type Parameters:
T- type of the field elements- Parameters:
date- current date- Returns:
- body North pole direction in ICRF frame
- Since:
- 9.0
-
getNode
Get the body Q Node direction in ICRF frame.- Parameters:
date- current date- Returns:
- body Q Node direction in ICRF frame
- Since:
- 9.1
-
getNode
Get the body Q Node direction in ICRF frame.- Type Parameters:
T- type of the field elements- Parameters:
date- current date- Returns:
- body Q Node direction in ICRF frame
- Since:
- 9.1
-
getPrimeMeridianAngle
Get the prime meridian angle.The prime meridian angle is the angle between the Q node and the prime meridian. represents the body rotation.
- Parameters:
date- current date- Returns:
- prime meridian vector
-
getPrimeMeridianAngle
Get the prime meridian angle.The prime meridian angle is the angle between the Q node and the prime meridian. represents the body rotation.
- Type Parameters:
T- type of the field elements- Parameters:
date- current date- Returns:
- prime meridian vector
- Since:
- 9.0
-
isGcrfAligned
boolean isGcrfAligned()Returnstrueif this pole and prime meridian is the same as the GCRF (and therefore ICRF) pole and prime meridian.- Returns:
trueiff aligned with GCRF.- Since:
- 14.0
-