@@ -73,13 +73,13 @@ Here is a flowchart depicting the process and the predefined thresholds:
73
73
74
74
``` mermaid
75
75
graph TD
76
- gnss_poser["gnss_poser"] --> |"/sensing/gnss/\npose_with_covariance "| pose_covariance_modifier_node
77
- ndt_scan_matcher["ndt_scan_matcher"] --> |"/localization/pose_estimator/ndt_scan_matcher/\npose_with_covariance "| pose_covariance_modifier_node
76
+ gnss_poser["gnss_poser"] --> |"/sensing/gnss/<br/>pose_with_covariance "| pose_covariance_modifier_node
77
+ ndt_scan_matcher["ndt_scan_matcher"] --> |"/localization/pose_estimator/ndt_scan_matcher/<br/>pose_with_covariance "| pose_covariance_modifier_node
78
78
79
79
subgraph pose_covariance_modifier_node ["Pose Covariance Modifier Node"]
80
- pc1{{"gnss_pose_yaw\nstddev "}}
81
- pc1 -->|"<= 0.3 rad"| pc2{{"gnss_pose_z\nstddev "}}
82
- pc2 -->|"<= 0.1 m"| pc3{{"gnss_pose_xy\nstddev "}}
80
+ pc1{{"gnss_pose_yaw<br/>stddev "}}
81
+ pc1 -->|"<= 0.3 rad"| pc2{{"gnss_pose_z<br/>stddev "}}
82
+ pc2 -->|"<= 0.1 m"| pc3{{"gnss_pose_xy<br/>stddev "}}
83
83
pc2 -->|"> 0.1 m"| ndt_pose("NDT Pose")
84
84
pc3 -->|"<= 0.1 m"| gnss_pose("GNSS Pose")
85
85
pc3 -->|"0.1 m < x <= 0.2 m"| gnss_ndt_pose("`Both GNSS and NDT Pose
@@ -117,20 +117,20 @@ the [pose_twist_estimator.launch.xml](../../launch/tier4_localization_launch/lau
117
117
118
118
### Without this condition (default)
119
119
120
- - The output of the [ ndt_scan_matcher] ( ../../localization/ndt_scan_matcher ) is directly sent
121
- to [ ekf_localizer] ( ../../localization/ekf_localizer ) .
120
+ - The output of the [ ndt_scan_matcher] ( ../../localization/autoware_ndt_scan_matcher ) is directly sent
121
+ to [ ekf_localizer] ( ../../localization/autoware_ekf_localizer ) .
122
122
- It has a preset covariance value.
123
123
- ** topic name:** ` /localization/pose_estimator/pose_with_covariance `
124
124
- The GNSS pose does not enter the ekf_localizer.
125
125
- This node does not launch.
126
126
127
127
### With this condition
128
128
129
- - The output of the [ ndt_scan_matcher] ( ../../localization/ndt_scan_matcher ) is renamed
129
+ - The output of the [ ndt_scan_matcher] ( ../../localization/autoware_ndt_scan_matcher ) is renamed
130
130
- ** from:** ` /localization/pose_estimator/pose_with_covariance ` .
131
131
- ** to:** ` /localization/pose_estimator/ndt_scan_matcher/pose_with_covariance ` .
132
132
- The ` ndt_scan_matcher ` output enters the ` autoware_pose_covariance_modifier ` .
133
- - The output of this package goes to [ ekf_localizer] ( ../../localization/ekf_localizer ) with:
133
+ - The output of this package goes to [ ekf_localizer] ( ../../localization/autoware_ekf_localizer ) with:
134
134
- ** topic name:** ` /localization/pose_estimator/pose_with_covariance ` .
135
135
136
136
## Node
0 commit comments