-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
GpsFixQuality.cs
38 lines (34 loc) · 1.1 KB
/
GpsFixQuality.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) .NET Foundation and Contributors
// Portions Copyright (c) Eclo Solutions
// See LICENSE file in the project root for full license information.
namespace Iot.Device.Swarm
{
/// <summary>
/// GPS fix Quality information of the Tile.
/// </summary>
public class GpsFixQuality
{
/// <summary>
/// Gets horizontal dilution of precision (0..9999).
/// </summary>
/// <remarks>
/// This value it's the actual hdop * 100.
/// </remarks>
public uint Hdop { get; internal set; }
/// <summary>
/// Gets vertical dilution of precision (0..9999).
/// </summary>
/// <remarks>
/// This value it's the actual vdop * 100.
/// </remarks>
public uint Vdop { get; internal set; }
/// <summary>
/// Gets number of GNSS satellites used in solution.
/// </summary>
public uint GnssSatellitesCount { get; internal set; }
/// <summary>
/// Gets fix type.
/// </summary>
public GpsFixType FixType { get; internal set; }
}
}