handle segregated roads (merge for turn analysis)

This commit is contained in:
Moritz Kobitzsch
2016-02-29 16:24:42 +01:00
committed by Patrick Niklaus
parent b06dddaf5e
commit b85270e540
5 changed files with 171 additions and 22 deletions
+1
View File
@@ -50,6 +50,7 @@ struct NodeBasedEdgeData
bool IsCompatibleTo(const NodeBasedEdgeData &other) const
{
//TODO roundabout/startpoint/access_restricted should all be part of this??
return (reversed == other.reversed) && (name_id == other.name_id) &&
(travel_mode == other.travel_mode && road_classification == other.road_classification);
}