VDOP Property
Returns the current GPS vertical dilution of precision.
Syntax
Visual Basic
object.VDOP
Visual C++
object.GetVDOP()
| Part
| Description |
| object |
An object expression that evaluates to a GPS ToolKit object. |
Example
Visual Basic
Dim VDOP As Double
'Get VDOP
vdop = myGPSToolKit.VDOP
Visual C++
_variant_t vtVDOP;
// Get VDOP
vtVDOP = m_myGPSToolKit.GetVDOP();
double vdop = (double)vtVDOP;
Remarks
None
Default
Empty (VT_EMPTY)
Returns
A VARIANT (type VT_R8/double) containing the last reported VDOP value.
If no VDOP data is reported the variable will be empty (type VT_EMPTY).
Errors
None
See Also
HDOP property, PDOP property,
OperationMode property, SatelliteUpdate event
|