Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/22/12 19:14:33 (12 years ago)
Author:
spimming
Message:

#1894:

  • extended datasource interface to get routing graph for a specific vehicle type
  • use ICostCalculator to calculate edge weights
  • moved common enums in own file
  • removed method to estimate cost from graph; use ICostCalculator
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Data.Osm.Core/Way.cs

    r8516 r8520  
    22using System;
    33using System.Collections.Generic;
     4using HeuristicLab.Problems.RoutePlanning.Data.Core;
    45namespace HeuristicLab.Problems.RoutePlanning.Data.Osm.Core {
    5   #region Highway Types
    6 
    7   // see: https://wiki.openstreetmap.org/wiki/Key:highway
    8   public enum HighwayType {
    9     null_type,
    10     motorway,
    11     motorway_link,
    12     trunk,
    13     trunk_link,
    14     primary,
    15     primary_link,
    16     secondary,
    17     secondary_link,
    18     tertiary,
    19     tertiary_link,
    20     living_street,
    21     pedestrian,
    22     residential,
    23     unclassified,
    24     service,
    25     track,
    26     bus_guideway,
    27     raceway,
    28     road,
    29     path,
    30     footway,
    31     cycleway,
    32     bridleway,
    33     steps
    34   }
    35 
    36   #endregion
    37 
    386  public class Way : OsmBase {
    397    private List<Node> nodes;
Note: See TracChangeset for help on using the changeset viewer.