All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.graphhopper.routing.ev.MaxSlope Maven / Gradle / Ivy

Go to download

GraphHopper is a fast and memory efficient Java road routing engine working seamlessly with OpenStreetMap data.

There is a newer version: 10.0
Show newest version
package com.graphhopper.routing.ev;

/**
 * Maximum elevation change in m/100m.
 */
public class MaxSlope {
    public static final String KEY = "max_slope";

    public static DecimalEncodedValue create() {
        return new DecimalEncodedValueImpl(KEY, 5, 0, 1, true, false, false);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy