org.opentripplanner.graph_builder.issues.BikeRentalStationUnlinked Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.graph_builder.issues;
import org.opentripplanner.graph_builder.DataImportIssue;
import org.opentripplanner.routing.vertextype.BikeRentalStationVertex;
public class BikeRentalStationUnlinked implements DataImportIssue {
public static final String FMT = "Bike rental station %s not near any streets; it will not be usable.";
private static final String HTMLFMT = "Bike rental station \"%s\" not near any streets; it will not be usable.";
final BikeRentalStationVertex station;
public BikeRentalStationUnlinked(BikeRentalStationVertex station){
this.station = station;
}
@Override
public String getHTMLMessage() {
return String.format(HTMLFMT, station.getLat(), station.getLon(), station);
}
@Override
public String getMessage() {
return String.format(FMT, station);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy