Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iri_model_car_description
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
mobile_robotics
ADC
platforms
model_car
iri_model_car_description
Commits
69233b0d
Commit
69233b0d
authored
6 years ago
by
Fernando Herrero
Browse files
Options
Downloads
Patches
Plain Diff
Updated odometry launch include in spawn_car launch
parent
28314b60
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config/seat_car.rviz
+224
-328
224 additions, 328 deletions
config/seat_car.rviz
launch/odometry.launch
+11
-15
11 additions, 15 deletions
launch/odometry.launch
launch/spawn_car.launch
+6
-19
6 additions, 19 deletions
launch/spawn_car.launch
with
241 additions
and
362 deletions
config/seat_car.rviz
+
224
−
328
View file @
69233b0d
This diff is collapsed.
Click to expand it.
launch/odometry.launch
+
11
−
15
View file @
69233b0d
...
...
@@ -3,24 +3,20 @@
<arg name="x" default="0.0"/>
<arg name="y" default="-0.2"/>
<arg name="yaw" default="0.0"/>
<node pkg ="odometry"
<node pkg ="odometry"
type="odometry_publisher"
name="odometry_publisher"
output="screen">
<param name="file_name" value="/opt/ros/modelcar/catkin_ws/install/share/odometry/cfg/SteerAngleActuator.xml"/>
<param name="initial_x" value="$(arg x)"/>
<param name="initial_y" value="$(arg y)"/>
<param name="initial_yaw" value="$(arg yaw)"/>
<remap from="/manual_control/steering"
to="/steering_angle"/>
<remap from="/model_car/twist"
to="/twist"/>
<remap from="/model_car/yaw"
to="/yaw"/>
<remap from="~odom"
to="/odom"/>
<param name="file_name" value="$(find odometry)/cfg/SteerAngleActuator.xml" />
<param name="model_car_yaw" value="/yaw" />
<param name="model_car_twist" value="/twist" />
<param name="steering_command" value="/steering" />
<param name="initial_x" value="$(arg x)" /> <!--meters-->
<param name="initial_y" value="$(arg y)" /> <!--meters-->
<param name="initial_yaw" value="$(arg yaw)" /> <!--radian-->
<param name="bicycle_model" value="true" /> <!--use just bicycle model-->
<param name="servo_with_feedback" value="true" /> <!--use just bicycle model-->
</node>
</launch>
This diff is collapsed.
Click to expand it.
launch/spawn_car.launch
+
6
−
19
View file @
69233b0d
...
...
@@ -29,25 +29,6 @@
<arg name="name" value="$(arg name)"/>
</include>
<!-- odometry pkg from https://github.com/AutoModelCar/model_car/tree/version-3 -->
<node pkg ="odometry"
type="odometry_publisher"
name="odometry_publisher"
output="screen">
<param name="file_name" value="/opt/ros/modelcar/catkin_ws/install/share/odometry/cfg/SteerAngleActuator.xml"/>
<param name="initial_x" value="$(arg x)"/>
<param name="initial_y" value="$(arg y)"/>
<param name="initial_yaw" value="$(arg yaw)"/>
<remap from="/manual_control/steering"
to="/steering_angle"/>
<remap from="/model_car/twist"
to="/twist"/>
<remap from="/model_car/yaw"
to="/yaw"/>
<remap from="~odom"
to="/odom"/>
</node>
<arg name="break_distance" default="0.5"/>
<arg name="angle" default="40"/>
<node pkg="auto_stop"
...
...
@@ -82,6 +63,12 @@
<param name="publish_debug_topics" value="false"/>
<param name="stateless" value="false"/>
</node>
<include file="$(find seat_car_description)/launch/odometry.launch">
<arg name="x" value="$(arg x)"/>
<arg name="y" value="$(arg y)"/>
<arg name="yaw" value="$(arg yaw)"/>
</include>
<node name="$(arg name)_static_tf_world_map" pkg="tf" type="static_transform_publisher"
args="0 0 0 0 0 0 $(arg world_frame) $(arg map_frame) 100"/>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment