Examples of StopTransfers


Examples of org.onebusaway.transit_data_federation.impl.tripplanner.StopTransfers

    double distance = SphericalGeometryLibrary.distance(from.getStopLocation(),
        to.getStopLocation());
    StopTransfer transfer = new StopTransfer(to, 0, distance);

    List<StopTransfer> transfers = new ArrayList<StopTransfer>();
    StopTransfers existing = from.getTransfers();
    if (existing != null && existing.getTransfersFromStop() != null)
      transfers.addAll(existing.getTransfersFromStop());
    transfers.add(transfer);
    existing = new StopTransfers(transfers, null);
    from.setTransfers(existing);
  }
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.