OSMServer/Server/Server.cs

13 lines
223 B
C#
Raw Normal View History

2023-02-02 22:30:43 +01:00
using OSMImporter;
namespace Server;
2023-02-02 19:03:00 +01:00
public class Server
{
2023-02-02 22:30:43 +01:00
public static void Main(string[] args)
2023-02-02 19:03:00 +01:00
{
2023-02-02 22:30:43 +01:00
Importer.Split("/home/glax/Downloads/oberbayern-latest.osm", "/home/glax/Downloads/split");
2023-02-02 19:03:00 +01:00
}
}