Files
MoGoEagleEye/libraries/mogo-adas-data/src/main/proto/robo_sweeper_task_index.proto

25 lines
1.2 KiB
Protocol Buffer
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
syntax = "proto3";
package planning;
import "header.proto";
message RoboSweeperTaskIndex {
common.Header header = 1;
uint32 edge_clean_state = 2; // 贴边工作状态 0--非贴边作业 1--靠右贴边作业, 2靠左贴边作业
uint32 edge_clean_avoid = 3; // 清扫绕障状态 0非绕障状态 , 1绕障状态
double loc_utm_x = 4; // 自车RTK定位utm坐标下 x值
double loc_utm_y = 5; // 自车RTK定位utm坐标下 y值
double loc_lon = 6; // 自车RTK定位经度
double loc_lat= 7; // 自车RTK定位纬度
double ref_edge_point_x = 8; // 投影边沿点utm坐标下 x值
double ref_edge_point_y = 9; // 投影边沿点utm坐标下 y值
double ref_edge_point_lon = 10; // 投影边沿点经度
double ref_edge_point_lat = 11; // 投影边沿点纬度
double dist_to_ref_edge_point = 12; // 自车到投影边沿点的距离 正值为在投影边沿点的右边 ,负值为在投影边沿点的右边
uint32 clean_mode = 13; // 清扫作业模式 1纯扫 2--洗扫, 3--纯洗, 4--纯吸
uint32 clean_direction = 14; // 清扫方向 1--两侧, 2--左侧, 3--右侧
uint32 clean_intensity= 15; // 作业强度 1标准 2--强力
}