This repository has been archived on 2025-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
Files
OSMServer/Server/Server.cs
2023-02-06 17:32:55 +01:00

14 lines
516 B
C#

using OSMDatastructure;
using Pathfinding;
namespace Server;
public class Server
{
public static void Main(string[] args)
{
//XmlImporter.Split("/home/glax/Downloads/oberbayern-latest.osm", "/home/glax/Downloads/oberbayern-latest");
//Region r = LoadRegion("/home/glax/Downloads/bayern-latest", new Coordinates(47.890f,12.56f));
Pathfinder.CustomAStar("/home/glax/Downloads/oberbayern-latest", new Coordinates(48.243351f, 11.640417f), new Coordinates(48.25239f, 11.53272f));
}
}