-
Notifications
You must be signed in to change notification settings - Fork 130
Closed
Labels
FeatureRequestProposals which enhance the interface or add additional features.Proposals which enhance the interface or add additional features.
Milestone
Description
- Is the supposed driving direction indicated somewhere? I haven't seen it.
- In case it doesn't, why not?
- In case it wasn't considered, would it makes sense to add it?
It could be added to the OSI::Lane, something like this:
message Lane
{
// The rest of the Lane message
//
{...}
// A lane direction describes the supposed driving direction of the lane.
//
optional LaneDrivingDirection lane_driving_direction = 10;
// Definition of available lane driving direction types.
//
enum LaneDrivingDirection
{
// Lane of unknown driving direction (must not be used in ground truth).
//
LANE_DRIVING_DIRECTION_UNKNOWN = 0;
// Other (unspecified but known) lane driving direction.
//
LANE_DRIVING_DIRECTION_OTHER = 1;
// The lane driving direction is right.
//
LANE_DRIVING_DIRECTION_RIGHT_WAY = 2;
// The lane driving direction is wrong.
//
LANE_DRIVING_DIRECTION_WRONG_WAY = 3;
}
}
Metadata
Metadata
Labels
FeatureRequestProposals which enhance the interface or add additional features.Proposals which enhance the interface or add additional features.