From 2904be84f04bd91c2ba72cff39a4c023c38814c3 Mon Sep 17 00:00:00 2001 From: glax Date: Sun, 9 Apr 2023 17:37:52 +0200 Subject: [PATCH] changed NONE speeds --- OSMDatastructure/Tag.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OSMDatastructure/Tag.cs b/OSMDatastructure/Tag.cs index c8747d3..9985e14 100644 --- a/OSMDatastructure/Tag.cs +++ b/OSMDatastructure/Tag.cs @@ -97,7 +97,7 @@ public class Tag } public static readonly Dictionary defaultSpeedCar = new() { - { WayType.NONE, 1 }, + { WayType.NONE, 0 }, { WayType.motorway, 110 }, { WayType.trunk, 100 }, { WayType.primary, 80 }, @@ -129,7 +129,7 @@ public class Tag }; public static readonly Dictionary defaultSpeedPedestrian = new() { - { WayType.NONE, 1 }, + { WayType.NONE, 0 }, { WayType.motorway, 0 }, { WayType.trunk, 0 }, { WayType.primary, 0 },