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: Feature/add elements to lane boundary classification type #658

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
9 changes: 9 additions & 0 deletions osi_lane.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1066,8 +1066,17 @@ message LaneBoundary
TYPE_BARRIER = 14;

// A sound barrier.
// Also known as noise protection wall.
//
TYPE_SOUND_BARRIER = 15;

// The lane boundary is a fence.
//
TYPE_FENCE = 16;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A FENCE could be described with STRUCTURE?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At the moment we have mapped STRUCTUR to WALL.


// The lane boundary is a tension cable system.
//
TYPE_TENSION_CABLE_SYSTEM = 17;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This would be the same as a GUARD_RAIL but constructed differently?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks something like this: https://gibraltarglobal.com/

}

// The semantic color of the lane boundary in case of a lane markings.
Expand Down