-
Notifications
You must be signed in to change notification settings - Fork 130
Add new lane boundary classification type (fence, tension cable system) #658
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
base: master
Are you sure you want to change the base?
Changes from all commits
7fa0c18
e38fdc2
7088b2c
8fe2f2a
65b330b
03e4da2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A FENCE could be described with STRUCTURE? There was a problem hiding this comment. Choose a reason for hiding this commentThe 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; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This would be the same as a GUARD_RAIL but constructed differently? There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. | ||
|
Uh oh!
There was an error while loading. Please reload this page.