*/
LOG.debug("Linking bike rental stations...");
for (BikeRentalStationVertex brsv : Iterables.filter(vertices,
BikeRentalStationVertex.class)) {
if (!networkLinkerLibrary.connectVertexToStreets(brsv).getResult()) {
LOG.warn(graph.addBuilderAnnotation(new BikeRentalStationUnlinked(brsv)));
}
}
LOG.debug("Linking bike P+R stations...");
for (BikeParkVertex bprv : Iterables.filter(vertices, BikeParkVertex.class)) {