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