From 829c9fc0afa0be57ca1c07b05dd6dcecc357e6da Mon Sep 17 00:00:00 2001 From: Marcel Sachse Date: Thu, 15 Apr 2021 16:02:00 +0200 Subject: [PATCH] Add color orange as suggested in issue #504 - Harmonization of road mark colors with OpenDRIVE Signed-off-by: Pierre R. Mai --- osi_lane.proto | 4 ++++ osi_roadmarking.proto | 8 ++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/osi_lane.proto b/osi_lane.proto index b9b1cce10..3fed17271 100644 --- a/osi_lane.proto +++ b/osi_lane.proto @@ -993,6 +993,10 @@ message LaneBoundary // Marking with violet color. // COLOR_VIOLET = 8; + + // Marking with orange color. + // + COLOR_ORANGE = 9; } } } diff --git a/osi_roadmarking.proto b/osi_roadmarking.proto index fd8cd0378..7afbf4f77 100644 --- a/osi_roadmarking.proto +++ b/osi_roadmarking.proto @@ -121,8 +121,8 @@ message RoadMarking // Boolean flag to indicate that the road marking is taken out of service. - // This can be achieved by visibly crossing the road marking with stripes, - // or completly covering a road marking making it not visible. + // This can be achieved by visibly crossing the road marking with stripes, + // or completly covering a road marking making it not visible. // // \image html OSI_RoadMaking_is_out_of_service.jpg width=800px // @@ -206,6 +206,10 @@ message RoadMarking // Marking with violet color. // COLOR_VIOLET = 8; + + // Marking with orange color. + // + COLOR_ORANGE = 9; } } }