Class WayToEdgeConverter.EdgeResult

java.lang.Object
com.graphhopper.reader.osm.WayToEdgeConverter.EdgeResult
Enclosing class:
WayToEdgeConverter

public static class WayToEdgeConverter.EdgeResult extends Object
  • Constructor Details

    • EdgeResult

      public EdgeResult(int numFrom, int numVia, int numTo)
  • Method Details

    • getFromEdges

      public com.carrotsearch.hppc.IntArrayList getFromEdges()
    • getViaEdges

      public com.carrotsearch.hppc.IntArrayList getViaEdges()
    • getToEdges

      public com.carrotsearch.hppc.IntArrayList getToEdges()
    • getNodes

      public com.carrotsearch.hppc.IntArrayList getNodes()
      All the intermediate nodes, i.e. for an edge chain like this:
         a   b   c   d
       0---1---2---3---4
       
      where 'a' is the from-edge and 'd' is the to-edge this will be [1,2,3]