Apollo 10.0
自动驾驶开放平台
routing_config.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.routing;
4
5message TopicConfig {
6 optional string routing_response_topic = 1;
7 optional string routing_response_history_topic = 2;
8}
9
11 optional double base_speed = 1; // base speed for node creator [m/s]
12 optional double left_turn_penalty =
13 2; // left turn penalty for node creator [m]
14 optional double right_turn_penalty =
15 3; // right turn penalty for node creator [m]
16 optional double uturn_penalty = 4; // left turn penalty for node creator [m]
17 optional double change_penalty = 5; // change penalty for edge creator [m]
18 optional double base_changing_length =
19 6; // base change length penalty for edge creator [m]
20 optional TopicConfig topic_config = 7;
21}