GpsRinexPropagatorGetEvaluator Method (EvaluatorGroup) |
Gets an evaluator that can propagate at individual dates.
This evaluator propagates the orbit state from a collection of IGpsElements derived from a
RinexNavigationRecord and based on the IS-GPS-200D standards.
The result of evaluating will be a
Motion<Cartesian> corresponding to the orbital
position and velocity at the given JulianDate expressed in the Earth Fixed
ReferenceFrame defined by the propagator.
Namespace:
AGI.Foundation.Propagators
Assembly:
AGI.Foundation.Navigation (in AGI.Foundation.Navigation.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public override MotionEvaluator<Cartesian> GetEvaluator(
EvaluatorGroup group
)
Public Overrides Function GetEvaluator (
group As EvaluatorGroup
) As MotionEvaluator(Of Cartesian)
public:
virtual MotionEvaluator<Cartesian>^ GetEvaluator(
EvaluatorGroup^ group
) override
abstract GetEvaluator :
group : EvaluatorGroup -> MotionEvaluator<Cartesian>
override GetEvaluator :
group : EvaluatorGroup -> MotionEvaluator<Cartesian>
Parameters
- group
- Type: AGI.FoundationEvaluatorGroup
The group with which to associate the new evaluator. By grouping evaluators
that are often evaluated at the same Julian dates, common computations can be performed only once
for the entire group instead of multiple times for each evaluator.
Return Value
Type:
MotionEvaluatorCartesianThe evaluator.
See Also