edges.add(new TPOfflineArrivalEdge(_context, _instance));
/**
* We can alight from the vehicle AND transfer to another stop
*/
StopTransferService stopTransferService = _context.getStopTransferService();
List<StopTransfer> transfers = stopTransferService.getTransfersFromStop(stop);
for (StopTransfer transfer : transfers)
edges.add(new TPOfflineTransferEdge(_context, this, transfer));
return edges;