Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iri_rosnav
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
labrobotica
ros
navigation
iri_rosnav
Merge requests
!4
Added new arguments to set the name of the move_base stack.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added new arguments to set the name of the move_base stack.
development
into
master
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Sergi Hernandez
requested to merge
development
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
Added the necessary remaps.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8875f20b
1 commit,
3 years ago
2 files
+
8
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
launch/include/move_base.launch
+
4
−
1
Options
@@ -3,6 +3,7 @@
<launch>
<arg
name=
"ns"
default=
"robot"
/>
<arg
name=
"move_base_name"
default=
"move_base"
/>
<arg
name=
"path"
default=
"$(find iri_rosnav)/params"
/>
<arg
name=
"move_base_params"
default=
"move_base_params.yaml"
/>
<arg
name=
"costmap_common_params"
default=
"common_params.yaml"
/>
@@ -23,12 +24,14 @@
<node
pkg =
"move_base"
type=
"move_base"
name=
"move_base"
name=
"
$(arg
move_base
_name)
"
output=
"$(arg output)"
launch-prefix=
"$(arg launch_prefix)"
>
<remap
from=
"/map"
to=
"$(arg map_topic)"
/>
<remap
from=
"cmd_vel"
to=
"$(arg cmd_vel_topic)"
/>
<remap
from=
"odom"
to=
"$(arg odom_topic)"
/>
<remap
from=
"move_base_simple/goal"
to=
"$(arg move_base_name)_simple/goal"
/>
<remap
from=
"move_base"
to=
"$(arg move_base_name)"
/>
<rosparam
file=
"$(arg path)/$(arg move_base_params)"
command=
"load"
/>
<rosparam
file=
"$(arg path)/local_planner/$(arg local_planner)_params.yaml"
command=
"load"
/>
Loading