Examples of WaitingEndsAtStopEdge


Examples of org.onebusaway.transit_data_federation.impl.otp.graph.WaitingEndsAtStopEdge

  }

  @Override
  public Collection<Edge> getOutgoing() {
    // We stop waiting and move back to the street
    WaitingEndsAtStopEdge edge = new WaitingEndsAtStopEdge(_context, getStop(),
        false);
    edge.setFromVertex(this);
    return Arrays.asList((Edge) edge);
  }
View Full Code Here

Examples of org.onebusaway.transit_data_federation.impl.otp.graph.WaitingEndsAtStopEdge

      WalkFromStopVertex walkFromStopVertex = new WalkFromStopVertex(context,
          stop);

      if (linker.determineOutgoingEdgesForVertex(walkFromStopVertex, true)) {
        GraphVertex gv = graph.getGraphVertex(walkFromStopVertex.getLabel());
        WaitingEndsAtStopEdge edge = new WaitingEndsAtStopEdge(context, stop,
            true);
        edge.setToVertex(walkFromStopVertex);
        gv.addIncoming(edge);
      } else {
        _log.warn("error linking stop: " + stop.getId() + " to street network");
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.