Package com.graphhopper.reader.osm
Class WayToEdgeConverter.EdgeResult
java.lang.Object
com.graphhopper.reader.osm.WayToEdgeConverter.EdgeResult
- Enclosing class:
- WayToEdgeConverter
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncom.carrotsearch.hppc.IntArrayList
com.carrotsearch.hppc.IntArrayList
getNodes()
All the intermediate nodes, i.e.com.carrotsearch.hppc.IntArrayList
com.carrotsearch.hppc.IntArrayList
-
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]
-