From aa05aad5b30351f9b834778b81553aa779865f03 Mon Sep 17 00:00:00 2001 From: glax Date: Mon, 24 Apr 2023 18:53:02 +0200 Subject: [PATCH] Added missing maxspeed:max --- OSMDatastructure/Tag.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/OSMDatastructure/Tag.cs b/OSMDatastructure/Tag.cs index 9cf70f1..19741c7 100644 --- a/OSMDatastructure/Tag.cs +++ b/OSMDatastructure/Tag.cs @@ -61,6 +61,7 @@ public class Tag } break; case "maxspeed": + case "maxspeed:max": try { byte speed = Convert.ToByte(value); @@ -111,8 +112,8 @@ public class Tag public static readonly Dictionary defaultSpeedCar = new() { { WayType.NONE, 0 }, - { WayType.motorway, 100 }, - { WayType.motorroad, 90 }, + { WayType.motorway, 130 }, + { WayType.motorroad, 100 }, { WayType.trunk, 85 }, { WayType.primary, 65 }, { WayType.secondary, 60 },