Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Osm/IDataSource.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: 233 bytes
Line 
1
2namespace HeuristicLab.Problems.RoutePlanning.Osm {
3  public interface IDataSource {
4    //string Name { get; }
5    Node GetNode(long nodeId);
6    Way GetWay(long wayId);
7    Relation GetRelation(long relationId);
8  }
9}
Note: See TracBrowser for help on using the repository browser.