Skip to content

Commit c75aa0f

Browse files
committed
add attribute country, country_revision, code and sub_code to roadmarking
Signed-off-by: Marcel Sachse <msachse@pmsfit.de>
1 parent 545a96e commit c75aa0f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

osi_roadmarking.proto

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,29 @@ message RoadMarking
128128
//
129129
optional bool is_out_of_service = 7;
130130

131+
// Specifies the country. See ISO 3166-1, alpha-2 codes
132+
// https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2. <br>
133+
// e.g. "DE", "FR", "AT"
134+
//
135+
optional string country = 8;
136+
137+
// The year the traffic rules come into force. <br>
138+
// e.g. "2017"
139+
//
140+
optional string country_revision = 9;
141+
142+
// Code identifier according to country code. <br>
143+
// code is only unique in combination with #country and #country_revision. <br>
144+
// e.g. http://www.vzkat.de/2017/VzKat.htm
145+
//
146+
optional string code = 10;
147+
148+
// Subcode identifier according to country code. <br>
149+
// sub_code is only unique in combination with #country and #country_revision. <br>
150+
// e.g. http://www.vzkat.de/2017/VzKat.htm
151+
//
152+
optional string sub_code = 11;
153+
131154
// Definition of road marking types.
132155
//
133156
// \attention Deprecated: OpenDRIVE categorization for traffic signs is more generic than OSI enum

0 commit comments

Comments
 (0)