File tree 2 files changed +3
-3
lines changed
localization/autoware_pose_covariance_modifier
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ the [pose_twist_estimator.launch.xml](../../launch/tier4_localization_launch/lau
154
154
### Parameters
155
155
156
156
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 ) .
158
158
159
159
{{ json_to_markdown("
160
160
localization/autoware_pose_covariance_modifier/schema/pose_covariance_modifier.schema.json") }}
Original file line number Diff line number Diff line change @@ -159,10 +159,10 @@ PoseSource PoseCovarianceModifierNode::pose_source_from_gnss_stddev(
159
159
gnss_pose_stddev_z > threshold_gnss_stddev_z_max_) {
160
160
return PoseSource::NDT;
161
161
}
162
-
163
162
if (gnss_pose_stddev_xy <= threshold_gnss_stddev_xy_bound_lower_) {
164
163
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_) {
166
166
return PoseSource::GNSS_NDT;
167
167
}
168
168
// If the gnss xy standard deviation is above the upper bound, use NDT pose
You can’t perform that action at this time.
0 commit comments