
org.opentripplanner.graph_builder.issues.ElevationFlattened 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.graph.Edge;
public class ElevationFlattened implements DataImportIssue {
public static final String FMT = "Edge %s was steeper than Baldwin Street and was flattened.";
final Edge edge;
public ElevationFlattened(Edge edge){
this.edge = edge;
}
@Override
public String getMessage() {
return String.format(FMT, edge);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy