File tree 2 files changed +63
-0
lines changed
perception/radar_tracks_msgs_converter
2 files changed +63
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,12 @@ Autoware objects label is defined in [ObjectClassification.idl](https://gitlab.c
52
52
53
53
### Parameters
54
54
55
+ #### Parameter Summary
56
+
57
+ {{ json_to_markdown("perception/radar_tracks_msgs_converter/schema/radar_tracks_msgs_converter.schema.json") }}
58
+
59
+ #### Parameter Description
60
+
55
61
- ` update_rate_hz ` (double) [ hz]
56
62
- Default parameter is 20.0
57
63
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " http://json-schema.org/draft-07/schema#" ,
3
+ "title" : " Parameters for Radar Tracks Msgs Converter node" ,
4
+ "type" : " object" ,
5
+ "definitions" : {
6
+ "radar_tracks_msgs_converter" : {
7
+ "type" : " object" ,
8
+ "properties" : {
9
+ "update_rate_hz" : {
10
+ "type" : " number" ,
11
+ "description" : " The update rate [hz] of the output topic" ,
12
+ "default" : " 20.0" ,
13
+ "minimum" : 0.0
14
+ },
15
+ "new_frame_id" : {
16
+ "type" : " string" ,
17
+ "description" : " The header frame_id of the output topic" ,
18
+ "default" : " base_link"
19
+ },
20
+ "use_twist_compensation" : {
21
+ "type" : " boolean" ,
22
+ "description" : " Flag to enable the linear compensation of ego vehicle's twist" ,
23
+ "default" : " false"
24
+ },
25
+ "use_twist_yaw_compensation" : {
26
+ "type" : " boolean" ,
27
+ "description" : " Flag to enable the compensation of yaw rotation of ego vehicle's twist" ,
28
+ "default" : " false"
29
+ },
30
+ "static_object_speed_threshold" : {
31
+ "type" : " number" ,
32
+ "description" : " Threshold to treat detected objects as static objects" ,
33
+ "default" : " 1.0"
34
+ }
35
+ },
36
+ "required" : [
37
+ " update_rate_hz" ,
38
+ " new_frame_id" ,
39
+ " use_twist_compensation" ,
40
+ " use_twist_yaw_compensation" ,
41
+ " static_object_speed_threshold"
42
+ ]
43
+ }
44
+ },
45
+ "properties" : {
46
+ "/**" : {
47
+ "type" : " object" ,
48
+ "properties" : {
49
+ "ros__parameters" : {
50
+ "$ref" : " #/definitions/radar_tracks_msgs_converter"
51
+ }
52
+ },
53
+ "required" : [" ros__parameters" ]
54
+ }
55
+ },
56
+ "required" : [" /**" ]
57
+ }
You can’t perform that action at this time.
0 commit comments