HillIndexCalculator.java
/* This file is part of Openrouteservice.
*
* Openrouteservice is free software; you can redistribute it and/or modify it under the terms of the
* GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License along with this library;
* if not, see <https://www.gnu.org/licenses/>.
*/
package org.heigit.ors.routing.util;
import com.graphhopper.util.DistanceCalc;
import com.graphhopper.util.DistanceCalc3D;
import com.graphhopper.util.PointList;
import java.util.ArrayList;
import java.util.List;
public class HillIndexCalculator {
private final DistanceCalc distCalc;
private final List<RouteSplit> splits;
public HillIndexCalculator() {
distCalc = new DistanceCalc3D();
splits = new ArrayList<>();
}
// the formula for hillIndex is taken from http://www.roberts-1.com/bikehudson/r/m/hilliness/#grade
public byte getHillIndex(PointList points, boolean reverse) {
SteepnessUtil.computeRouteSplits(points, reverse, distCalc, splits);
double totalVerticalClimb = 0.0;
double excessSteepClimb = 0.0;
double totalDistance = 0.0;
for (RouteSplit split : splits) {
double gradient = split.gradient;
if (gradient > 0) {
double vc = split.verticalClimb * 3.28084;
totalVerticalClimb += vc;
}
totalDistance += split.length * 0.000621371;
}
if (totalDistance == 0.0) {
return 0;
}
int hillIndex = (int) (100 * (totalVerticalClimb + excessSteepClimb) / (5280 * totalDistance));
return (hillIndex >= 35) ? 35 : (byte) hillIndex;
}
}