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