Skip to content

Commit 877be9c

Browse files
committed
minor adjustment to nav speed
1 parent 82ca980 commit 877be9c

File tree

1 file changed

+4
-4
lines changed
  • spot/ros_ws/src/rbd_spot_perception/src/rbd_spot_perception

1 file changed

+4
-4
lines changed

spot/ros_ws/src/rbd_spot_perception/src/rbd_spot_perception/graphnav.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
from . import graphnav_util
1313

1414
NAV_VELOCITY_LIMITS_SLOW = SE2VelocityLimit(
15-
min_vel=SE2Velocity(linear=Vec2(x=-0.3, y=-0.15), angular=-0.25),
16-
max_vel=SE2Velocity(linear=Vec2(x=0.3, y=0.15), angular=0.25))
15+
min_vel=SE2Velocity(linear=Vec2(x=-0.3, y=-0.1), angular=-0.25),
16+
max_vel=SE2Velocity(linear=Vec2(x=0.3, y=0.1), angular=0.25))
1717

1818
NAV_VELOCITY_LIMITS_MEDIUM = SE2VelocityLimit(
19-
min_vel=SE2Velocity(linear=Vec2(x=-0.6, y=-0.3), angular=-0.8),
20-
max_vel=SE2Velocity(linear=Vec2(x=0.6, y=0.3), angular=0.8))
19+
min_vel=SE2Velocity(linear=Vec2(x=-0.5, y=-0.2), angular=-0.35),
20+
max_vel=SE2Velocity(linear=Vec2(x=0.5, y=0.2), angular=0.35))
2121

2222
NAV_VELOCITY_LIMITS_FAST = SE2VelocityLimit(
2323
min_vel=SE2Velocity(linear=Vec2(x=-1.0, y=-0.5), angular=-1.2),

0 commit comments

Comments
 (0)