Skip to content

Commit

Permalink
fix mapping bug
Browse files Browse the repository at this point in the history
  • Loading branch information
benediktschwab committed Jun 13, 2024
1 parent 1ab9902 commit c99bdda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ object CodeAdder {
when (laneMaterial.surface.uppercase()) {
in "ASPHALT" -> TrafficAreaAndAuxiliaryTrafficAreaSurfaceMaterialCode.ASPHALT.some()
in "GRASS" -> TrafficAreaAndAuxiliaryTrafficAreaSurfaceMaterialCode.GRASS.some()
in "SPEC_CONCRETE_3D" -> TrafficAreaAndAuxiliaryTrafficAreaSurfaceMaterialCode.GRASS.some()
in "SPEC_CONCRETE_3D" -> TrafficAreaAndAuxiliaryTrafficAreaSurfaceMaterialCode.CONCRETE.some()
else -> None
}

Expand Down

0 comments on commit c99bdda

Please sign in to comment.