Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft for discussion: Add TYPE_RURAL and change TYPE_DRIVING to TYPE_CITY #650

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions osi_lane.proto
Original file line number Diff line number Diff line change
Expand Up @@ -400,11 +400,11 @@ message Lane
//
TYPE_OTHER = 1;

// A normal lane.
// A normal lane in city.
// Example: Lanes with IDs l1, l2, l3, l4 and l6 in image \ref
// HighwayExit.
//
TYPE_DRIVING = 2;
TYPE_CITY = 2;

// A road where driving is normally not permitted.
// Example: Lane with ID l5 in image \ref HighwayExit.
Expand All @@ -417,6 +417,10 @@ message Lane
// \image html OSI_X-Junction.svg "" width=600px
//
TYPE_INTERSECTION = 4;

// A normal lane in contry road.
//
TYPE_RURAL = 5;
}

// Definition of available lane subtypes, aligned with OpenDRIVE.
Expand Down