forked from jperson2000/GPS.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interfaces.cs
166 lines (146 loc) · 4.35 KB
/
Interfaces.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
using System;
using System.Collections.Generic;
namespace GeoFramework.Gps.Nmea
{
/// <summary>
/// Represents an NMEA sentence which contains latitude and longitude values.
/// </summary>
public interface IPositionSentence
{
Position Position { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains date and time in UTC.
/// </summary>
public interface IUtcDateTimeSentence
{
DateTime UtcDateTime { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains time in UTC.
/// </summary>
public interface IUtcTimeSentence
{
TimeSpan UtcTime { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains differential GPS information.
/// </summary>
public interface IDifferentialGpsSentence
{
int DifferentialGpsStationID { get; }
TimeSpan DifferentialGpsAge { get; }
}
/// <summary>
/// Represents an NMEA sentence which describes the current fix.
/// </summary>
public interface IFixModeSentence
{
FixMode FixMode { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains the method used to acquire a fix.
/// </summary>
public interface IFixMethodSentence
{
FixMethod FixMethod { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains GPS satellite information.
/// </summary>
public interface ISatelliteCollectionSentence
{
IList<Satellite> Satellites { get; }
}
/// <summary>
/// Represents an NMEA sentence which describes how the fix is being obtained.
/// </summary>
public interface IFixQualitySentence
{
FixQuality FixQuality { get; }
}
/// <summary>
/// Represents an NMEA sentence which returns the number of GPS satellites involved in the current fix.
/// </summary>
public interface IFixedSatelliteCountSentence
{
int FixedSatelliteCount { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains a list of fixed GPS satellites.
/// </summary>
public interface IFixedSatellitesSentence
{
IList<Satellite> FixedSatellites { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains the direction of travel.
/// </summary>
public interface IBearingSentence
{
Azimuth Bearing { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains whether a fix is currently acquired.
/// </summary>
public interface IFixStatusSentence
{
FixStatus FixStatus { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains
/// </summary>
public interface ISpeedSentence
{
Speed Speed { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains
/// </summary>
public interface IMagneticVariationSentence
{
Longitude MagneticVariation { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains
/// </summary>
public interface IAltitudeSentence
{
Distance Altitude { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains
/// </summary>
public interface IAltitudeAboveEllipsoidSentence
{
Distance AltitudeAboveEllipsoid { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains
/// </summary>
public interface IGeoidalSeparationSentence
{
Distance GeoidalSeparation { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains
/// </summary>
public interface IHorizontalDilutionOfPrecisionSentence
{
DilutionOfPrecision HorizontalDilutionOfPrecision { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains
/// </summary>
public interface IVerticalDilutionOfPrecisionSentence
{
DilutionOfPrecision VerticalDilutionOfPrecision { get; }
}
/// <summary>
/// Represents an NMEA sentence which contains
/// </summary>
public interface IPositionDilutionOfPrecisionSentence
{
DilutionOfPrecision PositionDilutionOfPrecision { get; }
}
}