Open
Description
Currently we have the case that there could be 2 types of object used to separate either side of the highway; a concrete barrier or a metal guard rail.
Below are 2 type-definitions in the OSI LaneBoundary Classification class.
// A guard rail.
//
TYPE_GUARD_RAIL = 11;
// A structure (e.g. building or tunnel wall).
//
TYPE_STRUCTURE = 13;
The question is whether the concrete barrier should be treated as a structure or as a guard rail? If the former is the case, we should also add a material enumeration to the Classification object as we lose important information here if we consolidate them to one representation.