com.graphhopper.routing.ev.AverageSlope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphhopper-core Show documentation
Show all versions of graphhopper-core Show documentation
GraphHopper is a fast and memory efficient Java road routing engine
working seamlessly with OpenStreetMap data.
package com.graphhopper.routing.ev;
/**
* Average elevation. Will be negated in reverse direction.
*/
public class AverageSlope {
public static final String KEY = "average_slope";
public static DecimalEncodedValue create() {
return new DecimalEncodedValueImpl(KEY, 5, 0, 1,
true, false, false);
}
}