GeocoordinateSatelliteData
GeocoordinateSatelliteData
GeocoordinateSatelliteData
GeocoordinateSatelliteData
Class
Definition
Provides additional information about a Geocoordinate. This information is only applicable to position estimates obtained using satellite signals.
public : sealed class GeocoordinateSatelliteData : IGeocoordinateSatelliteDatapublic sealed class GeocoordinateSatelliteData : IGeocoordinateSatelliteDataPublic NotInheritable Class GeocoordinateSatelliteData Implements IGeocoordinateSatelliteData// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
| Capabilities |
ID_CAP_LOCATION [Windows Phone]
|
Remarks
You can use the Geocoordinate.PositionSource property to receive the GeocoordinateSatelliteData information.
The properties of this class convey information about the satellite geometry with which the position was obtained. Their values indicate the level of confidence that the position provided is precise. Lower values for dilution of precision (DOP) indicate high confidence on the precision of the position obtained. Positions with a DOP of 5 or less are considered reliable. Positions with a DOP higher than 10 are low confidence and should generally be discarded other than for a rough position estimation. Positions with a DOP higher than 20 should always be discarded.
Note
If the GPS sensor returns a zero for any of the dilution of precision (DOP) values, the corresponding properties will return NULL.
Properties
HorizontalDilutionOfPrecision HorizontalDilutionOfPrecision HorizontalDilutionOfPrecision HorizontalDilutionOfPrecision
Gets the horizontal dilution of precision (HDOP) of a Geocoordinate.
public : IReference<double> HorizontalDilutionOfPrecision { get; }public Nullable<double> HorizontalDilutionOfPrecision { get; }Public ReadOnly Property HorizontalDilutionOfPrecision As Nullable<double>// You can use this property in JavaScript.
- Value
- IReference<double> Nullable<double> Nullable<double> Nullable<double>
The horizontal dilution of precision (HDOP).
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
| Capabilities |
ID_CAP_LOCATION [Windows Phone]
|
PositionDilutionOfPrecision PositionDilutionOfPrecision PositionDilutionOfPrecision PositionDilutionOfPrecision
Gets the position dilution of precision (PDOP) of a Geocoordinate.
public : IReference<double> PositionDilutionOfPrecision { get; }public Nullable<double> PositionDilutionOfPrecision { get; }Public ReadOnly Property PositionDilutionOfPrecision As Nullable<double>// You can use this property in JavaScript.
- Value
- IReference<double> Nullable<double> Nullable<double> Nullable<double>
The position dilution of precision (PDOP).
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
| Capabilities |
ID_CAP_LOCATION [Windows Phone]
|
VerticalDilutionOfPrecision VerticalDilutionOfPrecision VerticalDilutionOfPrecision VerticalDilutionOfPrecision
Gets the vertical dilution of precision (VDOP) of a Geocoordinate.
public : IReference<double> VerticalDilutionOfPrecision { get; }public Nullable<double> VerticalDilutionOfPrecision { get; }Public ReadOnly Property VerticalDilutionOfPrecision As Nullable<double>// You can use this property in JavaScript.
- Value
- IReference<double> Nullable<double> Nullable<double> Nullable<double>
The vertical dilution of precision (VDOP).
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
| Capabilities |
ID_CAP_LOCATION [Windows Phone]
|