-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathSbpJson.js
4029 lines (3580 loc) · 150 KB
/
SbpJson.js
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
// To parse this data:
//
// const Convert = require("./file");
//
// const acqSvProfile = Convert.toAcqSvProfile(json);
// const almanacCommonContent = Convert.toAlmanacCommonContent(json);
// const boundsHeader = Convert.toBoundsHeader(json);
// const carrierPhase = Convert.toCarrierPhase(json);
// const codeBiasesContent = Convert.toCodeBiasesContent(json);
// const codePhaseBiasesSatSig = Convert.toCodePhaseBiasesSatSig(json);
// const doppler = Convert.toDoppler(json);
// const eCDSASignature = Convert.toECDSASignature(json);
// const ephemerisCommonContent = Convert.toEphemerisCommonContent(json);
// const estimatedHorizontalErrorEllipse = Convert.toEstimatedHorizontalErrorEllipse(json);
// const gNSSInputType = Convert.toGNSSInputType(json);
// const gnssCapb = Convert.toGnssCapb(json);
// const gnssSignal = Convert.toGnssSignal(json);
// const gpsTime = Convert.toGpsTime(json);
// const gpsTimeSEC = Convert.toGpsTimeSEC(json);
// const gridElement = Convert.toGridElement(json);
// const gridElementNoStd = Convert.toGridElementNoStd(json);
// const griddedCorrectionHeader = Convert.toGriddedCorrectionHeader(json);
// const iMUInputType = Convert.toIMUInputType(json);
// const integritySSRHeader = Convert.toIntegritySSRHeader(json);
// const latency = Convert.toLatency(json);
// const measurementState = Convert.toMeasurementState(json);
// const msgAcknowledge = Convert.toMsgAcknowledge(json);
// const msgAcqResult = Convert.toMsgAcqResult(json);
// const msgAcqSvProfile = Convert.toMsgAcqSvProfile(json);
// const msgAgeCorrections = Convert.toMsgAgeCorrections(json);
// const msgAlmanac = Convert.toMsgAlmanac(json);
// const msgAlmanacGPS = Convert.toMsgAlmanacGPS(json);
// const msgAlmanacGlo = Convert.toMsgAlmanacGlo(json);
// const msgAngularRate = Convert.toMsgAngularRate(json);
// const msgBasePosECEF = Convert.toMsgBasePosECEF(json);
// const msgBasePosLLH = Convert.toMsgBasePosLLH(json);
// const msgBaselineECEF = Convert.toMsgBaselineECEF(json);
// const msgBaselineHeading = Convert.toMsgBaselineHeading(json);
// const msgBaselineNED = Convert.toMsgBaselineNED(json);
// const msgBootloaderHandshakeReq = Convert.toMsgBootloaderHandshakeReq(json);
// const msgBootloaderHandshakeResp = Convert.toMsgBootloaderHandshakeResp(json);
// const msgBootloaderJumpToApp = Convert.toMsgBootloaderJumpToApp(json);
// const msgCellModemStatus = Convert.toMsgCellModemStatus(json);
// const msgCertificateChain = Convert.toMsgCertificateChain(json);
// const msgCommandOutput = Convert.toMsgCommandOutput(json);
// const msgCommandReq = Convert.toMsgCommandReq(json);
// const msgCommandResp = Convert.toMsgCommandResp(json);
// const msgCsacTelemetry = Convert.toMsgCsacTelemetry(json);
// const msgCsacTelemetryLabels = Convert.toMsgCsacTelemetryLabels(json);
// const msgCwResults = Convert.toMsgCwResults(json);
// const msgCwStart = Convert.toMsgCwStart(json);
// const msgDeviceMonitor = Convert.toMsgDeviceMonitor(json);
// const msgDgnssStatus = Convert.toMsgDgnssStatus(json);
// const msgDops = Convert.toMsgDops(json);
// const msgEcdsaCertificate = Convert.toMsgEcdsaCertificate(json);
// const msgEcdsaSignature = Convert.toMsgEcdsaSignature(json);
// const msgEphemerisBds = Convert.toMsgEphemerisBds(json);
// const msgEphemerisGPS = Convert.toMsgEphemerisGPS(json);
// const msgEphemerisGal = Convert.toMsgEphemerisGal(json);
// const msgEphemerisGlo = Convert.toMsgEphemerisGlo(json);
// const msgEphemerisQzss = Convert.toMsgEphemerisQzss(json);
// const msgEphemerisSbas = Convert.toMsgEphemerisSbas(json);
// const msgEXTEvent = Convert.toMsgEXTEvent(json);
// const msgFileioConfigReq = Convert.toMsgFileioConfigReq(json);
// const msgFileioConfigResp = Convert.toMsgFileioConfigResp(json);
// const msgFileioReadDirReq = Convert.toMsgFileioReadDirReq(json);
// const msgFileioReadDirResp = Convert.toMsgFileioReadDirResp(json);
// const msgFileioReadReq = Convert.toMsgFileioReadReq(json);
// const msgFileioReadResp = Convert.toMsgFileioReadResp(json);
// const msgFileioRemove = Convert.toMsgFileioRemove(json);
// const msgFileioWriteReq = Convert.toMsgFileioWriteReq(json);
// const msgFileioWriteResp = Convert.toMsgFileioWriteResp(json);
// const msgFlashDone = Convert.toMsgFlashDone(json);
// const msgFlashErase = Convert.toMsgFlashErase(json);
// const msgFlashProgram = Convert.toMsgFlashProgram(json);
// const msgFlashReadReq = Convert.toMsgFlashReadReq(json);
// const msgFlashReadResp = Convert.toMsgFlashReadResp(json);
// const msgFrontEndGain = Convert.toMsgFrontEndGain(json);
// const msgFwd = Convert.toMsgFwd(json);
// const msgGPSTime = Convert.toMsgGPSTime(json);
// const msgGPSTimeGnss = Convert.toMsgGPSTimeGnss(json);
// const msgGloBiases = Convert.toMsgGloBiases(json);
// const msgGnssCapb = Convert.toMsgGnssCapb(json);
// const msgGnssTimeOffset = Convert.toMsgGnssTimeOffset(json);
// const msgGroupDelay = Convert.toMsgGroupDelay(json);
// const msgGroupMeta = Convert.toMsgGroupMeta(json);
// const msgHeartbeat = Convert.toMsgHeartbeat(json);
// const msgIarState = Convert.toMsgIarState(json);
// const msgImuAux = Convert.toMsgImuAux(json);
// const msgImuRaw = Convert.toMsgImuRaw(json);
// const msgInsStatus = Convert.toMsgInsStatus(json);
// const msgInsUpdates = Convert.toMsgInsUpdates(json);
// const msgIono = Convert.toMsgIono(json);
// const msgLinuxCPUState = Convert.toMsgLinuxCPUState(json);
// const msgLinuxMemState = Convert.toMsgLinuxMemState(json);
// const msgLinuxProcessFdCount = Convert.toMsgLinuxProcessFdCount(json);
// const msgLinuxProcessFdSummary = Convert.toMsgLinuxProcessFdSummary(json);
// const msgLinuxProcessSocketCounts = Convert.toMsgLinuxProcessSocketCounts(json);
// const msgLinuxProcessSocketQueues = Convert.toMsgLinuxProcessSocketQueues(json);
// const msgLinuxSocketUsage = Convert.toMsgLinuxSocketUsage(json);
// const msgLinuxSysState = Convert.toMsgLinuxSysState(json);
// const msgLog = Convert.toMsgLog(json);
// const msgM25FlashWriteStatus = Convert.toMsgM25FlashWriteStatus(json);
// const msgMagRaw = Convert.toMsgMagRaw(json);
// const msgMaskSatellite = Convert.toMsgMaskSatellite(json);
// const msgMeasurementState = Convert.toMsgMeasurementState(json);
// const msgNapDeviceDnaReq = Convert.toMsgNapDeviceDnaReq(json);
// const msgNapDeviceDnaResp = Convert.toMsgNapDeviceDnaResp(json);
// const msgNdbEvent = Convert.toMsgNdbEvent(json);
// const msgNetworkBandwidthUsage = Convert.toMsgNetworkBandwidthUsage(json);
// const msgNetworkStateReq = Convert.toMsgNetworkStateReq(json);
// const msgNetworkStateResp = Convert.toMsgNetworkStateResp(json);
// const msgObs = Convert.toMsgObs(json);
// const msgOdometry = Convert.toMsgOdometry(json);
// const msgOrientEuler = Convert.toMsgOrientEuler(json);
// const msgOrientQuat = Convert.toMsgOrientQuat(json);
// const msgOsr = Convert.toMsgOsr(json);
// const msgPosECEF = Convert.toMsgPosECEF(json);
// const msgPosECEFCov = Convert.toMsgPosECEFCov(json);
// const msgPosECEFCovGnss = Convert.toMsgPosECEFCovGnss(json);
// const msgPosECEFGnss = Convert.toMsgPosECEFGnss(json);
// const msgPosLLH = Convert.toMsgPosLLH(json);
// const msgPosLLHAcc = Convert.toMsgPosLLHAcc(json);
// const msgPosLLHCov = Convert.toMsgPosLLHCov(json);
// const msgPosLLHCovGnss = Convert.toMsgPosLLHCovGnss(json);
// const msgPosLLHGnss = Convert.toMsgPosLLHGnss(json);
// const msgPoseRelative = Convert.toMsgPoseRelative(json);
// const msgPpsTime = Convert.toMsgPpsTime(json);
// const msgProtectionLevel = Convert.toMsgProtectionLevel(json);
// const msgReferenceFrameParam = Convert.toMsgReferenceFrameParam(json);
// const msgReset = Convert.toMsgReset(json);
// const msgResetFilters = Convert.toMsgResetFilters(json);
// const msgSbasRaw = Convert.toMsgSbasRaw(json);
// const msgSensorAidEvent = Convert.toMsgSensorAidEvent(json);
// const msgSetTime = Convert.toMsgSetTime(json);
// const msgSettingsReadByIndexDone = Convert.toMsgSettingsReadByIndexDone(json);
// const msgSettingsReadByIndexReq = Convert.toMsgSettingsReadByIndexReq(json);
// const msgSettingsReadByIndexResp = Convert.toMsgSettingsReadByIndexResp(json);
// const msgSettingsReadReq = Convert.toMsgSettingsReadReq(json);
// const msgSettingsReadResp = Convert.toMsgSettingsReadResp(json);
// const msgSettingsRegister = Convert.toMsgSettingsRegister(json);
// const msgSettingsRegisterResp = Convert.toMsgSettingsRegisterResp(json);
// const msgSettingsSave = Convert.toMsgSettingsSave(json);
// const msgSettingsWrite = Convert.toMsgSettingsWrite(json);
// const msgSettingsWriteResp = Convert.toMsgSettingsWriteResp(json);
// const msgSolnMeta = Convert.toMsgSolnMeta(json);
// const msgSpecan = Convert.toMsgSpecan(json);
// const msgSsrCodeBiases = Convert.toMsgSsrCodeBiases(json);
// const msgSsrCodePhaseBiasesBounds = Convert.toMsgSsrCodePhaseBiasesBounds(json);
// const msgSsrFlagHighLevel = Convert.toMsgSsrFlagHighLevel(json);
// const msgSsrFlagIonoGridPointSatLos = Convert.toMsgSsrFlagIonoGridPointSatLos(json);
// const msgSsrFlagIonoGridPoints = Convert.toMsgSsrFlagIonoGridPoints(json);
// const msgSsrFlagIonoTileSatLos = Convert.toMsgSsrFlagIonoTileSatLos(json);
// const msgSsrFlagSatellites = Convert.toMsgSsrFlagSatellites(json);
// const msgSsrFlagTropoGridPoints = Convert.toMsgSsrFlagTropoGridPoints(json);
// const msgSsrGriddedCorrection = Convert.toMsgSsrGriddedCorrection(json);
// const msgSsrGriddedCorrectionBounds = Convert.toMsgSsrGriddedCorrectionBounds(json);
// const msgSsrOrbitClock = Convert.toMsgSsrOrbitClock(json);
// const msgSsrOrbitClockBounds = Convert.toMsgSsrOrbitClockBounds(json);
// const msgSsrOrbitClockBoundsDegradation = Convert.toMsgSsrOrbitClockBoundsDegradation(json);
// const msgSsrPhaseBiases = Convert.toMsgSsrPhaseBiases(json);
// const msgSsrSatelliteApc = Convert.toMsgSsrSatelliteApc(json);
// const msgSsrStecCorrection = Convert.toMsgSsrStecCorrection(json);
// const msgSsrTileDefinition = Convert.toMsgSsrTileDefinition(json);
// const msgStartup = Convert.toMsgStartup(json);
// const msgStatusJournal = Convert.toMsgStatusJournal(json);
// const msgStatusReport = Convert.toMsgStatusReport(json);
// const msgStmFlashLockSector = Convert.toMsgStmFlashLockSector(json);
// const msgStmFlashUnlockSector = Convert.toMsgStmFlashUnlockSector(json);
// const msgStmUniqueIDReq = Convert.toMsgStmUniqueIDReq(json);
// const msgStmUniqueIDResp = Convert.toMsgStmUniqueIDResp(json);
// const msgSvAzEl = Convert.toMsgSvAzEl(json);
// const msgTelSv = Convert.toMsgTelSv(json);
// const msgThreadState = Convert.toMsgThreadState(json);
// const msgTrackingIq = Convert.toMsgTrackingIq(json);
// const msgTrackingState = Convert.toMsgTrackingState(json);
// const msgUARTState = Convert.toMsgUARTState(json);
// const msgUserData = Convert.toMsgUserData(json);
// const msgUTCLeapSecond = Convert.toMsgUTCLeapSecond(json);
// const msgUTCTime = Convert.toMsgUTCTime(json);
// const msgUTCTimeGnss = Convert.toMsgUTCTimeGnss(json);
// const msgVelBody = Convert.toMsgVelBody(json);
// const msgVelCog = Convert.toMsgVelCog(json);
// const msgVelECEF = Convert.toMsgVelECEF(json);
// const msgVelECEFCov = Convert.toMsgVelECEFCov(json);
// const msgVelECEFCovGnss = Convert.toMsgVelECEFCovGnss(json);
// const msgVelECEFGnss = Convert.toMsgVelECEFGnss(json);
// const msgVelNED = Convert.toMsgVelNED(json);
// const msgVelNEDCov = Convert.toMsgVelNEDCov(json);
// const msgVelNEDCovGnss = Convert.toMsgVelNEDCovGnss(json);
// const msgVelNEDGnss = Convert.toMsgVelNEDGnss(json);
// const msgWheeltick = Convert.toMsgWheeltick(json);
// const networkUsage = Convert.toNetworkUsage(json);
// const observationHeader = Convert.toObservationHeader(json);
// const odoInputType = Convert.toOdoInputType(json);
// const orbitClockBound = Convert.toOrbitClockBound(json);
// const orbitClockBoundDegradation = Convert.toOrbitClockBoundDegradation(json);
// const packedObsContent = Convert.toPackedObsContent(json);
// const packedOsrContent = Convert.toPackedOsrContent(json);
// const period = Convert.toPeriod(json);
// const phaseBiasesContent = Convert.toPhaseBiasesContent(json);
// const sTECHeader = Convert.toSTECHeader(json);
// const sTECResidual = Convert.toSTECResidual(json);
// const sTECResidualNoStd = Convert.toSTECResidualNoStd(json);
// const sTECSatElement = Convert.toSTECSatElement(json);
// const sTECSatElementIntegrity = Convert.toSTECSatElementIntegrity(json);
// const satelliteAPC = Convert.toSatelliteAPC(json);
// const solutionInputType = Convert.toSolutionInputType(json);
// const statusJournalItem = Convert.toStatusJournalItem(json);
// const subSystemReport = Convert.toSubSystemReport(json);
// const svAzEl = Convert.toSvAzEl(json);
// const svID = Convert.toSvID(json);
// const telemetrySV = Convert.toTelemetrySV(json);
// const trackingChannelCorrelation = Convert.toTrackingChannelCorrelation(json);
// const trackingChannelState = Convert.toTrackingChannelState(json);
// const troposphericDelayCorrection = Convert.toTroposphericDelayCorrection(json);
// const troposphericDelayCorrectionNoStd = Convert.toTroposphericDelayCorrectionNoStd(json);
// const uARTChannel = Convert.toUARTChannel(json);
// const uTCTime = Convert.toUTCTime(json);
//
// These functions will throw an error if the JSON doesn't
// match the expected interface, even if the JSON is valid.
// Converts JSON strings to/from your types
// and asserts the results of JSON.parse at runtime
function toAcqSvProfile(json) {
return cast(JSON.parse(json), r("AcqSvProfile"));
}
function acqSvProfileToJson(value) {
return JSON.stringify(uncast(value, r("AcqSvProfile")), null, 2);
}
function toAlmanacCommonContent(json) {
return cast(JSON.parse(json), r("AlmanacCommonContent"));
}
function almanacCommonContentToJson(value) {
return JSON.stringify(uncast(value, r("AlmanacCommonContent")), null, 2);
}
function toBoundsHeader(json) {
return cast(JSON.parse(json), r("BoundsHeader"));
}
function boundsHeaderToJson(value) {
return JSON.stringify(uncast(value, r("BoundsHeader")), null, 2);
}
function toCarrierPhase(json) {
return cast(JSON.parse(json), r("CarrierPhase"));
}
function carrierPhaseToJson(value) {
return JSON.stringify(uncast(value, r("CarrierPhase")), null, 2);
}
function toCodeBiasesContent(json) {
return cast(JSON.parse(json), r("CodeBiasesContent"));
}
function codeBiasesContentToJson(value) {
return JSON.stringify(uncast(value, r("CodeBiasesContent")), null, 2);
}
function toCodePhaseBiasesSatSig(json) {
return cast(JSON.parse(json), r("CodePhaseBiasesSatSig"));
}
function codePhaseBiasesSatSigToJson(value) {
return JSON.stringify(uncast(value, r("CodePhaseBiasesSatSig")), null, 2);
}
function toDoppler(json) {
return cast(JSON.parse(json), r("Doppler"));
}
function dopplerToJson(value) {
return JSON.stringify(uncast(value, r("Doppler")), null, 2);
}
function toECDSASignature(json) {
return cast(JSON.parse(json), r("ECDSASignature"));
}
function eCDSASignatureToJson(value) {
return JSON.stringify(uncast(value, r("ECDSASignature")), null, 2);
}
function toEphemerisCommonContent(json) {
return cast(JSON.parse(json), r("EphemerisCommonContent"));
}
function ephemerisCommonContentToJson(value) {
return JSON.stringify(uncast(value, r("EphemerisCommonContent")), null, 2);
}
function toEstimatedHorizontalErrorEllipse(json) {
return cast(JSON.parse(json), r("EstimatedHorizontalErrorEllipse"));
}
function estimatedHorizontalErrorEllipseToJson(value) {
return JSON.stringify(uncast(value, r("EstimatedHorizontalErrorEllipse")), null, 2);
}
function toGNSSInputType(json) {
return cast(JSON.parse(json), r("GNSSInputType"));
}
function gNSSInputTypeToJson(value) {
return JSON.stringify(uncast(value, r("GNSSInputType")), null, 2);
}
function toGnssCapb(json) {
return cast(JSON.parse(json), r("GnssCapb"));
}
function gnssCapbToJson(value) {
return JSON.stringify(uncast(value, r("GnssCapb")), null, 2);
}
function toGnssSignal(json) {
return cast(JSON.parse(json), r("GnssSignal"));
}
function gnssSignalToJson(value) {
return JSON.stringify(uncast(value, r("GnssSignal")), null, 2);
}
function toGpsTime(json) {
return cast(JSON.parse(json), r("GpsTime"));
}
function gpsTimeToJson(value) {
return JSON.stringify(uncast(value, r("GpsTime")), null, 2);
}
function toGpsTimeSEC(json) {
return cast(JSON.parse(json), r("GpsTimeSEC"));
}
function gpsTimeSECToJson(value) {
return JSON.stringify(uncast(value, r("GpsTimeSEC")), null, 2);
}
function toGridElement(json) {
return cast(JSON.parse(json), r("GridElement"));
}
function gridElementToJson(value) {
return JSON.stringify(uncast(value, r("GridElement")), null, 2);
}
function toGridElementNoStd(json) {
return cast(JSON.parse(json), r("GridElementNoStd"));
}
function gridElementNoStdToJson(value) {
return JSON.stringify(uncast(value, r("GridElementNoStd")), null, 2);
}
function toGriddedCorrectionHeader(json) {
return cast(JSON.parse(json), r("GriddedCorrectionHeader"));
}
function griddedCorrectionHeaderToJson(value) {
return JSON.stringify(uncast(value, r("GriddedCorrectionHeader")), null, 2);
}
function toIMUInputType(json) {
return cast(JSON.parse(json), r("IMUInputType"));
}
function iMUInputTypeToJson(value) {
return JSON.stringify(uncast(value, r("IMUInputType")), null, 2);
}
function toIntegritySSRHeader(json) {
return cast(JSON.parse(json), r("IntegritySSRHeader"));
}
function integritySSRHeaderToJson(value) {
return JSON.stringify(uncast(value, r("IntegritySSRHeader")), null, 2);
}
function toLatency(json) {
return cast(JSON.parse(json), r("Latency"));
}
function latencyToJson(value) {
return JSON.stringify(uncast(value, r("Latency")), null, 2);
}
function toMeasurementState(json) {
return cast(JSON.parse(json), r("MeasurementState"));
}
function measurementStateToJson(value) {
return JSON.stringify(uncast(value, r("MeasurementState")), null, 2);
}
function toMsgAcknowledge(json) {
return cast(JSON.parse(json), r("MsgAcknowledge"));
}
function msgAcknowledgeToJson(value) {
return JSON.stringify(uncast(value, r("MsgAcknowledge")), null, 2);
}
function toMsgAcqResult(json) {
return cast(JSON.parse(json), r("MsgAcqResult"));
}
function msgAcqResultToJson(value) {
return JSON.stringify(uncast(value, r("MsgAcqResult")), null, 2);
}
function toMsgAcqSvProfile(json) {
return cast(JSON.parse(json), r("MsgAcqSvProfile"));
}
function msgAcqSvProfileToJson(value) {
return JSON.stringify(uncast(value, r("MsgAcqSvProfile")), null, 2);
}
function toMsgAgeCorrections(json) {
return cast(JSON.parse(json), r("MsgAgeCorrections"));
}
function msgAgeCorrectionsToJson(value) {
return JSON.stringify(uncast(value, r("MsgAgeCorrections")), null, 2);
}
function toMsgAlmanac(json) {
return cast(JSON.parse(json), m("any"));
}
function msgAlmanacToJson(value) {
return JSON.stringify(uncast(value, m("any")), null, 2);
}
function toMsgAlmanacGPS(json) {
return cast(JSON.parse(json), r("MsgAlmanacGPS"));
}
function msgAlmanacGPSToJson(value) {
return JSON.stringify(uncast(value, r("MsgAlmanacGPS")), null, 2);
}
function toMsgAlmanacGlo(json) {
return cast(JSON.parse(json), r("MsgAlmanacGlo"));
}
function msgAlmanacGloToJson(value) {
return JSON.stringify(uncast(value, r("MsgAlmanacGlo")), null, 2);
}
function toMsgAngularRate(json) {
return cast(JSON.parse(json), r("MsgAngularRate"));
}
function msgAngularRateToJson(value) {
return JSON.stringify(uncast(value, r("MsgAngularRate")), null, 2);
}
function toMsgBasePosECEF(json) {
return cast(JSON.parse(json), r("MsgBasePosECEF"));
}
function msgBasePosECEFToJson(value) {
return JSON.stringify(uncast(value, r("MsgBasePosECEF")), null, 2);
}
function toMsgBasePosLLH(json) {
return cast(JSON.parse(json), r("MsgBasePosLLH"));
}
function msgBasePosLLHToJson(value) {
return JSON.stringify(uncast(value, r("MsgBasePosLLH")), null, 2);
}
function toMsgBaselineECEF(json) {
return cast(JSON.parse(json), r("MsgBaselineECEF"));
}
function msgBaselineECEFToJson(value) {
return JSON.stringify(uncast(value, r("MsgBaselineECEF")), null, 2);
}
function toMsgBaselineHeading(json) {
return cast(JSON.parse(json), r("MsgBaselineHeading"));
}
function msgBaselineHeadingToJson(value) {
return JSON.stringify(uncast(value, r("MsgBaselineHeading")), null, 2);
}
function toMsgBaselineNED(json) {
return cast(JSON.parse(json), r("MsgBaselineNED"));
}
function msgBaselineNEDToJson(value) {
return JSON.stringify(uncast(value, r("MsgBaselineNED")), null, 2);
}
function toMsgBootloaderHandshakeReq(json) {
return cast(JSON.parse(json), m("any"));
}
function msgBootloaderHandshakeReqToJson(value) {
return JSON.stringify(uncast(value, m("any")), null, 2);
}
function toMsgBootloaderHandshakeResp(json) {
return cast(JSON.parse(json), r("MsgBootloaderHandshakeResp"));
}
function msgBootloaderHandshakeRespToJson(value) {
return JSON.stringify(uncast(value, r("MsgBootloaderHandshakeResp")), null, 2);
}
function toMsgBootloaderJumpToApp(json) {
return cast(JSON.parse(json), r("MsgBootloaderJumpToApp"));
}
function msgBootloaderJumpToAppToJson(value) {
return JSON.stringify(uncast(value, r("MsgBootloaderJumpToApp")), null, 2);
}
function toMsgCellModemStatus(json) {
return cast(JSON.parse(json), r("MsgCellModemStatus"));
}
function msgCellModemStatusToJson(value) {
return JSON.stringify(uncast(value, r("MsgCellModemStatus")), null, 2);
}
function toMsgCertificateChain(json) {
return cast(JSON.parse(json), r("MsgCertificateChain"));
}
function msgCertificateChainToJson(value) {
return JSON.stringify(uncast(value, r("MsgCertificateChain")), null, 2);
}
function toMsgCommandOutput(json) {
return cast(JSON.parse(json), r("MsgCommandOutput"));
}
function msgCommandOutputToJson(value) {
return JSON.stringify(uncast(value, r("MsgCommandOutput")), null, 2);
}
function toMsgCommandReq(json) {
return cast(JSON.parse(json), r("MsgCommandReq"));
}
function msgCommandReqToJson(value) {
return JSON.stringify(uncast(value, r("MsgCommandReq")), null, 2);
}
function toMsgCommandResp(json) {
return cast(JSON.parse(json), r("MsgCommandResp"));
}
function msgCommandRespToJson(value) {
return JSON.stringify(uncast(value, r("MsgCommandResp")), null, 2);
}
function toMsgCsacTelemetry(json) {
return cast(JSON.parse(json), r("MsgCsacTelemetry"));
}
function msgCsacTelemetryToJson(value) {
return JSON.stringify(uncast(value, r("MsgCsacTelemetry")), null, 2);
}
function toMsgCsacTelemetryLabels(json) {
return cast(JSON.parse(json), r("MsgCsacTelemetryLabels"));
}
function msgCsacTelemetryLabelsToJson(value) {
return JSON.stringify(uncast(value, r("MsgCsacTelemetryLabels")), null, 2);
}
function toMsgCwResults(json) {
return cast(JSON.parse(json), m("any"));
}
function msgCwResultsToJson(value) {
return JSON.stringify(uncast(value, m("any")), null, 2);
}
function toMsgCwStart(json) {
return cast(JSON.parse(json), m("any"));
}
function msgCwStartToJson(value) {
return JSON.stringify(uncast(value, m("any")), null, 2);
}
function toMsgDeviceMonitor(json) {
return cast(JSON.parse(json), r("MsgDeviceMonitor"));
}
function msgDeviceMonitorToJson(value) {
return JSON.stringify(uncast(value, r("MsgDeviceMonitor")), null, 2);
}
function toMsgDgnssStatus(json) {
return cast(JSON.parse(json), r("MsgDgnssStatus"));
}
function msgDgnssStatusToJson(value) {
return JSON.stringify(uncast(value, r("MsgDgnssStatus")), null, 2);
}
function toMsgDops(json) {
return cast(JSON.parse(json), r("MsgDops"));
}
function msgDopsToJson(value) {
return JSON.stringify(uncast(value, r("MsgDops")), null, 2);
}
function toMsgEcdsaCertificate(json) {
return cast(JSON.parse(json), r("MsgEcdsaCertificate"));
}
function msgEcdsaCertificateToJson(value) {
return JSON.stringify(uncast(value, r("MsgEcdsaCertificate")), null, 2);
}
function toMsgEcdsaSignature(json) {
return cast(JSON.parse(json), r("MsgEcdsaSignature"));
}
function msgEcdsaSignatureToJson(value) {
return JSON.stringify(uncast(value, r("MsgEcdsaSignature")), null, 2);
}
function toMsgEphemerisBds(json) {
return cast(JSON.parse(json), r("MsgEphemerisBds"));
}
function msgEphemerisBdsToJson(value) {
return JSON.stringify(uncast(value, r("MsgEphemerisBds")), null, 2);
}
function toMsgEphemerisGPS(json) {
return cast(JSON.parse(json), r("MsgEphemerisGPS"));
}
function msgEphemerisGPSToJson(value) {
return JSON.stringify(uncast(value, r("MsgEphemerisGPS")), null, 2);
}
function toMsgEphemerisGal(json) {
return cast(JSON.parse(json), r("MsgEphemerisGal"));
}
function msgEphemerisGalToJson(value) {
return JSON.stringify(uncast(value, r("MsgEphemerisGal")), null, 2);
}
function toMsgEphemerisGlo(json) {
return cast(JSON.parse(json), r("MsgEphemerisGlo"));
}
function msgEphemerisGloToJson(value) {
return JSON.stringify(uncast(value, r("MsgEphemerisGlo")), null, 2);
}
function toMsgEphemerisQzss(json) {
return cast(JSON.parse(json), r("MsgEphemerisQzss"));
}
function msgEphemerisQzssToJson(value) {
return JSON.stringify(uncast(value, r("MsgEphemerisQzss")), null, 2);
}
function toMsgEphemerisSbas(json) {
return cast(JSON.parse(json), r("MsgEphemerisSbas"));
}
function msgEphemerisSbasToJson(value) {
return JSON.stringify(uncast(value, r("MsgEphemerisSbas")), null, 2);
}
function toMsgEXTEvent(json) {
return cast(JSON.parse(json), r("MsgEXTEvent"));
}
function msgEXTEventToJson(value) {
return JSON.stringify(uncast(value, r("MsgEXTEvent")), null, 2);
}
function toMsgFileioConfigReq(json) {
return cast(JSON.parse(json), r("MsgFileioConfigReq"));
}
function msgFileioConfigReqToJson(value) {
return JSON.stringify(uncast(value, r("MsgFileioConfigReq")), null, 2);
}
function toMsgFileioConfigResp(json) {
return cast(JSON.parse(json), r("MsgFileioConfigResp"));
}
function msgFileioConfigRespToJson(value) {
return JSON.stringify(uncast(value, r("MsgFileioConfigResp")), null, 2);
}
function toMsgFileioReadDirReq(json) {
return cast(JSON.parse(json), r("MsgFileioReadDirReq"));
}
function msgFileioReadDirReqToJson(value) {
return JSON.stringify(uncast(value, r("MsgFileioReadDirReq")), null, 2);
}
function toMsgFileioReadDirResp(json) {
return cast(JSON.parse(json), r("MsgFileioReadDirResp"));
}
function msgFileioReadDirRespToJson(value) {
return JSON.stringify(uncast(value, r("MsgFileioReadDirResp")), null, 2);
}
function toMsgFileioReadReq(json) {
return cast(JSON.parse(json), r("MsgFileioReadReq"));
}
function msgFileioReadReqToJson(value) {
return JSON.stringify(uncast(value, r("MsgFileioReadReq")), null, 2);
}
function toMsgFileioReadResp(json) {
return cast(JSON.parse(json), r("MsgFileioReadResp"));
}
function msgFileioReadRespToJson(value) {
return JSON.stringify(uncast(value, r("MsgFileioReadResp")), null, 2);
}
function toMsgFileioRemove(json) {
return cast(JSON.parse(json), r("MsgFileioRemove"));
}
function msgFileioRemoveToJson(value) {
return JSON.stringify(uncast(value, r("MsgFileioRemove")), null, 2);
}
function toMsgFileioWriteReq(json) {
return cast(JSON.parse(json), r("MsgFileioWriteReq"));
}
function msgFileioWriteReqToJson(value) {
return JSON.stringify(uncast(value, r("MsgFileioWriteReq")), null, 2);
}
function toMsgFileioWriteResp(json) {
return cast(JSON.parse(json), r("MsgFileioWriteResp"));
}
function msgFileioWriteRespToJson(value) {
return JSON.stringify(uncast(value, r("MsgFileioWriteResp")), null, 2);
}
function toMsgFlashDone(json) {
return cast(JSON.parse(json), r("MsgFlashDone"));
}
function msgFlashDoneToJson(value) {
return JSON.stringify(uncast(value, r("MsgFlashDone")), null, 2);
}
function toMsgFlashErase(json) {
return cast(JSON.parse(json), r("MsgFlashErase"));
}
function msgFlashEraseToJson(value) {
return JSON.stringify(uncast(value, r("MsgFlashErase")), null, 2);
}
function toMsgFlashProgram(json) {
return cast(JSON.parse(json), r("MsgFlashProgram"));
}
function msgFlashProgramToJson(value) {
return JSON.stringify(uncast(value, r("MsgFlashProgram")), null, 2);
}
function toMsgFlashReadReq(json) {
return cast(JSON.parse(json), r("MsgFlashReadReq"));
}
function msgFlashReadReqToJson(value) {
return JSON.stringify(uncast(value, r("MsgFlashReadReq")), null, 2);
}
function toMsgFlashReadResp(json) {
return cast(JSON.parse(json), r("MsgFlashReadResp"));
}
function msgFlashReadRespToJson(value) {
return JSON.stringify(uncast(value, r("MsgFlashReadResp")), null, 2);
}
function toMsgFrontEndGain(json) {
return cast(JSON.parse(json), r("MsgFrontEndGain"));
}
function msgFrontEndGainToJson(value) {
return JSON.stringify(uncast(value, r("MsgFrontEndGain")), null, 2);
}
function toMsgFwd(json) {
return cast(JSON.parse(json), r("MsgFwd"));
}
function msgFwdToJson(value) {
return JSON.stringify(uncast(value, r("MsgFwd")), null, 2);
}
function toMsgGPSTime(json) {
return cast(JSON.parse(json), r("MsgGPSTime"));
}
function msgGPSTimeToJson(value) {
return JSON.stringify(uncast(value, r("MsgGPSTime")), null, 2);
}
function toMsgGPSTimeGnss(json) {
return cast(JSON.parse(json), r("MsgGPSTimeGnss"));
}
function msgGPSTimeGnssToJson(value) {
return JSON.stringify(uncast(value, r("MsgGPSTimeGnss")), null, 2);
}
function toMsgGloBiases(json) {
return cast(JSON.parse(json), r("MsgGloBiases"));
}
function msgGloBiasesToJson(value) {
return JSON.stringify(uncast(value, r("MsgGloBiases")), null, 2);
}
function toMsgGnssCapb(json) {
return cast(JSON.parse(json), r("MsgGnssCapb"));
}
function msgGnssCapbToJson(value) {
return JSON.stringify(uncast(value, r("MsgGnssCapb")), null, 2);
}
function toMsgGnssTimeOffset(json) {
return cast(JSON.parse(json), r("MsgGnssTimeOffset"));
}
function msgGnssTimeOffsetToJson(value) {
return JSON.stringify(uncast(value, r("MsgGnssTimeOffset")), null, 2);
}
function toMsgGroupDelay(json) {
return cast(JSON.parse(json), r("MsgGroupDelay"));
}
function msgGroupDelayToJson(value) {
return JSON.stringify(uncast(value, r("MsgGroupDelay")), null, 2);
}
function toMsgGroupMeta(json) {
return cast(JSON.parse(json), r("MsgGroupMeta"));
}
function msgGroupMetaToJson(value) {
return JSON.stringify(uncast(value, r("MsgGroupMeta")), null, 2);
}
function toMsgHeartbeat(json) {
return cast(JSON.parse(json), r("MsgHeartbeat"));
}
function msgHeartbeatToJson(value) {
return JSON.stringify(uncast(value, r("MsgHeartbeat")), null, 2);
}
function toMsgIarState(json) {
return cast(JSON.parse(json), r("MsgIarState"));
}
function msgIarStateToJson(value) {
return JSON.stringify(uncast(value, r("MsgIarState")), null, 2);
}
function toMsgImuAux(json) {
return cast(JSON.parse(json), r("MsgImuAux"));
}
function msgImuAuxToJson(value) {
return JSON.stringify(uncast(value, r("MsgImuAux")), null, 2);
}
function toMsgImuRaw(json) {
return cast(JSON.parse(json), r("MsgImuRaw"));
}
function msgImuRawToJson(value) {
return JSON.stringify(uncast(value, r("MsgImuRaw")), null, 2);
}
function toMsgInsStatus(json) {
return cast(JSON.parse(json), r("MsgInsStatus"));
}
function msgInsStatusToJson(value) {
return JSON.stringify(uncast(value, r("MsgInsStatus")), null, 2);
}
function toMsgInsUpdates(json) {
return cast(JSON.parse(json), r("MsgInsUpdates"));
}
function msgInsUpdatesToJson(value) {
return JSON.stringify(uncast(value, r("MsgInsUpdates")), null, 2);
}
function toMsgIono(json) {
return cast(JSON.parse(json), r("MsgIono"));
}
function msgIonoToJson(value) {
return JSON.stringify(uncast(value, r("MsgIono")), null, 2);
}
function toMsgLinuxCPUState(json) {
return cast(JSON.parse(json), r("MsgLinuxCPUState"));
}
function msgLinuxCPUStateToJson(value) {
return JSON.stringify(uncast(value, r("MsgLinuxCPUState")), null, 2);
}
function toMsgLinuxMemState(json) {
return cast(JSON.parse(json), r("MsgLinuxMemState"));
}
function msgLinuxMemStateToJson(value) {
return JSON.stringify(uncast(value, r("MsgLinuxMemState")), null, 2);
}
function toMsgLinuxProcessFdCount(json) {
return cast(JSON.parse(json), r("MsgLinuxProcessFdCount"));
}
function msgLinuxProcessFdCountToJson(value) {
return JSON.stringify(uncast(value, r("MsgLinuxProcessFdCount")), null, 2);
}
function toMsgLinuxProcessFdSummary(json) {
return cast(JSON.parse(json), r("MsgLinuxProcessFdSummary"));
}
function msgLinuxProcessFdSummaryToJson(value) {
return JSON.stringify(uncast(value, r("MsgLinuxProcessFdSummary")), null, 2);
}
function toMsgLinuxProcessSocketCounts(json) {
return cast(JSON.parse(json), r("MsgLinuxProcessSocketCounts"));
}
function msgLinuxProcessSocketCountsToJson(value) {
return JSON.stringify(uncast(value, r("MsgLinuxProcessSocketCounts")), null, 2);
}
function toMsgLinuxProcessSocketQueues(json) {
return cast(JSON.parse(json), r("MsgLinuxProcessSocketQueues"));
}
function msgLinuxProcessSocketQueuesToJson(value) {
return JSON.stringify(uncast(value, r("MsgLinuxProcessSocketQueues")), null, 2);
}
function toMsgLinuxSocketUsage(json) {
return cast(JSON.parse(json), r("MsgLinuxSocketUsage"));
}
function msgLinuxSocketUsageToJson(value) {
return JSON.stringify(uncast(value, r("MsgLinuxSocketUsage")), null, 2);
}
function toMsgLinuxSysState(json) {
return cast(JSON.parse(json), r("MsgLinuxSysState"));
}
function msgLinuxSysStateToJson(value) {
return JSON.stringify(uncast(value, r("MsgLinuxSysState")), null, 2);
}