Skip to content

Commit

Permalink
docs(autoware_pose_cov_modifier): fix line breaks and dead links (#8991)
Browse files Browse the repository at this point in the history
* fix(autoware_pose_cov_modifier): fix line breaks

Signed-off-by: Melike Tanrıkulu <[email protected]>

* fix dead links

Signed-off-by: Melike Tanrıkulu <[email protected]>

---------

Signed-off-by: Melike Tanrıkulu <[email protected]>
  • Loading branch information
meliketanrikulu authored Sep 30, 2024
1 parent 1750903 commit 5a0e100
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions localization/autoware_pose_covariance_modifier/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ Here is a flowchart depicting the process and the predefined thresholds:

```mermaid
graph TD
gnss_poser["gnss_poser"] --> |"/sensing/gnss/\npose_with_covariance"| pose_covariance_modifier_node
ndt_scan_matcher["ndt_scan_matcher"] --> |"/localization/pose_estimator/ndt_scan_matcher/\npose_with_covariance"| pose_covariance_modifier_node
gnss_poser["gnss_poser"] --> |"/sensing/gnss/<br/>pose_with_covariance"| pose_covariance_modifier_node
ndt_scan_matcher["ndt_scan_matcher"] --> |"/localization/pose_estimator/ndt_scan_matcher/<br/>pose_with_covariance"| pose_covariance_modifier_node
subgraph pose_covariance_modifier_node ["Pose Covariance Modifier Node"]
pc1{{"gnss_pose_yaw\nstddev"}}
pc1 -->|"<= 0.3 rad"| pc2{{"gnss_pose_z\nstddev"}}
pc2 -->|"<= 0.1 m"| pc3{{"gnss_pose_xy\nstddev"}}
pc1{{"gnss_pose_yaw<br/>stddev"}}
pc1 -->|"<= 0.3 rad"| pc2{{"gnss_pose_z<br/>stddev"}}
pc2 -->|"<= 0.1 m"| pc3{{"gnss_pose_xy<br/>stddev"}}
pc2 -->|"> 0.1 m"| ndt_pose("NDT Pose")
pc3 -->|"<= 0.1 m"| gnss_pose("GNSS Pose")
pc3 -->|"0.1 m < x <= 0.2 m"| gnss_ndt_pose("`Both GNSS and NDT Pose
Expand Down Expand Up @@ -117,20 +117,20 @@ the [pose_twist_estimator.launch.xml](../../launch/tier4_localization_launch/lau

### Without this condition (default)

- The output of the [ndt_scan_matcher](../../localization/ndt_scan_matcher) is directly sent
to [ekf_localizer](../../localization/ekf_localizer).
- The output of the [ndt_scan_matcher](../../localization/autoware_ndt_scan_matcher) is directly sent
to [ekf_localizer](../../localization/autoware_ekf_localizer).
- It has a preset covariance value.
- **topic name:** `/localization/pose_estimator/pose_with_covariance`
- The GNSS pose does not enter the ekf_localizer.
- This node does not launch.

### With this condition

- The output of the [ndt_scan_matcher](../../localization/ndt_scan_matcher) is renamed
- The output of the [ndt_scan_matcher](../../localization/autoware_ndt_scan_matcher) is renamed
- **from:** `/localization/pose_estimator/pose_with_covariance`.
- **to:** `/localization/pose_estimator/ndt_scan_matcher/pose_with_covariance`.
- The `ndt_scan_matcher` output enters the `autoware_pose_covariance_modifier`.
- The output of this package goes to [ekf_localizer](../../localization/ekf_localizer) with:
- The output of this package goes to [ekf_localizer](../../localization/autoware_ekf_localizer) with:
- **topic name:** `/localization/pose_estimator/pose_with_covariance`.

## Node
Expand Down

0 comments on commit 5a0e100

Please sign in to comment.