Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning.Test/Program.cs @ 8293

Last change on this file since 8293 was 8293, checked in by spimming, 12 years ago

#1894:

  • new default constructor for osm base types
  • defined common interface for data sources
  • implemented xml data source
  • added test project with osm test files
File size: 520 bytes
Line 
1
2using HeuristicLab.Problems.RoutePlanning.Osm.Data;
3namespace HeuristicLab.Problems.RoutePlanning.Test {
4  class Program {
5    static void Main(string[] args) {
6      string filepath = @"..\..\OsmTestFiles\test.osm";
7      //string filepath = @"..\..\OsmTestFiles\testNode1.osm";
8      //string filepath = @"..\..\OsmTestFiles\testWay1.osm";
9      //string filepath = @"..\..\OsmTestFiles\testRelation1.osm";
10      XmlDataSource xmlDs = new XmlDataSource(filepath);
11      xmlDs.ReadData();
12    }
13  }
14}
Note: See TracBrowser for help on using the repository browser.