Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 36d17b6

Browse files
committedMay 8, 2024·
fix CI
Signed-off-by: Melike Tanrıkulu <melike@leodrive.ai>
1 parent 4d75ad4 commit 36d17b6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎localization/autoware_pose_covariance_modifier/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ the [pose_twist_estimator.launch.xml](../../launch/tier4_localization_launch/lau
154154
### Parameters
155155

156156
The parameters are set
157-
in [config/autoware_pose_covariance_modifier.param.yaml](config/autoware_pose_covariance_modifier.param.yaml) .
157+
in [config/pose_covariance_modifier.param.yaml](config/autoware_pose_covariance_modifier.param.yaml) .
158158

159159
{{ json_to_markdown("
160160
localization/autoware_pose_covariance_modifier/schema/pose_covariance_modifier.schema.json") }}

‎localization/autoware_pose_covariance_modifier/src/pose_covariance_modifier.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ PoseSource PoseCovarianceModifierNode::pose_source_from_gnss_stddev(
159159
gnss_pose_stddev_z > threshold_gnss_stddev_z_max_) {
160160
return PoseSource::NDT;
161161
}
162-
163162
if (gnss_pose_stddev_xy <= threshold_gnss_stddev_xy_bound_lower_) {
164163
return PoseSource::GNSS;
165-
} else if (gnss_pose_stddev_xy <= threshold_gnss_stddev_xy_bound_upper_) {
164+
}
165+
if (gnss_pose_stddev_xy <= threshold_gnss_stddev_xy_bound_upper_) {
166166
return PoseSource::GNSS_NDT;
167167
}
168168
// If the gnss xy standard deviation is above the upper bound, use NDT pose

0 commit comments

Comments
 (0)
Please sign in to comment.