
com.graphhopper.routing.weighting.CurvatureWeighting Maven / Gradle / Ivy
/*
* Licensed to GraphHopper GmbH under one or more contributor
* license agreements. See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*
* GraphHopper GmbH licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.graphhopper.routing.weighting;
import com.graphhopper.routing.ev.DecimalEncodedValue;
import com.graphhopper.routing.util.EncodingManager;
import com.graphhopper.routing.util.FlagEncoder;
import com.graphhopper.util.EdgeIteratorState;
import com.graphhopper.util.PMap;
import static com.graphhopper.routing.weighting.TurnCostProvider.NO_TURN_COST_PROVIDER;
/**
* This Class uses bendiness parameter to prefer curvy routes.
*/
public class CurvatureWeighting extends PriorityWeighting {
private final double minFactor;
private final DecimalEncodedValue priorityEnc;
private final DecimalEncodedValue curvatureEnc;
private final DecimalEncodedValue avSpeedEnc;
public CurvatureWeighting(FlagEncoder flagEncoder, PMap pMap) {
this(flagEncoder, pMap, NO_TURN_COST_PROVIDER);
}
public CurvatureWeighting(FlagEncoder flagEncoder, PMap pMap, TurnCostProvider turnCostProvider) {
super(flagEncoder, pMap, turnCostProvider);
priorityEnc = flagEncoder.getDecimalEncodedValue(EncodingManager.getKey(flagEncoder, "priority"));
curvatureEnc = flagEncoder.getDecimalEncodedValue(EncodingManager.getKey(flagEncoder, "curvature"));
avSpeedEnc = flagEncoder.getDecimalEncodedValue(EncodingManager.getKey(flagEncoder, "average_speed"));
double minBendiness = 1; // see correctErrors
double maxPriority = 1; // BEST / BEST
minFactor = minBendiness / Math.log(flagEncoder.getMaxSpeed()) / (0.5 + maxPriority);
}
@Override
public double getMinWeight(double distance) {
return minFactor * distance;
}
@Override
public double calcEdgeWeight(EdgeIteratorState edgeState, boolean reverse) {
double priority = priorityEnc.getDecimal(false, edgeState.getFlags());
double bendiness = curvatureEnc.getDecimal(false, edgeState.getFlags());
double speed = getRoadSpeed(edgeState, reverse);
double roadDistance = edgeState.getDistance();
// We use the log of the speed to decrease the impact of the speed, therefore we don't use the highway
double regularWeight = roadDistance / Math.log(speed);
return (bendiness * regularWeight) / (0.5 + priority);
}
protected double getRoadSpeed(EdgeIteratorState edge, boolean reverse) {
return reverse ? edge.getReverse(avSpeedEnc) : edge.get(avSpeedEnc);
}
@Override
public String getName() {
return "curvature";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy