Add steepness formatting

This commit is contained in:
sonora 2019-03-07 08:36:28 +01:00
parent 29b9ee977a
commit b76e8d8b07

View file

@ -437,7 +437,7 @@ public class RouteStatistics {
@Override @Override
public String toString() { public String toString() {
return String.format("%d-%d", Math.round(getLowerBoundary()), Math.round(getUpperBoundary())); return String.format("%d%% - %d%%", Math.round(getLowerBoundary()), Math.round(getUpperBoundary()));
} }
} }