mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
treat junction=roundabout roads as not needing sidewalk/parking confirmation
This commit is contained in:
parent
5890a73a71
commit
814349b650
@ -96,6 +96,7 @@ pub fn extract_osm(
|
||||
&& !tags.contains_key(osm::PARKING_BOTH)
|
||||
&& tags.get(osm::HIGHWAY) != Some(&"motorway".to_string())
|
||||
&& tags.get(osm::HIGHWAY) != Some(&"motorway_link".to_string())
|
||||
&& tags.get("junction") != Some(&"roundabout".to_string())
|
||||
{
|
||||
tags.insert(osm::PARKING_BOTH.to_string(), "no_parking".to_string());
|
||||
tags.insert(osm::INFERRED_PARKING.to_string(), "true".to_string());
|
||||
@ -106,6 +107,7 @@ pub fn extract_osm(
|
||||
if !tags.contains_key(osm::SIDEWALK)
|
||||
&& tags.get(osm::HIGHWAY) != Some(&"motorway".to_string())
|
||||
&& tags.get(osm::HIGHWAY) != Some(&"motorway_link".to_string())
|
||||
&& tags.get("junction") != Some(&"roundabout".to_string())
|
||||
{
|
||||
tags.insert(osm::SIDEWALK.to_string(), "both".to_string());
|
||||
tags.insert(osm::INFERRED_SIDEWALKS.to_string(), "true".to_string());
|
||||
|
Loading…
Reference in New Issue
Block a user