org.opentripplanner.graph_builder.module.osm.WayProperties Maven / Gradle / Ivy
package org.opentripplanner.graph_builder.module.osm;
import org.opentripplanner.common.model.P2;
import org.opentripplanner.routing.edgetype.StreetTraversalPermission;
/**
* Parameters applied to OSM ways, usually based on their tags:
* - Which modes can traverse it
* - Dangerousness on a bicycle in both directions (OSM ways can be bidirectional).
*
* @author novalis
*/
public class WayProperties implements Cloneable {
private StreetTraversalPermission permission;
/**
* A multiplicative parameter expressing how much less safe this way is than the default,
* in terms of something like DALYs lost per meter. The first element safety in the direction
* of the way and the second is safety in the opposite direction.
* TODO change all these identifiers so it's clear that this only applies to bicycles.
* TODO change the identifiers to make it clear that this reflects danger, not safety.
* TODO I believe the weights are rescaled later in graph building to be >= 1, but verify.
*/
private static final P2 defaultSafetyFeatures = new P2(1.0, 1.0);
private P2 safetyFeatures = defaultSafetyFeatures;
public void setSafetyFeatures(P2 safetyFeatures) {
this.safetyFeatures = safetyFeatures;
}
public P2 getSafetyFeatures() {
return safetyFeatures;
}
public void setPermission(StreetTraversalPermission permission) {
this.permission = permission;
}
public StreetTraversalPermission getPermission() {
return permission;
}
public WayProperties clone() {
WayProperties result;
try {
result = (WayProperties) super.clone();
result.setSafetyFeatures(new P2(safetyFeatures.first, safetyFeatures.second));
return result;
} catch (CloneNotSupportedException e) {
// unreached
throw new RuntimeException(e);
}
}
public boolean equals(Object o) {
if (o instanceof WayProperties) {
WayProperties other = (WayProperties) o;
return safetyFeatures.equals(other.safetyFeatures) && permission == other.permission;
}
return false;
}
public int hashCode() {
return safetyFeatures.hashCode() + permission.hashCode();
}
}