Click or drag to resize

StkEphemerisFile.ConfigureFromPointInterpolator Method

Configures the instance to represent the ephemeris and interpolation stored in a PointInterpolator. The Data property is replaced with a new instance of StkEphemerisFile.EphemerisTimePos, StkEphemerisFile.EphemerisTimePosVel, or StkEphemerisFile.EphemerisTimePosVelAcc (depending on the number of derivatives available from the PointInterpolator) and any existing information stored in that instance is lost. The Properties are not modified, but values pulled from PointInterpolator will take precedence over values in the Properties collection when writing this instance using WriteTo(TextWriter).

Namespace:  AGI.Foundation.Stk
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public void ConfigureFromPointInterpolator(
	PointInterpolator pointInterpolator
)

Parameters

pointInterpolator
Type: AGI.Foundation.Geometry.PointInterpolator
The PointInterpolator with which to configure this instance. The point's Interpolator and ReferenceFrame properties, as well as the interpolator's Data property, must not be null.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when pointInterpolator is null.
See Also