Package org.orekit.time
Class AbstractFieldTimeInterpolator.InterpolationData
- java.lang.Object
-
- org.orekit.time.AbstractFieldTimeInterpolator.InterpolationData
-
- Enclosing class:
- AbstractFieldTimeInterpolator<T extends FieldTimeStamped<KK>,KK extends CalculusFieldElement<KK>>
public class AbstractFieldTimeInterpolator.InterpolationData extends Object
Nested class used to store interpolation data.It makes the interpolator thread safe.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
InterpolationData(FieldAbsoluteDate<KK> interpolationDate, Collection<T> sample)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ImmutableFieldTimeStampedCache<T,KK>
getCachedSamples()
Deprecated.This method appears to be unused and may be removed in Orekit 13.0.protected FieldAbsoluteDate<KK>
getCentralDate(FieldAbsoluteDate<KK> date)
Deprecated.This method appears to be unused and may be removed in Orekit 13.0.Field<KK>
getField()
Get field.FieldAbsoluteDate<KK>
getInterpolationDate()
Get interpolation date.List<T>
getNeighborList()
Get neighbor list.KK
getOne()
Get one.KK
getZero()
Get zero.
-
-
-
Constructor Detail
-
InterpolationData
protected InterpolationData(FieldAbsoluteDate<KK> interpolationDate, Collection<T> sample)
Constructor.- Parameters:
interpolationDate
- interpolation datesample
- time stamped sample
-
-
Method Detail
-
getCentralDate
@Deprecated protected FieldAbsoluteDate<KK> getCentralDate(FieldAbsoluteDate<KK> date)
Deprecated.This method appears to be unused and may be removed in Orekit 13.0. Please Comment on forum.orekit.org if you have a use case for this method.Get the central date to use to find neighbors while taking into account extrapolation threshold.- Parameters:
date
- interpolation date- Returns:
- central date to use to find neighbors
-
getInterpolationDate
public FieldAbsoluteDate<KK> getInterpolationDate()
Get interpolation date.- Returns:
- interpolation date
-
getCachedSamples
@Deprecated public ImmutableFieldTimeStampedCache<T,KK> getCachedSamples()
Deprecated.This method appears to be unused and may be removed in Orekit 13.0. Please Comment on forum.orekit.org if you have a use case for this method.Get cached samples.- Returns:
- cached samples
-
getZero
public KK getZero()
Get zero.- Returns:
- zero
-
getOne
public KK getOne()
Get one.- Returns:
- one
-
-