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

com.graphhopper.routing.ev.Curvature 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;

public class Curvature {
    public static final String KEY = "curvature";

    public static DecimalEncodedValue create() {
        // for now save a bit: ignore all too low values and set them to the minimum value instead
        return new DecimalEncodedValueImpl(KEY, 4, 0.25, 0.05,
                false, false, false);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy