use of org.opentripplanner.routing.vertextype.TransitEntranceVertex in project OpenTripPlanner by opentripplanner.
the class AddTransitModelEntitiesToGraph method addEntrancesToGraph.
private void addEntrancesToGraph(Graph graph) {
for (Entrance entrance : transitService.getAllEntrances()) {
TransitEntranceVertex entranceVertex = new TransitEntranceVertex(graph, entrance);
stationElementNodes.put(entrance, entranceVertex);
}
}
Aggregations