forked from dotnet/iot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRecommendedMinimumNavigationInformation.cs
316 lines (279 loc) · 10.9 KB
/
RecommendedMinimumNavigationInformation.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using Iot.Device.Common;
using UnitsNet;
namespace Iot.Device.Nmea0183.Sentences
{
// http://www.tronico.fi/OH6NT/docs/NMEA0183.pdf
// page 14
/// <summary>
/// Represents RMC NMEA0183 sentence (Recommended Minimum Navigation Information)
/// </summary>
public class RecommendedMinimumNavigationInformation : NmeaSentence
{
/// <summary>
/// The sentence id "RMC"
/// </summary>
public static SentenceId Id => new SentenceId('R', 'M', 'C');
private static bool Matches(SentenceId sentence) => Id == sentence;
private static bool Matches(TalkerSentence sentence) => Matches(sentence.Id);
/// <summary>
/// This is true for this message type
/// </summary>
public override bool ReplacesOlderInstance => true;
/// <summary>
/// The navigation status of the message
/// </summary>
public NavigationStatus? Status
{
get;
}
/// <summary>
/// The position
/// </summary>
public GeographicPosition Position
{
get;
}
/// <summary>
/// Speed over ground
/// </summary>
public Speed SpeedOverGround
{
get;
}
/// <summary>
/// The track over ground
/// </summary>
public Angle TrackMadeGoodInDegreesTrue
{
get;
}
/// <summary>
/// The (estimated) magnetic variation at the current location
/// </summary>
public Angle? MagneticVariationInDegrees
{
get;
}
/// <summary>
/// Extended status. Not usually required.
/// </summary>
/// <remarks>
/// http://www.tronico.fi/OH6NT/docs/NMEA0183.pdf
/// doesn't mention this field but all other sentences have this
/// and at least NEO-M8 sends it
/// possibly each status is related with some part of the message
/// but this unofficial spec does not clarify it
/// </remarks>
public NavigationStatus? Status2 { get; private set; }
/// <inheritdoc />
public override string ToNmeaParameterList()
{
// seems nullable don't interpolate well
StringBuilder b = new StringBuilder();
string time = Valid ? DateTime.ToString("HHmmss.fff", CultureInfo.InvariantCulture) : string.Empty;
b.AppendFormat($"{time},");
string status = Status.HasValue ? $"{(char)Status}" : "V";
b.AppendFormat($"{status},");
double? degrees;
CardinalDirection? direction;
(degrees, direction) = DegreesToNmea0183(Position.Latitude, true);
if (degrees.HasValue && direction.HasValue)
{
b.AppendFormat(CultureInfo.InvariantCulture, "{0:0000.00000},{1},", degrees.Value, (char)direction);
}
else
{
b.Append(",,");
}
(degrees, direction) = DegreesToNmea0183(Position.Longitude, false);
if (degrees.HasValue && direction.HasValue)
{
b.AppendFormat(CultureInfo.InvariantCulture, "{0:00000.00000},{1},", degrees.Value, (char)direction);
}
else
{
b.Append(",,");
}
string speed = SpeedOverGround.Value.ToString("0.000", CultureInfo.InvariantCulture);
b.Append($"{speed},");
string track = TrackMadeGoodInDegreesTrue.Value.ToString("0.000", CultureInfo.InvariantCulture);
b.Append($"{track},");
string date = Valid ? DateTime.ToString("ddMMyy", CultureInfo.InvariantCulture) : string.Empty;
b.Append($"{date},");
if (MagneticVariationInDegrees.HasValue)
{
string mag = Math.Abs(MagneticVariationInDegrees.Value.Value).ToString("0.000", CultureInfo.InvariantCulture);
if (MagneticVariationInDegrees >= Angle.Zero)
{
b.Append($"{mag},E");
}
else
{
b.Append($"{mag},W");
}
}
else
{
b.Append(",");
}
// undocumented status field will be optionally displayed
if (Status2.HasValue)
{
b.Append($",{(char)Status2.Value}"); // Also only add the comma if the parameter exists
}
return b.ToString();
}
/// <summary>
/// See <see cref="NmeaSentence"/> for constructor usage
/// </summary>
public RecommendedMinimumNavigationInformation(TalkerSentence sentence, DateTimeOffset time)
: this(sentence.TalkerId, Matches(sentence) ? sentence.Fields : throw new ArgumentException($"SentenceId does not match expected id '{Id}'"), time)
{
}
/// <summary>
/// See <see cref="NmeaSentence"/> for constructor usage
/// </summary>
public RecommendedMinimumNavigationInformation(TalkerId talkerId, IEnumerable<string> fields, DateTimeOffset time)
: base(talkerId, Id, time)
{
IEnumerator<string> field = fields.GetEnumerator();
Position = new GeographicPosition();
string newTime = ReadString(field);
NavigationStatus? status = (NavigationStatus?)ReadChar(field);
double? lat = ReadValue(field);
CardinalDirection? latTurn = (CardinalDirection?)ReadChar(field);
double? lon = ReadValue(field);
CardinalDirection? lonTurn = (CardinalDirection?)ReadChar(field);
double? speed = ReadValue(field);
double? track = ReadValue(field);
string date = ReadString(field);
DateTimeOffset dateTime;
if (date.Length != 0)
{
dateTime = ParseDateTime(date, newTime);
}
else
{
dateTime = ParseDateTime(time, newTime);
}
double? mag = ReadValue(field);
CardinalDirection? magTurn = (CardinalDirection?)ReadChar(field);
// handle undocumented field
// per spec we should not have any extra fields but NEO-M8 does have them
if (field.MoveNext())
{
string val = field.Current;
Status2 = string.IsNullOrEmpty(val) ? (NavigationStatus?)null : (NavigationStatus?)val.FirstOrDefault();
}
DateTime = dateTime;
Status = status;
double? latitude = Nmea0183ToDegrees(lat, latTurn);
double? longitude = Nmea0183ToDegrees(lon, lonTurn);
if (latitude.HasValue && longitude.HasValue)
{
Position = new GeographicPosition(latitude.Value, longitude.Value, 0);
// If the message contains no position, it is unusable.
// On the other hand, if the position is known (meaning the GPS receiver works), speed and track are known, too.
Valid = true;
}
SpeedOverGround = Speed.FromKnots(speed.GetValueOrDefault(0));
if (track.HasValue)
{
TrackMadeGoodInDegreesTrue = Angle.FromDegrees(track.Value);
}
else
{
TrackMadeGoodInDegreesTrue = Angle.Zero;
}
if (mag.HasValue && magTurn.HasValue)
{
MagneticVariationInDegrees = Angle.FromDegrees(mag.Value * DirectionToSign(magTurn.Value));
}
}
/// <summary>
/// See <see cref="NmeaSentence"/> for constructor usage
/// </summary>
public RecommendedMinimumNavigationInformation(
DateTimeOffset dateTime,
NavigationStatus? status,
GeographicPosition position,
Speed speedOverGround,
Angle trackMadeGoodInDegreesTrue,
Angle? magneticVariationInDegrees)
: base(OwnTalkerId, Id, dateTime)
{
Status = status;
Position = position;
SpeedOverGround = speedOverGround;
TrackMadeGoodInDegreesTrue = trackMadeGoodInDegreesTrue;
MagneticVariationInDegrees = magneticVariationInDegrees;
Valid = true;
}
private static int DirectionToSign(CardinalDirection direction)
{
switch (direction)
{
case CardinalDirection.North:
case CardinalDirection.East:
return 1;
case CardinalDirection.South:
case CardinalDirection.West:
return -1;
default:
throw new ArgumentOutOfRangeException(nameof(direction));
}
}
internal static double? Nmea0183ToDegrees(double? degreesMinutes, CardinalDirection? direction)
{
if (!degreesMinutes.HasValue || !direction.HasValue)
{
return null;
}
// ddddmm.mm
double degrees = Math.Floor(degreesMinutes.Value / 100);
double minutes = degreesMinutes.Value - (degrees * 100);
return ((double)degrees + (double)minutes / 60.0) * DirectionToSign(direction.Value);
}
/// <inheritdoc />
public override string ToReadableContent()
{
if (Valid)
{
return $"Position: {Position} / Speed {SpeedOverGround} / Track {TrackMadeGoodInDegreesTrue}";
}
return "Position unknown";
}
internal static (double? DegreesMinutes, CardinalDirection? Direction) DegreesToNmea0183(double? degrees, bool isLatitude)
{
if (!degrees.HasValue)
{
return (null, null);
}
CardinalDirection? direction;
double positiveDegrees;
if (degrees.Value >= 0)
{
direction = isLatitude ? CardinalDirection.North : CardinalDirection.East;
positiveDegrees = degrees.Value;
}
else
{
direction = isLatitude ? CardinalDirection.South : CardinalDirection.West;
positiveDegrees = -degrees.Value;
}
int integerDegrees = (int)positiveDegrees;
double fractionDegrees = positiveDegrees - integerDegrees;
double minutes = fractionDegrees * 60;
// ddddmm.mm
double? degreesMinutes = integerDegrees * 100 + minutes;
return (degreesMinutes, direction);
}
}
}