|
GPS ToolKit.NET
ExtendedFixData.PDOP Property
Returns the current GPS positional dilution of precision.
Syntax
[Visual Basic]
object.PDOP
[C#]
object.PDOP
[C++]
object->PDOP
Parameters
object
An object expression that evaluates to an ExtendedFixData instance.
Return Value
A double representing the current GPS PDOP.
Remarks
- If no PDOP data is available this value is -1.
- This property is only valid when using the NMEA 0183 protocol.
Default
-1
Errors
None
Example
[Visual Basic]
Dim pdop As Double
'Get PDOP
pdop = myGPSToolKit.ExtendedFixData.PDOP
[C#]
// Get PDOP
double pdop = myGPSToolKit.ExtendedFixData.PDOP;
[C++]
// Get PDOP
double pdop = myGPSToolKit->ExtendedFixData->PDOP;
See Also
HDOP property | VDOP property |
ExtendedFixData class
|