OSMServer/Server/Server.cs
2023-02-02 22:30:43 +01:00

13 lines
223 B
C#

using OSMImporter;
namespace Server;
public class Server
{
public static void Main(string[] args)
{
Importer.Split("/home/glax/Downloads/oberbayern-latest.osm", "/home/glax/Downloads/split");
}
}