Package org.orekit.frames
Class PoleCorrection
- java.lang.Object
-
- org.orekit.frames.PoleCorrection
-
- All Implemented Interfaces:
Serializable
public class PoleCorrection extends Object implements Serializable
Simple container class for pole correction parameters.This class is a simple container, it does not provide any processing method.
- Author:
- Luc Maisonobe
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static PoleCorrection
NULL_CORRECTION
Null correction (xp = 0, yp = 0).
-
Constructor Summary
Constructors Constructor Description PoleCorrection(double xp, double yp)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getXp()
Get the xp parameter.double
getYp()
Get the yp parameter.
-
-
-
Field Detail
-
NULL_CORRECTION
public static final PoleCorrection NULL_CORRECTION
Null correction (xp = 0, yp = 0).
-
-