forked from autowarefoundation/sample_vehicle_launch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5469d84
commit 1daa0aa
Showing
13 changed files
with
2,347 additions
and
130 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
sample_vehicle_description/CMakeLists.txt → golf_vehicle_description/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/**: | ||
ros__parameters: | ||
wheel_radius: 0.315 #0.3935 | ||
wheel_width: 0.1 | ||
wheel_base: 2.64 # between front wheel center and rear wheel center | ||
wheel_tread: 1.75 # between left wheel center and right wheel center | ||
front_overhang: 0.99 # between front wheel center and vehicle front | ||
rear_overhang: 0.81 # between rear wheel center and vehicle rear | ||
left_overhang: 0.14 # between left wheel center and vehicle left | ||
right_overhang: 0.14 # between right wheel center and vehicle right | ||
vehicle_height: 1.86 | ||
max_steer_angle: 0.6105 # [rad] check again!(temp) | ||
|
2,409 changes: 2,310 additions & 99 deletions
2,409
sample_vehicle_description/mesh/lexus.dae → golf_vehicle_description/mesh/golf.dae
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
sample_vehicle_description/package.xml → golf_vehicle_description/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>sample_vehicle_description</name> | ||
<name>golf_vehicle_description</name> | ||
<version>0.1.0</version> | ||
<description>The sample_vehicle_description package</description> | ||
<maintainer email="[email protected]">Ryohsuke Mitsudome</maintainer> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0"?> | ||
<robot name="golf" xmlns:xacro="http://ros.org/wiki/xacro"> | ||
|
||
<!-- load parameter --> | ||
<xacro:property | ||
name="vehicle_info" | ||
value="${load_yaml('$(find golf_vehicle_description)/config/vehicle_info.param.yaml')}" | ||
/> | ||
|
||
<!-- vehicle body --> | ||
<link name="base_link"> | ||
<visual> | ||
<!--<origin xyz="${vehicle_info['/**']['ros__parameters']['wheel_base']/2.0} 0 0" rpy="0 0 ${pi/2.0}"/>--> | ||
<origin xyz="1.3772 0.0 0.0" rpy="0 0 ${pi/2.0}"/> | ||
<geometry> | ||
<mesh filename="package://golf_vehicle_description/mesh/golf.dae" scale="1 1 1"/> | ||
</geometry> | ||
</visual> | ||
</link> | ||
</robot> |
2 changes: 1 addition & 1 deletion
2
sample_vehicle_launch/CMakeLists.txt → golf_vehicle_launch/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
sample_vehicle_launch/package.xml → golf_vehicle_launch/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>sample_vehicle_launch</name> | ||
<name>golf_vehicle_launch</name> | ||
<version>0.1.0</version> | ||
<description>The sample_vehicle_launch package</description> | ||
<maintainer email="[email protected]">Ryohsuke Mitsudome</maintainer> | ||
|
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.