omnigibson-robot-assets / source /turtlebot /turtlebot_source_cfg.yaml
cremebrule's picture
add source files, update gitattributes to include usda files
393dd2a
# Absolute path to URDF
urdf_path: turtlebot_source.urdf # (str) Absolute path to robot URDF to import
name: turtlebot # (str) Name to assign to robot
headless: false # (bool) if set, run without GUI
overwrite: true # (bool) if set, overwrite any existing files
merge_fixed_joints: true
base_motion:
wheel_links: # (list of str): links corresponding to wheels
- wheel_left_link
- wheel_right_link
wheel_joints: # (list of str): joints corresponding to wheel motion
- wheel_left_joint
- wheel_right_joint
use_sphere_wheels: false # (bool) whether to use sphere approximation for wheels (better stability)
use_holonomic_joints: false # (bool) whether to use joints to approximate a holonomic base. In this case, all
# wheel-related joints will be made into fixed joints, and 6 additional
# "virtual" joints will be added to the robot's base capturing 6DOF movement,
# with the (x,y,rz) joints being controllable by motors
collision:
decompose_method: convex # (str) [coacd, convex, or null] collision decomposition method
hull_count: 8 # (int) per-mesh max hull count to use during decomposition, only relevant for coacd
coacd_links: [] # (list of str): links that should use CoACD to decompose collision meshes
convex_links: []
no_decompose_links: # (list of str): links that should not have any post-processing done to them
- base_link
- wheel_left_link
- wheel_right_link
- pole_middle_0_link
- pole_middle_1_link
- pole_middle_2_link
- pole_middle_3_link
- pole_top_0_link
- pole_top_1_link
- pole_top_2_link
- pole_top_3_link
- pole_kinect_0_link
- pole_kinect_1_link
no_collision_links: # (list of str) links that will have any associated collision meshes removed
- pole_bottom_0_link
- pole_bottom_1_link
- pole_bottom_2_link
- pole_bottom_3_link
- pole_bottom_4_link
- pole_bottom_5_link
eef_vis_links: []
camera_links: # (list of dict) information for adding cameras to robot
- link: eyes # (str) link name to add camera. Must exist if @parent_link is null, else will be
# added as a child of the parent
parent_link: base_link # (str) optional parent link to use if adding new link
offset: # (dict) local pos,ori offset values. if @parent_link is specified, defines offset
# between @parent_link and @link specified in @parent_link's frame.
# Otherwise, specifies offset of generated prim relative to @link's frame
position: [-0.087, 0.0125, 0.287] # (3-tuple) (x,y,z) offset -- this is done BEFORE the rotation
orientation: [0.5, -0.5, -0.5, 0.5] # (4-tuple) (x,y,z,w) offset
lidar_links:
- link: scan_link
parent_link: base_link
offset:
position: [0.10, 0, 0.46]
orientation: [0, 0, 0, 1.0]
curobo: null