2016-05-13 13:18:00 -04:00
|
|
|
#include "extractor/guidance/constants.hpp"
|
|
|
|
#include "extractor/guidance/turn_discovery.hpp"
|
|
|
|
#include "extractor/guidance/turn_lane_augmentation.hpp"
|
2016-08-08 09:44:58 -04:00
|
|
|
#include "extractor/guidance/turn_lane_handler.hpp"
|
2016-06-15 08:38:24 -04:00
|
|
|
#include "extractor/guidance/turn_lane_matcher.hpp"
|
2016-05-13 13:18:00 -04:00
|
|
|
#include "util/simple_logger.hpp"
|
|
|
|
#include "util/typedefs.hpp"
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
|
|
#include <boost/numeric/conversion/cast.hpp>
|
|
|
|
|
|
|
|
namespace osrm
|
|
|
|
{
|
|
|
|
namespace extractor
|
|
|
|
{
|
|
|
|
namespace guidance
|
|
|
|
{
|
|
|
|
namespace lanes
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
std::size_t getNumberOfTurns(const Intersection &intersection)
|
|
|
|
{
|
|
|
|
return std::count_if(intersection.begin(), intersection.end(), [](const ConnectedRoad &road) {
|
|
|
|
return road.entry_allowed;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
TurnLaneHandler::TurnLaneHandler(const util::NodeBasedDynamicGraph &node_based_graph,
|
2016-06-21 04:41:08 -04:00
|
|
|
const std::vector<std::uint32_t> &turn_lane_offsets,
|
|
|
|
const std::vector<TurnLaneType::Mask> &turn_lane_masks,
|
2016-05-13 13:18:00 -04:00
|
|
|
const TurnAnalysis &turn_analysis)
|
2016-06-21 04:41:08 -04:00
|
|
|
: node_based_graph(node_based_graph), turn_lane_offsets(turn_lane_offsets),
|
2016-08-02 17:17:57 -04:00
|
|
|
turn_lane_masks(turn_lane_masks), turn_analysis(turn_analysis)
|
2016-05-13 13:18:00 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-06-15 08:38:24 -04:00
|
|
|
Turn lanes are given in the form of strings that closely correspond to the direction modifiers
|
2016-05-13 13:18:00 -04:00
|
|
|
we use for our turn types. However, we still cannot simply perform a 1:1 assignment.
|
|
|
|
|
2016-06-21 04:41:08 -04:00
|
|
|
This function parses the turn_lane_descriptions of a format that describes an intersection as:
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
----------
|
|
|
|
A -^
|
|
|
|
----------
|
|
|
|
B -> -v
|
|
|
|
----------
|
|
|
|
C -v
|
|
|
|
----------
|
|
|
|
|
2016-06-21 04:41:08 -04:00
|
|
|
witch is the result of a string like looking |left|through;right|right| and performs an
|
|
|
|
assignment onto the turns.
|
|
|
|
For example: (130, turn slight right), (180, ramp straight), (320, turn sharp left).
|
2016-05-13 13:18:00 -04:00
|
|
|
*/
|
|
|
|
Intersection TurnLaneHandler::assignTurnLanes(const NodeID at,
|
|
|
|
const EdgeID via_edge,
|
2016-06-15 08:38:24 -04:00
|
|
|
Intersection intersection,
|
|
|
|
LaneDataIdMap &id_map) const
|
2016-05-13 13:18:00 -04:00
|
|
|
{
|
2016-07-26 09:00:58 -04:00
|
|
|
// if only a uturn exists, there is nothing we can do
|
|
|
|
if (intersection.size() == 1)
|
2016-07-07 06:45:24 -04:00
|
|
|
return intersection;
|
2016-06-21 04:41:08 -04:00
|
|
|
|
2016-05-13 13:18:00 -04:00
|
|
|
const auto &data = node_based_graph.GetEdgeData(via_edge);
|
2016-06-21 04:41:08 -04:00
|
|
|
// Extract a lane description for the ID
|
|
|
|
|
|
|
|
const auto turn_lane_description =
|
|
|
|
data.lane_description_id != INVALID_LANE_DESCRIPTIONID
|
|
|
|
? TurnLaneDescription(
|
|
|
|
turn_lane_masks.begin() + turn_lane_offsets[data.lane_description_id],
|
|
|
|
turn_lane_masks.begin() + turn_lane_offsets[data.lane_description_id + 1])
|
|
|
|
: TurnLaneDescription();
|
|
|
|
|
2016-07-26 09:00:58 -04:00
|
|
|
BOOST_ASSERT(turn_lane_description.empty() ||
|
|
|
|
turn_lane_description.size() == (turn_lane_offsets[data.lane_description_id + 1] -
|
|
|
|
turn_lane_offsets[data.lane_description_id]));
|
2016-06-21 04:41:08 -04:00
|
|
|
|
2016-05-13 13:18:00 -04:00
|
|
|
// going straight, due to traffic signals, we can have uncompressed geometry
|
|
|
|
if (intersection.size() == 2 &&
|
2016-06-21 04:41:08 -04:00
|
|
|
((data.lane_description_id != INVALID_LANE_DESCRIPTIONID &&
|
|
|
|
data.lane_description_id ==
|
|
|
|
node_based_graph.GetEdgeData(intersection[1].turn.eid).lane_description_id) ||
|
2016-05-13 13:18:00 -04:00
|
|
|
angularDeviation(intersection[1].turn.angle, STRAIGHT_ANGLE) < FUZZY_ANGLE_DIFFERENCE))
|
2016-07-07 06:45:24 -04:00
|
|
|
return intersection;
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2016-06-21 04:41:08 -04:00
|
|
|
auto lane_data = laneDataFromDescription(turn_lane_description);
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
// if we see an invalid conversion, we stop immediately
|
2016-06-21 04:41:08 -04:00
|
|
|
if (!turn_lane_description.empty() && lane_data.empty())
|
2016-07-07 06:45:24 -04:00
|
|
|
return intersection;
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
// might be reasonable to handle multiple turns, if we know of a sequence of lanes
|
|
|
|
// e.g. one direction per lane, if three lanes and right, through, left available
|
2016-06-21 04:41:08 -04:00
|
|
|
if (!turn_lane_description.empty() && lane_data.size() == 1 &&
|
|
|
|
lane_data[0].tag == TurnLaneType::none)
|
2016-07-07 06:45:24 -04:00
|
|
|
return intersection;
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
const std::size_t possible_entries = getNumberOfTurns(intersection);
|
|
|
|
|
|
|
|
// merge does not justify an instruction
|
2016-06-15 08:38:24 -04:00
|
|
|
const bool has_merge_lane =
|
2016-06-21 04:41:08 -04:00
|
|
|
hasTag(TurnLaneType::merge_to_left | TurnLaneType::merge_to_right, lane_data);
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
// Dead end streets that don't have any left-tag. This can happen due to the fallbacks for
|
|
|
|
// broken data/barriers.
|
2016-06-21 04:41:08 -04:00
|
|
|
const bool has_non_usable_u_turn = (intersection[0].entry_allowed &&
|
|
|
|
!hasTag(TurnLaneType::none | TurnLaneType::left |
|
|
|
|
TurnLaneType::sharp_left | TurnLaneType::uturn,
|
|
|
|
lane_data) &&
|
|
|
|
lane_data.size() + 1 == possible_entries);
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
if (has_merge_lane || has_non_usable_u_turn)
|
2016-07-07 06:45:24 -04:00
|
|
|
return intersection;
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2016-08-11 03:44:30 -04:00
|
|
|
// check if a u-turn is allowed (for some reason) and is missing from the list of tags (u-turn
|
|
|
|
// is often allowed from the `left` lane without an additional indication dedicated to u-turns).
|
|
|
|
const bool is_missing_valid_u_turn =
|
2016-05-13 13:18:00 -04:00
|
|
|
lane_data.size() !=
|
2016-08-08 09:44:58 -04:00
|
|
|
static_cast<std::size_t>((
|
|
|
|
!hasTag(TurnLaneType::uturn, lane_data) && intersection[0].entry_allowed ? 1 : 0)) +
|
2016-05-13 13:18:00 -04:00
|
|
|
possible_entries &&
|
2016-08-11 03:44:30 -04:00
|
|
|
intersection[0].entry_allowed;
|
|
|
|
|
|
|
|
// FIXME the lane to add depends on the side of driving/u-turn rules in the country
|
|
|
|
if (!lane_data.empty() && canMatchTrivially(intersection, lane_data) &&
|
|
|
|
!is_missing_valid_u_turn && !hasTag(TurnLaneType::none, lane_data))
|
2016-06-21 04:41:08 -04:00
|
|
|
lane_data.push_back({TurnLaneType::uturn, lane_data.back().to, lane_data.back().to});
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
bool is_simple = isSimpleIntersection(lane_data, intersection);
|
|
|
|
// simple intersections can be assigned directly
|
|
|
|
if (is_simple)
|
|
|
|
{
|
|
|
|
lane_data = handleNoneValueAtSimpleTurn(std::move(lane_data), intersection);
|
2016-06-15 08:38:24 -04:00
|
|
|
return simpleMatchTuplesToTurns(
|
2016-06-21 04:41:08 -04:00
|
|
|
std::move(intersection), lane_data, data.lane_description_id, id_map);
|
2016-05-13 13:18:00 -04:00
|
|
|
}
|
|
|
|
// if the intersection is not simple but we have lane data, we check for intersections with
|
|
|
|
// middle islands. We have two cases. The first one is providing lane data on the current
|
|
|
|
// segment and we only need to consider the part of the current segment. In this case we
|
|
|
|
// partition the data and only consider the first part.
|
|
|
|
else if (!lane_data.empty())
|
|
|
|
{
|
|
|
|
if (lane_data.size() >= possible_entries)
|
|
|
|
{
|
|
|
|
lane_data = partitionLaneData(node_based_graph.GetTarget(via_edge),
|
|
|
|
std::move(lane_data),
|
|
|
|
intersection)
|
|
|
|
.first;
|
|
|
|
|
|
|
|
// check if we were successfull in trimming
|
|
|
|
if (lane_data.size() == possible_entries &&
|
|
|
|
isSimpleIntersection(lane_data, intersection))
|
|
|
|
{
|
|
|
|
lane_data = handleNoneValueAtSimpleTurn(std::move(lane_data), intersection);
|
2016-06-15 08:38:24 -04:00
|
|
|
return simpleMatchTuplesToTurns(
|
2016-06-21 04:41:08 -04:00
|
|
|
std::move(intersection), lane_data, data.lane_description_id, id_map);
|
2016-05-13 13:18:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// The second part does not provide lane data on the current segment, but on the segment prior
|
|
|
|
// to the turn. We try to partition the data and only consider the second part.
|
2016-06-21 04:41:08 -04:00
|
|
|
else if (turn_lane_description.empty())
|
2016-05-13 13:18:00 -04:00
|
|
|
{
|
|
|
|
// acquire the lane data of a previous segment and, if possible, use it for the current
|
|
|
|
// intersection.
|
2016-06-15 08:38:24 -04:00
|
|
|
return handleTurnAtPreviousIntersection(at, via_edge, std::move(intersection), id_map);
|
2016-05-13 13:18:00 -04:00
|
|
|
}
|
|
|
|
|
2016-07-07 06:45:24 -04:00
|
|
|
return intersection;
|
2016-05-13 13:18:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// At segregated intersections, turn lanes will often only be specified up until the first turn. To
|
|
|
|
// actually take the turn, we need to look back to the edge we drove onto the intersection with.
|
|
|
|
Intersection TurnLaneHandler::handleTurnAtPreviousIntersection(const NodeID at,
|
|
|
|
const EdgeID via_edge,
|
2016-06-15 08:38:24 -04:00
|
|
|
Intersection intersection,
|
|
|
|
LaneDataIdMap &id_map) const
|
2016-05-13 13:18:00 -04:00
|
|
|
{
|
|
|
|
NodeID previous_node = SPECIAL_NODEID;
|
|
|
|
Intersection previous_intersection;
|
|
|
|
EdgeID previous_id = SPECIAL_EDGEID;
|
2016-06-21 04:41:08 -04:00
|
|
|
LaneDataVector lane_data;
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
// Get the previous lane string. We only accept strings that stem from a not-simple intersection
|
|
|
|
// and are not empty.
|
2016-06-21 04:41:08 -04:00
|
|
|
const auto previous_lane_description = [&]() -> TurnLaneDescription {
|
2016-05-13 13:18:00 -04:00
|
|
|
if (!findPreviousIntersection(at,
|
|
|
|
via_edge,
|
|
|
|
intersection,
|
|
|
|
turn_analysis,
|
|
|
|
node_based_graph,
|
|
|
|
previous_node,
|
|
|
|
previous_id,
|
|
|
|
previous_intersection))
|
2016-06-21 04:41:08 -04:00
|
|
|
return {};
|
|
|
|
|
2016-06-15 08:38:24 -04:00
|
|
|
BOOST_ASSERT(previous_id != SPECIAL_EDGEID);
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2016-06-21 04:41:08 -04:00
|
|
|
const auto &previous_edge_data = node_based_graph.GetEdgeData(previous_id);
|
|
|
|
// TODO access correct data
|
|
|
|
const auto previous_description =
|
|
|
|
previous_edge_data.lane_description_id != INVALID_LANE_DESCRIPTIONID
|
|
|
|
? TurnLaneDescription(
|
|
|
|
turn_lane_masks.begin() +
|
|
|
|
turn_lane_offsets[previous_edge_data.lane_description_id],
|
|
|
|
turn_lane_masks.begin() +
|
|
|
|
turn_lane_offsets[previous_edge_data.lane_description_id + 1])
|
|
|
|
: TurnLaneDescription();
|
|
|
|
if (previous_description.empty())
|
|
|
|
return previous_description;
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
previous_intersection = turn_analysis.assignTurnTypes(
|
|
|
|
previous_node, previous_id, std::move(previous_intersection));
|
|
|
|
|
2016-06-21 04:41:08 -04:00
|
|
|
lane_data = laneDataFromDescription(previous_description);
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2016-06-21 04:41:08 -04:00
|
|
|
if (isSimpleIntersection(lane_data, previous_intersection))
|
|
|
|
return {};
|
|
|
|
else
|
|
|
|
return previous_description;
|
2016-05-13 13:18:00 -04:00
|
|
|
}();
|
|
|
|
|
|
|
|
// no lane string, no problems
|
2016-06-21 04:41:08 -04:00
|
|
|
if (previous_lane_description.empty())
|
2016-07-07 06:45:24 -04:00
|
|
|
return intersection;
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
// stop on invalid lane data conversion
|
|
|
|
if (lane_data.empty())
|
2016-07-07 06:45:24 -04:00
|
|
|
return intersection;
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2016-06-15 08:38:24 -04:00
|
|
|
const auto &previous_data = node_based_graph.GetEdgeData(previous_id);
|
2016-05-13 13:18:00 -04:00
|
|
|
const auto is_simple = isSimpleIntersection(lane_data, intersection);
|
|
|
|
if (is_simple)
|
|
|
|
{
|
|
|
|
lane_data = handleNoneValueAtSimpleTurn(std::move(lane_data), intersection);
|
2016-06-15 08:38:24 -04:00
|
|
|
return simpleMatchTuplesToTurns(
|
2016-06-21 04:41:08 -04:00
|
|
|
std::move(intersection), lane_data, previous_data.lane_description_id, id_map);
|
2016-05-13 13:18:00 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (lane_data.size() >= getNumberOfTurns(previous_intersection) &&
|
|
|
|
previous_intersection.size() != 2)
|
|
|
|
{
|
|
|
|
lane_data = partitionLaneData(node_based_graph.GetTarget(previous_id),
|
|
|
|
std::move(lane_data),
|
|
|
|
previous_intersection)
|
|
|
|
.second;
|
|
|
|
|
|
|
|
std::sort(lane_data.begin(), lane_data.end());
|
|
|
|
|
|
|
|
// check if we were successfull in trimming
|
|
|
|
if (lane_data.size() == getNumberOfTurns(intersection) &&
|
|
|
|
isSimpleIntersection(lane_data, intersection))
|
|
|
|
{
|
|
|
|
lane_data = handleNoneValueAtSimpleTurn(std::move(lane_data), intersection);
|
2016-06-15 08:38:24 -04:00
|
|
|
return simpleMatchTuplesToTurns(
|
2016-06-21 04:41:08 -04:00
|
|
|
std::move(intersection), lane_data, previous_data.lane_description_id, id_map);
|
2016-05-13 13:18:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-07 06:45:24 -04:00
|
|
|
return intersection;
|
2016-05-13 13:18:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* A simple intersection does not depend on the next intersection coming up. This is important
|
|
|
|
* for turn lanes, since traffic signals and/or segregated a intersection can influence the
|
|
|
|
* interpretation of turn-lanes at a given turn.
|
|
|
|
*
|
|
|
|
* Here we check for a simple intersection. A simple intersection has a long enough segment
|
|
|
|
* followin the turn, offers no straight turn, or only non-trivial turn operations.
|
|
|
|
*/
|
|
|
|
bool TurnLaneHandler::isSimpleIntersection(const LaneDataVector &lane_data,
|
|
|
|
const Intersection &intersection) const
|
|
|
|
{
|
|
|
|
if (lane_data.empty())
|
|
|
|
return false;
|
|
|
|
// if we are on a straight road, turn lanes are only reasonable in connection to the next
|
|
|
|
// intersection, or in case of a merge. If not all but one (straight) are merges, we don't
|
|
|
|
// consider the intersection simple
|
|
|
|
if (intersection.size() == 2)
|
|
|
|
{
|
|
|
|
return std::count_if(
|
|
|
|
lane_data.begin(),
|
|
|
|
lane_data.end(),
|
2016-06-21 04:41:08 -04:00
|
|
|
[](const TurnLaneData &data) {
|
|
|
|
return ((data.tag & TurnLaneType::merge_to_left) != TurnLaneType::empty) ||
|
|
|
|
((data.tag & TurnLaneType::merge_to_right) != TurnLaneType::empty);
|
|
|
|
}) +
|
2016-05-13 13:18:00 -04:00
|
|
|
std::size_t{1} >=
|
|
|
|
lane_data.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
// in case an intersection offers far more lane data items than actual turns, some of them
|
|
|
|
// have
|
|
|
|
// to be for another intersection. A single additional item can be for an invalid bus lane.
|
|
|
|
const auto num_turns = [&]() {
|
|
|
|
auto count = getNumberOfTurns(intersection);
|
|
|
|
if (count < lane_data.size() && !intersection[0].entry_allowed &&
|
2016-06-21 04:41:08 -04:00
|
|
|
lane_data.back().tag == TurnLaneType::uturn)
|
2016-05-13 13:18:00 -04:00
|
|
|
return count + 1;
|
|
|
|
return count;
|
|
|
|
}();
|
|
|
|
|
|
|
|
// more than two additional lane data entries -> lanes target a different intersection
|
|
|
|
if (num_turns + std::size_t{2} <= lane_data.size())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// single additional lane data entry is alright, if it is none at the side. This usually
|
|
|
|
// refers to a bus-lane
|
2016-06-21 04:41:08 -04:00
|
|
|
if (num_turns + std::size_t{1} == lane_data.size() &&
|
|
|
|
lane_data.front().tag != TurnLaneType::none && lane_data.back().tag != TurnLaneType::none)
|
2016-05-13 13:18:00 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// more turns than lane data
|
|
|
|
if (num_turns > lane_data.size() &&
|
|
|
|
lane_data.end() ==
|
|
|
|
std::find_if(lane_data.begin(), lane_data.end(), [](const TurnLaneData &data) {
|
2016-06-21 04:41:08 -04:00
|
|
|
return data.tag == TurnLaneType::none;
|
2016-05-13 13:18:00 -04:00
|
|
|
}))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num_turns > lane_data.size() && intersection[0].entry_allowed &&
|
2016-06-21 04:41:08 -04:00
|
|
|
!(hasTag(TurnLaneType::uturn, lane_data) ||
|
|
|
|
(lane_data.back().tag != TurnLaneType::left &&
|
|
|
|
lane_data.back().tag != TurnLaneType::sharp_left)))
|
2016-05-13 13:18:00 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if we can find a valid 1:1 mapping in a straightforward manner
|
|
|
|
bool all_simple = true;
|
|
|
|
bool has_none = false;
|
|
|
|
std::unordered_set<std::size_t> matched_indices;
|
2016-08-11 03:44:30 -04:00
|
|
|
for (std::size_t data_index = 0; data_index < lane_data.size(); ++data_index)
|
2016-05-13 13:18:00 -04:00
|
|
|
{
|
2016-08-11 03:44:30 -04:00
|
|
|
const auto &data = lane_data[data_index];
|
2016-06-21 04:41:08 -04:00
|
|
|
if (data.tag == TurnLaneType::none)
|
2016-05-13 13:18:00 -04:00
|
|
|
{
|
|
|
|
has_none = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-08-11 03:44:30 -04:00
|
|
|
// u-turn tags are at the outside of the lane-tags and require special handling, since
|
|
|
|
// locating their best match requires knowledge on the neighboring tag. (see documentation
|
|
|
|
// on findBestMatch/findBestMatchForReverse
|
2016-05-13 13:18:00 -04:00
|
|
|
const auto best_match = [&]() {
|
2016-08-11 03:44:30 -04:00
|
|
|
// normal tag or u-turn as only choice (no other tag present)
|
2016-06-21 04:41:08 -04:00
|
|
|
if (data.tag != TurnLaneType::uturn || lane_data.size() == 1)
|
2016-05-13 13:18:00 -04:00
|
|
|
return findBestMatch(data.tag, intersection);
|
|
|
|
|
2016-08-11 03:44:30 -04:00
|
|
|
BOOST_ASSERT(data.tag == TurnLaneType::uturn);
|
|
|
|
// u-turn at the very left, leftmost turn at data_index - 1
|
|
|
|
if (data_index + 1 == lane_data.size())
|
|
|
|
return findBestMatchForReverse(lane_data[data_index - 1].tag, intersection);
|
|
|
|
|
|
|
|
// u-turn to the right (left-handed driving) -> rightmost turn to the left (data_index +
|
|
|
|
// 1)
|
|
|
|
if (data_index == 0)
|
|
|
|
return findBestMatchForReverse(lane_data[data_index + 1].tag, intersection);
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2016-08-11 03:44:30 -04:00
|
|
|
return intersection.begin();
|
2016-05-13 13:18:00 -04:00
|
|
|
}();
|
|
|
|
std::size_t match_index = std::distance(intersection.begin(), best_match);
|
|
|
|
all_simple &= (matched_indices.count(match_index) == 0);
|
|
|
|
matched_indices.insert(match_index);
|
|
|
|
// in case of u-turns, we might need to activate them first
|
|
|
|
all_simple &= (best_match->entry_allowed || match_index == 0);
|
|
|
|
all_simple &= isValidMatch(data.tag, best_match->turn.instruction);
|
|
|
|
}
|
|
|
|
|
|
|
|
// either all indices are matched, or we have a single none-value
|
|
|
|
if (all_simple && (matched_indices.size() == lane_data.size() ||
|
|
|
|
(matched_indices.size() + 1 == lane_data.size() && has_none)))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// better save than sorry
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<LaneDataVector, LaneDataVector> TurnLaneHandler::partitionLaneData(
|
|
|
|
const NodeID at, LaneDataVector turn_lane_data, const Intersection &intersection) const
|
|
|
|
{
|
|
|
|
BOOST_ASSERT(turn_lane_data.size() >= getNumberOfTurns(intersection));
|
|
|
|
/*
|
|
|
|
* A Segregated intersection can provide turn lanes for turns that are not yet possible.
|
|
|
|
* The straightforward example would be coming up to the following situation:
|
|
|
|
* (1) (2)
|
|
|
|
* | A | | A |
|
|
|
|
* | | | | ^ |
|
|
|
|
* | v | | | |
|
|
|
|
* ------- ----------- ------
|
|
|
|
* B ->-^ B
|
|
|
|
* ------- ----------- ------
|
|
|
|
* B ->-v B
|
|
|
|
* ------- ----------- ------
|
|
|
|
* | A | | A |
|
|
|
|
*
|
|
|
|
* Traveling on road B, we have to pass A at (1) to turn left onto A at (2). The turn
|
|
|
|
* lane itself may only be specified prior to (1) and/or could be repeated between (1)
|
|
|
|
* and (2). To make sure to announce the lane correctly, we need to treat the (in this
|
|
|
|
* case left) turn lane as if it were to continue straight onto the intersection and
|
|
|
|
* look back between (1) and (2) to make sure we find the correct lane for the left-turn.
|
|
|
|
*
|
|
|
|
* Intersections like these have two parts. Turns that can be made at the first intersection and
|
|
|
|
* turns that have to be made at the second. The partitioning returns the lane data split into
|
|
|
|
* two parts, one for the first and one for the second intersection.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Try and maitch lanes to available turns. For Turns that are not directly matchable, check
|
|
|
|
// whether we can match them at the upcoming intersection.
|
|
|
|
|
|
|
|
const auto straightmost = findClosestTurn(intersection, STRAIGHT_ANGLE);
|
|
|
|
|
|
|
|
BOOST_ASSERT(straightmost < intersection.cend());
|
|
|
|
|
|
|
|
// we need to be able to enter the straightmost turn
|
|
|
|
if (!straightmost->entry_allowed)
|
|
|
|
return {turn_lane_data, {}};
|
|
|
|
|
|
|
|
std::vector<bool> matched_at_first(turn_lane_data.size(), false);
|
|
|
|
std::vector<bool> matched_at_second(turn_lane_data.size(), false);
|
|
|
|
|
|
|
|
// find out about the next intersection. To check for valid matches, we also need the turn types
|
|
|
|
auto next_intersection = turn_analysis.getIntersection(at, straightmost->turn.eid);
|
|
|
|
next_intersection =
|
|
|
|
turn_analysis.assignTurnTypes(at, straightmost->turn.eid, std::move(next_intersection));
|
|
|
|
|
|
|
|
// check where we can match turn lanes
|
|
|
|
std::size_t straightmost_tag_index = turn_lane_data.size();
|
|
|
|
for (std::size_t lane = 0; lane < turn_lane_data.size(); ++lane)
|
|
|
|
{
|
2016-06-21 04:41:08 -04:00
|
|
|
if ((turn_lane_data[lane].tag & (TurnLaneType::none | TurnLaneType::uturn)) !=
|
|
|
|
TurnLaneType::empty)
|
2016-05-13 13:18:00 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
const auto best_match = findBestMatch(turn_lane_data[lane].tag, intersection);
|
|
|
|
if (isValidMatch(turn_lane_data[lane].tag, best_match->turn.instruction))
|
|
|
|
{
|
|
|
|
matched_at_first[lane] = true;
|
|
|
|
|
|
|
|
if (straightmost == best_match)
|
|
|
|
straightmost_tag_index = lane;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto best_match_at_next_intersection =
|
|
|
|
findBestMatch(turn_lane_data[lane].tag, next_intersection);
|
|
|
|
if (isValidMatch(turn_lane_data[lane].tag,
|
|
|
|
best_match_at_next_intersection->turn.instruction))
|
|
|
|
matched_at_second[lane] = true;
|
|
|
|
|
|
|
|
// we need to match all items to either the current or the next intersection
|
|
|
|
if (!(matched_at_first[lane] || matched_at_second[lane]))
|
|
|
|
return {turn_lane_data, {}};
|
|
|
|
}
|
|
|
|
|
2016-06-21 04:41:08 -04:00
|
|
|
std::size_t none_index =
|
|
|
|
std::distance(turn_lane_data.begin(), findTag(TurnLaneType::none, turn_lane_data));
|
2016-05-13 13:18:00 -04:00
|
|
|
|
|
|
|
// if the turn lanes are pull forward, we might have to add an additional straight tag
|
|
|
|
// did we find something that matches against the straightmost road?
|
|
|
|
if (straightmost_tag_index == turn_lane_data.size())
|
|
|
|
{
|
|
|
|
if (none_index != turn_lane_data.size())
|
|
|
|
straightmost_tag_index = none_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO handle reverse
|
|
|
|
|
|
|
|
// handle none values
|
|
|
|
if (none_index != turn_lane_data.size())
|
|
|
|
{
|
|
|
|
if (static_cast<std::size_t>(
|
|
|
|
std::count(matched_at_first.begin(), matched_at_first.end(), true)) <=
|
|
|
|
getNumberOfTurns(intersection))
|
|
|
|
matched_at_first[none_index] = true;
|
|
|
|
|
|
|
|
if (static_cast<std::size_t>(
|
|
|
|
std::count(matched_at_second.begin(), matched_at_second.end(), true)) <=
|
|
|
|
getNumberOfTurns(next_intersection))
|
|
|
|
matched_at_second[none_index] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto augmentEntry = [&](TurnLaneData &data) {
|
|
|
|
for (std::size_t lane = 0; lane < turn_lane_data.size(); ++lane)
|
|
|
|
if (matched_at_second[lane])
|
|
|
|
{
|
|
|
|
data.from = std::min(turn_lane_data[lane].from, data.from);
|
|
|
|
data.to = std::max(turn_lane_data[lane].to, data.to);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
LaneDataVector first, second;
|
|
|
|
for (std::size_t lane = 0; lane < turn_lane_data.size(); ++lane)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (matched_at_second[lane])
|
|
|
|
second.push_back(turn_lane_data[lane]);
|
|
|
|
|
|
|
|
// augment straightmost at this intersection to match all turns that happen at the next
|
|
|
|
if (lane == straightmost_tag_index)
|
|
|
|
{
|
|
|
|
augmentEntry(turn_lane_data[straightmost_tag_index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (matched_at_first[lane])
|
|
|
|
first.push_back(turn_lane_data[lane]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (straightmost_tag_index == turn_lane_data.size() &&
|
|
|
|
static_cast<std::size_t>(
|
|
|
|
std::count(matched_at_second.begin(), matched_at_second.end(), true)) ==
|
|
|
|
getNumberOfTurns(next_intersection))
|
|
|
|
{
|
2016-06-21 04:41:08 -04:00
|
|
|
TurnLaneData data = {TurnLaneType::straight, 255, 0};
|
2016-05-13 13:18:00 -04:00
|
|
|
augmentEntry(data);
|
|
|
|
first.push_back(data);
|
|
|
|
std::sort(first.begin(), first.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO augment straightmost turn
|
|
|
|
return {std::move(first), std::move(second)};
|
|
|
|
}
|
|
|
|
|
|
|
|
Intersection TurnLaneHandler::simpleMatchTuplesToTurns(Intersection intersection,
|
2016-06-15 08:38:24 -04:00
|
|
|
const LaneDataVector &lane_data,
|
2016-06-21 04:41:08 -04:00
|
|
|
const LaneDescriptionID lane_description_id,
|
2016-06-15 08:38:24 -04:00
|
|
|
LaneDataIdMap &id_map) const
|
2016-05-13 13:18:00 -04:00
|
|
|
{
|
|
|
|
if (lane_data.empty() || !canMatchTrivially(intersection, lane_data))
|
2016-07-07 06:45:24 -04:00
|
|
|
return intersection;
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2016-06-21 04:41:08 -04:00
|
|
|
BOOST_ASSERT(
|
|
|
|
!hasTag(TurnLaneType::none | TurnLaneType::merge_to_left | TurnLaneType::merge_to_right,
|
|
|
|
lane_data));
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2016-06-15 08:38:24 -04:00
|
|
|
return triviallyMatchLanesToTurns(
|
2016-06-21 04:41:08 -04:00
|
|
|
std::move(intersection), lane_data, node_based_graph, lane_description_id, id_map);
|
2016-05-13 13:18:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace lanes
|
|
|
|
} // namespace guidance
|
|
|
|
} // namespace extractor
|
|
|
|
} // namespace osrm
|