|
GPS ToolKit.NET
ExtendedFixData.EstimatedPositionError Property
Returns the current estimated GPS position error in meters.
Syntax
[Visual Basic]
object.EstimatedPositionError
[C#]
object.EstimatedPositionError
[C++]
object->EstimatedPositionError
Parameters
object
An object expression that evaluates to an ExtendedFixData instance.
Return Value
A double representing the current GPS estimated position error in meters.
Remarks
- If no estimated position error data is available this value is -1.
- This property is only valid when using the Garmin protocol.
Default
-1
Errors
None
Example
[Visual Basic]
Dim positionerr As Double
'Get estimated position error
positionerr = myGPSToolKit.ExtendedFixData.EstimatedPositionError
[C#]
// Get estimated position error
double positionerr = myGPSToolKit.ExtendedFixData.EstimatedPositionError;
[C++]
// Get estimated position error
double positionerr = myGPSToolKit->ExtendedFixData->EstimatedPositionError;
See Also
ExtendedFixData class | EstimatedHorizontalError property |
HDOP property | EstimatedVerticalError property |
PositionUpdate event
|