forked from foxglove/schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schemas.ts
853 lines (811 loc) · 23 KB
/
schemas.ts
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
import { FoxgloveEnumSchema, FoxgloveMessageSchema } from "./types";
const foxglove_Color: FoxgloveMessageSchema = {
type: "message",
name: "Color",
description: "A color in RGBA format",
fields: [
{
name: "r",
type: { type: "primitive", name: "float64" },
description: "Red value between 0 and 1",
},
{
name: "g",
type: { type: "primitive", name: "float64" },
description: "Green value between 0 and 1",
},
{
name: "b",
type: { type: "primitive", name: "float64" },
description: "Blue value between 0 and 1",
},
{
name: "a",
type: { type: "primitive", name: "float64" },
description: "Alpha value between 0 and 1",
},
],
};
const foxglove_Vector2: FoxgloveMessageSchema = {
type: "message",
name: "Vector2",
description: "A vector in 2D space that represents a direction only",
fields: [
{
name: "x",
type: { type: "primitive", name: "float64" },
description: "x coordinate length",
},
{
name: "y",
type: { type: "primitive", name: "float64" },
description: "y coordinate length",
},
],
};
const foxglove_Vector3: FoxgloveMessageSchema = {
type: "message",
name: "Vector3",
description: "A vector in 3D space that represents a direction only",
rosEquivalent: "geometry_msgs/Vector3",
fields: [
{
name: "x",
type: { type: "primitive", name: "float64" },
description: "x coordinate length",
},
{
name: "y",
type: { type: "primitive", name: "float64" },
description: "y coordinate length",
},
{
name: "z",
type: { type: "primitive", name: "float64" },
description: "z coordinate length",
},
],
};
const foxglove_Point2: FoxgloveMessageSchema = {
type: "message",
name: "Point2",
description: "A point representing a position in 2D space",
fields: [
{
name: "x",
type: { type: "primitive", name: "float64" },
description: "x coordinate position",
},
{
name: "y",
type: { type: "primitive", name: "float64" },
description: "y coordinate position",
},
],
};
const foxglove_Point3: FoxgloveMessageSchema = {
type: "message",
name: "Point3",
description: "A point representing a position in 3D space",
rosEquivalent: "geometry_msgs/Point",
fields: [
{
name: "x",
type: { type: "primitive", name: "float64" },
description: "x coordinate position",
},
{
name: "y",
type: { type: "primitive", name: "float64" },
description: "y coordinate position",
},
{
name: "z",
type: { type: "primitive", name: "float64" },
description: "z coordinate position",
},
],
};
const foxglove_Quaternion: FoxgloveMessageSchema = {
type: "message",
name: "Quaternion",
description: "A [quaternion](https://eater.net/quaternions) representing a rotation in 3D space",
rosEquivalent: "geometry_msgs/Quaternion",
fields: [
{
name: "x",
type: { type: "primitive", name: "float64" },
description: "x value",
},
{
name: "y",
type: { type: "primitive", name: "float64" },
description: "y value",
},
{
name: "z",
type: { type: "primitive", name: "float64" },
description: "z value",
},
{
name: "w",
type: { type: "primitive", name: "float64" },
description: "w value",
},
],
};
const foxglove_Pose: FoxgloveMessageSchema = {
type: "message",
name: "Pose",
description: "The position and orientation of an object or reference frame in 3D space",
rosEquivalent: "geometry_msgs/Pose",
fields: [
{
name: "position",
type: { type: "nested", schema: foxglove_Vector3 },
description: "Point denoting position in 3D space",
},
{
name: "orientation",
type: { type: "nested", schema: foxglove_Quaternion },
description: "Quaternion denoting orientation in 3D space",
},
],
};
export const foxglove_CameraCalibration: FoxgloveMessageSchema = {
type: "message",
name: "CameraCalibration",
description: "Camera calibration parameters",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of calibration data",
},
{
name: "width",
type: { type: "primitive", name: "uint32" },
description: "Image width",
},
{
name: "height",
type: { type: "primitive", name: "uint32" },
description: "Image height",
},
{
name: "distortion_model",
type: { type: "primitive", name: "string" },
description: "Name of distortion model",
},
{
name: "D",
type: { type: "primitive", name: "float64" },
description: "Distortion parameters",
array: true,
},
{
name: "K",
type: { type: "primitive", name: "float64" },
array: 9,
description: `Intrinsic camera matrix (3x3 row-major matrix)
A 3x3 row-major matrix for the raw (distorted) image.
Projects 3D points in the camera coordinate frame to 2D pixel coordinates using the focal lengths (fx, fy) and principal point (cx, cy).
\`\`\`
[fx 0 cx]
K = [ 0 fy cy]
[ 0 0 1]
\`\`\`
`,
},
{
name: "R",
type: { type: "primitive", name: "float64" },
array: 9,
description: `Rectification matrix (3x3 row-major matrix)
A rotation matrix aligning the camera coordinate system to the ideal stereo image plane so that epipolar lines in both stereo images are parallel.`,
},
{
name: "P",
type: { type: "primitive", name: "float64" },
array: 12,
description: `Projection/camera matrix (3x4 row-major matrix)
\`\`\`
[fx' 0 cx' Tx]
P = [ 0 fy' cy' Ty]
[ 0 0 1 0]
\`\`\`
By convention, this matrix specifies the intrinsic (camera) matrix of the processed (rectified) image. That is, the left 3x3 portion is the normal camera intrinsic matrix for the rectified image.
It projects 3D points in the camera coordinate frame to 2D pixel coordinates using the focal lengths (fx', fy') and principal point (cx', cy') - these may differ from the values in K.
For monocular cameras, Tx = Ty = 0. Normally, monocular cameras will also have R = the identity and P[1:3,1:3] = K.
For a stereo pair, the fourth column [Tx Ty 0]' is related to the position of the optical center of the second camera in the first camera's frame. We assume Tz = 0 so both cameras are in the same stereo image plane. The first camera always has Tx = Ty = 0. For the right (second) camera of a horizontal stereo pair, Ty = 0 and Tx = -fx' * B, where B is the baseline between the cameras.
Given a 3D point [X Y Z]', the projection (x, y) of the point onto the rectified image is given by:
\`\`\`
[u v w]' = P * [X Y Z 1]'
x = u / w
y = v / w
\`\`\`
This holds for both images of a stereo pair.
`,
},
],
};
const foxglove_CompressedImage: FoxgloveMessageSchema = {
type: "message",
name: "CompressedImage",
description: "A compressed image",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of image",
},
{
name: "data",
type: { type: "primitive", name: "bytes" },
description: "Compressed image data",
},
{
name: "format",
type: { type: "primitive", name: "string" },
description: "Image format",
},
],
};
const foxglove_RawImage: FoxgloveMessageSchema = {
type: "message",
name: "RawImage",
description: "A compressed image",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of image",
},
{
name: "width",
type: { type: "primitive", name: "uint32" },
description: "Image width",
},
{
name: "height",
type: { type: "primitive", name: "uint32" },
description: "Image height",
},
{
name: "encoding",
type: { type: "primitive", name: "string" },
description: "Encoding of the raw image data",
},
{
name: "step",
type: { type: "primitive", name: "uint32" },
description: "Byte length of a single row",
},
{
name: "data",
type: { type: "primitive", name: "bytes" },
description: "Raw image data",
},
],
};
const foxglove_Transform: FoxgloveMessageSchema = {
type: "message",
name: "Transform",
description: "A transform in 3D space",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Transform time",
},
{
name: "translation",
type: { type: "nested", schema: foxglove_Vector3 },
description: "Translation component of the transform",
},
{
name: "rotation",
type: { type: "nested", schema: foxglove_Quaternion },
description: "Rotation component of the transform",
},
],
};
const foxglove_FrameTransform: FoxgloveMessageSchema = {
type: "message",
name: "FrameTransform",
description: "A transform between two named coordinate frames in 3D space",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of transform",
},
{
name: "parent_frame_id",
type: { type: "primitive", name: "string" },
description: "Name of the parent frame",
},
{
name: "child_frame_id",
type: { type: "primitive", name: "string" },
description: "Name of the child frame",
},
{
name: "transform",
type: { type: "nested", schema: foxglove_Transform },
description: "Transform from parent frame to child frame",
},
],
};
const foxglove_PoseInFrame: FoxgloveMessageSchema = {
type: "message",
name: "PoseInFrame",
description: "A timestamped pose in a named coordinate frame",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of pose",
},
{
name: "frame_id",
type: { type: "primitive", name: "string" },
description: "Frame of reference for pose position and orientation",
},
{
name: "pose",
type: { type: "nested", schema: foxglove_Pose },
description: "Pose in 3D space",
},
],
};
const foxglove_PosesInFrame: FoxgloveMessageSchema = {
type: "message",
name: "PosesInFrame",
description: "An array of timestamped poses in a named coordinate frame",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of pose",
},
{
name: "frame_id",
type: { type: "primitive", name: "string" },
description: "Frame of reference for pose position and orientation",
},
{
name: "poses",
type: { type: "nested", schema: foxglove_Pose },
description: "Poses in 3D space",
array: true,
},
],
};
const foxglove_GeoJSON: FoxgloveMessageSchema = {
type: "message",
name: "GeoJSON",
description: "GeoJSON data used for annotating maps",
fields: [
{
name: "geojson",
type: { type: "primitive", name: "string" },
description: "GeoJSON data encoded as a UTF-8 string",
},
],
};
const foxglove_NumericType: FoxgloveEnumSchema = {
type: "enum",
name: "NumericType",
description: "Numeric type",
protobufParentMessageName: "DataField",
protobufEnumName: "NumericType",
values: [
{ name: "UNKNOWN", value: 0 },
{ name: "UINT8", value: 1 },
{ name: "INT8", value: 2 },
{ name: "UINT16", value: 3 },
{ name: "INT16", value: 4 },
{ name: "UINT32", value: 5 },
{ name: "INT32", value: 6 },
{ name: "FLOAT32", value: 7 },
{ name: "FLOAT64", value: 8 },
],
};
const foxglove_DataField: FoxgloveMessageSchema = {
type: "message",
name: "DataField",
description: "List of fields included for every entity in an accompanying `data` field array",
fields: [
{
name: "name",
type: { type: "primitive", name: "string" },
description: "Name of the field",
},
{
name: "offset",
type: { type: "primitive", name: "uint32" },
description: "Byte offset from start of data buffer",
},
{
name: "type",
type: { type: "enum", enum: foxglove_NumericType },
description: "Type of data in the field. Integers are stored using little-endian byte order.",
},
],
};
const foxglove_Grid: FoxgloveMessageSchema = {
type: "message",
name: "Grid",
description: "A 2D grid of data",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of grid",
},
{
name: "frame_id",
type: { type: "primitive", name: "string" },
description: "Frame of reference",
},
{
name: "pose",
type: { type: "nested", schema: foxglove_Pose },
description:
"Origin of grid's corner relative to frame of reference; grid is positioned in the x-y plane relative to this origin",
},
{
name: "column_count",
type: { type: "primitive", name: "uint32" },
description: "Number of grid columns",
},
{
name: "cell_size",
type: { type: "nested", schema: foxglove_Vector2 },
description: "Size of single grid cell along x and y axes, relative to `pose`",
},
{
name: "row_stride",
type: { type: "primitive", name: "uint32" },
description: "Number of bytes between rows in `data`",
},
{
name: "cell_stride",
type: { type: "primitive", name: "uint32" },
description: "Number of bytes between cells within a row in `data`",
},
{
name: "fields",
type: { type: "nested", schema: foxglove_DataField },
array: true,
description: "Fields in `data`",
},
{
name: "data",
type: { type: "primitive", name: "bytes" },
description: "Grid cell data, interpreted using `fields`, in row-major (y-major) order",
},
],
};
const foxglove_CircleAnnotation: FoxgloveMessageSchema = {
type: "message",
name: "CircleAnnotation",
description: "A circle annotation",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of circle",
},
{
name: "position",
type: { type: "nested", schema: foxglove_Point2 },
description: "Center of the circle in 2D image coordinates",
},
{
name: "diameter",
type: { type: "primitive", name: "float64" },
description: "Circle diameter",
},
{
name: "thickness",
type: { type: "primitive", name: "float64" },
description: "Line thickness",
},
{
name: "fill_color",
type: { type: "nested", schema: foxglove_Color },
description: "Fill color",
},
{
name: "outline_color",
type: { type: "nested", schema: foxglove_Color },
description: "Outline color",
},
],
};
const foxglove_PointsAnnotationType: FoxgloveEnumSchema = {
type: "enum",
name: "PointsAnnotationType",
description: "Type of points annotation",
protobufParentMessageName: "PointsAnnotation",
protobufEnumName: "Type",
values: [
{ name: "UNKNOWN", value: 0 },
{ name: "POINTS", value: 1 },
{ name: "LINE_LOOP", value: 2 },
{ name: "LINE_STRIP", value: 3 },
{ name: "LINE_LIST", value: 4 },
],
};
const foxglove_PointsAnnotation: FoxgloveMessageSchema = {
type: "message",
name: "PointsAnnotation",
description: "A set of points",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of annotation",
},
{
name: "type",
type: { type: "enum", enum: foxglove_PointsAnnotationType },
description: "Type of points annotation to draw",
},
{
name: "points",
type: { type: "nested", schema: foxglove_Point2 },
description: "Points in 2D image coordinates",
array: true,
},
{
name: "outline_colors",
type: { type: "nested", schema: foxglove_Color },
description: "Outline colors",
array: true,
},
{
name: "fill_color",
type: { type: "nested", schema: foxglove_Color },
description: "Fill color",
},
],
};
const foxglove_ImageAnnotations: FoxgloveMessageSchema = {
type: "message",
name: "ImageAnnotations",
description: "Array of annotations for a 2D image",
fields: [
{
name: "circles",
type: { type: "nested", schema: foxglove_CircleAnnotation },
description: "Circle annotations",
array: true,
},
{
name: "points",
type: { type: "nested", schema: foxglove_PointsAnnotation },
description: "Points annotations",
array: true,
},
],
};
const foxglove_PositionCovarianceType: FoxgloveEnumSchema = {
type: "enum",
name: "PositionCovarianceType",
description: "Type of position covariance",
protobufParentMessageName: "LocationFix",
protobufEnumName: "PositionCovarianceType",
values: [
{ name: "UNKNOWN", value: 0 },
{ name: "APPROXIMATED", value: 1 },
{ name: "DIAGONAL_KNOWN", value: 2 },
{ name: "KNOWN", value: 3 },
],
};
const foxglove_LocationFix: FoxgloveMessageSchema = {
type: "message",
name: "LocationFix",
description: "A navigation satellite fix for any Global Navigation Satellite System",
fields: [
{
name: "latitude",
type: { type: "primitive", name: "float64" },
description: "Latitude in degrees",
},
{
name: "longitude",
type: { type: "primitive", name: "float64" },
description: "Longitude in degrees",
},
{
name: "altitude",
type: { type: "primitive", name: "float64" },
description: "Altitude in meters",
},
{
name: "position_covariance",
type: { type: "primitive", name: "float64" },
description:
"Position covariance (m^2) defined relative to a tangential plane through the reported position. The components are East, North, and Up (ENU), in row-major order.",
array: 9,
},
{
name: "position_covariance_type",
type: { type: "enum", enum: foxglove_PositionCovarianceType },
description:
"If `position_covariance` is available, `position_covariance_type` must be set to indicate the type of covariance.",
},
],
};
const foxglove_LogLevel: FoxgloveEnumSchema = {
type: "enum",
name: "LogLevel",
description: "Log level",
protobufParentMessageName: "Log",
protobufEnumName: "Level",
values: [
{ name: "UNKNOWN", value: 0 },
{ name: "DEBUG", value: 1 },
{ name: "INFO", value: 2 },
{ name: "WARNING", value: 3 },
{ name: "ERROR", value: 4 },
{ name: "FATAL", value: 5 },
],
};
const foxglove_Log: FoxgloveMessageSchema = {
type: "message",
name: "Log",
description: "A log message",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of log message",
},
{
name: "level",
type: { type: "enum", enum: foxglove_LogLevel },
description: "Log level",
},
{
name: "message",
type: { type: "primitive", name: "string" },
description: "Log message",
},
{
name: "name",
type: { type: "primitive", name: "string" },
description: "Process or node name",
},
{
name: "file",
type: { type: "primitive", name: "string" },
description: "Filename",
},
{
name: "line",
type: { type: "primitive", name: "uint32" },
description: "Line number in the file",
},
],
};
const foxglove_PointCloud: FoxgloveMessageSchema = {
type: "message",
name: "PointCloud",
description:
"A collection of N-dimensional points, which may contain additional fields with information like normals, intensity, etc.",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of point cloud",
},
{
name: "frame_id",
type: { type: "primitive", name: "string" },
description: "Frame of reference",
},
{
name: "pose",
type: { type: "nested", schema: foxglove_Pose },
description: "The origin of the point cloud relative to the frame of reference",
},
{
name: "point_stride",
type: { type: "primitive", name: "uint32" },
description: "Number of bytes between points in the `data`",
},
{
name: "fields",
type: { type: "nested", schema: foxglove_DataField },
array: true,
description: "Fields in the `data`",
},
{
name: "data",
type: { type: "primitive", name: "bytes" },
description: "Point data, interpreted using `fields`",
},
],
};
const foxglove_LaserScan: FoxgloveMessageSchema = {
type: "message",
name: "LaserScan",
description: "A a single scan from a planar laser range-finder",
fields: [
{
name: "timestamp",
type: { type: "primitive", name: "time" },
description: "Timestamp of scan",
},
{
name: "frame_id",
type: { type: "primitive", name: "string" },
description: "Frame of reference",
},
{
name: "pose",
type: { type: "nested", schema: foxglove_Pose },
description:
"Origin of scan relative to frame of reference; points are positioned in the x-y plane relative to this origin; angles are interpreted as counterclockwise rotations around the z axis with 0 rad being in the +x direction",
},
{
name: "start_angle",
type: { type: "primitive", name: "float64" },
description: "Bearing of first point, in radians",
},
{
name: "end_angle",
type: { type: "primitive", name: "float64" },
description: "Bearing of last point, in radians",
},
{
name: "ranges",
type: { type: "primitive", name: "float64" },
description:
"Distance of detections from origin; assumed to be at equally-spaced angles between `start_angle` and `end_angle`",
array: true,
},
{
name: "intensities",
type: { type: "primitive", name: "float64" },
description: "Intensity of detections",
array: true,
},
],
};
export const foxgloveMessageSchemas = {
CameraCalibration: foxglove_CameraCalibration,
CircleAnnotation: foxglove_CircleAnnotation,
Color: foxglove_Color,
CompressedImage: foxglove_CompressedImage,
DataField: foxglove_DataField,
FrameTransform: foxglove_FrameTransform,
GeoJSON: foxglove_GeoJSON,
Grid: foxglove_Grid,
ImageAnnotations: foxglove_ImageAnnotations,
LaserScan: foxglove_LaserScan,
LocationFix: foxglove_LocationFix,
Log: foxglove_Log,
Point2: foxglove_Point2,
Point3: foxglove_Point3,
PointCloud: foxglove_PointCloud,
PointsAnnotation: foxglove_PointsAnnotation,
Pose: foxglove_Pose,
PoseInFrame: foxglove_PoseInFrame,
PosesInFrame: foxglove_PosesInFrame,
Quaternion: foxglove_Quaternion,
RawImage: foxglove_RawImage,
Transform: foxglove_Transform,
Vector2: foxglove_Vector2,
Vector3: foxglove_Vector3,
};
export const foxgloveEnumSchemas = {
LogLevel: foxglove_LogLevel,
NumericType: foxglove_NumericType,
PointsAnnotationType: foxglove_PointsAnnotationType,
PositionCovarianceType: foxglove_PositionCovarianceType,
};