osrm-backend/include/extractor/guidance
Daniel J. Hofmann d53c267129
Be more aggresive classifying Roundabout Intersections.
Roundabout Intersections are roundabouts with up to four ways and turn
angles which makes the turns obvious, e.g. as in:

```
    *
    *
* *   * *
    *
    *
```

but not

```
     *
    *
* *   *
    * *
     * *
```

For Roundabout Intersections we issue instructions such as
"turn <direction>" instead of "take the <nth> exit".

At the moment we have a limit on the radius for these Roundabout
Intersections of 5 meters. Which fails to classify a wide range of
Roundabout Intersections in the US (with the US-wide streets).

This changeset removes the Roundabout Intersection radius limit:

- if the roundabout is larger than a threshold and is named we classify
  it as a rotary

- if the roundabout matches our criteria for Roundabout Intersections
  we classify it as a Roundabout Intersection

- else fallback to plain old Roundabout

There is a second issue with determining a roundabout's radius.
But that's for another pull request (tracking in #2716).

References:
- https://github.com/Project-OSRM/osrm-backend/issues/2716
2016-08-18 10:50:32 +02:00
..
constants.hpp Be more aggresive classifying Roundabout Intersections. 2016-08-18 10:50:32 +02:00
discrete_angle.hpp Use stdint and using type-alias for discrete angle 2016-04-05 22:58:32 +02:00
intersection_generator.hpp Warn on unused return values in guidance code, resolves #2686. 2016-08-03 12:26:07 +02:00
intersection_handler.hpp improve sliproad / fork handling 2016-07-22 15:16:59 +02:00
intersection_scenario_three_way.hpp improve sliproad / fork handling 2016-07-22 15:16:59 +02:00
intersection.hpp Implement Turn Lane Api 2016-06-27 10:07:48 +02:00
motorway_handler.hpp Warn on unused return values in guidance code, resolves #2686. 2016-08-03 12:26:07 +02:00
road_classification.hpp Apply clang-format again 2016-07-26 15:00:58 +02:00
roundabout_handler.hpp Updated format and ChangeLog 2016-07-28 22:59:22 +02:00
roundabout_type.hpp Format with clang-format 3.8 2016-05-27 21:05:04 +02:00
sliproad_handler.hpp Apply clang-format again 2016-07-26 15:00:58 +02:00
toolkit.hpp Warn on unused return values in guidance code, resolves #2686. 2016-08-03 12:26:07 +02:00
turn_analysis.hpp Initial left hand driving implementation 2016-07-28 22:59:22 +02:00
turn_classification.hpp Format with clang-format 3.8 2016-05-27 21:05:04 +02:00
turn_discovery.hpp basic turn lane handling 2016-06-27 10:07:41 +02:00
turn_handler.hpp Warn on unused return values in guidance code, resolves #2686. 2016-08-03 12:26:07 +02:00
turn_instruction.hpp Static checks for guidance array sizes. 2016-08-12 18:52:54 +03:00
turn_lane_augmentation.hpp Warn on unused return values in guidance code, resolves #2686. 2016-08-03 12:26:07 +02:00
turn_lane_data.hpp Warn on unused return values in guidance code, resolves #2686. 2016-08-03 12:26:07 +02:00
turn_lane_handler.hpp Merge pull request #2733 from gavinsherry/master 2016-08-04 11:24:33 +02:00
turn_lane_matcher.hpp Warn on unused return values in guidance code, resolves #2686. 2016-08-03 12:26:07 +02:00
turn_lane_types.hpp Apply clang-format again 2016-07-26 15:00:58 +02:00