NavigationAccuracyPredictedConstraint Constructor (Double, NavigationAccuracyPredictedType, Int32, PredictionSupportFile) |
Initializes a new instance with the specified maximum value, accuracy value to constrain,
percentage confidence, and prediction support file.
Namespace:
AGI.Foundation.Access.Constraints
Assembly:
AGI.Foundation.Navigation (in AGI.Foundation.Navigation.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic NavigationAccuracyPredictedConstraint(
double maximumValue,
NavigationAccuracyPredictedType valueToConstrain,
int percentConfidence,
PredictionSupportFile psf
)
Public Sub New (
maximumValue As Double,
valueToConstrain As NavigationAccuracyPredictedType,
percentConfidence As Integer,
psf As PredictionSupportFile
)
public:
NavigationAccuracyPredictedConstraint(
double maximumValue,
NavigationAccuracyPredictedType valueToConstrain,
int percentConfidence,
PredictionSupportFile^ psf
)
new :
maximumValue : float *
valueToConstrain : NavigationAccuracyPredictedType *
percentConfidence : int *
psf : PredictionSupportFile -> NavigationAccuracyPredictedConstraint
Parameters
- maximumValue
- Type: System.Double
Maximum allowable accuracy value. - valueToConstrain
- Type: AGI.Foundation.Navigation.NavigationAccuracyPredictedType
The type of accuracy to compute. - percentConfidence
- Type: System.Int32
The desired confidence interval percentage. Prior to applying the
constraint value, the predicted root mean square error is converted to the accuracy corresponding to this
percentage of confidence.
- psf
- Type: AGI.Foundation.Navigation.DataReaders.PredictionSupportFile
The prediction support file containing statistical data necessary to predict navigation accuracy.
Remarks
This constraint is ready for use with AccessComputation after being constructed using
this constructor. However, before evaluating this constraint
as part of an AccessQuery, it is necessary to set the ConstrainedObject property.
See Also