@@ -18,9 +18,9 @@ def generate_launch_description() -> LaunchDescription:
1818 [
1919 PathJoinSubstitution (
2020 [
21- pkg_zed ,
21+ get_package_share_directory ( "zed_wrapper" ) ,
2222 "launch" ,
23- "internal .launch.py" ,
23+ "zed_camera .launch.py" ,
2424 ]
2525 )
2626 ]
@@ -32,15 +32,18 @@ def generate_launch_description() -> LaunchDescription:
3232 ("namespace" , "/sensors/depth_image" ),
3333 #
3434 # let other nodes take care of publishing to the tf tree
35- ("publish_map_tf" , "false" ),
36- ("publish_imu_tf" , "false" ),
35+ # ("publish_map_tf", "false"),
36+ # ("publish_imu_tf", "false"),
3737 #
3838 # provide the correct path to the Rover URDF (3d model)
39- ("xacro_path" , f"{ pkg_simulator } /resource/rover.urdf.xacro.xml" ),
39+ # ("xacro_path", f"{pkg_simulator}/resource/rover.urdf.xacro.xml"),
4040 #
4141 # configure the wrapper to use our sensors while mapping. this can
4242 # increase accuracy and help in other subtle ways
4343 ("enable_gnss" , "true" ),
44+ #
45+ # use config file with QoS overrides for GPS topic compatibility
46+ ("ros_params_override_path" , f"{ get_package_share_directory ('zed_wrapper' )} /config/common_stereo.yaml" ),
4447 ],
4548 )
4649
0 commit comments