Class AbstractGeodeticEventFunction
- java.lang.Object
-
- org.orekit.propagation.events.functions.AbstractGeodeticEventFunction
-
- All Implemented Interfaces:
EventFunction
- Direct Known Subclasses:
LatitudeValueCrossingEventFunction
public abstract class AbstractGeodeticEventFunction extends Object implements EventFunction
Abstract class for geodetic coordinates value-crossing event function.- Since:
- 14.0
- Author:
- Romain Serra
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractGeodeticEventFunction(BodyShape body)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BodyShapegetBodyShape()Getter for body shape.protected <T extends CalculusFieldElement<T>>
FieldGeodeticPoint<T>transformToGeodeticPoint(FieldSpacecraftState<T> s)Compute the geodetic coordinates (Field version).protected GeodeticPointtransformToGeodeticPoint(SpacecraftState s)Compute the geodetic coordinates.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.propagation.events.functions.EventFunction
dependsOnMainVariablesOnly, dependsOnTimeOnly, value, value
-
-
-
-
Constructor Detail
-
AbstractGeodeticEventFunction
protected AbstractGeodeticEventFunction(BodyShape body)
Constructor.- Parameters:
body- body
-
-
Method Detail
-
getBodyShape
public BodyShape getBodyShape()
Getter for body shape.- Returns:
- body
-
transformToGeodeticPoint
protected GeodeticPoint transformToGeodeticPoint(SpacecraftState s)
Compute the geodetic coordinates.- Parameters:
s- the current state information: date, kinematics, attitude- Returns:
- geodetic point
-
transformToGeodeticPoint
protected <T extends CalculusFieldElement<T>> FieldGeodeticPoint<T> transformToGeodeticPoint(FieldSpacecraftState<T> s)
Compute the geodetic coordinates (Field version).- Type Parameters:
T- field type- Parameters:
s- the current state information: date, kinematics, attitude- Returns:
- geodetic point
-
-