Click or drag to resize

NavigationAccuracyPredictedCompute Method

Computes predicted navigation accuracy.

Namespace:  AGI.Foundation.Navigation
Assembly:  AGI.Foundation.Navigation (in AGI.Foundation.Navigation.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static NavigationAccuracyPredicted Compute(
	DilutionOfPrecision dilutionOfPrecision,
	IList<PredictionSupportRecord> predictionSupportRecords,
	IList<double> receiverNoise
)

Parameters

dilutionOfPrecision
Type: AGI.Foundation.NavigationDilutionOfPrecision
The dilution of precision (DOP) for the configuration of GPS satellites.
predictionSupportRecords
Type: System.Collections.GenericIListPredictionSupportRecord
For each satellite to consider, a prediction support record used to predict the performance of the satellite.
receiverNoise
Type: System.Collections.GenericIListDouble
For each satellite to consider, the total noise, in meters, receiving the signal. The list must have an entry for each entry in predictionSupportRecords.

Return Value

Type: NavigationAccuracyPredicted
The predicted navigation accuracy.
Exceptions
ExceptionCondition
ArgumentException Thrown when the receiverNoise parameter does not have the same number of elements as the predictionSupportRecords parameter.
InvalidOperationException Thrown when predictionSupportRecords contains a reference to a PredictionSupportRecord.
See Also