-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmart0183.json
3386 lines (3386 loc) · 121 KB
/
Smart0183.json
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"sentence_id": "AAM",
"sentence_description": "Waypoint Arrival Alarm",
"fields": [
{
"name": "AAM 1",
"unique_id": "AAM_1",
"Full_description": "Status, BOOLEAN, A = Arrival circle entered, V = not passed",
"short_description": "Status SID AAM_1"
},
{
"name": "AAM 2",
"unique_id": "AAM_2",
"Full_description": "Status, BOOLEAN, A = perpendicular passed at waypoint, V = not passed",
"short_description": "Status SID AAM_2"
},
{
"name": "AAM 3",
"unique_id": "AAM_3",
"Full_description": "Arrival circle radius",
"short_description": "Arrival circle radius SID AAM_3"
},
{
"name": "AAM 4",
"unique_id": "AAM_4",
"Full_description": "Units of radius, nautical miles",
"short_description": "Units of radius SID AAM_4"
},
{
"name": "AAM 5",
"unique_id": "AAM_5",
"Full_description": "Waypoint ID",
"short_description": "Waypoint ID SID AAM_5"
}
]
},
{
"sentence_id": "ALM",
"sentence_description": "GPS Almanac Data",
"fields": [
{
"name": "ALM 1",
"unique_id": "ALM_1",
"Full_description": "Total number of messages",
"short_description": "Total number of messages SID ALM_1"
},
{
"name": "ALM 2",
"unique_id": "ALM_2",
"Full_description": "Message Number",
"short_description": "Message Number SID ALM_2"
},
{
"name": "ALM 3",
"unique_id": "ALM_3",
"Full_description": "Satellite PRN number (01 to 32)",
"short_description": "Satellite PRN number SID ALM_3"
},
{
"name": "ALM 4",
"unique_id": "ALM_4",
"Full_description": "GPS Week Number",
"short_description": "GPS Week Number SID ALM_4"
},
{
"name": "ALM 5",
"unique_id": "ALM_5",
"Full_description": "SV health, bits 17-24 of each almanac page",
"short_description": "SV health SID ALM_5"
},
{
"name": "ALM 6",
"unique_id": "ALM_6",
"Full_description": "Eccentricity",
"short_description": "Eccentricity SID ALM_6"
},
{
"name": "ALM 7",
"unique_id": "ALM_7",
"Full_description": "Almanac Reference Time",
"short_description": "Almanac Reference Time SID ALM_7"
},
{
"name": "ALM 8",
"unique_id": "ALM_8",
"Full_description": "Inclination Angle",
"short_description": "Inclination Angle SID ALM_8"
},
{
"name": "ALM 9",
"unique_id": "ALM_9",
"Full_description": "Rate of Right Ascension",
"short_description": "Rate of Right Ascension SID ALM_9"
},
{
"name": "ALM 10",
"unique_id": "ALM_10",
"Full_description": "Root of semi-major axis",
"short_description": "Root of semi SID ALM_10"
},
{
"name": "ALM 11",
"unique_id": "ALM_11",
"Full_description": "Argument of perigee",
"short_description": "Argument of perigee SID ALM_11"
},
{
"name": "ALM 12",
"unique_id": "ALM_12",
"Full_description": "Longitude of ascension node",
"short_description": "Longitude of ascension node SID ALM_12"
},
{
"name": "ALM 13",
"unique_id": "ALM_13",
"Full_description": "Mean anomaly",
"short_description": "Mean anomaly SID ALM_13"
},
{
"name": "ALM 14",
"unique_id": "ALM_14",
"Full_description": "F0 Clock Parameter",
"short_description": "F0 Clock Parameter SID ALM_14"
},
{
"name": "ALM 15",
"unique_id": "ALM_15",
"Full_description": "F1 Clock Parameter",
"short_description": "F1 Clock Parameter SID ALM_15"
}
]
},
{
"sentence_id": "APA",
"sentence_description": "Autopilot Sentence \"A\"",
"fields": [
{
"name": "APA 1",
"unique_id": "APA_1",
"Full_description": "Status V = Loran-C Blink or SNR warning V = general warning flag or other navigation systems when a reliable fix is not available",
"short_description": "Status V SID APA_1"
},
{
"name": "APA 2",
"unique_id": "APA_2",
"Full_description": "Status V = Loran-C Cycle Lock warning flag A = OK or not used",
"short_description": "Status V SID APA_2"
},
{
"name": "APA 3",
"unique_id": "APA_3",
"Full_description": "Cross Track Error Magnitude",
"short_description": "Cross Track Error Magnitude SID APA_3"
},
{
"name": "APA 4",
"unique_id": "APA_4",
"Full_description": "Direction to steer, L or R",
"short_description": "Direction to steer SID APA_4"
},
{
"name": "APA 5",
"unique_id": "APA_5",
"Full_description": "Cross Track Units (Nautic miles or kilometers)",
"short_description": "Cross Track Units SID APA_5"
},
{
"name": "APA 6",
"unique_id": "APA_6",
"Full_description": "Status A = Arrival Circle Entered",
"short_description": "Status SID APA_6"
},
{
"name": "APA 7",
"unique_id": "APA_7",
"Full_description": "Status A = Perpendicular passed at waypoint",
"short_description": "Status SID APA_7"
},
{
"name": "APA 8",
"unique_id": "APA_8",
"Full_description": "Bearing origin to destination",
"short_description": "Bearing origin to destination SID APA_8"
},
{
"name": "APA 9",
"unique_id": "APA_9",
"Full_description": "M = Magnetic, T = True",
"short_description": "M or T SID APA_9"
},
{
"name": "APA 10",
"unique_id": "APA_10",
"Full_description": "Destination Waypoint ID",
"short_description": "Destination Waypoint ID SID APA_10"
},
{
"name": "APA 11",
"unique_id": "APA_11",
"Full_description": "checksum",
"short_description": "checksum SID APA_11"
}
]
},
{
"sentence_id": "APB",
"sentence_description": "Autopilot Sentence \"B\"",
"fields": [
{
"name": "APB 1",
"unique_id": "APB_1",
"Full_description": "Status V = Loran-C Blink or SNR warning V = general warning flag or other navigation systems when a reliable fix is not available",
"short_description": "Status SID APB_1"
},
{
"name": "APB 2",
"unique_id": "APB_2",
"Full_description": "Status V = Loran-C Cycle Lock warning flag A = OK or not used",
"short_description": "Status SID APB_2"
},
{
"name": "APB 3",
"unique_id": "APB_3",
"Full_description": "Cross Track Error Magnitude",
"short_description": "Cross Track Error Magnitude SID APB_3"
},
{
"name": "APB 4",
"unique_id": "APB_4",
"Full_description": "Direction to steer, L or R",
"short_description": "Direction to steer SID APB_4"
},
{
"name": "APB 5",
"unique_id": "APB_5",
"Full_description": "Cross Track Units, N = Nautical Miles",
"short_description": "Cross Track Units SID APB_5"
},
{
"name": "APB 6",
"unique_id": "APB_6",
"Full_description": "Status A = Arrival Circle Entered",
"short_description": "Status SID APB_6"
},
{
"name": "APB 7",
"unique_id": "APB_7",
"Full_description": "Status A = Perpendicular passed at waypoint",
"short_description": "Status SID APB_7"
},
{
"name": "APB 8",
"unique_id": "APB_8",
"Full_description": "Bearing origin to destination",
"short_description": "Bearing origin to destination SID APB_8"
},
{
"name": "APB 9",
"unique_id": "APB_9",
"Full_description": "M = Magnetic, T = True",
"short_description": "M or T SID APB_9"
},
{
"name": "APB 10",
"unique_id": "APB_10",
"Full_description": "Destination Waypoint ID",
"short_description": "Destination Waypoint ID SID APB_10"
},
{
"name": "APB 11",
"unique_id": "APB_11",
"Full_description": "Bearing, present position to Destination",
"short_description": "Bearing SID APB_11"
},
{
"name": "APB 12",
"unique_id": "APB_12",
"Full_description": "M = Magnetic, T = True",
"short_description": "M or T SID APB_12"
},
{
"name": "APB 13",
"unique_id": "APB_13",
"Full_description": "Heading to steer to destination waypoint",
"short_description": "Heading to steer to destination waypoint SID APB_13"
},
{
"name": "APB 14",
"unique_id": "APB_14",
"Full_description": "M = Magnetic, T = True",
"short_description": "M or T SID APB_14"
}
]
},
{
"sentence_id": "BOD",
"sentence_description": "Bearing - Waypoint to Waypoint",
"fields": [
{
"name": "BOD 1",
"unique_id": "BOD_1",
"Full_description": "Bearing Degrees, TRUE",
"short_description": "Bearing Degrees SID BOD_1"
},
{
"name": "BOD 2",
"unique_id": "BOD_2",
"Full_description": "T = True",
"short_description": "T SID BOD_2"
},
{
"name": "BOD 3",
"unique_id": "BOD_3",
"Full_description": "Bearing Degrees, Magnetic",
"short_description": "Bearing Degrees SID BOD_3"
},
{
"name": "BOD 4",
"unique_id": "BOD_4",
"Full_description": "M = Magnetic",
"short_description": "M SID BOD_4"
},
{
"name": "BOD 5",
"unique_id": "BOD_5",
"Full_description": "TO Waypoint",
"short_description": "TO Waypoint SID BOD_5"
},
{
"name": "BOD 6",
"unique_id": "BOD_6",
"Full_description": "FROM Waypoint",
"short_description": "FROM Waypoint SID BOD_6"
}
]
},
{
"sentence_id": "BWC",
"sentence_description": "Bearing & Distance to Waypoint - Great Circle",
"fields": [
{
"name": "BWC 1",
"unique_id": "BWC_1",
"Full_description": "UTCTime",
"short_description": "UTCTime SID BWC_1"
},
{
"name": "BWC 2",
"unique_id": "BWC_2",
"Full_description": "Waypoint Latitude",
"short_description": "Waypoint Latitude SID BWC_2"
},
{
"name": "BWC 3",
"unique_id": "BWC_3",
"Full_description": "N = North, S = South",
"short_description": "N or S SID BWC_3"
},
{
"name": "BWC 4",
"unique_id": "BWC_4",
"Full_description": "Waypoint Longitude",
"short_description": "Waypoint Longitude SID BWC_4"
},
{
"name": "BWC 5",
"unique_id": "BWC_5",
"Full_description": "E = East, W = West",
"short_description": "E or W SID BWC_5"
},
{
"name": "BWC 6",
"unique_id": "BWC_6",
"Full_description": "Bearing, True",
"short_description": "Bearing SID BWC_6"
},
{
"name": "BWC 7",
"unique_id": "BWC_7",
"Full_description": "T = True",
"short_description": "T SID BWC_7"
},
{
"name": "BWC 8",
"unique_id": "BWC_8",
"Full_description": "Bearing, Magnetic",
"short_description": "Bearing SID BWC_8"
},
{
"name": "BWC 9",
"unique_id": "BWC_9",
"Full_description": "M = Magnetic",
"short_description": "M SID BWC_9"
},
{
"name": "BWC 10",
"unique_id": "BWC_10",
"Full_description": "Nautical Miles",
"short_description": "Nautical Miles SID BWC_10"
},
{
"name": "BWC 11",
"unique_id": "BWC_11",
"Full_description": "N = Nautical Miles",
"short_description": "N SID BWC_11"
},
{
"name": "BWC 12",
"unique_id": "BWC_12",
"Full_description": "Waypoint ID",
"short_description": "Waypoint ID SID BWC_12"
},
{
"name": "BWC 13",
"unique_id": "BWC_13",
"Full_description": "FAA mode indicator (NMEA 2.3 and later, optional)",
"short_description": "FAA mode indicator SID BWC_13"
}
]
},
{
"sentence_id": "BWR",
"sentence_description": "Bearing and Distance to Waypoint - Rhumb Line",
"fields": [
{
"name": "BWR 1",
"unique_id": "BWR_1",
"Full_description": "UTCTime",
"short_description": "UTCTime SID BWR_1"
},
{
"name": "BWR 2",
"unique_id": "BWR_2",
"Full_description": "Waypoint Latitude",
"short_description": "Waypoint Latitude SID BWR_2"
},
{
"name": "BWR 3",
"unique_id": "BWR_3",
"Full_description": "N = North, S = South",
"short_description": "N or S SID BWR_3"
},
{
"name": "BWR 4",
"unique_id": "BWR_4",
"Full_description": "Waypoint Longitude",
"short_description": "Waypoint Longitude SID BWR_4"
},
{
"name": "BWR 5",
"unique_id": "BWR_5",
"Full_description": "E = East, W = West",
"short_description": "E or W SID BWR_5"
},
{
"name": "BWR 6",
"unique_id": "BWR_6",
"Full_description": "Bearing, True",
"short_description": "Bearing SID BWR_6"
},
{
"name": "BWR 7",
"unique_id": "BWR_7",
"Full_description": "T = True",
"short_description": "T SID BWR_7"
},
{
"name": "BWR 8",
"unique_id": "BWR_8",
"Full_description": "Bearing, Magnetic",
"short_description": "Bearing SID BWR_8"
},
{
"name": "BWR 9",
"unique_id": "BWR_9",
"Full_description": "M = Magnetic",
"short_description": "M SID BWR_9"
},
{
"name": "BWR 10",
"unique_id": "BWR_10",
"Full_description": "Nautical Miles",
"short_description": "Nautical Miles SID BWR_10"
},
{
"name": "BWR 11",
"unique_id": "BWR_11",
"Full_description": "N = Nautical Miles",
"short_description": "N SID BWR_11"
},
{
"name": "BWR 12",
"unique_id": "BWR_12",
"Full_description": "Waypoint ID",
"short_description": "Waypoint ID SID BWR_12"
}
]
},
{
"sentence_id": "BWW",
"sentence_description": "Bearing - Waypoint to Waypoint",
"fields": [
{
"name": "BWW 1",
"unique_id": "BWW_1",
"Full_description": "Bearing Degrees, TRUE",
"short_description": "Bearing Degrees SID BWW_1"
},
{
"name": "BWW 2",
"unique_id": "BWW_2",
"Full_description": "T = True",
"short_description": "T SID BWW_2"
},
{
"name": "BWW 3",
"unique_id": "BWW_3",
"Full_description": "Bearing Degrees, Magnetic",
"short_description": "Bearing Degrees SID BWW_3"
},
{
"name": "BWW 4",
"unique_id": "BWW_4",
"Full_description": "M = Magnetic",
"short_description": "M SID BWW_4"
},
{
"name": "BWW 5",
"unique_id": "BWW_5",
"Full_description": "TO Waypoint",
"short_description": "TO Waypoint SID BWW_5"
},
{
"name": "BWW 6",
"unique_id": "BWW_6",
"Full_description": "FROM Waypoint",
"short_description": "FROM Waypoint SID BWW_6"
}
]
},
{
"sentence_id": "DBK",
"sentence_description": "Depth Below Keel",
"fields": [
{
"name": "DBK 1",
"unique_id": "DBK_1",
"Full_description": "Depth, feet",
"short_description": "Depth feet SID DBK_1"
},
{
"name": "DBK 2",
"unique_id": "DBK_2",
"Full_description": "f = feet",
"short_description": "f SID DBK_2"
},
{
"name": "DBK 3",
"unique_id": "DBK_3",
"Full_description": "Depth, meters",
"short_description": "Depth meters SID DBK_3"
},
{
"name": "DBK 4",
"unique_id": "DBK_4",
"Full_description": "M = meters",
"short_description": "M SID DBK_4"
},
{
"name": "DBK 5",
"unique_id": "DBK_5",
"Full_description": "Depth, Fathoms",
"short_description": "Depth Fathoms SID DBK_5"
},
{
"name": "DBK 6",
"unique_id": "DBK_6",
"Full_description": "F = Fathoms",
"short_description": "F SID DBK_6"
}
]
},
{
"sentence_id": "DBS",
"sentence_description": "Depth Below Surface",
"fields": [
{
"name": "DBS 1",
"unique_id": "DBS_1",
"Full_description": "Depth, feet",
"short_description": "Depth feet SID DBS_1"
},
{
"name": "DBS 2",
"unique_id": "DBS_2",
"Full_description": "f = feet",
"short_description": "f SID DBS_2"
},
{
"name": "DBS 3",
"unique_id": "DBS_3",
"Full_description": "Depth, meters",
"short_description": "Depth meters SID DBS_3"
},
{
"name": "DBS 4",
"unique_id": "DBS_4",
"Full_description": "M = meters",
"short_description": "M SID DBS_4"
},
{
"name": "DBS 5",
"unique_id": "DBS_5",
"Full_description": "Depth, Fathoms",
"short_description": "Depth Fathoms SID DBS_5"
},
{
"name": "DBS 6",
"unique_id": "DBS_6",
"Full_description": "F = Fathoms",
"short_description": "F SID DBS_6"
}
]
},
{
"sentence_id": "DBT",
"sentence_description": "Depth below transducer",
"fields": [
{
"name": "DBT 1",
"unique_id": "DBT_1",
"Full_description": "Depth, feet",
"short_description": "Depth feet SID DBT_1"
},
{
"name": "DBT 2",
"unique_id": "DBT_2",
"Full_description": "f = feet",
"short_description": "f SID DBT_2"
},
{
"name": "DBT 3",
"unique_id": "DBT_3",
"Full_description": "Depth, meters",
"short_description": "Depth meters SID DBT_3"
},
{
"name": "DBT 4",
"unique_id": "DBT_4",
"Full_description": "M = meters",
"short_description": "M SID DBT_4"
},
{
"name": "DBT 5",
"unique_id": "DBT_5",
"Full_description": "Depth, Fathoms",
"short_description": "Depth Fathoms SID DBT_5"
},
{
"name": "DBT 6",
"unique_id": "DBT_6",
"Full_description": "F = Fathoms",
"short_description": "F SID DBT_6"
}
]
},
{
"sentence_id": "DCN",
"sentence_description": "Decca Position",
"fields": [
{
"name": "DCN 1",
"unique_id": "DCN_1",
"Full_description": "Decca chain identifier",
"short_description": "Decca chain identifier SID DCN_1"
},
{
"name": "DCN 2",
"unique_id": "DCN_2",
"Full_description": "Red Zone Identifier",
"short_description": "Red Zone Identifier SID DCN_2"
},
{
"name": "DCN 3",
"unique_id": "DCN_3",
"Full_description": "Red Line Of Position",
"short_description": "Red Line Of Position SID DCN_3"
},
{
"name": "DCN 4",
"unique_id": "DCN_4",
"Full_description": "Red Master Line Status",
"short_description": "Red Master Line Status SID DCN_4"
},
{
"name": "DCN 5",
"unique_id": "DCN_5",
"Full_description": "Green Zone Identifier",
"short_description": "Green Zone Identifier SID DCN_5"
},
{
"name": "DCN 6",
"unique_id": "DCN_6",
"Full_description": "Green Line Of Position",
"short_description": "Green Line Of Position SID DCN_6"
},
{
"name": "DCN 7",
"unique_id": "DCN_7",
"Full_description": "Green Master Line Status",
"short_description": "Green Master Line Status SID DCN_7"
},
{
"name": "DCN 8",
"unique_id": "DCN_8",
"Full_description": "Purple Zone Identifier",
"short_description": "Purple Zone Identifier SID DCN_8"
},
{
"name": "DCN 9",
"unique_id": "DCN_9",
"Full_description": "Purple Line Of Position",
"short_description": "Purple Line Of Position SID DCN_9"
},
{
"name": "DCN 10",
"unique_id": "DCN_10",
"Full_description": "Purple Master Line Status",
"short_description": "Purple Master Line Status SID DCN_10"
},
{
"name": "DCN 11",
"unique_id": "DCN_11",
"Full_description": "Red Line Navigation Use",
"short_description": "Red Line Navigation Use SID DCN_11"
},
{
"name": "DCN 12",
"unique_id": "DCN_12",
"Full_description": "Green Line Navigation Use",
"short_description": "Green Line Navigation Use SID DCN_12"
},
{
"name": "DCN 13",
"unique_id": "DCN_13",
"Full_description": "Purple Line Navigation Use",
"short_description": "Purple Line Navigation Use SID DCN_13"
},
{
"name": "DCN 14",
"unique_id": "DCN_14",
"Full_description": "Position Uncertainity",
"short_description": "Position Uncertainity SID DCN_14"
},
{
"name": "DCN 15",
"unique_id": "DCN_15",
"Full_description": "N = Nautical Miles",
"short_description": "N SID DCN_15"
},
{
"name": "DCN 16",
"unique_id": "DCN_16",
"Full_description": "Fix Data Basis - 1 = Normal Pattern - 2 = Lane Identification Pattern - 3 = Lane Identification Transmissions",
"short_description": "Fix Data Basis SID DCN_16"
}
]
},
{
"sentence_id": "DPT",
"sentence_description": "Depth of Water",
"fields": [
{
"name": "DPT 1",
"unique_id": "DPT_1",
"Full_description": "Depth, meters",
"short_description": "Depth meters SID DPT_1"
},
{
"name": "DPT 2",
"unique_id": "DPT_2",
"Full_description": "Offset from transducer, positive means distance from tansducer to water line negative means distance from transducer to keel",
"short_description": "Offset from transducer SID DPT_2"
}
]
},
{
"sentence_id": "DTM",
"sentence_description": "Datum Reference",
"fields": [
{
"name": "DTM 1",
"unique_id": "DTM_1",
"Full_description": "Local datum code.",
"short_description": "Local datum code SID DTM_1"
},
{
"name": "DTM 2",
"unique_id": "DTM_2",
"Full_description": "Local datum subcode. May be blank.",
"short_description": "Local datum subcode SID DTM_2"
},
{
"name": "DTM 3",
"unique_id": "DTM_3",
"Full_description": "Latitude offset (minutes)",
"short_description": "Latitude offset SID DTM_3"
},
{
"name": "DTM 4",
"unique_id": "DTM_4",
"Full_description": "N or S",
"short_description": "N or S SID DTM_4"
},
{
"name": "DTM 5",
"unique_id": "DTM_5",
"Full_description": "Longitude offset (minutes)",
"short_description": "Longitude offset SID DTM_5"
},
{
"name": "DTM 6",
"unique_id": "DTM_6",
"Full_description": "E or W",
"short_description": "E or W SID DTM_6"
},
{
"name": "DTM 7",
"unique_id": "DTM_7",
"Full_description": "Altitude offset in meters",
"short_description": "Altitude offset in meters SID DTM_7"
},
{
"name": "DTM 8",
"unique_id": "DTM_8",
"Full_description": "Datum name. What's usually seen here is \"W84\", the standard WGS84 datum used by GPS.",
"short_description": "Datum name SID DTM_8"
}
]
},
{
"sentence_id": "FSI",
"sentence_description": "Frequency Set Information",
"fields": [
{
"name": "FSI 1",
"unique_id": "FSI_1",
"Full_description": "Transmitting Frequency",
"short_description": "Transmitting Frequency SID FSI_1"
},
{
"name": "FSI 2",
"unique_id": "FSI_2",
"Full_description": "Receiving Frequency",
"short_description": "Receiving Frequency SID FSI_2"
},
{
"name": "FSI 3",
"unique_id": "FSI_3",
"Full_description": "Communications Mode (NMEA Syntax 2)",
"short_description": "Communications Mode SID FSI_3"
},
{
"name": "FSI 4",
"unique_id": "FSI_4",
"Full_description": "Power Level",
"short_description": "Power Level SID FSI_4"
}
]
},
{
"sentence_id": "GBS",
"sentence_description": "GPS Satellite Fault Detection",
"fields": [
{
"name": "GBS 1",
"unique_id": "GBS_1",
"Full_description": "UTC time of the GGA or GNS fix associated with this sentence",
"short_description": "UTC time of the GGA SID GBS_1"
},
{
"name": "GBS 2",
"unique_id": "GBS_2",
"Full_description": "Expected error in latitude (meters)",
"short_description": "Expected error in latitude SID GBS_2"
},
{
"name": "GBS 3",
"unique_id": "GBS_3",
"Full_description": "Expected error in longitude (meters)",
"short_description": "Expected error in longitude SID GBS_3"
},
{
"name": "GBS 4",
"unique_id": "GBS_4",
"Full_description": "Expected error in altitude (meters)",
"short_description": "Expected error in altitude SID GBS_4"
},
{
"name": "GBS 5",
"unique_id": "GBS_5",
"Full_description": "PRN of most likely failed satellite",
"short_description": "PRN of most likely failed satellite SID GBS_5"
},
{
"name": "GBS 6",
"unique_id": "GBS_6",
"Full_description": "Probability of missed detection for most likely failed satellite",
"short_description": "Probability of missed detection SID GBS_6"
},
{
"name": "GBS 7",
"unique_id": "GBS_7",
"Full_description": "Estimate of bias in meters on most likely failed satellite",
"short_description": "Estimate of bias in meters SID GBS_7"
},
{
"name": "GBS 8",
"unique_id": "GBS_8",
"Full_description": "Standard deviation of bias estimate",
"short_description": "Standard deviation of bias estimate SID GBS_8"
}
]
},
{
"sentence_id": "GGA",
"sentence_description": "Global Positioning System Fix Data",
"fields": [
{
"name": "GGA 1",
"unique_id": "GGA_1",
"Full_description": "Universal Time Coordinated (UTC)",
"short_description": "Universal Time Coordinated SID GGA_1"
},
{
"name": "GGA 2",
"unique_id": "GGA_2",
"Full_description": "Latitude",
"short_description": "Latitude SID GGA_2"
},
{
"name": "GGA 3",
"unique_id": "GGA_3",
"Full_description": "N or S (North or South)",
"short_description": "N or S SID GGA_3"
},
{
"name": "GGA 4",
"unique_id": "GGA_4",
"Full_description": "Longitude",
"short_description": "Longitude SID GGA_4"
},
{
"name": "GGA 5",
"unique_id": "GGA_5",
"Full_description": "E or W (East or West)",
"short_description": "E or W SID GGA_5"
},
{
"name": "GGA 6",
"unique_id": "GGA_6",
"Full_description": "GPS Quality Indicator, - 0 - fix not available, - 1 - GPS fix, - 2 - Differential GPS fix (values above 2 are 2.3 features) - 3 = PPS fix - 4 = Real Time Kinematic - 5 = Float RTK - 6 = estimated (dead reckoning) - 7 = Manual input mode - 8 = Simulation mode",
"short_description": "GPS Quality Indicator SID GGA_6"
},
{
"name": "GGA 7",
"unique_id": "GGA_7",
"Full_description": "Number of satellites in view, 00 - 12",
"short_description": "Number of satellites in view SID GGA_7"
},
{
"name": "GGA 8",
"unique_id": "GGA_8",
"Full_description": "Horizontal Dilution of precision (meters)",
"short_description": "Horizontal Dilution of precision SID GGA_8"
},
{
"name": "GGA 9",
"unique_id": "GGA_9",
"Full_description": "Antenna Altitude above/below mean-sea-level (geoid) (in meters)",
"short_description": "Antenna Altitude above SID GGA_9"
},
{
"name": "GGA 10",
"unique_id": "GGA_10",
"Full_description": "Units of antenna altitude, meters",
"short_description": "Units of antenna altitude SID GGA_10"
},
{
"name": "GGA 11",
"unique_id": "GGA_11",
"Full_description": "Geoidal separation, the difference between the WGS-84 earth ellipsoid and mean-sea-level (geoid), \"-\" means mean-sea-level below ellipsoid",
"short_description": "Geoidal separation SID GGA_11"
},
{
"name": "GGA 12",
"unique_id": "GGA_12",
"Full_description": "Units of geoidal separation, meters",
"short_description": "Units of geoidal separation SID GGA_12"