sudo docker build -t ros-nav .
Docker
sudo docker run --net host --privileged -it ros-nav
# All the other terminal
sudo docker ps
sudo docker exec -it <container-id> /bin/bash
terminal 2
source /ros_entrypoint.sh
source devel/setup.bash
roslaunch src/vectornav/launch/vectornav.launch
Testing command
rostopic pub -r 1 /vectornav/ins vectornav/Ins "{
header: { stamp: now, frame_id: 'base_link' },
time: 1234.56,
week: 123,
utcTime: 987654321,
insStatus: 2,
yaw: 1.23,
pitch: 2.34,
roll: 3.45,
latitude: 37.4275,
longitude: -122.1697,
altitude: 30.0,
nedVelX: 0.1,
nedVelY: 0.2,
nedVelZ: 0.3,
attUncertainty: [0.01, 0.01, 0.01],
posUncertainty: 0.05,
velUncertainty: 0.02
}"