Package org.opentripplanner.routing.edgetype

Examples of org.opentripplanner.routing.edgetype.StationStopEdge


                AgencyAndId parentStationId = new AgencyAndId(agencyId, parentStation);
                Stop parentStop = _dao.getStopForId(parentStationId);
                if(context.stationStopNodes.get(parentStop) instanceof TransitStation) {
                    TransitStation parentStopVertex = (TransitStation)
                            context.stationStopNodes.get(parentStop);
                    new StationStopEdge(parentStopVertex, stopVertex);
                    new StationStopEdge(stopVertex, parentStopVertex);
                } else {
                    LOG.warn(graph.addBuilderAnnotation(new NonStationParentStation(stopVertex)));
                }
            }
        }       
View Full Code Here

TOP

Related Classes of org.opentripplanner.routing.edgetype.StationStopEdge

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.