[generator] Set oneway together with junction=circular.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2023-07-06 13:37:58 -03:00
parent 6cac9cb023
commit e13e279f10

View file

@ -959,6 +959,11 @@ void PostprocessElement(OsmElement * p, FeatureBuilderParams & params)
params.SetReversedGeometry(true);
}},
{"oneway", "!", [&noOneway] { noOneway = true; }},
// Unlike "roundabout", "circular" is not assumed to force oneway=yes
// (https://wiki.openstreetmap.org/wiki/Tag:junction%3Dcircular), but!
// There are a lot of junction=circular without oneway tag, which is a mapping error (run overpass under England).
// And most of this junctions are assumed to be oneway.
{"junction", "circular", [&addOneway] { addOneway = true; }},
{"junction", "roundabout", [&addOneway] { addOneway = true; }},
{"access", "private", [&AddParam] { AddParam(CachedTypes::Private); }},