| 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: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxpublic enum AccuracyCalculationPersona
Public Enumeration AccuracyCalculationPersona
public enum class AccuracyCalculationPersona
type AccuracyCalculationPersona
 Members
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
See Also