sick_scan/SickLocSetPoseSrv Service

File: sick_scan/SickLocSetPoseSrv.srv

Raw Message Definition

# Definition of ROS service SickLocSetPose for sick localization.
#
# ROS service SickLocSetPose initializes the vehicle pose
# by sending cola command ("sMN LocSetPose    ")
# with parameter
: x coordinate in mm
: y coordinate in mm
: yaw angle in millidegree, -180000 to +180000
: translation uncertainty in mm
#
# See Telegram-Listing-v1.1.0.241R.pdf for further details about 
# Cola telegrams and this command.

#
# Request (input)
#

int32 posex       # x coordinate in mm
int32 posey       # y coordinate in mm
int32 yaw         # yaw angle in millidegree, -180000 to +180000
int32 uncertainty # translation uncertainty in mm

---

#
# Response (output)
#

bool success # true: success response received from localization controller, false: service failed (timeout or error status from controller)


Compact Message Definition

int32 posex
int32 posey
int32 yaw
int32 uncertainty

bool success