@@ -7,54 +7,54 @@ These definitions can be found in the `nebula_common/include/point_types.hpp`.
7
7
8
8
## PointXYZIR
9
9
10
- | Field | Type | Units | Description |
11
- | ----------- | -------- | ----- | ---------------------------------------------------------------------------- |
12
- | ` x ` | ` float ` | ` m ` | Cartesian x coordinate. |
13
- | ` y ` | ` float ` | ` m ` | Cartesian y coordinate. |
14
- | ` z ` | ` float ` | ` m ` | Cartesian z coordinate. |
15
- | padding | 4 bytes | | |
16
- | ` intensity ` | ` float ` | | Intensity of the return as reported by the sensor. |
17
- | ` ring ` | ` uint16 ` | | Ring ID - only defined for rotational LiDARs. |
10
+ | Field | Type | Units | Description |
11
+ | ----------- | -------- | ----- | -------------------------------------------------- |
12
+ | ` x ` | ` float ` | ` m ` | Cartesian x coordinate. |
13
+ | ` y ` | ` float ` | ` m ` | Cartesian y coordinate. |
14
+ | ` z ` | ` float ` | ` m ` | Cartesian z coordinate. |
15
+ | padding | 4 bytes | | |
16
+ | ` intensity ` | ` float ` | | Intensity of the return as reported by the sensor. |
17
+ | ` ring ` | ` uint16 ` | | Ring ID - only defined for rotational LiDARs. |
18
18
19
19
## PointXYZICATR
20
20
21
- | Field | Type | Units | Description |
22
- | ------------- | -------- | --------- | --------------------------------------------------------------------------- |
23
- | ` x ` | ` float ` | ` m ` | Cartesian x coordinate. |
24
- | ` y ` | ` float ` | ` m ` | The point's cartesian y coordinate. |
25
- | ` z ` | ` float ` | ` m ` | Cartesian z coordinate. |
26
- | padding | 4 bytes | | |
27
- | ` intensity ` | ` uint8 ` | | Intensity of the return as reported by the sensor. |
28
- | ` channel ` | ` uint16 ` | | The ID of the laser channel that produced the point. |
29
- | ` azimuth ` | ` float ` | ` degrees ` | Azimuth in polar coordinates. |
30
- | ` timestamp ` | ` uint32 ` | ` ns ` | Time of detection relative to the pointcloud timestamp. |
31
- | ` return type ` | ` uint8 ` | | Return (echo) type. |
21
+ | Field | Type | Units | Description |
22
+ | ------------- | -------- | --------- | ------------------------------------------------------- |
23
+ | ` x ` | ` float ` | ` m ` | Cartesian x coordinate. |
24
+ | ` y ` | ` float ` | ` m ` | The point's cartesian y coordinate. |
25
+ | ` z ` | ` float ` | ` m ` | Cartesian z coordinate. |
26
+ | padding | 4 bytes | | |
27
+ | ` intensity ` | ` uint8 ` | | Intensity of the return as reported by the sensor. |
28
+ | ` channel ` | ` uint16 ` | | The ID of the laser channel that produced the point. |
29
+ | ` azimuth ` | ` float ` | ` degrees ` | Azimuth in polar coordinates. |
30
+ | ` timestamp ` | ` uint32 ` | ` ns ` | Time of detection relative to the pointcloud timestamp. |
31
+ | ` return type ` | ` uint8 ` | | Return (echo) type. |
32
32
33
33
## PointXYZIRADT
34
34
35
- | Field | Type | Units | Description |
36
- | ------------- | -------- | --------- | --------------------------------------------------------------------------- |
37
- | ` x ` | ` float ` | ` m ` | Cartesian x coordinate. |
38
- | ` y ` | ` float ` | ` m ` | Cartesian y coordinate. |
39
- | ` z ` | ` float ` | ` m ` | Cartesian z coordinate. |
40
- | padding | 4 bytes | | |
41
- | ` intensity ` | ` float ` | | Intensity of the return as reported by the sensor. |
42
- | ` return type ` | ` uint8 ` | | Return (echo) type. |
43
- | ` azimuth ` | ` float ` | ` degrees ` | Azimuth in polar coordinates. |
44
- | ` distance ` | ` float ` | ` m ` | Distance from the sensor origin. |
45
- | ` timestamp ` | ` double ` | ` ns ` | Time of detection relative to the pointcloud timestamp. |
35
+ | Field | Type | Units | Description |
36
+ | ------------- | -------- | --------- | ------------------------------------------------------- |
37
+ | ` x ` | ` float ` | ` m ` | Cartesian x coordinate. |
38
+ | ` y ` | ` float ` | ` m ` | Cartesian y coordinate. |
39
+ | ` z ` | ` float ` | ` m ` | Cartesian z coordinate. |
40
+ | padding | 4 bytes | | |
41
+ | ` intensity ` | ` float ` | | Intensity of the return as reported by the sensor. |
42
+ | ` return type ` | ` uint8 ` | | Return (echo) type. |
43
+ | ` azimuth ` | ` float ` | ` degrees ` | Azimuth in polar coordinates. |
44
+ | ` distance ` | ` float ` | ` m ` | Distance from the sensor origin. |
45
+ | ` timestamp ` | ` double ` | ` ns ` | Time of detection relative to the pointcloud timestamp. |
46
46
47
47
## NebulaPoint = PointXYZIRCAEDT
48
48
49
- | Field | Type | Units | Description |
50
- | ------------- | -------- | ----- | --------------------------------------------------------------------------- |
51
- | ` x ` | ` float ` | ` m ` | Cartesian x coordinate. |
52
- | ` y ` | ` float ` | ` m ` | Cartesian y coordinate. |
53
- | ` z ` | ` float ` | ` m ` | Cartesian z coordinate. |
54
- | ` intensity ` | ` uint8 ` | | Intensity of the return as reported by the sensor. |
55
- | ` return type ` | ` uint8 ` | | Return (echo) type. |
56
- | ` channel ` | ` uint16 ` | | Laser channel ID. |
57
- | ` azimuth ` | ` float ` | ` rad ` | Azimuth in polar coordinates. |
58
- | ` elevation ` | ` float ` | ` rad ` | Eevation in polar coordinates. |
59
- | ` distance ` | ` float ` | ` m ` | Distance from the sensor origin. |
60
- | ` timestamp ` | ` uint32 ` | ` ns ` | Time of detection relative to the pointcloud timestamp. |
49
+ | Field | Type | Units | Description |
50
+ | ------------- | -------- | ----- | ------------------------------------------------------- |
51
+ | ` x ` | ` float ` | ` m ` | Cartesian x coordinate. |
52
+ | ` y ` | ` float ` | ` m ` | Cartesian y coordinate. |
53
+ | ` z ` | ` float ` | ` m ` | Cartesian z coordinate. |
54
+ | ` intensity ` | ` uint8 ` | | Intensity of the return as reported by the sensor. |
55
+ | ` return type ` | ` uint8 ` | | Return (echo) type. |
56
+ | ` channel ` | ` uint16 ` | | Laser channel ID. |
57
+ | ` azimuth ` | ` float ` | ` rad ` | Azimuth in polar coordinates. |
58
+ | ` elevation ` | ` float ` | ` rad ` | Eevation in polar coordinates. |
59
+ | ` distance ` | ` float ` | ` m ` | Distance from the sensor origin. |
60
+ | ` timestamp ` | ` uint32 ` | ` ns ` | Time of detection relative to the pointcloud timestamp. |
0 commit comments