AccuracyCalculationPersona Enumeration |
Type definitions for the accuracy calculation persona. The persona defines how the evaluator will react when
it encounters no data for a given satellite or too few satellites are available during a navigation accuracy calculation.
Namespace:
AGI.Foundation.Navigation
Assembly:
AGI.Foundation.Navigation (in AGI.Foundation.Navigation.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public enum AccuracyCalculationPersona
Public Enumeration AccuracyCalculationPersona
public enum class AccuracyCalculationPersona
type AccuracyCalculationPersona
Members
| Member name | Description |
---|
| Diligent |
Diligent persona means the navigation accuracy calculation will try to provide an accuracy answer even
if data for some of the requested satellites is missing. The accuracy calculation will not use
those satellites, reducing the total list of satellites to use in the calculation.
If there are too few satellites to calculate a solution, the processing will continue with no solution
given for that set. This is the default behavior.
|
| Lazy |
Lazy persona means the navigation accuracy calculation will not try to provide an accuracy answer if it encounters missing data
for a satellite. Upon encountering missing data, the evaluator will throw a DataUnavailableException.
If there are too few satellites to determine a solution, an InvalidOperationException will be thrown.
|
See Also