-
Notifications
You must be signed in to change notification settings - Fork 2
/
.catlas_meta.json
2259 lines (2259 loc) · 175 KB
/
.catlas_meta.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
{
"swsys_target": {
"root_meta": {
"geometry": "{\"x\":0,\"y\":0,\"width\":1764,\"height\":984}"
},
"nodes": {
"gcu_link": {
"geometry": "{\"x\":436.296,\"y\":967.1186,\"width\":181.107,\"height\":65.9121}",
"ports": {
"downlink": {
"geometry": "{\"x\":0,\"y\":32.956,\"width\":8,\"height\":8,\"side\":\"WEST\"}"
},
"downlink_sk": {
"geometry": "{\"x\":181.107,\"y\":32.956,\"width\":8,\"height\":8,\"side\":\"EAST\"}"
}
}
},
"debug_sdtl": {
"geometry": "{\"x\":437.119,\"y\":904.4192,\"width\":180,\"height\":40}",
"ports": {
"channel_1": {
"geometry": "{\"x\":0,\"y\":20,\"width\":8,\"height\":8,\"side\":\"WEST\"}"
},
"channel_2": {
"geometry": "{\"x\":180,\"y\":20,\"width\":8,\"height\":8,\"side\":\"EAST\"}"
}
}
},
"nav": {
"geometry": "{\"x\":127.3533,\"y\":757.1476,\"width\":180,\"height\":40}"
},
"cont_mode": {
"geometry": "{\"x\":311.0888,\"y\":755.4369,\"width\":180,\"height\":40,\"empty\":true}"
},
"cont": {
"geometry": "{\"x\":493.7327,\"y\":755.723,\"width\":180,\"height\":40}"
},
"TLM1": {
"geometry": "{\"x\":493.0545,\"y\":1066.8872,\"width\":72.6196,\"height\":67.783}"
},
"nav_imu_alignement": {
"geometry": "{\"x\":41.4044,\"y\":363.6977,\"width\":180,\"height\":40}"
},
"nav_attitude_prop": {
"geometry": "{\"x\":258.2258,\"y\":363.2349,\"width\":147.9146,\"height\":40}"
},
"nav_compass": {
"geometry": "{\"x\":357.5126,\"y\":280.5963,\"width\":180,\"height\":40,\"empty\":true}"
},
"nav_ublox_parsing": {
"geometry": "{\"x\":673.4449,\"y\":261.1638,\"width\":180,\"height\":40,\"empty\":true}"
},
"nav_gnss_msg": {
"geometry": "{\"x\":734.9246,\"y\":319.8607,\"width\":180,\"height\":40,\"empty\":true}"
},
"nav_gnss_process": {
"geometry": "{\"x\":806.6918,\"y\":376.9228,\"width\":180,\"height\":40,\"empty\":true}"
},
"nav_vel_pos_prop": {
"geometry": "{\"x\":1148.0736,\"y\":368.948,\"width\":180,\"height\":40,\"empty\":true}"
},
"nav_vel_pos_fusion": {
"geometry": "{\"x\":1103.7257,\"y\":304.6918,\"width\":180,\"height\":40,\"empty\":true}"
},
"nav_attitude_fusion": {
"geometry": "{\"x\":475.3575,\"y\":362.844,\"width\":180,\"height\":40}"
},
"rc": {
"geometry": "{\"x\":380.0052,\"y\":520.3958,\"width\":180,\"height\":40}"
},
"cont_vel_pos": {
"geometry": "{\"x\":908.4505,\"y\":588.6332,\"width\":180,\"height\":40,\"empty\":true}"
},
"cont_angpos": {
"geometry": "{\"x\":473.2417,\"y\":591.7119,\"width\":180,\"height\":40}"
},
"cont_angrate": {
"geometry": "{\"x\":681.5632,\"y\":591.3593,\"width\":180,\"height\":40}"
},
"housekeeping": {
"geometry": "{\"x\":688.4335,\"y\":754.1706,\"width\":180,\"height\":40}"
},
"nav_bus": {
"geometry": "{\"x\":-35.3229,\"y\":460.0005,\"width\":1558.357,\"height\":30.1037}"
},
"control_bus": {
"geometry": "{\"x\":346.8034,\"y\":672.2427,\"width\":654.0368,\"height\":27.8397}"
},
"gcu_bus": {
"geometry": "{\"x\":2.5177,\"y\":834.2009,\"width\":995.2443,\"height\":33.6715}"
}
},
"edges": {
"service_consumer_gcu_link-->hw_interface_provider_TLM1": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":529.5593,\"y\":1033.0307,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":529.5593,\"y\":1066.8147,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":529.5593,\"y\":1049.9227}]}"
},
"sdtl_consumer_debug_sdtl_channel_1_name-->sdtl_provider_gcu_link_downlink": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":437.119,\"y\":924.4192},\"bendPoints\":[{\"x\":404.0214,\"y\":924.4192},{\"x\":404.0214,\"y\":999.9375}],\"end\":{\"x\":436.0226,\"y\":999.9375},\"adjusted\":true}],\"labels\":[{\"x\":404.0214,\"y\":962.1783}]}"
},
"sdtl_consumer_debug_sdtl_channel_2_name-->sdtl_provider_gcu_link_downlink_sk": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":617.119,\"y\":924.4192},\"bendPoints\":[{\"x\":649.8708,\"y\":924.4192},{\"x\":649.8708,\"y\":1000.0062}],\"end\":{\"x\":617.1296,\"y\":1000.0062},\"adjusted\":true}],\"labels\":[{\"x\":649.8708,\"y\":962.2127}]}"
},
"task_nav_imu_alignement-->bus_nav_bus": {
"geometry": "{\"labels\":[{\"x\":131.4044,\"y\":431.8491}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":131.4044,\"y\":403.6977,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":131.4044,\"y\":460.0005,\"side\":\"NORTH\"}}],\"jumpPoints\":[{\"x\":247.0557,\"y\":432.6959},{\"x\":247.0557,\"y\":432.6959},{\"x\":247.0557,\"y\":432.6959},{\"x\":247.0557,\"y\":432.6959},{\"x\":247.0557,\"y\":432.6959},{\"x\":247.0557,\"y\":432.6959}]}"
},
"bus_nav_bus-->task_nav_imu_alignement": {
"geometry": "{\"jumpPoints\":[{\"x\":247.0557,\"y\":432.6959},{\"x\":247.0557,\"y\":432.6959},{\"x\":247.0557,\"y\":432.6959},{\"x\":247.0557,\"y\":432.6959},{\"x\":247.0557,\"y\":432.6959},{\"x\":247.0557,\"y\":432.6959}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":168.2996,\"y\":460.0005,\"side\":\"NORTH\"},\"bendPoints\":[],\"end\":{\"x\":168.2996,\"y\":403.6977,\"side\":\"SOUTH\"}}],\"labels\":[{\"x\":168.2996,\"y\":431.8491}]}"
},
"task_nav_attitude_prop-->bus_nav_bus": {
"geometry": "{\"labels\":[{\"x\":316.5461,\"y\":431.7022}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":316.2996,\"y\":403.2349},\"bendPoints\":[],\"end\":{\"x\":316.5461,\"y\":460.0005,\"side\":\"NORTH\"}}],\"jumpPoints\":[{\"x\":460.8234,\"y\":432.549},{\"x\":445.1921,\"y\":432.549}]}"
},
"bus_nav_bus-->task_nav_attitude_prop": {
"geometry": "{\"labels\":[{\"x\":355.7823,\"y\":431.7021}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":355.7823,\"y\":460.0005,\"side\":\"NORTH\"},\"bendPoints\":[],\"end\":{\"x\":355.5358,\"y\":403.2349}}],\"jumpPoints\":[{\"x\":460.8234,\"y\":432.549},{\"x\":445.1921,\"y\":432.549}]}"
},
"task_nav_compass-->bus_nav_bus": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":460.8234,\"y\":320.5963,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":460.8234,\"y\":460.0005}}],\"labels\":[{\"x\":460.8234,\"y\":390.2984}]}"
},
"bus_nav_bus-->task_nav_compass": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":445.1921,\"y\":460.0005},\"bendPoints\":[],\"end\":{\"x\":445.1921,\"y\":320.5963,\"side\":\"SOUTH\"}}],\"labels\":[{\"x\":445.1921,\"y\":390.2984}]}"
},
"task_nav_ublox_parsing-->bus_nav_bus": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":694.0606,\"y\":301.1638,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":694.0606,\"y\":460.0005,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":694.0606,\"y\":380.5821}]}"
},
"task_nav_gnss_msg-->bus_nav_bus": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":779.8922,\"y\":359.8607,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":779.8922,\"y\":460.0005,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":779.8922,\"y\":409.9306}]}"
},
"bus_nav_bus-->task_nav_gnss_msg": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":757.0647,\"y\":460.0005,\"side\":\"NORTH\"},\"bendPoints\":[],\"end\":{\"x\":757.0647,\"y\":359.8607,\"side\":\"SOUTH\"}}],\"labels\":[{\"x\":757.0647,\"y\":409.9306}]}"
},
"task_nav_gnss_process-->bus_nav_bus": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":835.5914,\"y\":416.9228,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":835.5914,\"y\":460.0005,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":835.5914,\"y\":438.4616}]}"
},
"bus_nav_bus-->task_nav_gnss_process": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":860.2452,\"y\":460.0005,\"side\":\"NORTH\"},\"bendPoints\":[],\"end\":{\"x\":860.2452,\"y\":416.9228,\"side\":\"SOUTH\"}}],\"labels\":[{\"x\":860.2452,\"y\":438.4616}]}"
},
"task_nav_vel_pos_prop-->bus_nav_bus": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":1205.9839,\"y\":408.948},\"bendPoints\":[],\"end\":{\"x\":1205.4499,\"y\":460.0005,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":1205.4499,\"y\":434.3374}]}"
},
"bus_nav_bus-->task_nav_vel_pos_prop": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":1186.5725,\"y\":460.0005,\"side\":\"NORTH\"},\"bendPoints\":[],\"end\":{\"x\":1187.1065,\"y\":408.948}}],\"labels\":[{\"x\":1186.5725,\"y\":434.3374}]}"
},
"task_nav_vel_pos_fusion-->bus_nav_bus": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":1138.8733,\"y\":344.6918,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":1138.8733,\"y\":460.0005,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":1138.8733,\"y\":402.3461}]}"
},
"bus_nav_bus-->task_nav_vel_pos_fusion": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":1123.9038,\"y\":460.0005,\"side\":\"NORTH\"},\"bendPoints\":[],\"end\":{\"x\":1123.9038,\"y\":344.6918,\"side\":\"SOUTH\"}}],\"labels\":[{\"x\":1123.9038,\"y\":402.3461}]}"
},
"task_nav_attitude_fusion-->bus_nav_bus": {
"geometry": "{\"labels\":[{\"x\":565.3575,\"y\":431.4222}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":565.3575,\"y\":402.844,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":565.3575,\"y\":460.0005,\"side\":\"NORTH\"}}],\"jumpPoints\":[]}"
},
"bus_nav_bus-->task_nav_attitude_fusion": {
"geometry": "{\"labels\":[{\"x\":601.4621,\"y\":431.4222}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":601.4621,\"y\":460.0005,\"side\":\"NORTH\"},\"bendPoints\":[],\"end\":{\"x\":601.4621,\"y\":402.844,\"side\":\"SOUTH\"}}],\"jumpPoints\":[]}"
},
"task_rc-->bus_control_bus": {
"geometry": "{\"labels\":[{\"x\":399.8148,\"y\":423.2636}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":400.4152,\"y\":560.3958},\"bendPoints\":[],\"end\":{\"x\":400.4353,\"y\":672.2427}}]}"
},
"task_cont_vel_pos-->bus_control_bus": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":964.8993,\"y\":628.6332,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":964.8993,\"y\":672.2427,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":964.8993,\"y\":650.438}]}"
},
"bus_nav_bus-->task_cont_vel_pos": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":961.3491,\"y\":490.1042,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":961.3491,\"y\":588.6332,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":961.3491,\"y\":539.3687}]}"
},
"bus_control_bus-->task_cont_vel_pos": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":936.7168,\"y\":672.2427,\"side\":\"NORTH\"},\"bendPoints\":[],\"end\":{\"x\":936.7168,\"y\":628.6332,\"side\":\"SOUTH\"}}],\"labels\":[{\"x\":936.7168,\"y\":650.438}]}"
},
"task_cont_angpos-->bus_control_bus": {
"geometry": "{\"labels\":[{\"x\":562.5833,\"y\":460.8163}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":563.2417,\"y\":631.7119},\"bendPoints\":[],\"end\":{\"x\":563.2038,\"y\":672.2427}}]}"
},
"bus_nav_bus-->task_cont_angpos": {
"geometry": "{\"labels\":[{\"x\":625.1594,\"y\":540.908}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":625.1594,\"y\":490.1042,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":625.1594,\"y\":591.7119,\"side\":\"NORTH\"}}],\"jumpPoints\":[]}"
},
"bus_control_bus-->task_cont_angpos": {
"geometry": "{\"labels\":[{\"x\":532.5833,\"y\":460.8163}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":533.2038,\"y\":672.2427},\"bendPoints\":[],\"end\":{\"x\":533.2417,\"y\":631.7119}}]}"
},
"task_cont_angrate-->bus_control_bus": {
"geometry": "{\"labels\":[{\"x\":771.1845,\"y\":460.7962}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":771.6642,\"y\":628.9107,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":771.805,\"y\":672.2427,\"side\":\"NORTH\"}}]}"
},
"bus_nav_bus-->task_cont_angrate": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":772.2361,\"y\":490.1042,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":772.2361,\"y\":591.3593,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":772.2361,\"y\":540.7317}]}"
},
"bus_control_bus-->task_cont_angrate": {
"geometry": "{\"labels\":[{\"x\":741.1845,\"y\":460.7962}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":741.805,\"y\":672.2427,\"side\":\"NORTH\"},\"bendPoints\":[],\"end\":{\"x\":741.6642,\"y\":628.9107,\"side\":\"SOUTH\"}}]}"
},
"task_housekeeping-->bus_gcu_bus": {
"geometry": "{\"labels\":[{\"x\":778.4335,\"y\":814.1858}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":778.4335,\"y\":794.1706,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":778.4335,\"y\":834.2009,\"side\":\"NORTH\"}}],\"jumpPoints\":[]}"
},
"bus_nav_bus-->task_nav": {
"geometry": "{\"labels\":[{\"x\":217.3533,\"y\":620.3236}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":219.5548,\"y\":490.1042},\"bendPoints\":[{\"x\":219.5548,\"y\":620.3236},{\"x\":217.3533,\"y\":620.3236}],\"end\":{\"x\":217.3533,\"y\":757.1476,\"side\":\"NORTH\"}}],\"jumpPoints\":[]}"
},
"task_nav-->bus_gcu_bus": {
"geometry": "{\"labels\":[{\"x\":217.3533,\"y\":815.6743}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":217.3533,\"y\":797.1476,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":217.3533,\"y\":834.2009,\"side\":\"NORTH\"}}],\"jumpPoints\":[]}"
},
"bus_control_bus-->task_cont_mode": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":400.3876,\"y\":700.0824,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":400.3876,\"y\":755.4369,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":400.3876,\"y\":727.7597}]}"
},
"task_cont_mode-->bus_gcu_bus": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":399.3753,\"y\":795.4369,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":399.3753,\"y\":834.2009,\"side\":\"NORTH\"}}],\"labels\":[{\"x\":399.3753,\"y\":814.8189}]}"
},
"bus_control_bus-->task_cont": {},
"task_cont-->bus_gcu_bus": {},
"bus_gcu_bus-->task_debug_sdtl": {
"geometry": "{\"labels\":[{\"x\":527.119,\"y\":886.1458}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":527.119,\"y\":867.8724,\"side\":\"SOUTH\"},\"bendPoints\":[],\"end\":{\"x\":527.119,\"y\":904.4192,\"side\":\"NORTH\"}}],\"jumpPoints\":[]}"
}
}
},
"flow_nav_imu_alignment": {
"root_meta": {
"geometry": "{\"x\":0,\"y\":0,\"width\":1164,\"height\":138}"
},
"nodes": {
"bias_calib_proto": {
"geometry": "{\"x\":343.7969,\"y\":43.1344,\"width\":179.3725,\"height\":100.2389}"
},
"omega_bias_concat": {
"geometry": "{\"x\":672,\"y\":41,\"width\":180,\"height\":85}"
},
"accel_horizon": {
"geometry": "{\"x\":29.56,\"y\":269.7308,\"width\":270.4929,\"height\":59.9191}"
},
"initial_yaw": {
"geometry": "{\"x\":19.9157,\"y\":372.4418,\"width\":180,\"height\":40,\"empty\":true}"
},
"initial_quat": {
"geometry": "{\"x\":405.2291,\"y\":271.371,\"width\":221.2229,\"height\":71.5512}"
},
"imu_reset": {
"geometry": "{\"x\":681.2225,\"y\":195.6886,\"width\":180,\"height\":40,\"empty\":true}"
},
"inputs": {
"geometry": "{\"x\":1.9213,\"y\":69.598,\"width\":180,\"height\":70}"
},
"outputs": {
"geometry": "{\"x\":1069.288,\"y\":108.3842,\"width\":180,\"height\":55}"
}
},
"edges": {
"inputs/omega-->bias_calib_proto/i1;": {
"geometry": "{\"labels\":[{\"x\":260.9743,\"y\":72.7876}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":181.9213,\"y\":92.9313},\"bendPoints\":[{\"x\":260.9743,\"y\":92.9313},{\"x\":260.9743,\"y\":68.1478}],\"end\":{\"x\":343.7969,\"y\":68.1478}}]}"
},
"inputs/omega-->bias_calib_proto/i2;": {
"geometry": "{\"labels\":[{\"x\":252,\"y\":57}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":181.9213,\"y\":92.9313},\"end\":{\"x\":343.7969,\"y\":93.223}}]}"
},
"inputs/omega-->bias_calib_proto/i3;": {
"geometry": "{\"labels\":[{\"x\":260.9744,\"y\":94.0376}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":181.9213,\"y\":92.9313},\"bendPoints\":[{\"x\":260.9744,\"y\":92.9313},{\"x\":260.9744,\"y\":118.2981}],\"end\":{\"x\":343.7969,\"y\":118.2981}}]}"
},
"bias_calib_proto/a1-->omega_bias_concat/x;": {
"geometry": "{\"labels\":[{\"x\":597.4193,\"y\":60.0263}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":523.2637,\"y\":63.1328},\"bendPoints\":[],\"end\":{\"x\":672,\"y\":62.25,\"side\":\"WEST\"}}],\"jumpPoints\":[]}"
},
"bias_calib_proto/a2-->omega_bias_concat/y;": {
"geometry": "{\"labels\":[{\"x\":597.4193,\"y\":79.1513}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":523.2637,\"y\":83.1929},\"bendPoints\":[],\"end\":{\"x\":672,\"y\":83.5,\"side\":\"WEST\"}}],\"jumpPoints\":[]}"
},
"bias_calib_proto/a3-->omega_bias_concat/z;": {
"geometry": "{\"labels\":[{\"x\":597.4193,\"y\":98.2763}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":523.2637,\"y\":103.253},\"bendPoints\":[{\"x\":597.4193,\"y\":103.253},{\"x\":597.4193,\"y\":104.75}],\"end\":{\"x\":672,\"y\":104.75,\"side\":\"WEST\"}}],\"jumpPoints\":[]}"
},
"inputs/a-->accel_horizon/a;": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":181.9213,\"y\":116.2647},\"bendPoints\":[{\"x\":194.1102,\"y\":116.2647},{\"x\":194.1102,\"y\":198.2146},{\"x\":14.1521,\"y\":198.2146},{\"x\":14.1521,\"y\":299.5361}],\"end\":{\"x\":29.56,\"y\":299.5361}}]}"
},
"accel_horizon/roll-->initial_quat/roll;": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":299.9912,\"y\":289.601},\"bendPoints\":[],\"end\":{\"x\":405.2291,\"y\":289.1534}}]}"
},
"accel_horizon/pitch-->initial_quat/pitch;": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":299.9912,\"y\":309.4712},\"bendPoints\":[{\"x\":374.6084,\"y\":309.3849},{\"x\":374.6084,\"y\":306.9358}],\"end\":{\"x\":405.2291,\"y\":306.9358}}]}"
},
"initial_yaw/output-->initial_quat/yaw;": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":199.9157,\"y\":392.4418},\"bendPoints\":[{\"x\":355.6411,\"y\":392.4418},{\"x\":355.6411,\"y\":324.7182}],\"end\":{\"x\":405.2291,\"y\":324.7182},\"adjusted\":true}],\"labels\":[{\"x\":355.6411,\"y\":358.58}]}"
},
"bias_calib_proto/filled-->imu_reset/input;": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":523.2637,\"y\":123.3132},\"bendPoints\":[{\"x\":552.5411,\"y\":123.3132},{\"x\":552.5411,\"y\":215.6886}],\"end\":{\"x\":681.2225,\"y\":215.6886}}]}"
},
"omega_bias_concat/v-->outputs/omega_bias;": {
"geometry": "{\"labels\":[{\"x\":960.644,\"y\":102.8171}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":852,\"y\":83.5,\"side\":\"EAST\"},\"bendPoints\":[{\"x\":960.644,\"y\":83.5},{\"x\":960.644,\"y\":122.1342}],\"end\":{\"x\":1069.288,\"y\":122.1342,\"side\":\"WEST\"}}],\"jumpPoints\":[]}"
},
"initial_quat/q-->outputs/q0;": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":626.4588,\"y\":306.9358,\"side\":\"EAST\"},\"bendPoints\":[{\"x\":1030.9209,\"y\":307.1935},{\"x\":1030.9209,\"y\":135.8842}],\"end\":{\"x\":1069.288,\"y\":135.8842,\"side\":\"WEST\"},\"adjusted\":true}],\"labels\":[{\"x\":1030.9209,\"y\":221.5389}]}"
},
"imu_reset/output-->outputs/imu_reset;": {
"geometry": "{\"jumpPoints\":[{\"x\":1030.9209,\"y\":149.6342}],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":861.2225,\"y\":215.6886,\"side\":\"EAST\"},\"bendPoints\":[{\"x\":965.2552,\"y\":215.6886},{\"x\":965.2552,\"y\":149.6342}],\"end\":{\"x\":1069.288,\"y\":149.6342,\"side\":\"WEST\"}}],\"labels\":[{\"x\":965.2552,\"y\":182.6614}]}"
}
}
},
"flow_nav_attitude_prop": {
"root_meta": {
"geometry": "{\"x\":0,\"y\":0,\"width\":1764,\"height\":958}"
},
"nodes": {
"imu1": {
"geometry": "{\"x\":12,\"y\":20.9286,\"width\":180,\"height\":130}"
},
"ax": {
"geometry": "{\"x\":642,\"y\":12,\"width\":180,\"height\":55}"
},
"ay": {
"geometry": "{\"x\":642,\"y\":127,\"width\":180,\"height\":55}"
},
"az": {
"geometry": "{\"x\":642,\"y\":242,\"width\":180,\"height\":55}"
},
"omega_x_biased": {
"geometry": "{\"x\":642,\"y\":357,\"width\":180,\"height\":70}"
},
"omega_y_biased": {
"geometry": "{\"x\":642,\"y\":487,\"width\":180,\"height\":70}"
},
"omega_z_biased": {
"geometry": "{\"x\":642,\"y\":617,\"width\":180,\"height\":70}"
},
"omega_biased": {
"geometry": "{\"x\":942,\"y\":479.5,\"width\":180,\"height\":85}"
},
"correction": {
"geometry": "{\"x\":642,\"y\":766.5,\"width\":180,\"height\":115}"
},
"integrate_att": {
"geometry": "{\"x\":1272,\"y\":677,\"width\":180,\"height\":100}"
},
"concat_accel": {
"geometry": "{\"x\":942,\"y\":112,\"width\":180,\"height\":85}"
},
"inputs": {
"geometry": "{\"x\":12,\"y\":375.4762,\"width\":180,\"height\":100}"
},
"outputs": {
"geometry": "{\"x\":1572,\"y\":479.5,\"width\":180,\"height\":85}"
}
},
"edges": {
"az/output-->concat_accel/z;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":276.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":912,\"y\":269.5},{\"x\":912,\"y\":175.75}],\"start\":{\"x\":822,\"y\":269.5},\"end\":{\"x\":942,\"y\":175.75}}]}"
},
"ay/output-->concat_accel/y;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":161.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":822,\"y\":154.5},\"end\":{\"x\":942,\"y\":154.5}}]}"
},
"ax/output-->concat_accel/x;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":46.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":912,\"y\":39.5},{\"x\":912,\"y\":133.25}],\"start\":{\"x\":822,\"y\":39.5},\"end\":{\"x\":942,\"y\":133.25}}]}"
},
"imu1/az-->az/input;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":276.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":492,\"y\":76.6429},{\"x\":492,\"y\":269.5}],\"start\":{\"x\":192,\"y\":76.6429},\"end\":{\"x\":642,\"y\":269.5}}]}"
},
"imu1/ay-->ay/input;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":161.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":522,\"y\":58.0714},{\"x\":522,\"y\":154.5}],\"start\":{\"x\":192,\"y\":58.0714},\"end\":{\"x\":642,\"y\":154.5}}]}"
},
"imu1/ax-->ax/input;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":46.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":192,\"y\":39.5},\"end\":{\"x\":642,\"y\":39.5}}]}"
},
"imu1/wx-->omega_x_biased/input0;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":387.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":462,\"y\":95.2143},{\"x\":462,\"y\":380.3333}],\"start\":{\"x\":192,\"y\":95.2143},\"end\":{\"x\":642,\"y\":380.3333}}]}"
},
"inputs/omega_bias-->omega_x_biased/input1;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":425.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":582,\"y\":418.3333},{\"x\":582,\"y\":403.6667}],\"start\":{\"x\":192,\"y\":418.3333},\"end\":{\"x\":642,\"y\":403.6667}}]}"
},
"imu1/wy-->omega_y_biased/input0;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":517.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":432,\"y\":113.7857},{\"x\":432,\"y\":510.3333}],\"start\":{\"x\":192,\"y\":113.7857},\"end\":{\"x\":642,\"y\":510.3333}}]}"
},
"inputs/omega_bias-->omega_y_biased/input1;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":555.3333}],\"junctionPoints\":[{\"x\":372,\"y\":418.3333},{\"x\":372,\"y\":548.3333}],\"sections\":[{\"bendPoints\":[{\"x\":372,\"y\":418.3333},{\"x\":372,\"y\":548.3333},{\"x\":582,\"y\":548.3333},{\"x\":582,\"y\":533.6667}],\"start\":{\"x\":192,\"y\":418.3333},\"end\":{\"x\":642,\"y\":533.6667}}]}"
},
"imu1/wz-->omega_z_biased/input0;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":647.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":402,\"y\":132.3571},{\"x\":402,\"y\":640.3333}],\"start\":{\"x\":192,\"y\":132.3571},\"end\":{\"x\":642,\"y\":640.3333}}]}"
},
"inputs/omega_bias-->omega_z_biased/input1;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":685.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":372,\"y\":418.3333},{\"x\":372,\"y\":678.3333},{\"x\":582,\"y\":678.3333},{\"x\":582,\"y\":663.6667}],\"start\":{\"x\":192,\"y\":418.3333},\"end\":{\"x\":642,\"y\":663.6667}}]}"
},
"omega_x_biased/output-->omega_biased/x;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":399}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":912,\"y\":392},{\"x\":912,\"y\":500.75}],\"start\":{\"x\":822,\"y\":392},\"end\":{\"x\":942,\"y\":500.75}}]}"
},
"omega_y_biased/output-->omega_biased/y;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":529}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":822,\"y\":522},\"end\":{\"x\":942,\"y\":522}}]}"
},
"omega_z_biased/output-->omega_biased/z;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":659}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":912,\"y\":652},{\"x\":912,\"y\":543.25}],\"start\":{\"x\":822,\"y\":652},\"end\":{\"x\":942,\"y\":543.25}}]}"
},
"inputs/roll-->correction/roll;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":907}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":282,\"y\":389.7619},{\"x\":282,\"y\":900},{\"x\":612,\"y\":900},{\"x\":612,\"y\":862.3333}],\"start\":{\"x\":192,\"y\":389.7619},\"end\":{\"x\":642,\"y\":862.3333}}]}"
},
"inputs/q-->correction/q;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":869}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":252,\"y\":446.9048},{\"x\":252,\"y\":862},{\"x\":582,\"y\":862},{\"x\":582,\"y\":843.1667}],\"start\":{\"x\":192,\"y\":446.9048},\"end\":{\"x\":642,\"y\":843.1667}}]}"
},
"inputs/euler_correction-->correction/roll_err;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":755}],\"junctionPoints\":[{\"x\":342,\"y\":748}],\"sections\":[{\"bendPoints\":[{\"x\":342,\"y\":404.0476},{\"x\":342,\"y\":748},{\"x\":612,\"y\":748},{\"x\":612,\"y\":785.6667}],\"start\":{\"x\":192,\"y\":404.0476},\"end\":{\"x\":642,\"y\":785.6667}}]}"
},
"inputs/euler_correction-->correction/pitch_err;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":793}],\"junctionPoints\":[{\"x\":342,\"y\":786}],\"sections\":[{\"bendPoints\":[{\"x\":342,\"y\":404.0476},{\"x\":342,\"y\":786},{\"x\":582,\"y\":786},{\"x\":582,\"y\":804.8333}],\"start\":{\"x\":192,\"y\":404.0476},\"end\":{\"x\":642,\"y\":804.8333}}]}"
},
"inputs/euler_correction-->correction/yaw_err;": {
"geometry": "{\"labels\":[{\"x\":552,\"y\":831}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":342,\"y\":404.0476},{\"x\":342,\"y\":824}],\"start\":{\"x\":192,\"y\":404.0476},\"end\":{\"x\":642,\"y\":824}}]}"
},
"correction/q-->integrate_att/q;": {
"geometry": "{\"labels\":[{\"x\":1032,\"y\":831}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1212,\"y\":824},{\"x\":1212,\"y\":737}],\"start\":{\"x\":822,\"y\":824},\"end\":{\"x\":1272,\"y\":737}}]}"
},
"omega_biased/v-->integrate_att/omega;": {
"geometry": "{\"labels\":[{\"x\":1182,\"y\":560}],\"junctionPoints\":[{\"x\":1152,\"y\":522}],\"sections\":[{\"bendPoints\":[{\"x\":1152,\"y\":522},{\"x\":1152,\"y\":553},{\"x\":1212,\"y\":553},{\"x\":1212,\"y\":697}],\"start\":{\"x\":1122,\"y\":522},\"end\":{\"x\":1272,\"y\":697}}]}"
},
"inputs/q0-->integrate_att/q0;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":724}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":312,\"y\":432.619},{\"x\":312,\"y\":717}],\"start\":{\"x\":192,\"y\":432.619},\"end\":{\"x\":1272,\"y\":717}}]}"
},
"inputs/reset-->integrate_att/reset;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":945}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":222,\"y\":461.1905},{\"x\":222,\"y\":938},{\"x\":1242,\"y\":938},{\"x\":1242,\"y\":757}],\"start\":{\"x\":192,\"y\":461.1905},\"end\":{\"x\":1272,\"y\":757}}]}"
},
"concat_accel/v-->outputs/a;": {
"geometry": "{\"labels\":[{\"x\":1362,\"y\":147.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1542,\"y\":154.5},{\"x\":1542,\"y\":500.75}],\"start\":{\"x\":1122,\"y\":154.5},\"end\":{\"x\":1572,\"y\":500.75}}]}"
},
"omega_biased/v-->outputs/omega;": {
"geometry": "{\"labels\":[{\"x\":1362,\"y\":529}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":1122,\"y\":522},\"end\":{\"x\":1572,\"y\":522}}]}"
},
"integrate_att/q-->outputs/q;": {
"geometry": "{\"labels\":[{\"x\":1512,\"y\":734}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1542,\"y\":727},{\"x\":1542,\"y\":543.25}],\"start\":{\"x\":1452,\"y\":727},\"end\":{\"x\":1572,\"y\":543.25}}]}"
}
}
},
"flow_nav_compass": {
"root_meta": {
"geometry": "{\"x\":0,\"y\":0,\"width\":2634,\"height\":484.25}"
},
"nodes": {
"mag1": {
"geometry": "{\"x\":312,\"y\":12,\"width\":180,\"height\":85}"
},
"mag_concat": {
"geometry": "{\"x\":642,\"y\":28.75,\"width\":180,\"height\":85}"
},
"mag_calib": {
"geometry": "{\"x\":942,\"y\":43.75,\"width\":180,\"height\":55}"
},
"euler": {
"geometry": "{\"x\":312,\"y\":180,\"width\":180,\"height\":85}"
},
"inverse_roll": {
"geometry": "{\"x\":642,\"y\":173.75,\"width\":180,\"height\":55}"
},
"inverse_pitch": {
"geometry": "{\"x\":642,\"y\":288.75,\"width\":180,\"height\":55}"
},
"yaw_zero": {
"geometry": "{\"x\":642,\"y\":403.75,\"width\":180,\"height\":55}"
},
"quat4projection": {
"geometry": "{\"x\":942,\"y\":273.75,\"width\":180,\"height\":85}"
},
"proj_to_horizon": {
"geometry": "{\"x\":1242,\"y\":158.75,\"width\":180,\"height\":70}"
},
"magnitude": {
"geometry": "{\"x\":1242,\"y\":43.75,\"width\":180,\"height\":55}"
},
"normalized_induction_module": {
"geometry": "{\"x\":1542,\"y\":43.75,\"width\":180,\"height\":55}"
},
"inverse_y": {
"geometry": "{\"x\":1542,\"y\":166.25,\"width\":180,\"height\":55}"
},
"mag_azimuth": {
"geometry": "{\"x\":1842,\"y\":170.4167,\"width\":180,\"height\":70}"
},
"local_mag_declination": {
"geometry": "{\"x\":1542,\"y\":346.25,\"width\":180,\"height\":55}"
},
"conv_declination": {
"geometry": "{\"x\":1847.7073,\"y\":345.6096,\"width\":180,\"height\":55,\"empty\":true}"
},
"mag_azimuth_w_decl": {
"geometry": "{\"x\":2142,\"y\":182.0833,\"width\":180,\"height\":70}"
},
"inputs": {
"geometry": "{\"x\":12,\"y\":195,\"width\":180,\"height\":55}"
},
"outputs": {
"geometry": "{\"x\":2442,\"y\":174.5833,\"width\":180,\"height\":85}"
}
},
"edges": {
"mag1/magz-->mag_concat/z;": {
"geometry": "{\"labels\":[{\"x\":582,\"y\":116.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":522,\"y\":75.75},{\"x\":522,\"y\":109.25},{\"x\":612,\"y\":109.25},{\"x\":612,\"y\":92.5}],\"start\":{\"x\":492,\"y\":75.75},\"end\":{\"x\":642,\"y\":92.5}}]}"
},
"mag1/magx-->mag_concat/x;": {
"geometry": "{\"labels\":[{\"x\":582,\"y\":40.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":612,\"y\":33.25},{\"x\":612,\"y\":50}],\"start\":{\"x\":492,\"y\":33.25},\"end\":{\"x\":642,\"y\":50}}]}"
},
"mag1/magy-->mag_concat/y;": {
"geometry": "{\"labels\":[{\"x\":582,\"y\":78.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":552,\"y\":54.5},{\"x\":552,\"y\":71.25}],\"start\":{\"x\":492,\"y\":54.5},\"end\":{\"x\":642,\"y\":71.25}}]}"
},
"mag_concat/v-->mag_calib/v;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":78.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":822,\"y\":71.25},\"end\":{\"x\":942,\"y\":71.25}}]}"
},
"inputs/q-->euler/q;": {
"geometry": "{\"labels\":[{\"x\":252,\"y\":229.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":192,\"y\":222.5},\"end\":{\"x\":312,\"y\":222.5}}]}"
},
"euler/roll-->inverse_roll/input;": {
"geometry": "{\"labels\":[{\"x\":582,\"y\":208.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":492,\"y\":201.25},\"end\":{\"x\":642,\"y\":201.25}}]}"
},
"euler/pitch-->inverse_pitch/input;": {
"geometry": "{\"labels\":[{\"x\":582,\"y\":323.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":522,\"y\":222.5},{\"x\":522,\"y\":316.25}],\"start\":{\"x\":492,\"y\":222.5},\"end\":{\"x\":642,\"y\":316.25}}]}"
},
"inverse_pitch/output-->quat4projection/pitch;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":323.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":822,\"y\":316.25},\"end\":{\"x\":942,\"y\":316.25}}]}"
},
"inverse_roll/output-->quat4projection/roll;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":208.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":912,\"y\":201.25},{\"x\":912,\"y\":295}],\"start\":{\"x\":822,\"y\":201.25},\"end\":{\"x\":942,\"y\":295}}]}"
},
"yaw_zero/output-->quat4projection/yaw;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":438.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":912,\"y\":431.25},{\"x\":912,\"y\":337.5}],\"start\":{\"x\":822,\"y\":431.25},\"end\":{\"x\":942,\"y\":337.5}}]}"
},
"mag_calib/v-->proj_to_horizon/v;": {
"geometry": "{\"labels\":[{\"x\":1182,\"y\":189.0833}],\"junctionPoints\":[{\"x\":1152,\"y\":71.25}],\"sections\":[{\"bendPoints\":[{\"x\":1152,\"y\":71.25},{\"x\":1152,\"y\":182.0833}],\"start\":{\"x\":1122,\"y\":71.25},\"end\":{\"x\":1242,\"y\":182.0833}}]}"
},
"quat4projection/q-->proj_to_horizon/q;": {
"geometry": "{\"labels\":[{\"x\":1182,\"y\":323.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1212,\"y\":316.25},{\"x\":1212,\"y\":205.4167}],\"start\":{\"x\":1122,\"y\":316.25},\"end\":{\"x\":1242,\"y\":205.4167}}]}"
},
"mag_calib/v-->magnitude/v;": {
"geometry": "{\"labels\":[{\"x\":1182,\"y\":78.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":1122,\"y\":71.25},\"end\":{\"x\":1242,\"y\":71.25}}]}"
},
"magnitude/output-->normalized_induction_module/input;": {
"geometry": "{\"labels\":[{\"x\":1482,\"y\":78.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":1422,\"y\":71.25},\"end\":{\"x\":1542,\"y\":71.25}}]}"
},
"proj_to_horizon/v-->inverse_y/input;": {
"geometry": "{\"labels\":[{\"x\":1482,\"y\":200.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":1422,\"y\":193.75},\"end\":{\"x\":1542,\"y\":193.75}}]}"
},
"inverse_y/output-->mag_azimuth/input0;": {
"geometry": "{\"labels\":[{\"x\":1782,\"y\":200.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":1722,\"y\":193.75},\"end\":{\"x\":1842,\"y\":193.75}}]}"
},
"proj_to_horizon/v-->mag_azimuth/input1;": {
"geometry": "{\"labels\":[{\"x\":1632,\"y\":288.25}],\"junctionPoints\":[{\"x\":1452,\"y\":193.75}],\"sections\":[{\"bendPoints\":[{\"x\":1452,\"y\":193.75},{\"x\":1452,\"y\":281.25},{\"x\":1812,\"y\":281.25},{\"x\":1812,\"y\":217.0833}],\"start\":{\"x\":1422,\"y\":193.75},\"end\":{\"x\":1842,\"y\":217.0833}}]}"
},
"local_mag_declination/output-->conv_declination/input;": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":1722,\"y\":373.75},\"bendPoints\":[],\"end\":{\"x\":1847.7073,\"y\":373.1096}}]}"
},
"conv_declination/output-->mag_azimuth_w_decl/input1;": {
"geometry": "{\"jumpPoints\":[],\"junctionPoints\":[],\"sections\":[{\"start\":{\"x\":2027.7073,\"y\":373.1096},\"bendPoints\":[{\"x\":2091.5639,\"y\":373.1096},{\"x\":2091.5639,\"y\":228.75}],\"end\":{\"x\":2142,\"y\":228.75,\"side\":\"WEST\"}}]}"
},
"mag_azimuth/output-->mag_azimuth_w_decl/input0;": {
"geometry": "{\"labels\":[{\"x\":2082,\"y\":212.4167}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":2022,\"y\":205.4167},\"end\":{\"x\":2142,\"y\":205.4167}}]}"
},
"mag_azimuth_w_decl/output-->outputs/azimuth;": {
"geometry": "{\"labels\":[{\"x\":2382,\"y\":224.0833}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":2322,\"y\":217.0833},\"end\":{\"x\":2442,\"y\":217.0833}}]}"
},
"normalized_induction_module/output-->outputs/magnitude;": {
"geometry": "{\"labels\":[{\"x\":2082,\"y\":78.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":2412,\"y\":71.25},{\"x\":2412,\"y\":195.8333}],\"start\":{\"x\":1722,\"y\":71.25},\"end\":{\"x\":2442,\"y\":195.8333}}]}"
},
"proj_to_horizon/v-->outputs/induction;": {
"geometry": "{\"labels\":[{\"x\":1932,\"y\":471.25}],\"junctionPoints\":[{\"x\":1512,\"y\":281.25}],\"sections\":[{\"bendPoints\":[{\"x\":1452,\"y\":193.75},{\"x\":1452,\"y\":281.25},{\"x\":1512,\"y\":281.25},{\"x\":1512,\"y\":464.25},{\"x\":2412,\"y\":464.25},{\"x\":2412,\"y\":238.3333}],\"start\":{\"x\":1422,\"y\":193.75},\"end\":{\"x\":2442,\"y\":238.3333}}]}"
}
}
},
"flow_ublox_parsing": {
"root_meta": {
"geometry": "{\"x\":0,\"y\":0,\"width\":504,\"height\":211.0833}"
},
"nodes": {
"rx_frame_sync": {
"geometry": "{\"x\":12,\"y\":114.0833,\"width\":180,\"height\":85}"
},
"inputs": {
"geometry": "{\"x\":12,\"y\":12,\"width\":180,\"height\":40}"
},
"outputs": {
"geometry": "{\"x\":312,\"y\":112,\"width\":180,\"height\":70}"
}
},
"edges": {
"rx_frame_sync/ubx_frame-->outputs/ubx_frame;": {
"geometry": "{\"labels\":[{\"x\":252,\"y\":128.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":192,\"y\":135.3333},\"end\":{\"x\":312,\"y\":135.3333}}]}"
},
"rx_frame_sync/rtcm_frame-->outputs/rtcm_frame;": {
"geometry": "{\"labels\":[{\"x\":252,\"y\":173.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":222,\"y\":156.5833},{\"x\":222,\"y\":166.3333},{\"x\":282,\"y\":166.3333},{\"x\":282,\"y\":158.6667}],\"start\":{\"x\":192,\"y\":156.5833},\"end\":{\"x\":312,\"y\":158.6667}}]}"
}
}
},
"flow_gnss_process": {
"root_meta": {
"geometry": "{\"x\":0,\"y\":0,\"width\":1554,\"height\":575}"
},
"nodes": {
"fix_stub": {
"geometry": "{\"x\":402,\"y\":508,\"width\":180,\"height\":55}"
},
"prec_threshold": {
"geometry": "{\"x\":12,\"y\":359.1667,\"width\":180,\"height\":55}"
},
"prec_is_ok": {
"geometry": "{\"x\":402,\"y\":378,\"width\":180,\"height\":70}"
},
"ready": {
"geometry": "{\"x\":732,\"y\":488.8333,\"width\":180,\"height\":70}"
},
"reset_cmd": {
"geometry": "{\"x\":732,\"y\":373.8333,\"width\":180,\"height\":55}"
},
"ready_reg": {
"geometry": "{\"x\":1032,\"y\":477.1667,\"width\":180,\"height\":70}"
},
"concat_pos": {
"geometry": "{\"x\":402,\"y\":233,\"width\":180,\"height\":85}"
},
"ven_u": {
"geometry": "{\"x\":402,\"y\":118,\"width\":180,\"height\":55}"
},
"concat_vel": {
"geometry": "{\"x\":732,\"y\":81.75,\"width\":180,\"height\":85}"
},
"inputs": {
"geometry": "{\"x\":12,\"y\":139.1667,\"width\":180,\"height\":160}"
},
"outputs": {
"geometry": "{\"x\":1362,\"y\":448.4167,\"width\":180,\"height\":85}"
}
},
"edges": {
"inputs/prec-->prec_is_ok/input1;": {
"geometry": "{\"labels\":[{\"x\":312,\"y\":431.6667}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":222,\"y\":263.6111},{\"x\":222,\"y\":424.6667}],\"start\":{\"x\":192,\"y\":263.6111},\"end\":{\"x\":402,\"y\":424.6667}}]}"
},
"prec_threshold/output-->prec_is_ok/input0;": {
"geometry": "{\"labels\":[{\"x\":312,\"y\":393.6667}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":342,\"y\":386.6667},{\"x\":342,\"y\":401.3333}],\"start\":{\"x\":192,\"y\":386.6667},\"end\":{\"x\":402,\"y\":401.3333}}]}"
},
"fix_stub/output-->ready/input1;": {
"geometry": "{\"labels\":[{\"x\":642,\"y\":542.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":582,\"y\":535.5},\"end\":{\"x\":732,\"y\":535.5}}]}"
},
"prec_is_ok/output-->ready/input0;": {
"geometry": "{\"labels\":[{\"x\":642,\"y\":420}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":672,\"y\":413},{\"x\":672,\"y\":512.1667}],\"start\":{\"x\":582,\"y\":413},\"end\":{\"x\":732,\"y\":512.1667}}]}"
},
"reset_cmd/output-->ready_reg/r;": {
"geometry": "{\"labels\":[{\"x\":972,\"y\":408.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1002,\"y\":401.3333},{\"x\":1002,\"y\":500.5}],\"start\":{\"x\":912,\"y\":401.3333},\"end\":{\"x\":1032,\"y\":500.5}}]}"
},
"ready/output-->ready_reg/s;": {
"geometry": "{\"labels\":[{\"x\":972,\"y\":530.8333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":912,\"y\":523.8333},\"end\":{\"x\":1032,\"y\":523.8333}}]}"
},
"inputs/lat-->concat_pos/x;": {
"geometry": "{\"labels\":[{\"x\":312,\"y\":217.2778}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":372,\"y\":210.2778},{\"x\":372,\"y\":254.25}],\"start\":{\"x\":192,\"y\":210.2778},\"end\":{\"x\":402,\"y\":254.25}}]}"
},
"inputs/lon-->concat_pos/y;": {
"geometry": "{\"labels\":[{\"x\":312,\"y\":265.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":282,\"y\":228.0556},{\"x\":282,\"y\":258.75},{\"x\":342,\"y\":258.75},{\"x\":342,\"y\":275.5}],\"start\":{\"x\":192,\"y\":228.0556},\"end\":{\"x\":402,\"y\":275.5}}]}"
},
"inputs/alt-->concat_pos/z;": {
"geometry": "{\"labels\":[{\"x\":312,\"y\":303.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":252,\"y\":245.8333},{\"x\":252,\"y\":296.75}],\"start\":{\"x\":192,\"y\":245.8333},\"end\":{\"x\":402,\"y\":296.75}}]}"
},
"inputs/vel_d-->ven_u/input;": {
"geometry": "{\"labels\":[{\"x\":312,\"y\":152.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":282,\"y\":192.5},{\"x\":282,\"y\":145.5}],\"start\":{\"x\":192,\"y\":192.5},\"end\":{\"x\":402,\"y\":145.5}}]}"
},
"inputs/vel_n-->concat_vel/x;": {
"geometry": "{\"labels\":[{\"x\":492,\"y\":12}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":222,\"y\":156.9444},{\"x\":222,\"y\":19},{\"x\":702,\"y\":19},{\"x\":702,\"y\":103}],\"start\":{\"x\":192,\"y\":156.9444},\"end\":{\"x\":732,\"y\":103}}]}"
},
"inputs/vel_e-->concat_vel/y;": {
"geometry": "{\"labels\":[{\"x\":492,\"y\":57}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":252,\"y\":174.7222},{\"x\":252,\"y\":50},{\"x\":672,\"y\":50},{\"x\":672,\"y\":124.25}],\"start\":{\"x\":192,\"y\":174.7222},\"end\":{\"x\":732,\"y\":124.25}}]}"
},
"ven_u/output-->concat_vel/z;": {
"geometry": "{\"labels\":[{\"x\":642,\"y\":152.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":582,\"y\":145.5},\"end\":{\"x\":732,\"y\":145.5}}]}"
},
"ready_reg/output-->outputs/ready;": {
"geometry": "{\"labels\":[{\"x\":1272,\"y\":519.1667}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":1212,\"y\":512.1667},\"end\":{\"x\":1362,\"y\":512.1667}}]}"
},
"concat_vel/v-->outputs/vel;": {
"geometry": "{\"labels\":[{\"x\":1122,\"y\":117.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1332,\"y\":124.25},{\"x\":1332,\"y\":469.6667}],\"start\":{\"x\":912,\"y\":124.25},\"end\":{\"x\":1362,\"y\":469.6667}}]}"
},
"concat_pos/v-->outputs/pos;": {
"geometry": "{\"labels\":[{\"x\":972,\"y\":282.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1302,\"y\":275.5},{\"x\":1302,\"y\":490.9167}],\"start\":{\"x\":582,\"y\":275.5},\"end\":{\"x\":1362,\"y\":490.9167}}]}"
}
}
},
"flow_vel_pos_prop": {
"root_meta": {
"geometry": "{\"x\":0,\"y\":0,\"width\":3891.9373,\"height\":1363.75}"
},
"nodes": {
"vel_compensated": {
"geometry": "{\"x\":609.9372,\"y\":724.5,\"width\":180,\"height\":70}"
},
"pos_compensated": {
"geometry": "{\"x\":609.9372,\"y\":1059.75,\"width\":180,\"height\":70}"
},
"frame_transf_quat": {
"geometry": "{\"x\":609.9372,\"y\":142,\"width\":180,\"height\":55}"
},
"g": {
"geometry": "{\"x\":909.9372,\"y\":494.5,\"width\":180,\"height\":55}"
},
"zero": {
"geometry": "{\"x\":909.9372,\"y\":379.5,\"width\":180,\"height\":55}"
},
"a_z_bias_quick_fix": {
"geometry": "{\"x\":609.9372,\"y\":283.3333,\"width\":180,\"height\":55}"
},
"g_vector": {
"geometry": "{\"x\":1209.9373,\"y\":395.5,\"width\":180,\"height\":85}"
},
"frame_transformed_a": {
"geometry": "{\"x\":609.9372,\"y\":12,\"width\":180,\"height\":70}"
},
"accel_n": {
"geometry": "{\"x\":909.9372,\"y\":134.5,\"width\":180,\"height\":55}"
},
"accel_e": {
"geometry": "{\"x\":909.9372,\"y\":19.5,\"width\":180,\"height\":55}"
},
"accel_z_biased": {
"geometry": "{\"x\":909.9372,\"y\":249.5,\"width\":180,\"height\":70}"
},
"adjusted_signs": {
"geometry": "{\"x\":1209.9373,\"y\":140.75,\"width\":180,\"height\":85}"
},
"accel": {
"geometry": "{\"x\":1509.9373,\"y\":159.9167,\"width\":180,\"height\":70}"
},
"reset_level_0": {
"geometry": "{\"x\":1209.9373,\"y\":855.5,\"width\":180,\"height\":55}"
},
"initial_reg": {
"geometry": "{\"x\":1509.9373,\"y\":1125.75,\"width\":180,\"height\":70}"
},
"prop_vel": {
"geometry": "{\"x\":1839.9373,\"y\":739.5,\"width\":180,\"height\":100}"
},
"lat_in_radians": {
"geometry": "{\"x\":609.9372,\"y\":609.5,\"width\":180,\"height\":55}"
},
"lon_correction_factor": {
"geometry": "{\"x\":909.9372,\"y\":609.5,\"width\":180,\"height\":55}"
},
"dv_lat_in_rad": {
"geometry": "{\"x\":2139.9373,\"y\":1009.75,\"width\":180,\"height\":55}"
},
"dv_lat_in_rad_deg": {
"geometry": "{\"x\":2439.9373,\"y\":1009.75,\"width\":180,\"height\":55}"
},
"dv_lon_in_rad": {
"geometry": "{\"x\":2139.9373,\"y\":762,\"width\":180,\"height\":55}"
},
"lon_correction": {
"geometry": "{\"x\":2439.9373,\"y\":590.3333,\"width\":180,\"height\":70}"
},
"dv_lon_in_deg": {
"geometry": "{\"x\":2739.9373,\"y\":597.8333,\"width\":180,\"height\":55}"
},
"delta_v_vect_conv": {
"geometry": "{\"x\":3069.9373,\"y\":878,\"width\":180,\"height\":85}"
},
"prop_pos": {
"geometry": "{\"x\":3399.9373,\"y\":1074.75,\"width\":180,\"height\":100}"
},
"inputs": {
"geometry": "{\"x\":12,\"y\":45.1127,\"width\":177.9372,\"height\":135.5394}"
},
"outputs": {
"geometry": "{\"x\":3699.9373,\"y\":823.6667,\"width\":180,\"height\":70}"
}
},
"edges": {
"inputs/vel_correction-->vel_compensated/v2;": {
"geometry": "{\"labels\":[{\"x\":489.9372,\"y\":1274.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":279.9372,\"y\":139.9903},{\"x\":279.9372,\"y\":1267.75},{\"x\":549.9372,\"y\":1267.75},{\"x\":549.9372,\"y\":771.1667}],\"start\":{\"x\":189.9372,\"y\":139.9903},\"end\":{\"x\":609.9372,\"y\":771.1667}}]}"
},
"inputs/vel-->vel_compensated/v1;": {
"geometry": "{\"labels\":[{\"x\":489.9372,\"y\":252.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":399.9372,\"y\":85.7745},{\"x\":399.9372,\"y\":245.5},{\"x\":549.9372,\"y\":245.5},{\"x\":549.9372,\"y\":747.8333}],\"start\":{\"x\":189.9372,\"y\":85.7745},\"end\":{\"x\":609.9372,\"y\":747.8333}}]}"
},
"inputs/pos_correction-->pos_compensated/v2;": {
"geometry": "{\"labels\":[{\"x\":489.9372,\"y\":1312.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":249.9372,\"y\":153.5442},{\"x\":249.9372,\"y\":1305.75},{\"x\":579.9372,\"y\":1305.75},{\"x\":579.9372,\"y\":1106.4167}],\"start\":{\"x\":189.9372,\"y\":153.5442},\"end\":{\"x\":609.9372,\"y\":1106.4167}}]}"
},
"inputs/pos-->pos_compensated/v1;": {
"geometry": "{\"labels\":[{\"x\":489.9372,\"y\":682}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":369.9372,\"y\":99.3285},{\"x\":369.9372,\"y\":675},{\"x\":519.9372,\"y\":675},{\"x\":519.9372,\"y\":1083.0833}],\"start\":{\"x\":189.9372,\"y\":99.3285},\"end\":{\"x\":609.9372,\"y\":1083.0833}}]}"
},
"inputs/q-->frame_transf_quat/q;": {
"geometry": "{\"labels\":[{\"x\":489.9372,\"y\":176.5}],\"junctionPoints\":[{\"x\":459.9372,\"y\":58.6667}],\"sections\":[{\"bendPoints\":[{\"x\":459.9372,\"y\":58.6667},{\"x\":459.9372,\"y\":169.5}],\"start\":{\"x\":189.9372,\"y\":58.6667},\"end\":{\"x\":609.9372,\"y\":169.5}}]}"
},
"zero/output-->g_vector/y;": {
"geometry": "{\"labels\":[{\"x\":1149.9373,\"y\":445}],\"junctionPoints\":[{\"x\":1119.9373,\"y\":407}],\"sections\":[{\"bendPoints\":[{\"x\":1119.9373,\"y\":407},{\"x\":1119.9373,\"y\":438}],\"start\":{\"x\":1089.9372,\"y\":407},\"end\":{\"x\":1209.9373,\"y\":438}}]}"
},
"zero/output-->g_vector/x;": {
"geometry": "{\"labels\":[{\"x\":1149.9373,\"y\":400}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1179.9373,\"y\":407},{\"x\":1179.9373,\"y\":416.75}],\"start\":{\"x\":1089.9372,\"y\":407},\"end\":{\"x\":1209.9373,\"y\":416.75}}]}"
},
"g/output-->g_vector/z;": {
"geometry": "{\"labels\":[{\"x\":1149.9373,\"y\":529}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1179.9373,\"y\":522},{\"x\":1179.9373,\"y\":459.25}],\"start\":{\"x\":1089.9372,\"y\":522},\"end\":{\"x\":1209.9373,\"y\":459.25}}]}"
},
"inputs/q-->frame_transformed_a/q;": {
"geometry": "{\"labels\":[{\"x\":489.9372,\"y\":65.6667}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":189.9372,\"y\":58.6667},\"end\":{\"x\":609.9372,\"y\":58.6667}}]}"
},
"inputs/a-->frame_transformed_a/v;": {
"geometry": "{\"labels\":[{\"x\":489.9372,\"y\":214.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":429.9372,\"y\":72.2206},{\"x\":429.9372,\"y\":207.5},{\"x\":519.9372,\"y\":207.5},{\"x\":519.9372,\"y\":35.3333}],\"start\":{\"x\":189.9372,\"y\":72.2206},\"end\":{\"x\":609.9372,\"y\":35.3333}}]}"
},
"frame_transformed_a/v-->accel_n/input;": {
"geometry": "{\"labels\":[{\"x\":849.9372,\"y\":169}],\"junctionPoints\":[{\"x\":819.9372,\"y\":47},{\"x\":819.9372,\"y\":162}],\"sections\":[{\"bendPoints\":[{\"x\":819.9372,\"y\":47},{\"x\":819.9372,\"y\":162}],\"start\":{\"x\":789.9372,\"y\":47},\"end\":{\"x\":909.9372,\"y\":162}}]}"
},
"frame_transformed_a/v-->accel_e/input;": {
"geometry": "{\"labels\":[{\"x\":849.9372,\"y\":54}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":789.9372,\"y\":47},\"end\":{\"x\":909.9372,\"y\":47}}]}"
},
"frame_transformed_a/v-->accel_z_biased/input0;": {
"geometry": "{\"labels\":[{\"x\":849.9372,\"y\":279.8333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":819.9372,\"y\":47},{\"x\":819.9372,\"y\":272.8333}],\"start\":{\"x\":789.9372,\"y\":47},\"end\":{\"x\":909.9372,\"y\":272.8333}}]}"
},
"a_z_bias_quick_fix/output-->accel_z_biased/input1;": {
"geometry": "{\"labels\":[{\"x\":849.9372,\"y\":317.8333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":879.9372,\"y\":310.8333},{\"x\":879.9372,\"y\":296.1667}],\"start\":{\"x\":789.9372,\"y\":310.8333},\"end\":{\"x\":909.9372,\"y\":296.1667}}]}"
},
"accel_n/output-->adjusted_signs/x;": {
"geometry": "{\"labels\":[{\"x\":1149.9373,\"y\":169}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":1089.9372,\"y\":162},\"end\":{\"x\":1209.9373,\"y\":162}}]}"
},
"accel_e/output-->adjusted_signs/y;": {
"geometry": "{\"labels\":[{\"x\":1149.9373,\"y\":54}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1179.9373,\"y\":47},{\"x\":1179.9373,\"y\":183.25}],\"start\":{\"x\":1089.9372,\"y\":47},\"end\":{\"x\":1209.9373,\"y\":183.25}}]}"
},
"accel_z_biased/output-->adjusted_signs/z;": {
"geometry": "{\"labels\":[{\"x\":1149.9373,\"y\":291.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1179.9373,\"y\":284.5},{\"x\":1179.9373,\"y\":204.5}],\"start\":{\"x\":1089.9372,\"y\":284.5},\"end\":{\"x\":1209.9373,\"y\":204.5}}]}"
},
"adjusted_signs/v-->accel/v1;": {
"geometry": "{\"labels\":[{\"x\":1449.9373,\"y\":190.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":1389.9373,\"y\":183.25},\"end\":{\"x\":1509.9373,\"y\":183.25}}]}"
},
"g_vector/v-->accel/v2;": {
"geometry": "{\"labels\":[{\"x\":1449.9373,\"y\":445}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1479.9373,\"y\":438},{\"x\":1479.9373,\"y\":206.5833}],\"start\":{\"x\":1389.9373,\"y\":438},\"end\":{\"x\":1509.9373,\"y\":206.5833}}]}"
},
"reset_level_0/output-->initial_reg/r;": {
"geometry": "{\"labels\":[{\"x\":1449.9373,\"y\":890}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1479.9373,\"y\":883},{\"x\":1479.9373,\"y\":1149.0833}],\"start\":{\"x\":1389.9373,\"y\":883},\"end\":{\"x\":1509.9373,\"y\":1149.0833}}]}"
},
"inputs/init_cmd-->initial_reg/s;": {
"geometry": "{\"labels\":[{\"x\":999.9372,\"y\":1350.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":219.9372,\"y\":167.0982},{\"x\":219.9372,\"y\":1343.75},{\"x\":1479.9373,\"y\":1343.75},{\"x\":1479.9373,\"y\":1172.4167}],\"start\":{\"x\":189.9372,\"y\":167.0982},\"end\":{\"x\":1509.9373,\"y\":1172.4167}}]}"
},
"vel_compensated/v-->prop_vel/v;": {
"geometry": "{\"labels\":[{\"x\":1299.9373,\"y\":766.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":789.9372,\"y\":759.5},\"end\":{\"x\":1839.9373,\"y\":759.5}}]}"
},
"accel/v-->prop_vel/derivative;": {
"geometry": "{\"labels\":[{\"x\":1749.9373,\"y\":201.9167}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1809.9373,\"y\":194.9167},{\"x\":1809.9373,\"y\":799.5}],\"start\":{\"x\":1689.9373,\"y\":194.9167},\"end\":{\"x\":1839.9373,\"y\":799.5}}]}"
},
"inputs/vel_init-->prop_vel/v0;": {
"geometry": "{\"labels\":[{\"x\":1149.9373,\"y\":831.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":339.9372,\"y\":112.8824},{\"x\":339.9372,\"y\":824.5},{\"x\":1779.9373,\"y\":824.5},{\"x\":1779.9373,\"y\":779.5}],\"start\":{\"x\":189.9372,\"y\":112.8824},\"end\":{\"x\":1839.9373,\"y\":779.5}}]}"
},
"initial_reg/output-->prop_vel/enable;": {
"geometry": "{\"labels\":[{\"x\":1749.9373,\"y\":1167.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":1809.9373,\"y\":1160.75},{\"x\":1809.9373,\"y\":819.5}],\"start\":{\"x\":1689.9373,\"y\":1160.75},\"end\":{\"x\":1839.9373,\"y\":819.5}}]}"
},
"inputs/pos-->lat_in_radians/input;": {
"geometry": "{\"labels\":[{\"x\":489.9372,\"y\":644}],\"junctionPoints\":[{\"x\":369.9372,\"y\":637}],\"sections\":[{\"bendPoints\":[{\"x\":369.9372,\"y\":99.3285},{\"x\":369.9372,\"y\":637}],\"start\":{\"x\":189.9372,\"y\":99.3285},\"end\":{\"x\":609.9372,\"y\":637}}]}"
},
"lat_in_radians/output-->lon_correction_factor/input;": {
"geometry": "{\"labels\":[{\"x\":849.9372,\"y\":644}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":789.9372,\"y\":637},\"end\":{\"x\":909.9372,\"y\":637}}]}"
},
"prop_vel/v-->dv_lat_in_rad/input;": {
"geometry": "{\"labels\":[{\"x\":2079.9373,\"y\":1044.25}],\"junctionPoints\":[{\"x\":2049.9373,\"y\":789.5}],\"sections\":[{\"bendPoints\":[{\"x\":2049.9373,\"y\":789.5},{\"x\":2049.9373,\"y\":1037.25}],\"start\":{\"x\":2019.9373,\"y\":789.5},\"end\":{\"x\":2139.9373,\"y\":1037.25}}]}"
},
"dv_lat_in_rad/output-->dv_lat_in_rad_deg/input;": {
"geometry": "{\"labels\":[{\"x\":2379.9373,\"y\":1044.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":2319.9373,\"y\":1037.25},\"end\":{\"x\":2439.9373,\"y\":1037.25}}]}"
},
"prop_vel/v-->dv_lon_in_rad/input;": {
"geometry": "{\"labels\":[{\"x\":2079.9373,\"y\":796.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":2019.9373,\"y\":789.5},\"end\":{\"x\":2139.9373,\"y\":789.5}}]}"
},
"dv_lon_in_rad/output-->lon_correction/input0;": {
"geometry": "{\"labels\":[{\"x\":2379.9373,\"y\":796.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":2409.9373,\"y\":789.5},{\"x\":2409.9373,\"y\":613.6667}],\"start\":{\"x\":2319.9373,\"y\":789.5},\"end\":{\"x\":2439.9373,\"y\":613.6667}}]}"
},
"lon_correction_factor/output-->lon_correction/input1;": {
"geometry": "{\"labels\":[{\"x\":1749.9373,\"y\":644}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":1089.9372,\"y\":637},\"end\":{\"x\":2439.9373,\"y\":637}}]}"
},
"lon_correction/output-->dv_lon_in_deg/input;": {
"geometry": "{\"labels\":[{\"x\":2679.9373,\"y\":618.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":2619.9373,\"y\":625.3333},\"end\":{\"x\":2739.9373,\"y\":625.3333}}]}"
},
"dv_lat_in_rad_deg/output-->delta_v_vect_conv/x;": {
"geometry": "{\"labels\":[{\"x\":2829.9373,\"y\":1044.25}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":3009.9373,\"y\":1037.25},{\"x\":3009.9373,\"y\":899.25}],\"start\":{\"x\":2619.9373,\"y\":1037.25},\"end\":{\"x\":3069.9373,\"y\":899.25}}]}"
},
"dv_lon_in_deg/output-->delta_v_vect_conv/y;": {
"geometry": "{\"labels\":[{\"x\":2979.9373,\"y\":618.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":3039.9373,\"y\":625.3333},{\"x\":3039.9373,\"y\":920.5}],\"start\":{\"x\":2919.9373,\"y\":625.3333},\"end\":{\"x\":3069.9373,\"y\":920.5}}]}"
},
"prop_vel/v-->delta_v_vect_conv/z;": {
"geometry": "{\"labels\":[{\"x\":2529.9373,\"y\":948.75}],\"junctionPoints\":[{\"x\":2049.9373,\"y\":847},{\"x\":2409.9373,\"y\":847}],\"sections\":[{\"bendPoints\":[{\"x\":2049.9373,\"y\":789.5},{\"x\":2049.9373,\"y\":847},{\"x\":2409.9373,\"y\":847},{\"x\":2409.9373,\"y\":941.75}],\"start\":{\"x\":2019.9373,\"y\":789.5},\"end\":{\"x\":3069.9373,\"y\":941.75}}]}"
},
"pos_compensated/v-->prop_pos/v;": {
"geometry": "{\"labels\":[{\"x\":2079.9373,\"y\":1101.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":789.9372,\"y\":1094.75},\"end\":{\"x\":3399.9373,\"y\":1094.75}}]}"
},
"delta_v_vect_conv/v-->prop_pos/derivative;": {
"geometry": "{\"labels\":[{\"x\":3309.9373,\"y\":927.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":3369.9373,\"y\":920.5},{\"x\":3369.9373,\"y\":1134.75}],\"start\":{\"x\":3249.9373,\"y\":920.5},\"end\":{\"x\":3399.9373,\"y\":1134.75}}]}"
},
"inputs/pos_init-->prop_pos/v0;": {
"geometry": "{\"labels\":[{\"x\":1929.9373,\"y\":1243.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":309.9372,\"y\":126.4364},{\"x\":309.9372,\"y\":1236.75},{\"x\":3339.9373,\"y\":1236.75},{\"x\":3339.9373,\"y\":1114.75}],\"start\":{\"x\":189.9372,\"y\":126.4364},\"end\":{\"x\":3399.9373,\"y\":1114.75}}]}"
},
"initial_reg/output-->prop_pos/enable;": {
"geometry": "{\"labels\":[{\"x\":2529.9373,\"y\":1205.75}],\"junctionPoints\":[{\"x\":1719.9373,\"y\":1160.75}],\"sections\":[{\"bendPoints\":[{\"x\":1719.9373,\"y\":1160.75},{\"x\":1719.9373,\"y\":1198.75},{\"x\":3369.9373,\"y\":1198.75},{\"x\":3369.9373,\"y\":1154.75}],\"start\":{\"x\":1689.9373,\"y\":1160.75},\"end\":{\"x\":3399.9373,\"y\":1154.75}}]}"
},
"prop_vel/v-->outputs/vel;": {
"geometry": "{\"labels\":[{\"x\":2829.9373,\"y\":854}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":2049.9373,\"y\":789.5},{\"x\":2049.9373,\"y\":847}],\"start\":{\"x\":2019.9373,\"y\":789.5},\"end\":{\"x\":3699.9373,\"y\":847}}]}"
},
"prop_pos/v-->outputs/pos;": {
"geometry": "{\"labels\":[{\"x\":3639.9373,\"y\":1131.75}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":3669.9373,\"y\":1124.75},{\"x\":3669.9373,\"y\":870.3333}],\"start\":{\"x\":3579.9373,\"y\":1124.75},\"end\":{\"x\":3699.9373,\"y\":870.3333}}]}"
}
}
},
"flow_vel_pos_fusion": {
"root_meta": {
"geometry": "{\"x\":0,\"y\":0,\"width\":1134,\"height\":454}"
},
"nodes": {
"vel_gain": {
"geometry": "{\"x\":342,\"y\":142,\"width\":180,\"height\":55}"
},
"vel_residual": {
"geometry": "{\"x\":342,\"y\":12,\"width\":180,\"height\":70}"
},
"vel_compensation": {
"geometry": "{\"x\":642,\"y\":122.8333,\"width\":180,\"height\":70}"
},
"pos_residual": {
"geometry": "{\"x\":342,\"y\":257,\"width\":180,\"height\":70}"
},
"pos_gain": {
"geometry": "{\"x\":342.1986,\"y\":387.0496,\"width\":180,\"height\":55}"
},
"pos_compensation": {
"geometry": "{\"x\":642,\"y\":367.8333,\"width\":180,\"height\":70}"
},
"inputs": {
"geometry": "{\"x\":12,\"y\":227,\"width\":180,\"height\":115}"
},
"outputs": {
"geometry": "{\"x\":942,\"y\":356.1667,\"width\":180,\"height\":70}"
}
},
"edges": {
"inputs/vel-->vel_residual/v1;": {
"geometry": "{\"labels\":[{\"x\":282,\"y\":20.6667}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":222,\"y\":246.1667},{\"x\":222,\"y\":27.6667},{\"x\":312,\"y\":27.6667},{\"x\":312,\"y\":35.3333}],\"start\":{\"x\":192,\"y\":246.1667},\"end\":{\"x\":342,\"y\":35.3333}}]}"
},
"inputs/gnss_vel-->vel_residual/v2;": {
"geometry": "{\"labels\":[{\"x\":282,\"y\":65.6667}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":252,\"y\":284.5},{\"x\":252,\"y\":58.6667}],\"start\":{\"x\":192,\"y\":284.5},\"end\":{\"x\":342,\"y\":58.6667}}]}"
},
"vel_gain/output-->vel_compensation/scalar;": {
"geometry": "{\"labels\":[{\"x\":582,\"y\":176.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":522,\"y\":169.5},\"end\":{\"x\":642,\"y\":169.5}}]}"
},
"vel_residual/v-->vel_compensation/v;": {
"geometry": "{\"labels\":[{\"x\":582,\"y\":54}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":612,\"y\":47},{\"x\":612,\"y\":146.1667}],\"start\":{\"x\":522,\"y\":47},\"end\":{\"x\":642,\"y\":146.1667}}]}"
},
"inputs/pos-->pos_residual/v1;": {
"geometry": "{\"labels\":[{\"x\":282,\"y\":258.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":312,\"y\":265.3333},{\"x\":312,\"y\":280.3333}],\"start\":{\"x\":192,\"y\":265.3333},\"end\":{\"x\":342,\"y\":280.3333}}]}"
},
"inputs/gnss_pos-->pos_residual/v2;": {
"geometry": "{\"labels\":[{\"x\":282,\"y\":310.6667}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":192,\"y\":303.6667},\"end\":{\"x\":342,\"y\":303.6667}}]}"
},
"pos_gain/output-->pos_compensation/scalar;": {
"geometry": "{\"labels\":[{\"x\":582,\"y\":421.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":522.1986,\"y\":414.5496},\"end\":{\"x\":642,\"y\":414.5}}]}"
},
"pos_residual/v-->pos_compensation/v;": {
"geometry": "{\"labels\":[{\"x\":582,\"y\":299}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":612,\"y\":292},{\"x\":612,\"y\":391.1667}],\"start\":{\"x\":522,\"y\":292},\"end\":{\"x\":642,\"y\":391.1667}}]}"
},
"vel_compensation/v-->outputs/vel_correction;": {},
"pos_compensation/v-->outputs/pos_correction;": {
"geometry": "{\"labels\":[{\"x\":882,\"y\":409.8333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":822,\"y\":402.8333},\"end\":{\"x\":942,\"y\":402.8333}}]}"
}
}
},
"flow_nav_attitude_filter": {
"root_meta": {
"geometry": "{\"x\":0,\"y\":0,\"width\":1872.2437,\"height\":517.1667}"
},
"nodes": {
"accel_horizon": {
"geometry": "{\"x\":342,\"y\":50,\"width\":180,\"height\":70}"
},
"to_euler": {
"geometry": "{\"x\":342,\"y\":180,\"width\":180,\"height\":85}"
},
"roll_err": {
"geometry": "{\"x\":672,\"y\":12,\"width\":180,\"height\":70}"
},
"pitch_err": {
"geometry": "{\"x\":672,\"y\":199.1667,\"width\":180,\"height\":70}"
},
"yaw_err": {
"geometry": "{\"x\":672,\"y\":329.1667,\"width\":180,\"height\":70}"
},
"roll_adjustment": {
"geometry": "{\"x\":972,\"y\":19.5,\"width\":180,\"height\":55}"
},
"pitch_adjustment": {
"geometry": "{\"x\":972,\"y\":206.6667,\"width\":180,\"height\":55}"
},
"yaw_adjustment": {
"geometry": "{\"x\":981.1631,\"y\":332.2339,\"width\":161.6738,\"height\":63.8655}"
},
"to_euler_out": {
"geometry": "{\"x\":1338.1828,\"y\":416.6667,\"width\":180,\"height\":85}"
},
"euler_corrections": {
"geometry": "{\"x\":1302,\"y\":22.8783,\"width\":228.2437,\"height\":96.4866}"
},
"inputs": {
"geometry": "{\"x\":12,\"y\":205,\"width\":180,\"height\":70}"
},
"outputs": {
"geometry": "{\"x\":1680.2437,\"y\":51.955,\"width\":180,\"height\":115}"
}
},
"edges": {
"inputs/a-->accel_horizon/a;": {
"geometry": "{\"labels\":[{\"x\":282,\"y\":92}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":222,\"y\":240},{\"x\":222,\"y\":85}],\"start\":{\"x\":192,\"y\":240},\"end\":{\"x\":342,\"y\":85}}]}"
},
"inputs/q-->to_euler/q;": {
"geometry": "{\"labels\":[{\"x\":282,\"y\":229.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":192,\"y\":222.5},\"end\":{\"x\":342,\"y\":222.5}}]}"
},
"to_euler/roll-->roll_err/input0;": {
"geometry": "{\"labels\":[{\"x\":612,\"y\":42.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":552,\"y\":201.25},{\"x\":552,\"y\":35.3333}],\"start\":{\"x\":522,\"y\":201.25},\"end\":{\"x\":672,\"y\":35.3333}}]}"
},
"accel_horizon/roll-->roll_err/input1;": {
"geometry": "{\"labels\":[{\"x\":612,\"y\":80.3333}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":642,\"y\":73.3333},{\"x\":642,\"y\":58.6667}],\"start\":{\"x\":522,\"y\":73.3333},\"end\":{\"x\":672,\"y\":58.6667}}]}"
},
"to_euler/pitch-->pitch_err/input0;": {
"geometry": "{\"labels\":[{\"x\":612,\"y\":229.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[],\"start\":{\"x\":522,\"y\":222.5},\"end\":{\"x\":672,\"y\":222.5}}]}"
},
"accel_horizon/pitch-->pitch_err/input1;": {
"geometry": "{\"labels\":[{\"x\":612,\"y\":267.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":582,\"y\":96.6667},{\"x\":582,\"y\":260.5},{\"x\":642,\"y\":260.5},{\"x\":642,\"y\":245.8333}],\"start\":{\"x\":522,\"y\":96.6667},\"end\":{\"x\":672,\"y\":245.8333}}]}"
},
"to_euler/yaw-->yaw_err/input0;": {
"geometry": "{\"labels\":[{\"x\":612,\"y\":359.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":552,\"y\":243.75},{\"x\":552,\"y\":352.5}],\"start\":{\"x\":522,\"y\":243.75},\"end\":{\"x\":672,\"y\":352.5}}]}"
},
"inputs/azimuth-->yaw_err/input1;": {
"geometry": "{\"labels\":[{\"x\":432,\"y\":383.5}],\"junctionPoints\":[],\"sections\":[{\"bendPoints\":[{\"x\":222,\"y\":257.5},{\"x\":222,\"y\":390.5},{\"x\":642,\"y\":390.5},{\"x\":642,\"y\":375.8333}],\"start\":{\"x\":192,\"y\":257.5},\"end\":{\"x\":672,\"y\":375.8333}}]}"
},
"roll_err/output-->roll_adjustment/input;": {