From 7f06a6f8809b530bf6929b65f71e0102eac4a767 Mon Sep 17 00:00:00 2001 From: glax Date: Sat, 1 Apr 2023 18:28:26 +0200 Subject: [PATCH] working! --- Server/Server.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/Server.cs b/Server/Server.cs index d2630e6..36fef27 100644 --- a/Server/Server.cs +++ b/Server/Server.cs @@ -19,7 +19,7 @@ public class Server Coordinates start = new Coordinates(48.793319f, 9.832102f); - Coordinates finish = new Coordinates(48.840728f, 10.067603f); + Coordinates finish = new Coordinates(48.8407888f, 10.0676020f); DateTime startTime = DateTime.Now; OsmNode[] path = Pathfinder.CustomAStar("D:/stuttgart-regbez-latest", start, finish, Tag.SpeedType.car).ToArray(); TimeSpan duration = DateTime.Now - startTime;