@@ -110,29 +110,29 @@ def config_franka() -> None: # noqa: D103
110110
111111@register_configuration ("franka_axis" )
112112def config_franka_axis () -> None : # noqa: D103
113- EnvironmentConfiguration .world = "table_with_1_brick.sdf"
114- Rviz .add_markers ()
115- Rviz .load_robot_state = True
116- Rviz .load_trajectory = True
117- Rviz .load_planning_scene = True
118- arm = Arm ("franka" , [0 , 0 , 0 ], moveit = True )
119- Camera ("realsense" , [0.05 , 0 , 0 ], [0 , - 90 , 180 ], parent = arm )
120-
121-
122- @register_configuration ("franka_double" )
123- def config_franka_double () -> None : # noqa: D103
124113 franka = Arm ("franka" , [0 , 0 , 0 ], [0 , 0 , 20 ])
125114 Platform ("axis" , [0 , 0 , 0.1 ], [0 , 20 , 0 ], parent = franka )
126115
127116
128- @register_configuration ("franka_planning " )
129- def config_franka_planning () -> None : # noqa: D103
117+ @register_configuration ("franka_double " )
118+ def config_franka_double () -> None : # noqa: D103
130119 EnvironmentConfiguration .use_joystick = False
131120 Rviz .load_motion_planning_plugin = True
132121 Arm ("franka" , [1.0 , 0 , 0 ], gripper = True , moveit = True )
133122 Arm ("franka" , [- 1.0 , 0 , 0 ], gripper = True , moveit = True )
134123
135124
125+ @register_configuration ("franka_planning" )
126+ def config_franka_planning () -> None : # noqa: D103
127+ EnvironmentConfiguration .world = "table_with_1_brick.sdf"
128+ Rviz .add_markers ()
129+ Rviz .load_robot_state = True
130+ Rviz .load_trajectory = True
131+ Rviz .load_planning_scene = True
132+ arm = Arm ("franka" , [0 , 0 , 0 ], moveit = True )
133+ Camera ("realsense" , [0.05 , 0 , 0 ], [0 , - 90 , 180 ], parent = arm )
134+
135+
136136@register_configuration ("franka_realsense" )
137137def config_franka_realsense () -> None : # noqa: D103
138138 arm = Arm ("franka" , [0 , 0 , 0 ], moveit = True )
@@ -175,6 +175,7 @@ def config_panther_zed() -> None: # noqa: D103
175175
176176@register_configuration ("panther_velodyne" )
177177def config_panther_velodyne () -> None : # noqa: D103
178+ EnvironmentConfiguration .use_vizanti = True
178179 panther = Vehicle ("panther" , [0 , 0 , 0.2 ], navigation = True )
179180 Lidar ("velodyne" , [0.13 , - 0.13 , 0.35 ], parent = panther )
180181
@@ -205,6 +206,17 @@ def config_mm_ouster() -> None: # noqa: D103
205206 Lidar ("ouster" , [0.13 , - 0.13 , 0.35 ], parent = panther )
206207
207208
209+ @register_configuration ("mm_gps" )
210+ def config_mm_gps () -> None : # noqa: D103
211+ EnvironmentConfiguration .world = "map_5.940906_51.966960"
212+ panther = Vehicle (
213+ "panther" , [0 , 0 , 0.2 ], navigation = True , use_gps = True , window_size = 50
214+ )
215+ Arm ("franka" , [0 , 0 , 0.14 ], gripper = True , parent = panther , moveit = True )
216+ Lidar ("velodyne" , [0.13 , - 0.13 , 0.35 ], parent = panther )
217+ GPS ("nmea" , [0 , 0 , 0.2 ], parent = panther )
218+
219+
208220@register_configuration ("panther_and_franka" )
209221def config_panther_and_franka () -> None : # noqa: D103
210222 Vehicle ("panther" , [0 , - 0.5 , 0.2 ])
0 commit comments