From 57774124412048d260ff9657e37bcc5172151a58 Mon Sep 17 00:00:00 2001 From: Sergey Vartanov Date: Sun, 19 Sep 2021 16:35:45 +0300 Subject: [PATCH] Issue #84: fix default road width. --- map_machine/road.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map_machine/road.py b/map_machine/road.py index 4259461..2ad8479 100644 --- a/map_machine/road.py +++ b/map_machine/road.py @@ -379,7 +379,7 @@ class Road(Tagged): self.line: Polyline = Polyline( [flinger.fling(x.coordinates) for x in self.nodes] ) - self.width: Optional[float] = 5 + self.width: Optional[float] = matcher.default_width self.lanes: list[Lane] = [] if "lanes" in tags: