From ad244b572a76230e0e5fb0efcb8006d91b96481b Mon Sep 17 00:00:00 2001 From: Ben Ritter Date: Tue, 22 Nov 2022 10:40:50 +0800 Subject: [PATCH 1/8] Reshape IntersectionComplexity into IntersectionType, remove conflict_level --- docs/how_it_works.md | 4 +- osm2streets/src/intersection.rs | 14 +- osm2streets/src/lib.rs | 11 +- osm2streets/src/render.rs | 17 +- .../src/transform/classify_intersections.rs | 40 +- osm2streets/src/types.rs | 60 +- streets_reader/src/clip.rs | 4 +- streets_reader/src/split_ways.rs | 10 +- tests/src/arizona_highways/geometry.json | 160 +-- tests/src/aurora_sausage_link/geometry.json | 20 +- tests/src/borough_sausage_links/geometry.json | 124 +- .../bristol_contraflow_cycleway/geometry.json | 58 +- tests/src/bristol_sausage_links/geometry.json | 40 +- tests/src/cycleway_rejoin_road/geometry.json | 294 ++--- tests/src/i5_exit_ramp/geometry.json | 118 +- tests/src/kingsway_junction/geometry.json | 294 ++--- tests/src/leeds_cycleway/geometry.json | 1146 ++++++++--------- tests/src/montlake_roundabout/geometry.json | 12 +- .../northgate_dual_carriageway/geometry.json | 346 ++--- tests/src/oneway_loop/geometry.json | 62 +- .../src/perth_peanut_roundabout/geometry.json | 76 +- .../src/perth_stretched_lights/geometry.json | 16 +- tests/src/roosevelt_cycletrack/geometry.json | 200 +-- tests/src/seattle_slip_lane/geometry.json | 70 +- tests/src/seattle_triangle/geometry.json | 66 +- tests/src/service_road_loop/geometry.json | 52 +- tests/src/st_georges_cycletrack/geometry.json | 250 ++-- tests/src/taipei/geometry.json | 116 +- tests/src/tempe_light_rail/geometry.json | 34 +- tests/src/tempe_split/geometry.json | 62 +- tests/src/tiny_loop/geometry.json | 16 +- 31 files changed, 1874 insertions(+), 1918 deletions(-) diff --git a/docs/how_it_works.md b/docs/how_it_works.md index 08ce69b8..3847a99c 100644 --- a/docs/how_it_works.md +++ b/docs/how_it_works.md @@ -6,7 +6,7 @@ As of November 2022, and probably incomplete. This describes how the codebase cu At its heart, a graph of roads and intersections. (Roads lead between exactly two intersections -- "road segments" might be more precise.) Roads have their lanes listed from left-to-right, with a type, width, and direction. Note osm2streets doesn't model bidirectional lanes yet -- sidewalks and shared center turn lanes are either forwards or backwards right now, and something downstream interprets them in a special way. (osm2lanes has more nuance, but isn't used in osm2streets yet.) -Intersections have a `ControlType` -- stop signs, traffic signals, uncontrolled, etc. This is orthogonal to `IntersectionComplexity` and `ConflictType`... TODO, narrow down valid combinations and give examples. MultiConnection vs Merge, please! +Intersections have a `ControlType` -- stop signs, traffic signals, uncontrolled, etc. This is orthogonal to `IntersectionType` and `ConflictType`... TODO, narrow down valid combinations and give examples. MultiConnection vs Merge, please! ### IDs @@ -106,7 +106,7 @@ This calls the collapse operation on anything marked by `FindShortRoads`. Comple ### CollapseDegenerateIntersections -A "degenerate" intersection (`IntersectionComplexity::Connection`) has only two roads connected. Sometimes that intersection can be collapsed and the two roads joined. Currently this happens: +A "degenerate" intersection (`IntersectionType::Connection`) has only two roads connected. Sometimes that intersection can be collapsed and the two roads joined. Currently this happens: - between two cycleways - when the lanes match and only "unimportant" OSM tags differ diff --git a/osm2streets/src/intersection.rs b/osm2streets/src/intersection.rs index ebddae9c..65d7caec 100644 --- a/osm2streets/src/intersection.rs +++ b/osm2streets/src/intersection.rs @@ -3,10 +3,7 @@ use std::collections::BTreeMap; use geom::{Distance, Polygon, Pt2D}; use serde::{Deserialize, Serialize}; -use crate::{ - osm, ConflictType, ControlType, IntersectionComplexity, IntersectionID, Movement, RoadID, - StreetNetwork, -}; +use crate::{osm, ControlType, IntersectionID, IntersectionType, Movement, RoadID, StreetNetwork}; #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct Intersection { @@ -21,8 +18,7 @@ pub struct Intersection { pub point: Pt2D, /// This will be a placeholder until `Transformation::GenerateIntersectionGeometry` runs. pub polygon: Polygon, - pub complexity: IntersectionComplexity, - pub conflict_level: ConflictType, + pub t: IntersectionType, pub control: ControlType, pub elevation: Distance, @@ -49,8 +45,7 @@ impl StreetNetwork { &mut self, osm_ids: Vec, point: Pt2D, - complexity: IntersectionComplexity, - conflict_level: ConflictType, + t: IntersectionType, control: ControlType, ) -> IntersectionID { let id = self.next_intersection_id(); @@ -61,8 +56,7 @@ impl StreetNetwork { osm_ids, point, polygon: Polygon::dummy(), - complexity, - conflict_level, + t, control, // Filled out later roads: Vec::new(), diff --git a/osm2streets/src/lib.rs b/osm2streets/src/lib.rs index df47c57e..23c9299e 100644 --- a/osm2streets/src/lib.rs +++ b/osm2streets/src/lib.rs @@ -23,8 +23,7 @@ pub use self::lanes::{ pub use self::road::Road; pub use self::transform::Transformation; pub use self::types::{ - ConflictType, ControlType, DrivingSide, IntersectionComplexity, MapConfig, Movement, - NamePerLanguage, + ConflictType, ControlType, DrivingSide, IntersectionType, MapConfig, Movement, NamePerLanguage, }; mod edit; @@ -288,15 +287,13 @@ impl StreetNetwork { /// Recalculate movements, complexity, and conflict_level of an intersection. fn recalculate_movements(&mut self, i: IntersectionID) { - let (complexity, conflict_level, movements) = - crate::transform::classify_intersections::guess_complexity(self, i); + let (t, movements) = crate::transform::classify_intersections::guess_complexity(self, i); let int = self.intersections.get_mut(&i).unwrap(); int.movements = movements; - int.conflict_level = conflict_level; // The fact that an intersection represents a road leaving the map bounds is stored in the // complexity field but guess_complexity ignores that. Make sure we don't overwrite it. - if int.complexity != IntersectionComplexity::MapEdge { - int.complexity = complexity; + if int.t != IntersectionType::MapEdge { + int.t = t; } } } diff --git a/osm2streets/src/render.rs b/osm2streets/src/render.rs index 97450131..c0cd6a2e 100644 --- a/osm2streets/src/render.rs +++ b/osm2streets/src/render.rs @@ -6,9 +6,7 @@ use std::path::Path; use anyhow::Result; use geom::{ArrowCap, Distance, Line, PolyLine}; -use crate::{ - DebugStreets, Direction, DrivingSide, IntersectionComplexity, LaneType, StreetNetwork, -}; +use crate::{DebugStreets, Direction, DrivingSide, LaneType, StreetNetwork}; impl StreetNetwork { /// Saves the plain GeoJSON rendering to a file. @@ -59,18 +57,7 @@ impl StreetNetwork { intersection.osm_ids.iter().map(|id| id.0.into()).collect(), ), ), - ( - "complexity", - if intersection.complexity == IntersectionComplexity::MultiConnection { - format!( - "{:?} {:?}", - intersection.complexity, intersection.conflict_level - ) - } else { - format!("{:?}", intersection.complexity) - } - .into(), - ), + ("intersection_type", format!("{:?}", intersection.t).into()), ("control", format!("{:?}", intersection.control).into()), ]), )); diff --git a/osm2streets/src/transform/classify_intersections.rs b/osm2streets/src/transform/classify_intersections.rs index 77656c30..2cd336ee 100644 --- a/osm2streets/src/transform/classify_intersections.rs +++ b/osm2streets/src/transform/classify_intersections.rs @@ -1,26 +1,25 @@ use std::cmp::{max, min}; use crate::{ - ConflictType, Direction, DrivingSide, IntersectionComplexity, IntersectionID, Movement, + ConflictType, Direction, DrivingSide, IntersectionID, IntersectionType, Movement, RestrictionType, Road, StreetNetwork, }; use ConflictType::*; -use IntersectionComplexity::*; +use IntersectionType::*; -/// Determines the initial complexity of all intersections. Intersections marked "Crossing" are -/// considered "unclassified" and will be updated with a guess, others will be left unchanged. +/// Determines the initial type of all intersections. Intersections not marked "MapEdge" are +/// considered unclassified and will be updated. pub fn classify_intersections(streets: &mut StreetNetwork) { let mut changes: Vec<_> = Vec::new(); for i in streets.intersections.values() { - if i.complexity == Crossing { + if i.t != MapEdge { changes.push((i.id, guess_complexity(streets, i.id))); } } - for (id, (complexity, conflict_level, movements)) in changes { + for (id, (t, movements)) in changes { let intersection = streets.intersections.get_mut(&id).unwrap(); - intersection.complexity = complexity; - intersection.conflict_level = conflict_level; + intersection.t = t; intersection.movements = movements; } } @@ -31,7 +30,7 @@ pub fn classify_intersections(streets: &mut StreetNetwork) { pub fn guess_complexity( streets: &StreetNetwork, intersection_id: IntersectionID, -) -> (IntersectionComplexity, ConflictType, Vec) { +) -> (IntersectionType, Vec) { let roads: Vec<_> = streets .roads_per_intersection(intersection_id) .into_iter() @@ -40,7 +39,7 @@ pub fn guess_complexity( // A terminus is characterised by a single connected road. if roads.len() == 1 { - return (Terminus, Uncontested, Vec::new()); + return (Terminus, Vec::new()); } // Calculate all the possible movements, (except U-turns, for now). @@ -101,18 +100,15 @@ pub fn guess_complexity( .iter() .map(|(s, d)| (roads[*s].id, roads[*d].id)) .collect(); - match worst_conflict { - Cross => (Crossing, Cross, movements), - c => ( - if roads.len() == 2 { - Connection - } else { - MultiConnection - }, - c, - movements, - ), - } + ( + match worst_conflict { + Uncontested => Connection, + Diverge => Fork, + Merge => Fork, // TODO check for give way signs or count lanes to detect Intersections. + Cross => Intersection, + }, + movements, + ) } fn can_drive_out_of(road: &Road, which_end: IntersectionID) -> bool { diff --git a/osm2streets/src/types.rs b/osm2streets/src/types.rs index e4e5e876..437413d1 100644 --- a/osm2streets/src/types.rs +++ b/osm2streets/src/types.rs @@ -120,52 +120,36 @@ pub enum ConflictType { Cross, } -/// What kind of feature an Intersection actually represents. Any connection between roads in the -/// network graph is represented by an Intersection, but many of them are not "intersections" in -/// the traditional sense. -/// -/// This type might be better named IntersectionType and the distinction between MultiConnection, -/// Merge and Crossing is of dubious value and will probably change in the future. +/// What kind of feature an `Intersection` actually represents. Any connection between roads in the +/// network graph is represented by an `Intersection`, but many of them are not traffic +/// "intersections" in the common sense. #[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] -pub enum IntersectionComplexity { - /// The edge of the data that we have. - /// - /// The road may continue past here in reality and do anything, but the current dataset is clipped here. +pub enum IntersectionType { + /// A `Road` ends because the road crosses the map boundary. MapEdge, - /// Two roads connect, one ending where the other begins, without conflict - /// - /// Like a road way has been sliced in two, because a lane was added. - Connection, - - /// Multiple road ways connect, where the carriageway splits, where a road way joins with or - /// diverges from another without conflict. - /// - /// For example, when a single carriageway splits into a dual carriageway, - /// or when highway entrances and exits join and leave a highway. + /// A single `Road` ends because the actual roadway ends; "the end of the line". /// - /// You would expect no lane marking to be interupted, and maybe even a buffer area painted - /// where the lanes meet each other. - MultiConnection, + /// E.g. turning circles, road end signs, train terminus thingos, ... + Terminus, - /// One or more "minor" roads merge into (yielding) or out of a "major" road, - /// which retains its right of way. + /// Multiple `Road`s connect but no flow of traffic interacts with any other. /// - /// You would expect lane markings for the major road to continue (largely) - /// uninterrupted through the intersection, with a yield line ending the minor road. - Merge, + /// Usually one `Road` ends and another begins because the number of lanes has changed or some + /// other attribute of the roadway has changed. More than two `Road`s could be involved, + /// e.g. when a single carriageway (a bidirectional `Road`) splits into a dual carriageway + /// (two oneway `Road`s). + Connection, - /// An area of the road where traffic crosses and priority is shared over time, - /// by lights, negotiation and priority, etc. + /// One flow of traffic forks into multiple, or multiple merge into one, but all traffic is + /// expected to keep flowing. /// - /// You would expect normal lane markings to be missing, sometimes with some helpful - /// markings added (lane dividers for multi-lane turns, etc.). - Crossing, + /// E.g. highway on-ramps and off-ramps. + Fork, - /// The end of the line. - /// - /// Turning circles, road end signs, train terminus thingos, ... - Terminus, + /// At least three `Road`s meet at an actual "intersection" where at least one flow of traffic + /// gives way to, or conflicts with, another. + Intersection, } #[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] @@ -174,7 +158,7 @@ pub enum ControlType { //TODO YieldSign, StopSign, // Signed is a good standard of safety TrafficSignal, // Signalled is better. - Border, //TODO move to using IntersectionComplexity::MapEdge + Border, //TODO move to using IntersectionType::MapEdge Construction, // Are these treated as "closed"? } diff --git a/streets_reader/src/clip.rs b/streets_reader/src/clip.rs index f0122622..8949fbb5 100644 --- a/streets_reader/src/clip.rs +++ b/streets_reader/src/clip.rs @@ -1,7 +1,7 @@ use abstutil::Timer; use anyhow::Result; -use osm2streets::{ControlType, IntersectionComplexity, IntersectionID, StreetNetwork}; +use osm2streets::{ControlType, IntersectionID, IntersectionType, StreetNetwork}; // TODO This needs to update turn restrictions too pub fn clip_map(streets: &mut StreetNetwork, timer: &mut Timer) -> Result<()> { @@ -44,7 +44,7 @@ pub fn clip_map(streets: &mut StreetNetwork, timer: &mut Timer) -> Result<()> { } let mut old_intersection = streets.intersections.remove(&old_id).unwrap(); - old_intersection.complexity = IntersectionComplexity::MapEdge; + old_intersection.t = IntersectionType::MapEdge; old_intersection.control = ControlType::Border; if old_intersection.roads.len() <= 1 { diff --git a/streets_reader/src/split_ways.rs b/streets_reader/src/split_ways.rs index 3740b1e6..7c5167aa 100644 --- a/streets_reader/src/split_ways.rs +++ b/streets_reader/src/split_ways.rs @@ -3,8 +3,8 @@ use std::collections::{btree_map::Entry, BTreeMap, HashMap, HashSet}; use abstutil::{Counter, Tags, Timer}; use geom::{Distance, HashablePt2D, PolyLine, Pt2D}; use osm2streets::{ - osm, ConflictType, ControlType, CrossingType, Direction, IntersectionComplexity, - IntersectionID, OriginalRoad, Road, RoadID, StreetNetwork, + osm, ControlType, CrossingType, Direction, IntersectionID, IntersectionType, OriginalRoad, + Road, RoadID, StreetNetwork, }; use super::OsmExtract; @@ -76,8 +76,7 @@ pub fn split_up_roads( vec![*osm_id], pt.to_pt2d(), // Assume a complicated intersection, until we determine otherwise. - IntersectionComplexity::Crossing, - ConflictType::Cross, + IntersectionType::Intersection, if input.traffic_signals.remove(pt).is_some() { ControlType::TrafficSignal } else { @@ -93,8 +92,7 @@ pub fn split_up_roads( let id = streets.insert_intersection( osm_ids.clone(), pt, - IntersectionComplexity::Crossing, - ConflictType::Cross, + IntersectionType::Intersection, ControlType::StopSign, ); for osm_id in osm_ids { diff --git a/tests/src/arizona_highways/geometry.json b/tests/src/arizona_highways/geometry.json index 8e7de9d4..8fbf7011 100644 --- a/tests/src/arizona_highways/geometry.json +++ b/tests/src/arizona_highways/geometry.json @@ -4042,8 +4042,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2390893346 ], @@ -4080,8 +4080,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 41833648 ], @@ -4118,8 +4118,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1950976016 ], @@ -4156,8 +4156,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4351379655 ], @@ -4194,8 +4194,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 2454767128 ], @@ -4232,8 +4232,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4351379654 ], @@ -4278,8 +4278,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6228919924 ], @@ -4324,8 +4324,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2454728514 ], @@ -4366,8 +4366,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1950975900 ], @@ -4404,8 +4404,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4351379653 ], @@ -4442,8 +4442,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5748112416 ], @@ -4488,8 +4488,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2391008617 ], @@ -4526,8 +4526,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 256978902 ], @@ -4568,8 +4568,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2457540699 ], @@ -4606,8 +4606,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 257963392 ], @@ -4644,8 +4644,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5766999736 ], @@ -4706,8 +4706,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 41643290 ], @@ -4752,8 +4752,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 1950975867 ], @@ -4806,8 +4806,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 1950975953 ], @@ -4848,8 +4848,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2391008592 ], @@ -4890,8 +4890,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2457540707 ], @@ -4932,8 +4932,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 257973558 ], @@ -4978,8 +4978,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 257973659 ], @@ -5016,8 +5016,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1131443329 ], @@ -5054,8 +5054,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1131443311 ], @@ -5092,8 +5092,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 257970997 ], @@ -5138,8 +5138,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2457540697 ], @@ -5184,8 +5184,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 257970996 ], @@ -5226,8 +5226,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4341085388 ], @@ -5272,8 +5272,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 2454435296 ], @@ -5322,8 +5322,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 2454435301 ], @@ -5368,8 +5368,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1224380089 ], @@ -5406,8 +5406,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4341085382 ], @@ -5448,8 +5448,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 4341085386 ], @@ -5486,8 +5486,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1224380064 ], @@ -5532,8 +5532,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 2457540691 ], @@ -5586,8 +5586,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 2457540692 ], @@ -5640,8 +5640,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 2457540689 ], @@ -5690,8 +5690,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 2457540690 ], @@ -5728,8 +5728,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1224380077 ], @@ -5770,8 +5770,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 5134463770 ], @@ -5812,8 +5812,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4341085381 ], @@ -5858,8 +5858,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 2454435293 ], @@ -5900,8 +5900,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 257964186 ], @@ -5938,8 +5938,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1224380087 ], @@ -5984,8 +5984,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 608494024 ], @@ -6026,8 +6026,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4341085384 ], @@ -6068,8 +6068,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 257964183 ], @@ -6106,8 +6106,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5134463771 ], @@ -6144,8 +6144,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5134463772 ], @@ -6186,8 +6186,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2457540685 ], @@ -6224,8 +6224,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 257961882 ], @@ -6270,8 +6270,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2459207619 ], @@ -6312,8 +6312,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 257973235 ], @@ -6354,8 +6354,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2457540680 ], @@ -6396,8 +6396,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1131443242 ], @@ -6442,8 +6442,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 256990200 ], @@ -6492,8 +6492,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 608494028 ], @@ -6550,8 +6550,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 1950975946 ], @@ -6588,8 +6588,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1131443248 ], @@ -6626,8 +6626,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 3715211173 ], @@ -6668,8 +6668,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2457540684 ], @@ -6706,8 +6706,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 4982224185 ], @@ -6744,8 +6744,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 4982224171 ], @@ -6786,8 +6786,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5748112414 ], @@ -6828,8 +6828,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1950975971 ], @@ -6870,8 +6870,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5748112415 ], @@ -6908,8 +6908,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 4982224184 ], @@ -6946,8 +6946,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5572469737 ], @@ -6988,8 +6988,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 1950975926 ], @@ -7026,8 +7026,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4353125861 ], @@ -7064,8 +7064,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5572469746 ], @@ -7106,8 +7106,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1950975883 ], @@ -7144,8 +7144,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1950975923 ], @@ -7182,8 +7182,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4353125862 ], @@ -7220,8 +7220,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 42522813 ], @@ -7258,8 +7258,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2391008616 ], @@ -7296,8 +7296,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2391008616 ], @@ -7334,8 +7334,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2459207580 ], @@ -7372,8 +7372,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2459207580 ], diff --git a/tests/src/aurora_sausage_link/geometry.json b/tests/src/aurora_sausage_link/geometry.json index b8f7bb7d..a3175751 100644 --- a/tests/src/aurora_sausage_link/geometry.json +++ b/tests/src/aurora_sausage_link/geometry.json @@ -442,8 +442,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9029531320 ], @@ -484,8 +484,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 53122087 ], @@ -522,8 +522,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 429692074 ], @@ -564,8 +564,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7404463397 ], @@ -606,8 +606,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7404463396 ], @@ -644,8 +644,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53178613 ], @@ -682,8 +682,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1424516769 ], @@ -732,8 +732,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 7404463398 ], @@ -770,8 +770,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6888045657 ], @@ -808,8 +808,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9580500970 ], diff --git a/tests/src/borough_sausage_links/geometry.json b/tests/src/borough_sausage_links/geometry.json index 9730e6e8..844dc1b2 100644 --- a/tests/src/borough_sausage_links/geometry.json +++ b/tests/src/borough_sausage_links/geometry.json @@ -2807,8 +2807,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 364296 ], @@ -2845,8 +2845,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 276507 ], @@ -2883,8 +2883,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 364300 ], @@ -2921,8 +2921,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 295803799 ], @@ -2967,8 +2967,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 12238562 ], @@ -3017,8 +3017,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5220776407 ], @@ -3055,8 +3055,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1150853978 ], @@ -3093,8 +3093,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 352928523 ], @@ -3131,8 +3131,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6024546591 ], @@ -3169,8 +3169,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2217388387 ], @@ -3207,8 +3207,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 25498065 ], @@ -3245,8 +3245,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5220776402 ], @@ -3283,8 +3283,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5220776403 ], @@ -3333,8 +3333,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5220776408 ], @@ -3371,8 +3371,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5220776401 ], @@ -3409,8 +3409,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 6024546597 ], @@ -3451,8 +3451,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5220776411 ], @@ -3489,8 +3489,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2217475492 ], @@ -3527,8 +3527,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 25497966 ], @@ -3565,8 +3565,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2217442436 ], @@ -3627,8 +3627,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2217475460 ], @@ -3677,8 +3677,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2217412069 ], @@ -3731,8 +3731,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 5220719456 ], @@ -3773,8 +3773,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5220776406 ], @@ -3815,8 +3815,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 5220719432 ], @@ -3853,8 +3853,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5220719448 ], @@ -3891,8 +3891,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 25500014 ], @@ -3945,8 +3945,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 2217412073 ], @@ -3999,8 +3999,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 347413549 ], @@ -4037,8 +4037,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2217442429 ], @@ -4075,8 +4075,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9733253134 ], @@ -4113,8 +4113,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5220719447 ], @@ -4155,8 +4155,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5220719428 ], @@ -4197,8 +4197,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5220719463 ], @@ -4235,8 +4235,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 872828485 ], @@ -4273,8 +4273,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5220760621 ], @@ -4327,8 +4327,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1165070926 ], @@ -4381,8 +4381,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2217475451 ], @@ -4435,8 +4435,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5220719449 ], @@ -4485,8 +4485,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2217388361 ], @@ -4523,8 +4523,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5220719466 ], @@ -4561,8 +4561,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2217475464 ], @@ -4619,8 +4619,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1165071010 ], @@ -4673,8 +4673,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1165070941 ], @@ -4711,8 +4711,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5220719469 ], @@ -4749,8 +4749,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 347413001 ], @@ -4787,8 +4787,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5220719472 ], @@ -4829,8 +4829,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 31349035 ], @@ -4871,8 +4871,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 60007209 ], @@ -4917,8 +4917,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2317365390 ], @@ -4963,8 +4963,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1165071224 ], @@ -5009,8 +5009,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2317365395 ], @@ -5055,8 +5055,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1165070964 ], @@ -5109,8 +5109,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1165071364 ], @@ -5163,8 +5163,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1165071161 ], @@ -5201,8 +5201,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 287453557 ], @@ -5239,8 +5239,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 25500037 ], @@ -5277,8 +5277,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 287453575 ], @@ -5315,8 +5315,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5220719437 ], @@ -5353,8 +5353,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5220719437 ], @@ -5391,8 +5391,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1165071291 ], @@ -5429,8 +5429,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1165071291 ], diff --git a/tests/src/bristol_contraflow_cycleway/geometry.json b/tests/src/bristol_contraflow_cycleway/geometry.json index 53da74f2..32aeeb26 100644 --- a/tests/src/bristol_contraflow_cycleway/geometry.json +++ b/tests/src/bristol_contraflow_cycleway/geometry.json @@ -1359,8 +1359,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7875684771 ], @@ -1397,8 +1397,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 356289304 ], @@ -1447,8 +1447,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2847905816 ], @@ -1493,8 +1493,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 260742831 ], @@ -1539,8 +1539,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 282229032 ], @@ -1593,8 +1593,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2847905817 ], @@ -1631,8 +1631,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 260742834 ], @@ -1677,8 +1677,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 260742852 ], @@ -1727,8 +1727,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1316486883 ], @@ -1773,8 +1773,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2847905819 ], @@ -1815,8 +1815,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 1223212928 ], @@ -1853,8 +1853,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 1223212748 ], @@ -1891,8 +1891,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 260742931 ], @@ -1937,8 +1937,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 260742833 ], @@ -1975,8 +1975,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 282231403 ], @@ -2013,8 +2013,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 8411977307 ], @@ -2063,8 +2063,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 8411977306 ], @@ -2109,8 +2109,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 260742941 ], @@ -2163,8 +2163,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8411977276 ], @@ -2213,8 +2213,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 21310516 ], @@ -2263,8 +2263,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8411724259 ], @@ -2313,8 +2313,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8411724268 ], @@ -2351,8 +2351,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 2208694229 ], @@ -2389,8 +2389,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 21310508 ], @@ -2427,8 +2427,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2208694226 ], @@ -2465,8 +2465,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1316487047 ], @@ -2503,8 +2503,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 21310530 ], @@ -2541,8 +2541,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1223212892 ], @@ -2579,8 +2579,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1223212892 ], diff --git a/tests/src/bristol_sausage_links/geometry.json b/tests/src/bristol_sausage_links/geometry.json index 11609cc5..6dbdcbcf 100644 --- a/tests/src/bristol_sausage_links/geometry.json +++ b/tests/src/bristol_sausage_links/geometry.json @@ -805,8 +805,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 21257308 ], @@ -843,8 +843,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2948578296 ], @@ -881,8 +881,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 21310516 ], @@ -919,8 +919,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1695906815 ], @@ -957,8 +957,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4883724684 ], @@ -1003,8 +1003,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4883724685 ], @@ -1041,8 +1041,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 4740760680 ], @@ -1083,8 +1083,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 21257313 ], @@ -1121,8 +1121,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 4740760678 ], @@ -1171,8 +1171,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 1316487047 ], @@ -1221,8 +1221,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 4740760690 ], @@ -1263,8 +1263,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 4740760689 ], @@ -1317,8 +1317,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1695906751 ], @@ -1355,8 +1355,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 1316486886 ], @@ -1397,8 +1397,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 154650255 ], @@ -1435,8 +1435,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 21310565 ], @@ -1481,8 +1481,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 21310567 ], @@ -1519,8 +1519,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9210121934 ], @@ -1557,8 +1557,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1695906885 ], @@ -1595,8 +1595,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2847261371 ], diff --git a/tests/src/cycleway_rejoin_road/geometry.json b/tests/src/cycleway_rejoin_road/geometry.json index 12f61709..9913237f 100644 --- a/tests/src/cycleway_rejoin_road/geometry.json +++ b/tests/src/cycleway_rejoin_road/geometry.json @@ -7526,8 +7526,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9150256918 ], @@ -7564,8 +7564,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2555516144 ], @@ -7602,8 +7602,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4462219991 ], @@ -7640,8 +7640,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 1691695883 ], @@ -7682,8 +7682,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 730856862 ], @@ -7740,8 +7740,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150256934 ], @@ -7794,8 +7794,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9150256917 ], @@ -7852,8 +7852,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276555 ], @@ -7890,8 +7890,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9150217908 ], @@ -7928,8 +7928,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9150276556 ], @@ -7982,8 +7982,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276560 ], @@ -8028,8 +8028,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 25502684 ], @@ -8074,8 +8074,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150256922 ], @@ -8112,8 +8112,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150217910 ], @@ -8170,8 +8170,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9150276561 ], @@ -8216,8 +8216,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9150217904 ], @@ -8262,8 +8262,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276536 ], @@ -8316,8 +8316,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276553 ], @@ -8370,8 +8370,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276543 ], @@ -8412,8 +8412,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9150276535 ], @@ -8466,8 +8466,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276554 ], @@ -8504,8 +8504,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4957735652 ], @@ -8542,8 +8542,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9806699390 ], @@ -8592,8 +8592,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4967069559 ], @@ -8630,8 +8630,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 4967082877 ], @@ -8672,8 +8672,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4957735651 ], @@ -8722,8 +8722,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9150276564 ], @@ -8768,8 +8768,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7330281376 ], @@ -8806,8 +8806,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8013569055 ], @@ -8852,8 +8852,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9150276563 ], @@ -8898,8 +8898,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 25502865 ], @@ -8960,8 +8960,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276551 ], @@ -9006,8 +9006,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276548 ], @@ -9048,8 +9048,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 2246184959 ], @@ -9094,8 +9094,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276546 ], @@ -9144,8 +9144,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276568 ], @@ -9194,8 +9194,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9150276559 ], @@ -9244,8 +9244,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136383834 ], @@ -9286,8 +9286,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9150276566 ], @@ -9344,8 +9344,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276567 ], @@ -9382,8 +9382,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136383851 ], @@ -9432,8 +9432,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136383822 ], @@ -9470,8 +9470,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4967088337 ], @@ -9508,8 +9508,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 25504973 ], @@ -9558,8 +9558,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136383836 ], @@ -9600,8 +9600,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9150276550 ], @@ -9646,8 +9646,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6847224398 ], @@ -9692,8 +9692,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136383837 ], @@ -9746,8 +9746,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136383840 ], @@ -9784,8 +9784,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136383839 ], @@ -9838,8 +9838,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136383835 ], @@ -9888,8 +9888,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 4673133618 ], @@ -9930,8 +9930,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 25504033 ], @@ -9968,8 +9968,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4967088341 ], @@ -10006,8 +10006,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5739261533 ], @@ -10044,8 +10044,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 3218009836 ], @@ -10082,8 +10082,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 25504987 ], @@ -10140,8 +10140,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 25502651 ], @@ -10178,8 +10178,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 4673133620 ], @@ -10216,8 +10216,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136383828 ], @@ -10262,8 +10262,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 21511934 ], @@ -10300,8 +10300,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136383827 ], @@ -10354,8 +10354,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136344008 ], @@ -10392,8 +10392,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 6847224406 ], @@ -10430,8 +10430,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 25502650 ], @@ -10484,8 +10484,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5739261534 ], @@ -10538,8 +10538,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1126026088 ], @@ -10588,8 +10588,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 3218009838 ], @@ -10634,8 +10634,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 25502890 ], @@ -10680,8 +10680,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136344010 ], @@ -10730,8 +10730,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9130071196 ], @@ -10788,8 +10788,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136344009 ], @@ -10842,8 +10842,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1126026083 ], @@ -10888,8 +10888,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136344005 ], @@ -10942,8 +10942,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343987 ], @@ -10988,8 +10988,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136344004 ], @@ -11034,8 +11034,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343986 ], @@ -11072,8 +11072,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 844790970 ], @@ -11110,8 +11110,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343985 ], @@ -11160,8 +11160,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343972 ], @@ -11198,8 +11198,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222569 ], @@ -11256,8 +11256,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 25502648 ], @@ -11294,8 +11294,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343993 ], @@ -11348,8 +11348,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343969 ], @@ -11402,8 +11402,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222586 ], @@ -11448,8 +11448,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136360631 ], @@ -11506,8 +11506,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136360630 ], @@ -11556,8 +11556,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343971 ], @@ -11594,8 +11594,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343978 ], @@ -11632,8 +11632,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222573 ], @@ -11670,8 +11670,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 730856505 ], @@ -11720,8 +11720,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343996 ], @@ -11778,8 +11778,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343997 ], @@ -11820,8 +11820,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343979 ], @@ -11858,8 +11858,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5739257306 ], @@ -11912,8 +11912,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343998 ], @@ -11954,8 +11954,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 25502896 ], @@ -11992,8 +11992,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 6029529898 ], @@ -12038,8 +12038,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9130071201 ], @@ -12092,8 +12092,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343970 ], @@ -12142,8 +12142,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343980 ], @@ -12188,8 +12188,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343977 ], @@ -12234,8 +12234,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 730856463 ], @@ -12280,8 +12280,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343976 ], @@ -12334,8 +12334,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9130071195 ], @@ -12376,8 +12376,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343947 ], @@ -12426,8 +12426,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5021048664 ], @@ -12464,8 +12464,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5023600724 ], @@ -12502,8 +12502,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343973 ], @@ -12540,8 +12540,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 730856502 ], @@ -12594,8 +12594,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6029529895 ], @@ -12648,8 +12648,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126025785 ], @@ -12686,8 +12686,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5021048671 ], @@ -12724,8 +12724,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5021048672 ], @@ -12770,8 +12770,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4849780710 ], @@ -12820,8 +12820,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1126222500 ], @@ -12878,8 +12878,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5021048663 ], @@ -12920,8 +12920,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 25503378 ], @@ -12958,8 +12958,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7926785716 ], @@ -12996,8 +12996,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222438 ], @@ -13034,8 +13034,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136343964 ], @@ -13088,8 +13088,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222441 ], @@ -13134,8 +13134,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1240373509 ], @@ -13188,8 +13188,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222455 ], @@ -13242,8 +13242,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222447 ], @@ -13280,8 +13280,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222425 ], @@ -13338,8 +13338,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222450 ], @@ -13376,8 +13376,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222387 ], @@ -13414,8 +13414,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1126222388 ], @@ -13456,8 +13456,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4839044023 ], @@ -13502,8 +13502,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4839044022 ], @@ -13540,8 +13540,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 6022905014 ], @@ -13594,8 +13594,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4839044024 ], @@ -13640,8 +13640,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 25503653 ], @@ -13690,8 +13690,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 266138052 ], @@ -13740,8 +13740,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5268321224 ], @@ -13778,8 +13778,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9820345292 ], @@ -13820,8 +13820,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 21511915 ], @@ -13862,8 +13862,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9316017763 ], @@ -13900,8 +13900,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9316017762 ], @@ -13942,8 +13942,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 9316017761 ], @@ -13992,8 +13992,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6022905020 ], @@ -14030,8 +14030,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 102715106 ], @@ -14068,8 +14068,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "TrafficSignal", + "intersection_type": "Terminus", "osm_node_ids": [ 21508954 ], @@ -14114,8 +14114,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 264803343 ], @@ -14152,8 +14152,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5268325548 ], @@ -14190,8 +14190,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 266138058 ], diff --git a/tests/src/i5_exit_ramp/geometry.json b/tests/src/i5_exit_ramp/geometry.json index 928ebd23..4a18e587 100644 --- a/tests/src/i5_exit_ramp/geometry.json +++ b/tests/src/i5_exit_ramp/geometry.json @@ -2194,8 +2194,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53125560 ], @@ -2232,8 +2232,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 59699628 ], @@ -2270,8 +2270,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5766717300 ], @@ -2308,8 +2308,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 59699630 ], @@ -2346,8 +2346,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53092499 ], @@ -2396,8 +2396,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53092522 ], @@ -2434,8 +2434,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5766863608 ], @@ -2488,8 +2488,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5766863606 ], @@ -2526,8 +2526,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5766863607 ], @@ -2564,8 +2564,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 29484769 ], @@ -2602,8 +2602,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 479736003 ], @@ -2640,8 +2640,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1864943614 ], @@ -2686,8 +2686,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 400020830 ], @@ -2724,8 +2724,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5757451262 ], @@ -2762,8 +2762,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 29545423 ], @@ -2800,8 +2800,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5757451242 ], @@ -2842,8 +2842,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 1864943558 ], @@ -2888,8 +2888,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 30101230 ], @@ -2934,8 +2934,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 3588212119 ], @@ -2972,8 +2972,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3584131214 ], @@ -3010,8 +3010,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 30458587 ], @@ -3048,8 +3048,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 31428567 ], @@ -3090,8 +3090,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 29545445 ], @@ -3128,8 +3128,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5757451241 ], @@ -3166,8 +3166,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 29484754 ], @@ -3204,8 +3204,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5757451243 ], @@ -3246,8 +3246,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 29484936 ], @@ -3292,8 +3292,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 400020831 ], @@ -3330,8 +3330,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 29484937 ], @@ -3368,8 +3368,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4013569890 ], @@ -3406,8 +3406,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1388978473 ], @@ -3444,8 +3444,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 29485034 ], @@ -3486,8 +3486,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 32178812 ], @@ -3532,8 +3532,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53163625 ], @@ -3582,8 +3582,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4696563247 ], @@ -3620,8 +3620,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 32259207 ], @@ -3666,8 +3666,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 631370102 ], @@ -3712,8 +3712,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53149325 ], @@ -3750,8 +3750,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53163628 ], @@ -3792,8 +3792,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2672451447 ], @@ -3830,8 +3830,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1222221757 ], @@ -3868,8 +3868,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 29545440 ], @@ -3918,8 +3918,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 59713406 ], @@ -3964,8 +3964,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8041342861 ], @@ -4002,8 +4002,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 8041388888 ], @@ -4040,8 +4040,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4789275355 ], @@ -4086,8 +4086,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3670717206 ], @@ -4140,8 +4140,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3670717205 ], @@ -4178,8 +4178,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8041342867 ], @@ -4216,8 +4216,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8041342868 ], @@ -4266,8 +4266,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 978142408 ], @@ -4304,8 +4304,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2672451455 ], @@ -4350,8 +4350,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 29937543 ], @@ -4388,8 +4388,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9454517095 ], @@ -4426,8 +4426,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 32178816 ], @@ -4464,8 +4464,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1841897176 ], @@ -4502,8 +4502,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1841897176 ], @@ -4540,8 +4540,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 29545412 ], @@ -4578,8 +4578,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 29545412 ], diff --git a/tests/src/kingsway_junction/geometry.json b/tests/src/kingsway_junction/geometry.json index fdb392cc..fa45bbfb 100644 --- a/tests/src/kingsway_junction/geometry.json +++ b/tests/src/kingsway_junction/geometry.json @@ -7001,8 +7001,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8691903642 ], @@ -7039,8 +7039,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 743547865 ], @@ -7077,8 +7077,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 308222735 ], @@ -7115,8 +7115,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 32026058 ], @@ -7153,8 +7153,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1558341212 ], @@ -7211,8 +7211,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4762076679 ], @@ -7261,8 +7261,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4762076678 ], @@ -7299,8 +7299,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5401617887 ], @@ -7337,8 +7337,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7796397137 ], @@ -7375,8 +7375,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7796397127 ], @@ -7413,8 +7413,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4762076685 ], @@ -7459,8 +7459,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8672774810 ], @@ -7517,8 +7517,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4762076684 ], @@ -7571,8 +7571,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 306917570 ], @@ -7617,8 +7617,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 5405641445 ], @@ -7671,8 +7671,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4762076680 ], @@ -7725,8 +7725,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4762076681 ], @@ -7763,8 +7763,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2913621162 ], @@ -7829,8 +7829,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2920872874 ], @@ -7867,8 +7867,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 32025957 ], @@ -7905,8 +7905,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 743548183 ], @@ -7951,8 +7951,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2918472522 ], @@ -7989,8 +7989,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4762076683 ], @@ -8027,8 +8027,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2920872879 ], @@ -8077,8 +8077,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2918434149 ], @@ -8131,8 +8131,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 32025949 ], @@ -8177,8 +8177,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6137128391 ], @@ -8215,8 +8215,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9169444979 ], @@ -8265,8 +8265,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401918 ], @@ -8311,8 +8311,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 743548194 ], @@ -8353,8 +8353,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 955166004 ], @@ -8399,8 +8399,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401795 ], @@ -8441,8 +8441,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 743548133 ], @@ -8499,8 +8499,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401919 ], @@ -8537,8 +8537,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 637466928 ], @@ -8579,8 +8579,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 8672774809 ], @@ -8621,8 +8621,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 32025947 ], @@ -8667,8 +8667,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401794 ], @@ -8705,8 +8705,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790153411 ], @@ -8743,8 +8743,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790153424 ], @@ -8785,8 +8785,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790153400 ], @@ -8827,8 +8827,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 32025961 ], @@ -8865,8 +8865,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6439595305 ], @@ -8907,8 +8907,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790153430 ], @@ -8961,8 +8961,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7796391487 ], @@ -9007,8 +9007,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790153455 ], @@ -9057,8 +9057,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790153452 ], @@ -9123,8 +9123,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 21653578 ], @@ -9165,8 +9165,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401798 ], @@ -9203,8 +9203,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 745988244 ], @@ -9241,8 +9241,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8093690662 ], @@ -9291,8 +9291,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401793 ], @@ -9333,8 +9333,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 2918379027 ], @@ -9391,8 +9391,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790153398 ], @@ -9445,8 +9445,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 31287524 ], @@ -9483,8 +9483,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790153418 ], @@ -9533,8 +9533,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 6480352153 ], @@ -9571,8 +9571,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9586125751 ], @@ -9617,8 +9617,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790153427 ], @@ -9659,8 +9659,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790153421 ], @@ -9697,8 +9697,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6480352136 ], @@ -9751,8 +9751,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 6137128386 ], @@ -9805,8 +9805,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 21653579 ], @@ -9855,8 +9855,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790145018 ], @@ -9917,8 +9917,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 31287523 ], @@ -9955,8 +9955,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790145014 ], @@ -10009,8 +10009,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 745988105 ], @@ -10051,8 +10051,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 743547964 ], @@ -10097,8 +10097,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 743548189 ], @@ -10139,8 +10139,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 31287525 ], @@ -10177,8 +10177,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 743572640 ], @@ -10223,8 +10223,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2790145016 ], @@ -10261,8 +10261,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2913567879 ], @@ -10315,8 +10315,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 2918402992 ], @@ -10357,8 +10357,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2913567877 ], @@ -10415,8 +10415,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6480352139 ], @@ -10461,8 +10461,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2918402993 ], @@ -10507,8 +10507,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 955166095 ], @@ -10545,8 +10545,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 955165990 ], @@ -10591,8 +10591,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 955165980 ], @@ -10633,8 +10633,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 2918402990 ], @@ -10679,8 +10679,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 745988281 ], @@ -10717,8 +10717,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 743548122 ], @@ -10755,8 +10755,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 745988236 ], @@ -10801,8 +10801,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 955166125 ], @@ -10851,8 +10851,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4140571229 ], @@ -10889,8 +10889,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2913629004 ], @@ -10931,8 +10931,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 743547944 ], @@ -10969,8 +10969,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6480352128 ], @@ -11015,8 +11015,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6137128080 ], @@ -11065,8 +11065,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 955166067 ], @@ -11111,8 +11111,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 637467098 ], @@ -11153,8 +11153,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 7218399545 ], @@ -11203,8 +11203,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2918402991 ], @@ -11253,8 +11253,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401787 ], @@ -11303,8 +11303,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 955166153 ], @@ -11357,8 +11357,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401799 ], @@ -11411,8 +11411,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2265010779 ], @@ -11449,8 +11449,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 1277766621 ], @@ -11487,8 +11487,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 745988141 ], @@ -11525,8 +11525,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401802 ], @@ -11575,8 +11575,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 929679768 ], @@ -11621,8 +11621,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401796 ], @@ -11663,8 +11663,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1277766809 ], @@ -11709,8 +11709,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 745988174 ], @@ -11751,8 +11751,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401809 ], @@ -11789,8 +11789,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9298526716 ], @@ -11835,8 +11835,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401797 ], @@ -11881,8 +11881,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 745988110 ], @@ -11919,8 +11919,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 739096994 ], @@ -11961,8 +11961,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8778504595 ], @@ -12003,8 +12003,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 31287503 ], @@ -12041,8 +12041,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2790133529 ], @@ -12091,8 +12091,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6439595293 ], @@ -12129,8 +12129,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9298570017 ], @@ -12171,8 +12171,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401808 ], @@ -12221,8 +12221,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4145063897 ], @@ -12263,8 +12263,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1277766903 ], @@ -12317,8 +12317,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8778504602 ], @@ -12371,8 +12371,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 31287519 ], @@ -12433,8 +12433,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9298401807 ], @@ -12471,8 +12471,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 745988145 ], @@ -12521,8 +12521,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2913662306 ], @@ -12563,8 +12563,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1277766687 ], @@ -12605,8 +12605,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1277766833 ], @@ -12647,8 +12647,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6439595307 ], @@ -12689,8 +12689,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1278748166 ], @@ -12747,8 +12747,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2913662315 ], @@ -12785,8 +12785,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6439595306 ], @@ -12823,8 +12823,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8778504599 ], @@ -12861,8 +12861,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7003946189 ], @@ -12899,8 +12899,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5824302619 ], @@ -12937,8 +12937,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 745988188 ], @@ -12975,8 +12975,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 31287502 ], @@ -13013,8 +13013,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 31287522 ], @@ -13051,8 +13051,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1277766668 ], @@ -13089,8 +13089,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4040299167 ], @@ -13127,8 +13127,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9298401785 ], @@ -13165,8 +13165,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9280845971 ], @@ -13203,8 +13203,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2920872878 ], @@ -13241,8 +13241,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2920872878 ], @@ -13279,8 +13279,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 743548069 ], @@ -13317,8 +13317,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 743548069 ], @@ -13355,8 +13355,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 637467100 ], @@ -13393,8 +13393,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 637467100 ], @@ -13431,8 +13431,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 745988242 ], @@ -13469,8 +13469,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 745988242 ], diff --git a/tests/src/leeds_cycleway/geometry.json b/tests/src/leeds_cycleway/geometry.json index eb6da1b6..7796617b 100644 --- a/tests/src/leeds_cycleway/geometry.json +++ b/tests/src/leeds_cycleway/geometry.json @@ -31980,8 +31980,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3193482754 ], @@ -32018,8 +32018,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1305300599 ], @@ -32056,8 +32056,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8450268992 ], @@ -32094,8 +32094,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2142487689 ], @@ -32132,8 +32132,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5071469704 ], @@ -32170,8 +32170,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5924236782 ], @@ -32208,8 +32208,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6001482087 ], @@ -32246,8 +32246,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5071469694 ], @@ -32284,8 +32284,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6001482135 ], @@ -32322,8 +32322,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 30822588 ], @@ -32360,8 +32360,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5071469695 ], @@ -32398,8 +32398,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 250093012 ], @@ -32436,8 +32436,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9194660290 ], @@ -32474,8 +32474,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1743296708 ], @@ -32512,8 +32512,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1675168086 ], @@ -32550,8 +32550,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 26299406 ], @@ -32600,8 +32600,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9356627340 ], @@ -32646,8 +32646,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 26109193 ], @@ -32700,8 +32700,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342605804 ], @@ -32746,8 +32746,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5924236780 ], @@ -32796,8 +32796,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5924236779 ], @@ -32838,8 +32838,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342605802 ], @@ -32888,8 +32888,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482131 ], @@ -32946,8 +32946,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482132 ], @@ -33004,8 +33004,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 26298428 ], @@ -33042,8 +33042,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022850280 ], @@ -33088,8 +33088,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022850276 ], @@ -33126,8 +33126,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 21133749 ], @@ -33184,8 +33184,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481692879 ], @@ -33234,8 +33234,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 342579616 ], @@ -33296,8 +33296,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 26298426 ], @@ -33334,8 +33334,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9319419244 ], @@ -33372,8 +33372,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 6665254444 ], @@ -33410,8 +33410,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 320959866 ], @@ -33456,8 +33456,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9356627345 ], @@ -33510,8 +33510,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 320959868 ], @@ -33564,8 +33564,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 320959869 ], @@ -33602,8 +33602,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5071469689 ], @@ -33648,8 +33648,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5931863421 ], @@ -33686,8 +33686,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3219472273 ], @@ -33732,8 +33732,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5071469697 ], @@ -33778,8 +33778,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5931863420 ], @@ -33832,8 +33832,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5924236781 ], @@ -33890,8 +33890,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 26109190 ], @@ -33944,8 +33944,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5981573959 ], @@ -33982,8 +33982,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9319419245 ], @@ -34048,8 +34048,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482091 ], @@ -34114,8 +34114,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482136 ], @@ -34176,8 +34176,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5931863419 ], @@ -34234,8 +34234,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4457095876 ], @@ -34288,8 +34288,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482101 ], @@ -34326,8 +34326,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3219472259 ], @@ -34372,8 +34372,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5071469690 ], @@ -34426,8 +34426,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4457095875 ], @@ -34464,8 +34464,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 317087692 ], @@ -34502,8 +34502,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4457095874 ], @@ -34556,8 +34556,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022850279 ], @@ -34610,8 +34610,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022850278 ], @@ -34656,8 +34656,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 10440056 ], @@ -34694,8 +34694,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 320951154 ], @@ -34744,8 +34744,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342529365 ], @@ -34790,8 +34790,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342529363 ], @@ -34848,8 +34848,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 5728993687 ], @@ -34902,8 +34902,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4457095868 ], @@ -34956,8 +34956,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5931863422 ], @@ -35010,8 +35010,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4457095867 ], @@ -35068,8 +35068,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482098 ], @@ -35130,8 +35130,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482090 ], @@ -35192,8 +35192,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482128 ], @@ -35262,8 +35262,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5931863423 ], @@ -35308,8 +35308,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 320959867 ], @@ -35354,8 +35354,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8892765835 ], @@ -35408,8 +35408,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482100 ], @@ -35458,8 +35458,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 4457095870 ], @@ -35516,8 +35516,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5071469692 ], @@ -35554,8 +35554,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 6146456169 ], @@ -35600,8 +35600,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8892765836 ], @@ -35646,8 +35646,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5071469702 ], @@ -35688,8 +35688,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5728993720 ], @@ -35734,8 +35734,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482089 ], @@ -35780,8 +35780,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482093 ], @@ -35826,8 +35826,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 9319419230 ], @@ -35868,8 +35868,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5071469698 ], @@ -35906,8 +35906,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 4364076651 ], @@ -35960,8 +35960,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 301689294 ], @@ -36002,8 +36002,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 4457813299 ], @@ -36052,8 +36052,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5071469703 ], @@ -36110,8 +36110,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9319419240 ], @@ -36164,8 +36164,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6979945558 ], @@ -36210,8 +36210,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482097 ], @@ -36260,8 +36260,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482092 ], @@ -36314,8 +36314,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640864 ], @@ -36364,8 +36364,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6001482094 ], @@ -36426,8 +36426,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5071469699 ], @@ -36472,8 +36472,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 5728993691 ], @@ -36530,8 +36530,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640857 ], @@ -36568,8 +36568,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3219472271 ], @@ -36614,8 +36614,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 301689323 ], @@ -36664,8 +36664,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 26298429 ], @@ -36714,8 +36714,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 320951161 ], @@ -36752,8 +36752,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3219472282 ], @@ -36810,8 +36810,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9258530380 ], @@ -36864,8 +36864,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640866 ], @@ -36926,8 +36926,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640867 ], @@ -36988,8 +36988,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640868 ], @@ -37042,8 +37042,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640869 ], @@ -37084,8 +37084,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 9319419235 ], @@ -37142,8 +37142,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 26298424 ], @@ -37200,8 +37200,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6047091983 ], @@ -37246,8 +37246,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 342579502 ], @@ -37304,8 +37304,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640881 ], @@ -37374,8 +37374,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640883 ], @@ -37444,8 +37444,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640882 ], @@ -37502,8 +37502,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640880 ], @@ -37552,8 +37552,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8892765838 ], @@ -37590,8 +37590,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4457813310 ], @@ -37648,8 +37648,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640863 ], @@ -37714,8 +37714,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640862 ], @@ -37784,8 +37784,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640861 ], @@ -37842,8 +37842,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640860 ], @@ -37880,8 +37880,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9316506539 ], @@ -37938,8 +37938,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 9316506541 ], @@ -37992,8 +37992,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 320998072 ], @@ -38042,8 +38042,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 26298430 ], @@ -38088,8 +38088,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 342579620 ], @@ -38150,8 +38150,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6047609624 ], @@ -38196,8 +38196,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 342579576 ], @@ -38250,8 +38250,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640871 ], @@ -38320,8 +38320,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640873 ], @@ -38390,8 +38390,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640872 ], @@ -38448,8 +38448,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640870 ], @@ -38498,8 +38498,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8450014339 ], @@ -38536,8 +38536,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9258530382 ], @@ -38590,8 +38590,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 26298425 ], @@ -38652,8 +38652,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264671922 ], @@ -38694,8 +38694,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 9319419234 ], @@ -38732,8 +38732,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6101189538 ], @@ -38790,8 +38790,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640874 ], @@ -38832,8 +38832,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 26660405 ], @@ -38878,8 +38878,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640858 ], @@ -38940,8 +38940,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640875 ], @@ -39002,8 +39002,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640884 ], @@ -39040,8 +39040,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9319419252 ], @@ -39086,8 +39086,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7924241274 ], @@ -39120,8 +39120,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7261942276 ], @@ -39170,8 +39170,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 26109191 ], @@ -39216,8 +39216,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2014304918 ], @@ -39254,8 +39254,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4500478004 ], @@ -39292,8 +39292,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7261942277 ], @@ -39338,8 +39338,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264671921 ], @@ -39384,8 +39384,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 9319419229 ], @@ -39422,8 +39422,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7592482435 ], @@ -39460,8 +39460,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4457813307 ], @@ -39514,8 +39514,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640877 ], @@ -39552,8 +39552,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 4457813308 ], @@ -39610,8 +39610,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640876 ], @@ -39680,8 +39680,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640879 ], @@ -39750,8 +39750,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640878 ], @@ -39800,8 +39800,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6584937084 ], @@ -39838,8 +39838,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1152092776 ], @@ -39892,8 +39892,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 320943570 ], @@ -39946,8 +39946,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5518536456 ], @@ -39996,8 +39996,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8450014342 ], @@ -40054,8 +40054,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640865 ], @@ -40112,8 +40112,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8481640859 ], @@ -40170,8 +40170,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6979945559 ], @@ -40220,8 +40220,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342579512 ], @@ -40270,8 +40270,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2014304923 ], @@ -40320,8 +40320,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7261942269 ], @@ -40366,8 +40366,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6979945557 ], @@ -40416,8 +40416,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2014304915 ], @@ -40470,8 +40470,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5518536453 ], @@ -40516,8 +40516,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2014304919 ], @@ -40570,8 +40570,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 9791699 ], @@ -40624,8 +40624,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 342579578 ], @@ -40674,8 +40674,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7261942271 ], @@ -40720,8 +40720,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 800488938 ], @@ -40774,8 +40774,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2014304920 ], @@ -40820,8 +40820,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1743212076 ], @@ -40874,8 +40874,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1675168064 ], @@ -40912,8 +40912,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 320998081 ], @@ -40962,8 +40962,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2014304911 ], @@ -41004,8 +41004,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 358163080 ], @@ -41046,8 +41046,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9319419287 ], @@ -41112,8 +41112,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 6584937015 ], @@ -41150,8 +41150,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7261942264 ], @@ -41192,8 +41192,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 4540786888 ], @@ -41234,8 +41234,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342579538 ], @@ -41276,8 +41276,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 643946 ], @@ -41314,8 +41314,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7261942280 ], @@ -41360,8 +41360,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 342579580 ], @@ -41414,8 +41414,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4365671270 ], @@ -41468,8 +41468,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2014304912 ], @@ -41518,8 +41518,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7261942266 ], @@ -41556,8 +41556,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 358163085 ], @@ -41598,8 +41598,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9791722 ], @@ -41652,8 +41652,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2014304914 ], @@ -41690,8 +41690,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7924269285 ], @@ -41736,8 +41736,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 370191923 ], @@ -41782,8 +41782,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 26298423 ], @@ -41832,8 +41832,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7261942265 ], @@ -41886,8 +41886,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2014304908 ], @@ -41924,8 +41924,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 342579626 ], @@ -41962,8 +41962,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6309394782 ], @@ -42000,8 +42000,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6584937053 ], @@ -42058,8 +42058,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342579554 ], @@ -42112,8 +42112,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2014304895 ], @@ -42158,8 +42158,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 8273166694 ], @@ -42196,8 +42196,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6428423986 ], @@ -42242,8 +42242,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6584827765 ], @@ -42296,8 +42296,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9258530387 ], @@ -42338,8 +42338,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 643945 ], @@ -42380,8 +42380,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6111971409 ], @@ -42418,8 +42418,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 369772541 ], @@ -42468,8 +42468,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6500031458 ], @@ -42510,8 +42510,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 643907 ], @@ -42564,8 +42564,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4365671268 ], @@ -42606,8 +42606,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1152092921 ], @@ -42648,8 +42648,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342579667 ], @@ -42690,8 +42690,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 50021952 ], @@ -42736,8 +42736,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1877939967 ], @@ -42786,8 +42786,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2014304855 ], @@ -42828,8 +42828,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 21099344 ], @@ -42886,8 +42886,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9258530385 ], @@ -42932,8 +42932,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1877939950 ], @@ -42990,8 +42990,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342579666 ], @@ -43044,8 +43044,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6500031459 ], @@ -43082,8 +43082,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9319419289 ], @@ -43120,8 +43120,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1743212077 ], @@ -43170,8 +43170,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2014304864 ], @@ -43212,8 +43212,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1877939977 ], @@ -43266,8 +43266,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2014304856 ], @@ -43316,8 +43316,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 26660637 ], @@ -43374,8 +43374,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264671916 ], @@ -43424,8 +43424,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 320943573 ], @@ -43478,8 +43478,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2014304862 ], @@ -43536,8 +43536,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4365671272 ], @@ -43586,8 +43586,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437041 ], @@ -43648,8 +43648,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 8174077587 ], @@ -43698,8 +43698,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2014304901 ], @@ -43736,8 +43736,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7261942252 ], @@ -43786,8 +43786,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 342579586 ], @@ -43840,8 +43840,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1877939971 ], @@ -43882,8 +43882,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1877939969 ], @@ -43932,8 +43932,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 7237437075 ], @@ -43986,8 +43986,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 8174077588 ], @@ -44040,8 +44040,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8740550411 ], @@ -44090,8 +44090,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 301689309 ], @@ -44144,8 +44144,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 250348721 ], @@ -44190,8 +44190,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4833244388 ], @@ -44232,8 +44232,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 26300437 ], @@ -44282,8 +44282,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5452444915 ], @@ -44320,8 +44320,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437077 ], @@ -44366,8 +44366,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1601683577 ], @@ -44404,8 +44404,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6665254427 ], @@ -44454,8 +44454,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437048 ], @@ -44512,8 +44512,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 320943575 ], @@ -44558,8 +44558,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 320943572 ], @@ -44604,8 +44604,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6665254428 ], @@ -44650,8 +44650,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6211583013 ], @@ -44704,8 +44704,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6211583020 ], @@ -44750,8 +44750,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 26298420 ], @@ -44800,8 +44800,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342579601 ], @@ -44854,8 +44854,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 6211583022 ], @@ -44908,8 +44908,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 1022749752 ], @@ -44946,8 +44946,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1877939975 ], @@ -44988,8 +44988,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 60197213 ], @@ -45030,8 +45030,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3193487666 ], @@ -45080,8 +45080,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5452444914 ], @@ -45122,8 +45122,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 682218116 ], @@ -45180,8 +45180,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2014304851 ], @@ -45218,8 +45218,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 342579609 ], @@ -45260,8 +45260,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437116 ], @@ -45318,8 +45318,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9319419267 ], @@ -45356,8 +45356,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237435070 ], @@ -45402,8 +45402,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5452456321 ], @@ -45436,8 +45436,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437070 ], @@ -45482,8 +45482,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 9319419293 ], @@ -45528,8 +45528,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5452444913 ], @@ -45570,8 +45570,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 26298432 ], @@ -45624,8 +45624,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2275824794 ], @@ -45674,8 +45674,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5452444908 ], @@ -45724,8 +45724,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1606819535 ], @@ -45774,8 +45774,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5452444895 ], @@ -45836,8 +45836,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6309354662 ], @@ -45886,8 +45886,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 26660391 ], @@ -45944,8 +45944,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 8174077586 ], @@ -45994,8 +45994,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5452456322 ], @@ -46040,8 +46040,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1675168026 ], @@ -46102,8 +46102,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 5452444896 ], @@ -46152,8 +46152,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437002 ], @@ -46190,8 +46190,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237436999 ], @@ -46244,8 +46244,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6309407701 ], @@ -46298,8 +46298,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 320943571 ], @@ -46352,8 +46352,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8740550412 ], @@ -46410,8 +46410,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437001 ], @@ -46448,8 +46448,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6309394776 ], @@ -46494,8 +46494,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378763 ], @@ -46532,8 +46532,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 342579596 ], @@ -46586,8 +46586,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237436998 ], @@ -46624,8 +46624,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6309407702 ], @@ -46678,8 +46678,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 5452444899 ], @@ -46724,8 +46724,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237435065 ], @@ -46778,8 +46778,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237436997 ], @@ -46824,8 +46824,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378764 ], @@ -46870,8 +46870,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342579521 ], @@ -46916,8 +46916,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237435066 ], @@ -46962,8 +46962,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378765 ], @@ -47008,8 +47008,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 643911 ], @@ -47054,8 +47054,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 320943615 ], @@ -47100,8 +47100,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5452444904 ], @@ -47154,8 +47154,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237436996 ], @@ -47200,8 +47200,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 659971029 ], @@ -47250,8 +47250,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342579517 ], @@ -47296,8 +47296,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 319558919 ], @@ -47346,8 +47346,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5452444905 ], @@ -47388,8 +47388,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 370191920 ], @@ -47426,8 +47426,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378766 ], @@ -47464,8 +47464,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6309354657 ], @@ -47726,8 +47726,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6216919223 ], @@ -47776,8 +47776,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237435071 ], @@ -47830,8 +47830,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4029217614 ], @@ -47868,8 +47868,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237435069 ], @@ -47918,8 +47918,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8312439326 ], @@ -47956,8 +47956,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8740550413 ], @@ -47994,8 +47994,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9319419273 ], @@ -48048,8 +48048,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9319419274 ], @@ -48090,8 +48090,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264671914 ], @@ -48140,8 +48140,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 301689312 ], @@ -48402,8 +48402,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6596024418 ], @@ -48456,8 +48456,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 320943606 ], @@ -48502,8 +48502,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8312439329 ], @@ -48540,8 +48540,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1877939939 ], @@ -48602,8 +48602,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5728993838 ], @@ -48644,8 +48644,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4833244389 ], @@ -48694,8 +48694,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9316506598 ], @@ -48748,8 +48748,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1877939942 ], @@ -48786,8 +48786,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378768 ], @@ -48840,8 +48840,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1877939944 ], @@ -48890,8 +48890,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6211583005 ], @@ -48932,8 +48932,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 643951 ], @@ -48986,8 +48986,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 301689321 ], @@ -49024,8 +49024,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1675168038 ], @@ -49066,8 +49066,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 60197210 ], @@ -49108,8 +49108,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3193487669 ], @@ -49146,8 +49146,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6665254450 ], @@ -49192,8 +49192,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 26661432 ], @@ -49254,8 +49254,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 643950 ], @@ -49304,8 +49304,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9316506597 ], @@ -49354,8 +49354,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6665254454 ], @@ -49408,8 +49408,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 643906 ], @@ -49454,8 +49454,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264670253 ], @@ -49492,8 +49492,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 1606959655 ], @@ -49538,8 +49538,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 1591373171 ], @@ -49596,8 +49596,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264670255 ], @@ -49650,8 +49650,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 320943617 ], @@ -49712,8 +49712,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 643914 ], @@ -49754,8 +49754,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7105816299 ], @@ -49792,8 +49792,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8312439373 ], @@ -49854,8 +49854,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5728993833 ], @@ -49896,8 +49896,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9823112 ], @@ -49954,8 +49954,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 1152092781 ], @@ -49996,8 +49996,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 26661455 ], @@ -50050,8 +50050,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437091 ], @@ -50088,8 +50088,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8990249596 ], @@ -50138,8 +50138,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 643852 ], @@ -50188,8 +50188,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 1152092841 ], @@ -50238,8 +50238,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437093 ], @@ -50284,8 +50284,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1591373154 ], @@ -50330,8 +50330,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 682264890 ], @@ -50376,8 +50376,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 26661443 ], @@ -50414,8 +50414,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6211583011 ], @@ -50464,8 +50464,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 320943620 ], @@ -50518,8 +50518,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6905278501 ], @@ -50560,8 +50560,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 26661442 ], @@ -50614,8 +50614,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 5728993836 ], @@ -50672,8 +50672,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 342628235 ], @@ -50734,8 +50734,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6740104094 ], @@ -50796,8 +50796,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1606959629 ], @@ -50862,8 +50862,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1591373175 ], @@ -50904,8 +50904,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3672602007 ], @@ -50950,8 +50950,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9258530363 ], @@ -50988,8 +50988,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6740071784 ], @@ -51026,8 +51026,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437092 ], @@ -51072,8 +51072,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6905278494 ], @@ -51134,8 +51134,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6935272506 ], @@ -51172,8 +51172,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6905278499 ], @@ -51226,8 +51226,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 26661426 ], @@ -51264,8 +51264,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6905278500 ], @@ -51302,8 +51302,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7237437098 ], @@ -51340,8 +51340,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437094 ], @@ -51398,8 +51398,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8990249594 ], @@ -51452,8 +51452,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 9740274255 ], @@ -51506,8 +51506,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6596024419 ], @@ -51564,8 +51564,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 5728993707 ], @@ -51630,8 +51630,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6596024424 ], @@ -51692,8 +51692,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6935272510 ], @@ -51730,8 +51730,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 7241259893 ], @@ -51768,8 +51768,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7237437096 ], @@ -51822,8 +51822,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1569783677 ], @@ -51860,8 +51860,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9316506599 ], @@ -51914,8 +51914,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6905278495 ], @@ -51960,8 +51960,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 26661454 ], @@ -52010,8 +52010,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9823132 ], @@ -52060,8 +52060,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6935272509 ], @@ -52118,8 +52118,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8990249593 ], @@ -52176,8 +52176,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1284137007 ], @@ -52226,8 +52226,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5728993834 ], @@ -52280,8 +52280,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378781 ], @@ -52330,8 +52330,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6211583009 ], @@ -52380,8 +52380,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9740274258 ], @@ -52426,8 +52426,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 1591373192 ], @@ -52464,8 +52464,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 7241259894 ], @@ -52506,8 +52506,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 358204009 ], @@ -52556,8 +52556,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6211583008 ], @@ -52606,8 +52606,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264670275 ], @@ -52644,8 +52644,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9740274265 ], @@ -52706,8 +52706,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 3381506666 ], @@ -52764,8 +52764,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 1284137095 ], @@ -52830,8 +52830,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6211582994 ], @@ -52884,8 +52884,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 6211583002 ], @@ -52930,8 +52930,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1296601330 ], @@ -52984,8 +52984,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1569761300 ], @@ -53022,8 +53022,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264670280 ], @@ -53084,8 +53084,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 615978081 ], @@ -53130,8 +53130,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6309354601 ], @@ -53184,8 +53184,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378757 ], @@ -53222,8 +53222,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1606959376 ], @@ -53268,8 +53268,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1591373207 ], @@ -53314,8 +53314,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6211583003 ], @@ -53360,8 +53360,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378782 ], @@ -53398,8 +53398,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6596024422 ], @@ -53468,8 +53468,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 1591373161 ], @@ -53506,8 +53506,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7105816301 ], @@ -53560,8 +53560,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3672604268 ], @@ -53598,8 +53598,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 26298445 ], @@ -53652,8 +53652,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4833244387 ], @@ -53698,8 +53698,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6211583004 ], @@ -53744,8 +53744,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1675168033 ], @@ -53782,8 +53782,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 26661419 ], @@ -53836,8 +53836,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3381506667 ], @@ -53874,8 +53874,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8674724110 ], @@ -53912,8 +53912,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 342579557 ], @@ -53950,8 +53950,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1606819521 ], @@ -54000,8 +54000,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3371780106 ], @@ -54038,8 +54038,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1020737673 ], @@ -54096,8 +54096,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 6211582997 ], @@ -54134,8 +54134,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5506378774 ], @@ -54184,8 +54184,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1591373158 ], @@ -54226,8 +54226,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1606959650 ], @@ -54284,8 +54284,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6596024421 ], @@ -54322,8 +54322,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9740274263 ], @@ -54368,8 +54368,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2165840661 ], @@ -54418,8 +54418,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342626328 ], @@ -54464,8 +54464,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378777 ], @@ -54506,8 +54506,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264670261 ], @@ -54552,8 +54552,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1152092910 ], @@ -54614,8 +54614,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6211582998 ], @@ -54660,8 +54660,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 342579559 ], @@ -54702,8 +54702,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378778 ], @@ -54744,8 +54744,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378793 ], @@ -54782,8 +54782,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 26298442 ], @@ -54820,8 +54820,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 1591164975 ], @@ -54870,8 +54870,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378779 ], @@ -54932,8 +54932,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 26661446 ], @@ -54978,8 +54978,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1675168031 ], @@ -55024,8 +55024,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6309354609 ], @@ -55066,8 +55066,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3381506663 ], @@ -55108,8 +55108,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1020737641 ], @@ -55154,8 +55154,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378761 ], @@ -55196,8 +55196,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6211583000 ], @@ -55234,8 +55234,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3381506664 ], @@ -55296,8 +55296,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 320943623 ], @@ -55346,8 +55346,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 659985459 ], @@ -55392,8 +55392,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6905250281 ], @@ -55434,8 +55434,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 358204012 ], @@ -55492,8 +55492,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 342529324 ], @@ -55530,8 +55530,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5851965030 ], @@ -55572,8 +55572,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6665254462 ], @@ -55626,8 +55626,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 26661452 ], @@ -55664,8 +55664,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264559102 ], @@ -55702,8 +55702,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 342529328 ], @@ -55752,8 +55752,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1591373193 ], @@ -55798,8 +55798,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1020737603 ], @@ -55852,8 +55852,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5506378752 ], @@ -55906,8 +55906,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3371780107 ], @@ -55956,8 +55956,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 320943624 ], @@ -56010,8 +56010,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5506378754 ], @@ -56056,8 +56056,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 8733041518 ], @@ -56102,8 +56102,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7692244824 ], @@ -56148,8 +56148,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6665254467 ], @@ -56198,8 +56198,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 8733041519 ], @@ -56248,8 +56248,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5506378775 ], @@ -56302,8 +56302,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6264559092 ], @@ -56340,8 +56340,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7241259895 ], @@ -56398,8 +56398,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 475070619 ], @@ -56448,8 +56448,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 475070618 ], @@ -56498,8 +56498,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 1020737577 ], @@ -56548,8 +56548,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 643851 ], @@ -56590,8 +56590,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 26298441 ], @@ -56628,8 +56628,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1675168030 ], @@ -56690,8 +56690,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5728993689 ], @@ -56744,8 +56744,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 342579565 ], @@ -56802,8 +56802,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 1020737601 ], @@ -56844,8 +56844,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8312439358 ], @@ -56886,8 +56886,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 3181227677 ], @@ -56924,8 +56924,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8660924478 ], @@ -56974,8 +56974,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1606819527 ], @@ -57024,8 +57024,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 26661450 ], @@ -57082,8 +57082,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 478743247 ], @@ -57120,8 +57120,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 4361246658 ], @@ -57166,8 +57166,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 5728993713 ], @@ -57208,8 +57208,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 26661448 ], @@ -57270,8 +57270,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4361246652 ], @@ -57320,8 +57320,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 394143337 ], @@ -57358,8 +57358,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8312439359 ], @@ -57396,8 +57396,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 4361246660 ], @@ -57434,8 +57434,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6584937059 ], @@ -57476,8 +57476,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2377604550 ], @@ -57522,8 +57522,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 3181227681 ], @@ -57560,8 +57560,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6584937067 ], @@ -57610,8 +57610,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8312439361 ], @@ -57656,8 +57656,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 394143340 ], @@ -57706,8 +57706,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4361248196 ], @@ -57748,8 +57748,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1296601030 ], @@ -57798,8 +57798,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4361246654 ], @@ -57836,8 +57836,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6665254468 ], @@ -57894,8 +57894,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8312439368 ], @@ -57932,8 +57932,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5506378742 ], @@ -57970,8 +57970,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5506378741 ], @@ -58016,8 +58016,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5506378693 ], @@ -58054,8 +58054,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5335915830 ], @@ -58092,8 +58092,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9892308679 ], @@ -58130,8 +58130,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6584937066 ], @@ -58168,8 +58168,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 762669698 ], @@ -58206,8 +58206,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4361246653 ], @@ -58244,8 +58244,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1591373213 ], @@ -58282,8 +58282,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 342620651 ], @@ -58320,8 +58320,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 475070635 ], @@ -58358,8 +58358,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9823073 ], @@ -58396,8 +58396,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1675168080 ], @@ -58434,8 +58434,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7692244823 ], @@ -58472,8 +58472,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 358204014 ], @@ -58510,8 +58510,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7261160050 ], @@ -58548,8 +58548,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 474665273 ], @@ -58586,8 +58586,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9823004 ], @@ -58624,8 +58624,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3174228063 ], @@ -58662,8 +58662,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3193487681 ], @@ -58700,8 +58700,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3193487683 ], @@ -58738,8 +58738,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7275677007 ], @@ -58776,8 +58776,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7275677007 ], @@ -58814,8 +58814,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 301688528 ], @@ -58852,8 +58852,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 301688528 ], @@ -58890,8 +58890,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 26109188 ], @@ -58928,8 +58928,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 26109188 ], @@ -58966,8 +58966,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4457095865 ], @@ -59004,8 +59004,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4457095865 ], @@ -59042,8 +59042,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 320951155 ], @@ -59080,8 +59080,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 26661423 ], @@ -59118,8 +59118,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 26661423 ], @@ -59156,8 +59156,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1277537020 ], @@ -59194,8 +59194,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1277537020 ], @@ -59232,8 +59232,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6264670282 ], @@ -59270,8 +59270,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6264670282 ], @@ -59308,8 +59308,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 26298440 ], @@ -59346,8 +59346,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8312439365 ], @@ -59384,8 +59384,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8312439365 ], @@ -59422,8 +59422,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5506378690 ], @@ -59460,8 +59460,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5506378690 ], @@ -59498,8 +59498,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5506378735 ], @@ -59536,8 +59536,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5506378735 ], @@ -59574,8 +59574,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1020737635 ], @@ -59612,8 +59612,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1020737635 ], diff --git a/tests/src/montlake_roundabout/geometry.json b/tests/src/montlake_roundabout/geometry.json index 8338a706..466293a6 100644 --- a/tests/src/montlake_roundabout/geometry.json +++ b/tests/src/montlake_roundabout/geometry.json @@ -275,8 +275,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53084804 ], @@ -313,8 +313,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53128042 ], @@ -351,8 +351,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9167872266 ], @@ -389,8 +389,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53096947 ], @@ -427,8 +427,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53084816 ], @@ -489,8 +489,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9167886997, 9167886986, diff --git a/tests/src/northgate_dual_carriageway/geometry.json b/tests/src/northgate_dual_carriageway/geometry.json index 8ebf13d9..073dfe43 100644 --- a/tests/src/northgate_dual_carriageway/geometry.json +++ b/tests/src/northgate_dual_carriageway/geometry.json @@ -7135,8 +7135,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8986752618 ], @@ -7173,8 +7173,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8986750916 ], @@ -7211,8 +7211,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7518081853 ], @@ -7249,8 +7249,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 944726788 ], @@ -7287,8 +7287,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7518081836 ], @@ -7325,8 +7325,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6224066906 ], @@ -7383,8 +7383,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 53029362 ], @@ -7429,8 +7429,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53234912 ], @@ -7467,8 +7467,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4787708489 ], @@ -7505,8 +7505,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 90251447 ], @@ -7547,8 +7547,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 95600603 ], @@ -7589,8 +7589,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4022851877 ], @@ -7627,8 +7627,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1778657883 ], @@ -7665,8 +7665,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3835317537 ], @@ -7703,8 +7703,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8986752620 ], @@ -7757,8 +7757,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788161 ], @@ -7795,8 +7795,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8986752621 ], @@ -7837,8 +7837,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 476254735 ], @@ -7875,8 +7875,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 476254637 ], @@ -7913,8 +7913,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788177 ], @@ -7951,8 +7951,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6503414647 ], @@ -7989,8 +7989,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3835317544 ], @@ -8027,8 +8027,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788178 ], @@ -8069,8 +8069,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1968559770 ], @@ -8123,8 +8123,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788179 ], @@ -8177,8 +8177,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788163 ], @@ -8215,8 +8215,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788164 ], @@ -8273,8 +8273,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 476254734 ], @@ -8311,8 +8311,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788165 ], @@ -8349,8 +8349,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788166 ], @@ -8387,8 +8387,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788167 ], @@ -8429,8 +8429,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53100766 ], @@ -8467,8 +8467,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788168 ], @@ -8505,8 +8505,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 53100765 ], @@ -8551,8 +8551,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 1968559768 ], @@ -8589,8 +8589,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788169 ], @@ -8627,8 +8627,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 666566888 ], @@ -8665,8 +8665,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9718788170 ], @@ -8723,8 +8723,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4554773505 ], @@ -8781,8 +8781,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4554773508 ], @@ -8839,8 +8839,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4554837508 ], @@ -8897,8 +8897,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4632418342 ], @@ -8935,8 +8935,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 910032566 ], @@ -8973,8 +8973,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9693399658 ], @@ -9019,8 +9019,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9693399659 ], @@ -9057,8 +9057,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9693399665 ], @@ -9095,8 +9095,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9693399661 ], @@ -9133,8 +9133,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9693399662 ], @@ -9171,8 +9171,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9693399664 ], @@ -9225,8 +9225,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9188152718 ], @@ -9283,8 +9283,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9812120063 ], @@ -9345,8 +9345,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9188152680 ], @@ -9383,8 +9383,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4272355596 ], @@ -9421,8 +9421,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9188152707 ], @@ -9463,8 +9463,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 9322923125 ], @@ -9501,8 +9501,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9384044289 ], @@ -9571,8 +9571,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9322923130 ], @@ -9609,8 +9609,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9772983389 ], @@ -9655,8 +9655,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 9772983384 ], @@ -9717,8 +9717,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 53211559 ], @@ -9775,8 +9775,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 476254742 ], @@ -9837,8 +9837,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 411602465 ], @@ -9875,8 +9875,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9384044300 ], @@ -9913,8 +9913,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9384044299 ], @@ -9951,8 +9951,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 471309345 ], @@ -10009,8 +10009,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9188152684 ], @@ -10055,8 +10055,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 95601224 ], @@ -10093,8 +10093,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 400473864 ], @@ -10147,8 +10147,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 1968559794 ], @@ -10205,8 +10205,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9734066143 ], @@ -10243,8 +10243,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4632418344 ], @@ -10281,8 +10281,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9384178855 ], @@ -10319,8 +10319,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9188152667 ], @@ -10357,8 +10357,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9188152666 ], @@ -10395,8 +10395,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9123420395 ], @@ -10433,8 +10433,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8975595220 ], @@ -10483,8 +10483,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8500822585 ], @@ -10521,8 +10521,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9772983386 ], @@ -10559,8 +10559,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9772983388 ], @@ -10597,8 +10597,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8500822586 ], @@ -10655,8 +10655,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4554843686 ], @@ -10709,8 +10709,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8500822634 ], @@ -10759,8 +10759,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2706302796 ], @@ -10817,8 +10817,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4554843688 ], @@ -10867,8 +10867,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8500809111 ], @@ -10921,8 +10921,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 411602471 ], @@ -10959,8 +10959,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9188152681 ], @@ -11017,8 +11017,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2706302803 ], @@ -11075,8 +11075,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8500809112 ], @@ -11129,8 +11129,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2706302792 ], @@ -11167,8 +11167,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8500822593 ], @@ -11205,8 +11205,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4787774424 ], @@ -11263,8 +11263,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8500822594 ], @@ -11301,8 +11301,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6139800717 ], @@ -11339,8 +11339,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2706302794 ], @@ -11381,8 +11381,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 1968559734 ], @@ -11439,8 +11439,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 476661976 ], @@ -11489,8 +11489,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 476661975 ], @@ -11547,8 +11547,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1395426463 ], @@ -11605,8 +11605,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9127145511 ], @@ -11663,8 +11663,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9123420400 ], @@ -11701,8 +11701,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9725987903 ], @@ -11739,8 +11739,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4723314713 ], @@ -11793,8 +11793,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9725987906 ], @@ -11839,8 +11839,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9384317428 ], @@ -11885,8 +11885,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4789250352 ], @@ -11923,8 +11923,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9725719359 ], @@ -11961,8 +11961,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1111800655 ], @@ -12015,8 +12015,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2706302812 ], @@ -12057,8 +12057,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9725987904 ], @@ -12095,8 +12095,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 476714811 ], @@ -12145,8 +12145,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 411602472 ], @@ -12203,8 +12203,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4554843678 ], @@ -12261,8 +12261,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 476715244 ], @@ -12319,8 +12319,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9812120018 ], @@ -12369,8 +12369,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2706302814 ], @@ -12407,8 +12407,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4787774425 ], @@ -12453,8 +12453,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 479716854 ], @@ -12499,8 +12499,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 479716851 ], @@ -12553,8 +12553,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 479716858 ], @@ -12603,8 +12603,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 476715215 ], @@ -12645,8 +12645,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 476715211 ], @@ -12683,8 +12683,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2706302783 ], @@ -12721,8 +12721,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2706302805 ], @@ -12759,8 +12759,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4787774428 ], @@ -12809,8 +12809,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 9198107249 ], @@ -12883,8 +12883,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 7625387504, 53092587 @@ -12930,8 +12930,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 4787774433 ], @@ -12968,8 +12968,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53092591 ], @@ -13022,8 +13022,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 7625387502 ], @@ -13068,8 +13068,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7625387501 ], @@ -13106,8 +13106,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 3409784125 ], @@ -13148,8 +13148,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1905102152 ], @@ -13186,8 +13186,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4272355594 ], @@ -13232,8 +13232,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 53092589 ], @@ -13274,8 +13274,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 476715048 ], @@ -13316,8 +13316,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 9198107248 ], @@ -13354,8 +13354,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4787774427 ], @@ -13408,8 +13408,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4022851873 ], @@ -13450,8 +13450,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1905102153 ], @@ -13488,8 +13488,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4787774426 ], @@ -13526,8 +13526,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9754620676 ], @@ -13576,8 +13576,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 3711400490 ], @@ -13614,8 +13614,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096640 ], @@ -13652,8 +13652,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7518081809 ], @@ -13690,8 +13690,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2542516444 ], @@ -13744,8 +13744,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096644 ], @@ -13782,8 +13782,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096645 ], @@ -13820,8 +13820,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5420650496 ], @@ -13858,8 +13858,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096631 ], @@ -13896,8 +13896,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096630 ], @@ -13934,8 +13934,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096634 ], @@ -13972,8 +13972,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096633 ], @@ -14018,8 +14018,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096638 ], @@ -14056,8 +14056,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096637 ], @@ -14094,8 +14094,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096636 ], @@ -14140,8 +14140,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9801096635 ], @@ -14186,8 +14186,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4787774436 ], @@ -14236,8 +14236,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 3711400491 ], @@ -14274,8 +14274,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9687585569 ], @@ -14320,8 +14320,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9687585570 ], @@ -14358,8 +14358,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9687585571 ], @@ -14396,8 +14396,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9687585572 ], @@ -14434,8 +14434,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9800404631 ], @@ -14472,8 +14472,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9800403235 ], @@ -14510,8 +14510,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9800404629 ], @@ -14548,8 +14548,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5420650298 ], @@ -14586,8 +14586,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9800403239 ], @@ -14624,8 +14624,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4787774435 ], @@ -14662,8 +14662,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5420650779 ], @@ -14700,8 +14700,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 8145533038 ], @@ -14738,8 +14738,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 95600097 ], @@ -14776,8 +14776,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 95600097 ], diff --git a/tests/src/oneway_loop/geometry.json b/tests/src/oneway_loop/geometry.json index 5e1fd782..a6e30516 100644 --- a/tests/src/oneway_loop/geometry.json +++ b/tests/src/oneway_loop/geometry.json @@ -1809,8 +1809,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1080429989 ], @@ -1847,8 +1847,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1080430042 ], @@ -1885,8 +1885,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3080103386 ], @@ -1935,8 +1935,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1080429864 ], @@ -1997,8 +1997,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 25496666 ], @@ -2051,8 +2051,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 25496667 ], @@ -2109,8 +2109,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9586144486 ], @@ -2167,8 +2167,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9586144488 ], @@ -2213,8 +2213,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1080429785 ], @@ -2255,8 +2255,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1080429761 ], @@ -2301,8 +2301,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1080429836 ], @@ -2359,8 +2359,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9568915258 ], @@ -2397,8 +2397,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9568915259 ], @@ -2455,8 +2455,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9568915241 ], @@ -2505,8 +2505,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9568915256 ], @@ -2551,8 +2551,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9568915240 ], @@ -2605,8 +2605,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9568915239 ], @@ -2655,8 +2655,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9586144492 ], @@ -2709,8 +2709,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1701265003 ], @@ -2755,8 +2755,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 25496664 ], @@ -2801,8 +2801,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1701265007 ], @@ -2839,8 +2839,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1701264964 ], @@ -2889,8 +2889,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 25496663 ], @@ -2927,8 +2927,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 25496662 ], @@ -2969,8 +2969,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 1701265019 ], @@ -3007,8 +3007,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1668102671 ], @@ -3045,8 +3045,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7845046175 ], @@ -3083,8 +3083,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7845046177 ], @@ -3121,8 +3121,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1249482198 ], @@ -3159,8 +3159,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1933344140 ], @@ -3197,8 +3197,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1737173631 ], diff --git a/tests/src/perth_peanut_roundabout/geometry.json b/tests/src/perth_peanut_roundabout/geometry.json index 0a719aea..a09f9d1b 100644 --- a/tests/src/perth_peanut_roundabout/geometry.json +++ b/tests/src/perth_peanut_roundabout/geometry.json @@ -1757,8 +1757,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6207591823 ], @@ -1795,8 +1795,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5548292729 ], @@ -1833,8 +1833,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2951226263 ], @@ -1879,8 +1879,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 367714943 ], @@ -1917,8 +1917,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 367715386 ], @@ -1955,8 +1955,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 367715438 ], @@ -1997,8 +1997,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5548292617 ], @@ -2047,8 +2047,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5082186796 ], @@ -2093,8 +2093,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 367716964 ], @@ -2135,8 +2135,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 585206954 ], @@ -2177,8 +2177,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 5082188321 ], @@ -2215,8 +2215,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5082186794 ], @@ -2253,8 +2253,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 585206949 ], @@ -2303,8 +2303,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 585206960 ], @@ -2349,8 +2349,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 61067223 ], @@ -2403,8 +2403,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 585206956 ], @@ -2449,8 +2449,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 585206952 ], @@ -2499,8 +2499,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6257803111 ], @@ -2553,8 +2553,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6257803113 ], @@ -2599,8 +2599,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 585206951 ], @@ -2649,8 +2649,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 585206957 ], @@ -2691,8 +2691,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 6257803115 ], @@ -2733,8 +2733,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 5548292618 ], @@ -2783,8 +2783,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 569953961 ], @@ -2829,8 +2829,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 69038058 ], @@ -2875,8 +2875,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 69038027 ], @@ -2921,8 +2921,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 585206961 ], @@ -2971,8 +2971,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6265225781 ], @@ -3025,8 +3025,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5082188179 ], @@ -3063,8 +3063,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5082188178 ], @@ -3101,8 +3101,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 59750386 ], @@ -3139,8 +3139,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6265225783 ], @@ -3177,8 +3177,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 569953700 ], @@ -3215,8 +3215,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6261661812 ], @@ -3253,8 +3253,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 69037929 ], @@ -3291,8 +3291,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 69038540 ], @@ -3329,8 +3329,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3959658626 ], @@ -3367,8 +3367,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3959658626 ], diff --git a/tests/src/perth_stretched_lights/geometry.json b/tests/src/perth_stretched_lights/geometry.json index 2a8517f0..097dab1b 100644 --- a/tests/src/perth_stretched_lights/geometry.json +++ b/tests/src/perth_stretched_lights/geometry.json @@ -357,8 +357,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6207587996 ], @@ -395,8 +395,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 367715249 ], @@ -441,8 +441,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 367715264 ], @@ -487,8 +487,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 33397360 ], @@ -533,8 +533,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 6257659836 ], @@ -575,8 +575,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 6257659835 ], @@ -613,8 +613,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 367715398 ], @@ -651,8 +651,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 367715375 ], diff --git a/tests/src/roosevelt_cycletrack/geometry.json b/tests/src/roosevelt_cycletrack/geometry.json index 9921d132..caabe725 100644 --- a/tests/src/roosevelt_cycletrack/geometry.json +++ b/tests/src/roosevelt_cycletrack/geometry.json @@ -4773,8 +4773,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 53252992 ], @@ -4811,8 +4811,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 3318126091 ], @@ -4849,8 +4849,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 53102768 ], @@ -4887,8 +4887,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 53176049 ], @@ -4925,8 +4925,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9150316167 ], @@ -4963,8 +4963,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9150316143 ], @@ -5001,8 +5001,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 752191853 ], @@ -5039,8 +5039,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 53070289 ], @@ -5077,8 +5077,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 752191859 ], @@ -5115,8 +5115,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9153364304 ], @@ -5153,8 +5153,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9150316190 ], @@ -5191,8 +5191,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 3570362036 ], @@ -5229,8 +5229,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 53079356 ], @@ -5267,8 +5267,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6338026453 ], @@ -5321,8 +5321,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7797741149 ], @@ -5359,8 +5359,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4694405879 ], @@ -5397,8 +5397,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6338033838 ], @@ -5435,8 +5435,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4829706959 ], @@ -5473,8 +5473,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4829706954 ], @@ -5511,8 +5511,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4694384138 ], @@ -5549,8 +5549,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4829706956 ], @@ -5587,8 +5587,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4831220201 ], @@ -5625,8 +5625,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4829706955 ], @@ -5663,8 +5663,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53108152 ], @@ -5701,8 +5701,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53079357 ], @@ -5755,8 +5755,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 53162654 ], @@ -5797,8 +5797,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53242039 ], @@ -5843,8 +5843,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1099460970 ], @@ -5881,8 +5881,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4831220179 ], @@ -5919,8 +5919,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4831220200 ], @@ -5965,8 +5965,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8318893544 ], @@ -6003,8 +6003,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3976726723 ], @@ -6053,8 +6053,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8318893546 ], @@ -6103,8 +6103,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5908863566 ], @@ -6145,8 +6145,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5908851932 ], @@ -6175,8 +6175,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3976726724 ], @@ -6209,8 +6209,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5908851924 ], @@ -6255,8 +6255,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5908851929 ], @@ -6293,8 +6293,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4531063551 ], @@ -6331,8 +6331,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3976726725 ], @@ -6385,8 +6385,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5908863568 ], @@ -6435,8 +6435,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8318893551 ], @@ -6473,8 +6473,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5908863567 ], @@ -6511,8 +6511,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9451600301 ], @@ -6549,8 +6549,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3003528165 ], @@ -6619,8 +6619,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8428577667 ], @@ -6661,8 +6661,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 4694379084 ], @@ -6699,8 +6699,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "TrafficSignal", + "intersection_type": "Terminus", "osm_node_ids": [ 53149329 ], @@ -6737,8 +6737,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5908851926 ], @@ -6787,8 +6787,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 4583297951 ], @@ -6837,8 +6837,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5908863569 ], @@ -6887,8 +6887,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5674754357 ], @@ -6941,8 +6941,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 53079358 ], @@ -6987,8 +6987,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5674754355 ], @@ -7025,8 +7025,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5154286399 ], @@ -7079,8 +7079,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5452243878 ], @@ -7137,8 +7137,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4384739635 ], @@ -7195,8 +7195,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5443485497 ], @@ -7249,8 +7249,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4384739632 ], @@ -7295,8 +7295,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 59711142 ], @@ -7333,8 +7333,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4272380198 ], @@ -7387,8 +7387,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4384739631 ], @@ -7441,8 +7441,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4384739623 ], @@ -7495,8 +7495,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4384739630 ], @@ -7549,8 +7549,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4384739627 ], @@ -7603,8 +7603,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4384739624 ], @@ -7641,8 +7641,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6697419470 ], @@ -7691,8 +7691,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5443485520 ], @@ -7741,8 +7741,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5443485515 ], @@ -7787,8 +7787,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 53222750 ], @@ -7837,8 +7837,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5443485510 ], @@ -7887,8 +7887,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 7152797295 ], @@ -7937,8 +7937,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 53162656 ], @@ -7975,8 +7975,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3003528164 ], @@ -8025,8 +8025,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6040524426 ], @@ -8063,8 +8063,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53097833 ], @@ -8109,8 +8109,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53231060 ], @@ -8155,8 +8155,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 53108154 ], @@ -8205,8 +8205,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 53190558 ], @@ -8251,8 +8251,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 59713117 ], @@ -8297,8 +8297,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 53231061 ], @@ -8347,8 +8347,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 53231062 ], @@ -8397,8 +8397,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 59713137 ], @@ -8443,8 +8443,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 53102770 ], @@ -8481,8 +8481,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 4214025137 ], @@ -8519,8 +8519,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 59713148 ], @@ -8569,8 +8569,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5443485514 ], @@ -8619,8 +8619,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 59713145 ], @@ -8669,8 +8669,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9729815848 ], @@ -8707,8 +8707,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 59713144 ], @@ -8745,8 +8745,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7152797297 ], @@ -8783,8 +8783,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9729815850 ], @@ -8821,8 +8821,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "TrafficSignal", + "intersection_type": "Terminus", "osm_node_ids": [ 53222751 ], @@ -8859,8 +8859,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "TrafficSignal", + "intersection_type": "Terminus", "osm_node_ids": [ 53162658 ], @@ -8897,8 +8897,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 59596700 ], @@ -8935,8 +8935,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9152495564 ], @@ -8973,8 +8973,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 9152495542 ], @@ -9011,8 +9011,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9152462287 ], @@ -9065,8 +9065,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9153364274, 9153364275, @@ -9139,8 +9139,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9153364295, 9153364282, diff --git a/tests/src/seattle_slip_lane/geometry.json b/tests/src/seattle_slip_lane/geometry.json index ad1dcba6..24a15f31 100644 --- a/tests/src/seattle_slip_lane/geometry.json +++ b/tests/src/seattle_slip_lane/geometry.json @@ -1822,8 +1822,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53079356 ], @@ -1872,8 +1872,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8318893544 ], @@ -1922,8 +1922,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8318893546 ], @@ -1960,8 +1960,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4531063551 ], @@ -2010,8 +2010,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8318893551 ], @@ -2048,8 +2048,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9451600301 ], @@ -2118,8 +2118,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8428577667 ], @@ -2160,8 +2160,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 4694379084 ], @@ -2198,8 +2198,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53149329 ], @@ -2248,8 +2248,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 4583297951 ], @@ -2298,8 +2298,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5674754357 ], @@ -2352,8 +2352,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 53079358 ], @@ -2398,8 +2398,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5674754355 ], @@ -2444,8 +2444,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 59711142 ], @@ -2482,8 +2482,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 4272380198 ], @@ -2520,8 +2520,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6697419470 ], @@ -2558,8 +2558,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53162656 ], @@ -2596,8 +2596,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 59713148 ], @@ -2646,8 +2646,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 59713145 ], @@ -2696,8 +2696,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9729815848 ], @@ -2750,8 +2750,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6886226579 ], @@ -2804,8 +2804,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6886226578 ], @@ -2842,8 +2842,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6900725446 ], @@ -2900,8 +2900,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9729815854 ], @@ -2950,8 +2950,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 59713144 ], @@ -2988,8 +2988,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 59713140 ], @@ -3042,8 +3042,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9729815853 ], @@ -3112,8 +3112,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9729815852 ], @@ -3162,8 +3162,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9729815851 ], @@ -3212,8 +3212,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9729815856 ], @@ -3266,8 +3266,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 9729815855 ], @@ -3304,8 +3304,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6886226581 ], @@ -3342,8 +3342,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6886226576 ], @@ -3380,8 +3380,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9729815850 ], @@ -3418,8 +3418,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53079359 ], diff --git a/tests/src/seattle_triangle/geometry.json b/tests/src/seattle_triangle/geometry.json index 6c26aa7b..5aed0383 100644 --- a/tests/src/seattle_triangle/geometry.json +++ b/tests/src/seattle_triangle/geometry.json @@ -1019,8 +1019,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53086674 ], @@ -1057,8 +1057,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53220997 ], @@ -1099,8 +1099,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8780140700 ], @@ -1137,8 +1137,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021891 ], @@ -1175,8 +1175,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53070509 ], @@ -1213,8 +1213,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021892 ], @@ -1251,8 +1251,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021890 ], @@ -1289,8 +1289,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021889 ], @@ -1327,8 +1327,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021905 ], @@ -1365,8 +1365,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021904 ], @@ -1403,8 +1403,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021903 ], @@ -1441,8 +1441,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021902 ], @@ -1487,8 +1487,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8780140703 ], @@ -1541,8 +1541,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 1884382823 ], @@ -1579,8 +1579,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021893 ], @@ -1629,8 +1629,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 1884382824 ], @@ -1667,8 +1667,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 7083431696 ], @@ -1705,8 +1705,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021906 ], @@ -1743,8 +1743,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4272306563 ], @@ -1781,8 +1781,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021896 ], @@ -1819,8 +1819,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5768923253 ], @@ -1857,8 +1857,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021895 ], @@ -1895,8 +1895,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021878 ], @@ -1945,8 +1945,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 775936191 ], @@ -1983,8 +1983,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021901 ], @@ -2041,8 +2041,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 8780140709 ], @@ -2079,8 +2079,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021897 ], @@ -2117,8 +2117,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021899 ], @@ -2155,8 +2155,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021900 ], @@ -2193,8 +2193,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5772021898 ], @@ -2231,8 +2231,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53070507 ], @@ -2269,8 +2269,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53148299 ], @@ -2307,8 +2307,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53148299 ], diff --git a/tests/src/service_road_loop/geometry.json b/tests/src/service_road_loop/geometry.json index 4d6e12e0..572d3e4a 100644 --- a/tests/src/service_road_loop/geometry.json +++ b/tests/src/service_road_loop/geometry.json @@ -1226,8 +1226,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3606095831 ], @@ -1264,8 +1264,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 30984483 ], @@ -1302,8 +1302,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3710247249 ], @@ -1352,8 +1352,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3710247247 ], @@ -1402,8 +1402,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3710247242 ], @@ -1440,8 +1440,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2933464148 ], @@ -1490,8 +1490,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3710247245 ], @@ -1536,8 +1536,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5908769456 ], @@ -1574,8 +1574,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5908769458 ], @@ -1624,8 +1624,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 30984582 ], @@ -1674,8 +1674,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6036958563 ], @@ -1728,8 +1728,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6036958646 ], @@ -1770,8 +1770,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6036958564 ], @@ -1812,8 +1812,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6036958644 ], @@ -1878,8 +1878,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6036958569 ], @@ -1936,8 +1936,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6036958633 ], @@ -1990,8 +1990,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6036958634 ], @@ -2044,8 +2044,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6036958616 ], @@ -2106,8 +2106,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6036958639 ], @@ -2152,8 +2152,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6036958615 ], @@ -2190,8 +2190,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6036958542 ], @@ -2228,8 +2228,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 358460198 ], @@ -2266,8 +2266,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6036958484 ], @@ -2304,8 +2304,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6036958484 ], @@ -2342,8 +2342,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6036958604 ], @@ -2380,8 +2380,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6036958604 ], diff --git a/tests/src/st_georges_cycletrack/geometry.json b/tests/src/st_georges_cycletrack/geometry.json index a6af8f6d..71a5f564 100644 --- a/tests/src/st_georges_cycletrack/geometry.json +++ b/tests/src/st_georges_cycletrack/geometry.json @@ -6538,8 +6538,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 158863955 ], @@ -6580,8 +6580,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 3314367620 ], @@ -6618,8 +6618,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 96620001 ], @@ -6660,8 +6660,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 3314367623 ], @@ -6706,8 +6706,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022813716 ], @@ -6756,8 +6756,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2059768444 ], @@ -6806,8 +6806,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 6022813718 ], @@ -6844,8 +6844,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2932500936 ], @@ -6882,8 +6882,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1819350081 ], @@ -6920,8 +6920,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022813723 ], @@ -6958,8 +6958,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1819350182 ], @@ -7000,8 +7000,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 2932500935 ], @@ -7038,8 +7038,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022823874 ], @@ -7076,8 +7076,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3328901241 ], @@ -7114,8 +7114,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8947442148 ], @@ -7156,8 +7156,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022823875 ], @@ -7194,8 +7194,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022813725 ], @@ -7232,8 +7232,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022813726 ], @@ -7270,8 +7270,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 61334096 ], @@ -7320,8 +7320,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6231431196 ], @@ -7386,8 +7386,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1819350194 ], @@ -7424,8 +7424,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6231431191 ], @@ -7490,8 +7490,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 364274 ], @@ -7528,8 +7528,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6231431193 ], @@ -7578,8 +7578,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022813734 ], @@ -7628,8 +7628,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1819350153 ], @@ -7682,8 +7682,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1819350128 ], @@ -7728,8 +7728,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1819350092 ], @@ -7778,8 +7778,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1819350083 ], @@ -7828,8 +7828,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1819350122 ], @@ -7866,8 +7866,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8936997805 ], @@ -7912,8 +7912,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1819350066 ], @@ -7950,8 +7950,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022813729 ], @@ -7988,8 +7988,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022813715 ], @@ -8026,8 +8026,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022813731 ], @@ -8076,8 +8076,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1819350134 ], @@ -8122,8 +8122,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2932500926 ], @@ -8168,8 +8168,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 6022813720 ], @@ -8206,8 +8206,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8947442152 ], @@ -8252,8 +8252,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2932500919 ], @@ -8302,8 +8302,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3799274019 ], @@ -8340,8 +8340,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6022819613 ], @@ -8378,8 +8378,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2059768440 ], @@ -8436,8 +8436,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3374579450 ], @@ -8486,8 +8486,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 61334104 ], @@ -8536,8 +8536,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 61334099 ], @@ -8586,8 +8586,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4169653680 ], @@ -8624,8 +8624,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 5425497684 ], @@ -8666,8 +8666,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8936977833 ], @@ -8716,8 +8716,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8936977834 ], @@ -8758,8 +8758,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 264341506 ], @@ -8808,8 +8808,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3799274011 ], @@ -8858,8 +8858,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 264790813 ], @@ -8896,8 +8896,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 25472582 ], @@ -8950,8 +8950,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 25472584 ], @@ -9000,8 +9000,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3799274013 ], @@ -9046,8 +9046,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 96619956 ], @@ -9092,8 +9092,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4156272585 ], @@ -9130,8 +9130,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 2467649381 ], @@ -9184,8 +9184,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6491174860 ], @@ -9238,8 +9238,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2467649384 ], @@ -9284,8 +9284,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3799274014 ], @@ -9330,8 +9330,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 4156273389 ], @@ -9368,8 +9368,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 96619946 ], @@ -9418,8 +9418,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 3799274009 ], @@ -9456,8 +9456,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8947417390 ], @@ -9494,8 +9494,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8947417389 ], @@ -9528,8 +9528,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 96619957 ], @@ -9566,8 +9566,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 6491174866 ], @@ -9612,8 +9612,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 265241531 ], @@ -9670,8 +9670,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 3799274008 ], @@ -9720,8 +9720,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 25472725 ], @@ -9774,8 +9774,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136430541 ], @@ -9812,8 +9812,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136430525 ], @@ -9862,8 +9862,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3799274015 ], @@ -9904,8 +9904,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 265241535 ], @@ -9942,8 +9942,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 25472731 ], @@ -9980,8 +9980,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 730857210 ], @@ -10018,8 +10018,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 8942217485 ], @@ -10064,8 +10064,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 96619952 ], @@ -10106,8 +10106,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3799274007 ], @@ -10156,8 +10156,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 1186174556 ], @@ -10194,8 +10194,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 1186174609 ], @@ -10236,8 +10236,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 287248398 ], @@ -10282,8 +10282,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4156272581 ], @@ -10336,8 +10336,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 9136430547 ], @@ -10374,8 +10374,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6970648945 ], @@ -10412,8 +10412,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6970648941 ], @@ -10450,8 +10450,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 25472738 ], @@ -10492,8 +10492,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 25472957 ], @@ -10538,8 +10538,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2464418698 ], @@ -10588,8 +10588,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 7728093176 ], @@ -10646,8 +10646,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 25472956 ], @@ -10692,8 +10692,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6970648943 ], @@ -10742,8 +10742,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4156273393 ], @@ -10780,8 +10780,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 264341502 ], @@ -10818,8 +10818,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7728093180 ], @@ -10856,8 +10856,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6502835823 ], @@ -10894,8 +10894,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6502835826 ], @@ -10936,8 +10936,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4169653677 ], @@ -10974,8 +10974,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6502835822 ], @@ -11012,8 +11012,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 4169653676 ], @@ -11062,8 +11062,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 3890206825 ], @@ -11100,8 +11100,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 6502835827 ], @@ -11150,8 +11150,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3890206820 ], @@ -11196,8 +11196,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2180693485 ], @@ -11238,8 +11238,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 29158929 ], @@ -11288,8 +11288,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 2180693488 ], @@ -11334,8 +11334,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3890206822 ], @@ -11372,8 +11372,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 4175070882 ], @@ -11410,8 +11410,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "TrafficSignal", + "intersection_type": "Terminus", "osm_node_ids": [ 3881302130 ], @@ -11448,8 +11448,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6896299617 ], @@ -11494,8 +11494,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 3874597627 ], @@ -11560,8 +11560,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6329043358 ], @@ -11598,8 +11598,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8942303836 ], @@ -11636,8 +11636,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 6329043357 ], @@ -11690,8 +11690,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 3890206831 ], @@ -11728,8 +11728,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8942303831 ], @@ -11766,8 +11766,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "TrafficSignal", + "intersection_type": "Connection", "osm_node_ids": [ 7004860404 ], @@ -11804,8 +11804,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 3890206821 ], @@ -11842,8 +11842,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4421018012 ], @@ -11884,8 +11884,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 3874597641 ], @@ -11946,8 +11946,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 8942303872 ], @@ -11988,8 +11988,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "TrafficSignal", + "intersection_type": "Terminus", "osm_node_ids": [ 8952790002 ], @@ -12026,8 +12026,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 3071561909 ], diff --git a/tests/src/taipei/geometry.json b/tests/src/taipei/geometry.json index 66cbd20c..3241d3f8 100644 --- a/tests/src/taipei/geometry.json +++ b/tests/src/taipei/geometry.json @@ -2698,8 +2698,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9260164952 ], @@ -2736,8 +2736,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2137955716 ], @@ -2774,8 +2774,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2137955730 ], @@ -2812,8 +2812,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 662161237 ], @@ -2850,8 +2850,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 6982946638 ], @@ -2888,8 +2888,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7702095012 ], @@ -2934,8 +2934,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 6982946642 ], @@ -2980,8 +2980,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2137955743 ], @@ -3038,8 +3038,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 2137955862 ], @@ -3076,8 +3076,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 3143261407 ], @@ -3114,8 +3114,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 656416180 ], @@ -3152,8 +3152,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2137955866 ], @@ -3190,8 +3190,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 656416259 ], @@ -3228,8 +3228,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 656416084 ], @@ -3266,8 +3266,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 656416199 ], @@ -3324,8 +3324,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2137955785 ], @@ -3390,8 +3390,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4568593105 ], @@ -3432,8 +3432,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 2137955831 ], @@ -3470,8 +3470,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4568593109 ], @@ -3508,8 +3508,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5262459478 ], @@ -3566,8 +3566,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4568589283 ], @@ -3624,8 +3624,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 656416177 ], @@ -3674,8 +3674,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 656416176 ], @@ -3720,8 +3720,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 662161241 ], @@ -3778,8 +3778,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 656416254 ], @@ -3836,8 +3836,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 656416249 ], @@ -3886,8 +3886,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 656415898 ], @@ -3932,8 +3932,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 656416087 ], @@ -3970,8 +3970,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 656415970 ], @@ -4024,8 +4024,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 656416158 ], @@ -4062,8 +4062,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 662161208 ], @@ -4100,8 +4100,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4568593157 ], @@ -4166,8 +4166,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 656416189 ], @@ -4228,8 +4228,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 656416186 ], @@ -4266,8 +4266,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4498536440 ], @@ -4312,8 +4312,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 662161980 ], @@ -4350,8 +4350,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4498536439 ], @@ -4400,8 +4400,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 662161955 ], @@ -4470,8 +4470,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 662161961 ], @@ -4532,8 +4532,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 2637893915 ], @@ -4570,8 +4570,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 662161969 ], @@ -4624,8 +4624,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 656415900 ], @@ -4670,8 +4670,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 656415914 ], @@ -4716,8 +4716,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 656415974 ], @@ -4762,8 +4762,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Diverge", "control": "TrafficSignal", + "intersection_type": "Fork", "osm_node_ids": [ 662161891 ], @@ -4832,8 +4832,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 662161900 ], @@ -4894,8 +4894,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 662161907 ], @@ -4932,8 +4932,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 662161928 ], @@ -4970,8 +4970,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 662161824 ], @@ -5008,8 +5008,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 662161764 ], @@ -5046,8 +5046,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 656415902 ], @@ -5084,8 +5084,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 656415916 ], @@ -5122,8 +5122,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 656416271 ], @@ -5160,8 +5160,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4961152331 ], @@ -5198,8 +5198,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9735064047 ], @@ -5236,8 +5236,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9631718933 ], @@ -5274,8 +5274,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 662162162 ], @@ -5312,8 +5312,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 662162162 ], diff --git a/tests/src/tempe_light_rail/geometry.json b/tests/src/tempe_light_rail/geometry.json index 0590acc1..a1e00724 100644 --- a/tests/src/tempe_light_rail/geometry.json +++ b/tests/src/tempe_light_rail/geometry.json @@ -711,8 +711,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1501648702 ], @@ -749,8 +749,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 330686495 ], @@ -787,8 +787,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1501648856 ], @@ -825,8 +825,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4346571426 ], @@ -863,8 +863,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4347879967 ], @@ -901,8 +901,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4347879970 ], @@ -951,8 +951,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 7509154720 ], @@ -1045,8 +1045,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 3756578325, 1501648667, @@ -1086,8 +1086,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4347879973 ], @@ -1124,8 +1124,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7890703228 ], @@ -1162,8 +1162,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 1501648604 ], @@ -1208,8 +1208,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 7509154723 ], @@ -1246,8 +1246,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4347879968 ], @@ -1284,8 +1284,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1501648599 ], @@ -1322,8 +1322,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2819230448 ], @@ -1360,8 +1360,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 1501648738 ], @@ -1398,8 +1398,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 41624283 ], diff --git a/tests/src/tempe_split/geometry.json b/tests/src/tempe_split/geometry.json index 635cf9f1..42994b39 100644 --- a/tests/src/tempe_split/geometry.json +++ b/tests/src/tempe_split/geometry.json @@ -1353,8 +1353,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4346605154 ], @@ -1391,8 +1391,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4346605155 ], @@ -1429,8 +1429,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5986666325 ], @@ -1471,8 +1471,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4346605156 ], @@ -1521,8 +1521,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6672814189 ], @@ -1559,8 +1559,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 6672805084 ], @@ -1597,8 +1597,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4346581618 ], @@ -1635,8 +1635,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 41662587 ], @@ -1673,8 +1673,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9643219691 ], @@ -1711,8 +1711,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4346586751 ], @@ -1785,8 +1785,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "TrafficSignal", + "intersection_type": "Intersection", "osm_node_ids": [ 2941419917, 41662590 @@ -1824,8 +1824,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4346577523 ], @@ -1862,8 +1862,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4346577522 ], @@ -1916,8 +1916,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2860653268 ], @@ -1954,8 +1954,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5415311167 ], @@ -2012,8 +2012,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 2239876836 ], @@ -2066,8 +2066,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Uncontested", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 5415307199 ], @@ -2104,8 +2104,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5707494418 ], @@ -2158,8 +2158,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 7121900772 ], @@ -2224,8 +2224,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 5717678154 ], @@ -2274,8 +2274,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MultiConnection Merge", "control": "StopSign", + "intersection_type": "Fork", "osm_node_ids": [ 5707494413 ], @@ -2332,8 +2332,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 6672807663 ], @@ -2370,8 +2370,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 8482792367 ], @@ -2408,8 +2408,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Connection", "control": "StopSign", + "intersection_type": "Connection", "osm_node_ids": [ 4346605157 ], @@ -2446,8 +2446,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 9530050516 ], @@ -2484,8 +2484,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 6672807665 ], @@ -2522,8 +2522,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 5415316931 ], @@ -2560,8 +2560,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2065989266 ], @@ -2598,8 +2598,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 2916726375 ], @@ -2636,8 +2636,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7121900770 ], @@ -2674,8 +2674,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 7121900770 ], diff --git a/tests/src/tiny_loop/geometry.json b/tests/src/tiny_loop/geometry.json index 1c20474d..181db9a4 100644 --- a/tests/src/tiny_loop/geometry.json +++ b/tests/src/tiny_loop/geometry.json @@ -653,8 +653,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 233086880 ], @@ -695,8 +695,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 233087070 ], @@ -741,8 +741,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 233087064 ], @@ -779,8 +779,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 233170569 ], @@ -825,8 +825,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 233087044 ], @@ -875,8 +875,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 233087041 ], @@ -913,8 +913,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 233138961 ], @@ -951,8 +951,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 233086977 ], From aca302b02ac342b3de3143781b59436ad1d71631 Mon Sep 17 00:00:00 2001 From: Ben Ritter Date: Tue, 22 Nov 2022 18:39:59 +0800 Subject: [PATCH 2/8] Improve description of the overall model --- docs/how_it_works.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/how_it_works.md b/docs/how_it_works.md index 3847a99c..0dbb35aa 100644 --- a/docs/how_it_works.md +++ b/docs/how_it_works.md @@ -4,9 +4,7 @@ As of November 2022, and probably incomplete. This describes how the codebase cu ## The model -At its heart, a graph of roads and intersections. (Roads lead between exactly two intersections -- "road segments" might be more precise.) Roads have their lanes listed from left-to-right, with a type, width, and direction. Note osm2streets doesn't model bidirectional lanes yet -- sidewalks and shared center turn lanes are either forwards or backwards right now, and something downstream interprets them in a special way. (osm2lanes has more nuance, but isn't used in osm2streets yet.) - -Intersections have a `ControlType` -- stop signs, traffic signals, uncontrolled, etc. This is orthogonal to `IntersectionType` and `ConflictType`... TODO, narrow down valid combinations and give examples. MultiConnection vs Merge, please! +At its heart, a graph of roads and intersections. A `Road` is a segment of road that leads between exactly two `Intersection`s. An `Intersection`'s type tells you if it represents a real-life intersection or some other kind of node in the graph. Roads have their lanes listed from left-to-right, each with a type, width, and direction. Note osm2streets doesn't model bidirectional lanes yet -- sidewalks and shared center turn lanes are either forwards or backwards right now, and something downstream interprets them in a special way. (osm2lanes has more nuance, but isn't used in osm2streets yet.) ### IDs From a6d9c3d3d1e945d93f19839bb2e3b50ef5ebe834 Mon Sep 17 00:00:00 2001 From: Ben Ritter Date: Tue, 22 Nov 2022 19:20:16 +0800 Subject: [PATCH 3/8] Remove reference to `Connection` where the meaning has changed --- docs/how_it_works.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how_it_works.md b/docs/how_it_works.md index 0dbb35aa..328f5240 100644 --- a/docs/how_it_works.md +++ b/docs/how_it_works.md @@ -104,7 +104,7 @@ This calls the collapse operation on anything marked by `FindShortRoads`. Comple ### CollapseDegenerateIntersections -A "degenerate" intersection (`IntersectionType::Connection`) has only two roads connected. Sometimes that intersection can be collapsed and the two roads joined. Currently this happens: +A "degenerate" intersection has only two roads connected. Sometimes that intersection can be collapsed and the two roads joined. Currently this happens: - between two cycleways - when the lanes match and only "unimportant" OSM tags differ From d8e55b60daa431cefaf02f18dcbc8454b60ded9f Mon Sep 17 00:00:00 2001 From: Ben Ritter Date: Tue, 22 Nov 2022 20:09:22 +0800 Subject: [PATCH 4/8] Accept change to new test --- tests/src/tiny_roundabout/geometry.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/src/tiny_roundabout/geometry.json b/tests/src/tiny_roundabout/geometry.json index 2349847e..a3f915df 100644 --- a/tests/src/tiny_roundabout/geometry.json +++ b/tests/src/tiny_roundabout/geometry.json @@ -465,8 +465,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53112684 ], @@ -503,8 +503,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 53112685 ], @@ -541,8 +541,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4263867484 ], @@ -579,8 +579,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 4263867655 ], @@ -629,8 +629,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 2369815160 ], @@ -667,8 +667,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 2369815603 ], @@ -705,8 +705,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 7625151516 ], @@ -759,8 +759,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 7625151513 ], @@ -797,8 +797,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Terminus", "control": "StopSign", + "intersection_type": "Terminus", "osm_node_ids": [ 53189876 ], @@ -835,8 +835,8 @@ "type": "Polygon" }, "properties": { - "complexity": "MapEdge", "control": "Border", + "intersection_type": "MapEdge", "osm_node_ids": [ 53139411 ], @@ -901,8 +901,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4263867608, 4263867610, @@ -973,8 +973,8 @@ "type": "Polygon" }, "properties": { - "complexity": "Crossing", "control": "StopSign", + "intersection_type": "Intersection", "osm_node_ids": [ 4263867488, 4263867590, From c6ec6aad7682034e718e66425947b86b53602034 Mon Sep 17 00:00:00 2001 From: Ben Ritter Date: Wed, 23 Nov 2022 11:36:58 +0800 Subject: [PATCH 5/8] Rename types to avoid the conflicting (and often meaningless) term "type" --- experimental/src/io.rs | 10 ++++++---- osm2streets/src/intersection.rs | 14 ++++++++------ osm2streets/src/lib.rs | 5 +++-- .../src/transform/classify_intersections.rs | 16 ++++++++-------- .../src/transform/collapse_intersections.rs | 4 ++-- .../src/transform/collapse_short_road.rs | 11 ++++++----- osm2streets/src/transform/find_short_roads.rs | 6 +++--- .../src/transform/intersection_geometry.rs | 6 +++--- osm2streets/src/types.rs | 10 +++++----- streets_reader/src/clip.rs | 8 ++++---- streets_reader/src/split_ways.rs | 17 +++++++++-------- 11 files changed, 57 insertions(+), 50 deletions(-) diff --git a/experimental/src/io.rs b/experimental/src/io.rs index 7fd8406f..8f3453c7 100644 --- a/experimental/src/io.rs +++ b/experimental/src/io.rs @@ -134,14 +134,16 @@ impl From<&osm2streets::Intersection> for Intersection { Self { // int.intersection_type has some useful info, bit is often misleading. t: match int.control { - osm2streets::ControlType::Border => IntersectionType::MapEdge, - osm2streets::ControlType::TrafficSignal - | osm2streets::ControlType::Construction => IntersectionType::RoadIntersection, + osm2streets::IntersectionControl::Border => IntersectionType::MapEdge, + osm2streets::IntersectionControl::TrafficSignal + | osm2streets::IntersectionControl::Construction => { + IntersectionType::RoadIntersection + } _ => IntersectionType::Unknown, }, control: match int.control { // IntersectionType::StopSign => ControlType::Signed, // wrong when it should be uncontrolled - osm2streets::ControlType::TrafficSignal => ControlType::Lights, + osm2streets::IntersectionControl::TrafficSignal => ControlType::Lights, _ => ControlType::Uncontrolled, }, } diff --git a/osm2streets/src/intersection.rs b/osm2streets/src/intersection.rs index 65d7caec..01b6938a 100644 --- a/osm2streets/src/intersection.rs +++ b/osm2streets/src/intersection.rs @@ -3,7 +3,9 @@ use std::collections::BTreeMap; use geom::{Distance, Polygon, Pt2D}; use serde::{Deserialize, Serialize}; -use crate::{osm, ControlType, IntersectionID, IntersectionType, Movement, RoadID, StreetNetwork}; +use crate::{ + osm, IntersectionControl, IntersectionID, IntersectionKind, Movement, RoadID, StreetNetwork, +}; #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct Intersection { @@ -18,8 +20,8 @@ pub struct Intersection { pub point: Pt2D, /// This will be a placeholder until `Transformation::GenerateIntersectionGeometry` runs. pub polygon: Polygon, - pub t: IntersectionType, - pub control: ControlType, + pub t: IntersectionKind, + pub control: IntersectionControl, pub elevation: Distance, /// All roads connected to this intersection. They may be incoming or outgoing relative to this @@ -45,8 +47,8 @@ impl StreetNetwork { &mut self, osm_ids: Vec, point: Pt2D, - t: IntersectionType, - control: ControlType, + t: IntersectionKind, + control: IntersectionControl, ) -> IntersectionID { let id = self.next_intersection_id(); self.intersections.insert( @@ -71,6 +73,6 @@ impl StreetNetwork { impl Intersection { pub fn is_border(&self) -> bool { - self.control == ControlType::Border + self.control == IntersectionControl::Border } } diff --git a/osm2streets/src/lib.rs b/osm2streets/src/lib.rs index 23c9299e..d2dd696c 100644 --- a/osm2streets/src/lib.rs +++ b/osm2streets/src/lib.rs @@ -23,7 +23,8 @@ pub use self::lanes::{ pub use self::road::Road; pub use self::transform::Transformation; pub use self::types::{ - ConflictType, ControlType, DrivingSide, IntersectionType, MapConfig, Movement, NamePerLanguage, + DrivingSide, IntersectionControl, IntersectionKind, MapConfig, Movement, NamePerLanguage, + TrafficConflict, }; mod edit; @@ -292,7 +293,7 @@ impl StreetNetwork { int.movements = movements; // The fact that an intersection represents a road leaving the map bounds is stored in the // complexity field but guess_complexity ignores that. Make sure we don't overwrite it. - if int.t != IntersectionType::MapEdge { + if int.t != IntersectionKind::MapEdge { int.t = t; } } diff --git a/osm2streets/src/transform/classify_intersections.rs b/osm2streets/src/transform/classify_intersections.rs index 2cd336ee..c51ef933 100644 --- a/osm2streets/src/transform/classify_intersections.rs +++ b/osm2streets/src/transform/classify_intersections.rs @@ -1,11 +1,11 @@ use std::cmp::{max, min}; use crate::{ - ConflictType, Direction, DrivingSide, IntersectionID, IntersectionType, Movement, - RestrictionType, Road, StreetNetwork, + Direction, DrivingSide, IntersectionID, IntersectionKind, Movement, RestrictionType, Road, + StreetNetwork, TrafficConflict, }; -use ConflictType::*; -use IntersectionType::*; +use IntersectionKind::*; +use TrafficConflict::*; /// Determines the initial type of all intersections. Intersections not marked "MapEdge" are /// considered unclassified and will be updated. @@ -30,7 +30,7 @@ pub fn classify_intersections(streets: &mut StreetNetwork) { pub fn guess_complexity( streets: &StreetNetwork, intersection_id: IntersectionID, -) -> (IntersectionType, Vec) { +) -> (IntersectionKind, Vec) { let roads: Vec<_> = streets .roads_per_intersection(intersection_id) .into_iter() @@ -90,7 +90,7 @@ pub fn guess_complexity( ); // Stop looking if we've already found the worst. - if worst_conflict == ConflictType::Cross { + if worst_conflict == TrafficConflict::Cross { break; } } @@ -155,8 +155,8 @@ fn turn_is_allowed(src: &Road, dst: &Road) -> bool { !has_exclusive_allows } -fn calc_conflict(a: &(usize, usize), b: &(usize, usize), side: DrivingSide) -> ConflictType { - use ConflictType::*; +fn calc_conflict(a: &(usize, usize), b: &(usize, usize), side: DrivingSide) -> TrafficConflict { + use TrafficConflict::*; // If the traffic starts and ends at the same place in the same direction... if a.0 == b.0 && a.1 == b.1 { diff --git a/osm2streets/src/transform/collapse_intersections.rs b/osm2streets/src/transform/collapse_intersections.rs index 96bc809a..656804ee 100644 --- a/osm2streets/src/transform/collapse_intersections.rs +++ b/osm2streets/src/transform/collapse_intersections.rs @@ -4,7 +4,7 @@ use anyhow::Result; use geom::{Distance, PolyLine, Pt2D}; -use crate::{osm, ControlType, IntersectionID, Road, RoadID, StreetNetwork}; +use crate::{osm, IntersectionControl, IntersectionID, Road, RoadID, StreetNetwork}; /// Collapse degenerate intersections: /// - between two cycleways @@ -222,7 +222,7 @@ pub fn trim_deadends(streets: &mut StreetNetwork) { let mut remove_intersections = BTreeSet::new(); for i in streets.intersections.values() { let roads = streets.roads_per_intersection(i.id); - if roads.len() != 1 || i.control == ControlType::Border { + if roads.len() != 1 || i.control == IntersectionControl::Border { continue; } let road = &roads[0]; diff --git a/osm2streets/src/transform/collapse_short_road.rs b/osm2streets/src/transform/collapse_short_road.rs index d7b5ebb1..426190e2 100644 --- a/osm2streets/src/transform/collapse_short_road.rs +++ b/osm2streets/src/transform/collapse_short_road.rs @@ -2,7 +2,7 @@ use std::collections::{BTreeMap, VecDeque}; use anyhow::Result; -use crate::{ControlType, IntersectionID, RestrictionType, RoadID, StreetNetwork}; +use crate::{IntersectionControl, IntersectionID, RestrictionType, RoadID, StreetNetwork}; // TODO After collapsing a road, trying to drag the surviving intersection in map_editor crashes. I // bet the underlying problem there would help debug automated transformations near merged roads @@ -36,8 +36,8 @@ impl StreetNetwork { } // First a sanity check. - if self.intersections[&keep_i].control == ControlType::Border - || self.intersections[&destroy_i].control == ControlType::Border + if self.intersections[&keep_i].control == IntersectionControl::Border + || self.intersections[&destroy_i].control == IntersectionControl::Border { bail!("{short_r} touches a border"); } @@ -109,8 +109,9 @@ impl StreetNetwork { let destroy_i = self.intersections.remove(&destroy_i).unwrap(); // If the intersection types differ, upgrade the surviving interesting. - if destroy_i.control == ControlType::TrafficSignal { - self.intersections.get_mut(&keep_i).unwrap().control = ControlType::TrafficSignal; + if destroy_i.control == IntersectionControl::TrafficSignal { + self.intersections.get_mut(&keep_i).unwrap().control = + IntersectionControl::TrafficSignal; } // Remember the merge diff --git a/osm2streets/src/transform/find_short_roads.rs b/osm2streets/src/transform/find_short_roads.rs index 98058455..6fcbb5d7 100644 --- a/osm2streets/src/transform/find_short_roads.rs +++ b/osm2streets/src/transform/find_short_roads.rs @@ -1,6 +1,6 @@ use geom::Distance; -use crate::{osm, ControlType, Road, RoadID, StreetNetwork}; +use crate::{osm, IntersectionControl, Road, RoadID, StreetNetwork}; /// Combines a few different sources/methods to decide which roads are short. Marks them for /// merging. @@ -87,8 +87,8 @@ impl StreetNetwork { if src_i.is_border() || dst_i.is_border() { continue; } - if src_i.control != ControlType::TrafficSignal - && dst_i.control != ControlType::TrafficSignal + if src_i.control != IntersectionControl::TrafficSignal + && dst_i.control != IntersectionControl::TrafficSignal { continue; } diff --git a/osm2streets/src/transform/intersection_geometry.rs b/osm2streets/src/transform/intersection_geometry.rs index 35dd9d4c..a45a395a 100644 --- a/osm2streets/src/transform/intersection_geometry.rs +++ b/osm2streets/src/transform/intersection_geometry.rs @@ -1,7 +1,7 @@ use abstutil::Timer; use geom::{Circle, Distance}; -use crate::{ControlType, StreetNetwork}; +use crate::{IntersectionControl, StreetNetwork}; pub fn generate(streets: &mut StreetNetwork, timer: &mut Timer) { // Initialize trimmed_center_line to the corrected center @@ -58,7 +58,7 @@ pub fn generate(streets: &mut StreetNetwork, timer: &mut Timer) { streets.intersections.get_mut(&i).unwrap().polygon = polygon; } for i in make_stop_signs { - streets.intersections.get_mut(&i).unwrap().control = ControlType::StopSign; + streets.intersections.get_mut(&i).unwrap().control = IntersectionControl::StopSign; } for i in remove_dangling_nodes { streets.intersections.remove(&i).unwrap(); @@ -74,7 +74,7 @@ fn fix_borders(streets: &mut StreetNetwork) { let min_len = Distance::meters(5.0); let mut set_polygons = Vec::new(); for i in streets.intersections.values() { - if i.control != ControlType::Border { + if i.control != IntersectionControl::Border { continue; } let r = i.roads.iter().next().unwrap(); diff --git a/osm2streets/src/types.rs b/osm2streets/src/types.rs index 437413d1..987a8b26 100644 --- a/osm2streets/src/types.rs +++ b/osm2streets/src/types.rs @@ -103,7 +103,7 @@ pub enum DrivingSide { /// How a lane of travel is interrupted, as it meets another or ends. #[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] -pub enum InterruptionType { +pub enum TrafficInterruption { Uninterrupted, Yield, Stop, @@ -113,7 +113,7 @@ pub enum InterruptionType { /// How two lanes of travel conflict with each other. #[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, PartialOrd, Ord, Serialize, Deserialize)] -pub enum ConflictType { +pub enum TrafficConflict { Uncontested, Diverge, Merge, @@ -124,7 +124,7 @@ pub enum ConflictType { /// network graph is represented by an `Intersection`, but many of them are not traffic /// "intersections" in the common sense. #[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] -pub enum IntersectionType { +pub enum IntersectionKind { /// A `Road` ends because the road crosses the map boundary. MapEdge, @@ -153,12 +153,12 @@ pub enum IntersectionType { } #[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] -pub enum ControlType { +pub enum IntersectionControl { Uncontrolled, // Pretty sure this is a term that implies right of way rules somewhere. //TODO YieldSign, StopSign, // Signed is a good standard of safety TrafficSignal, // Signalled is better. - Border, //TODO move to using IntersectionType::MapEdge + Border, //TODO move to using IntersectionKind::MapEdge Construction, // Are these treated as "closed"? } diff --git a/streets_reader/src/clip.rs b/streets_reader/src/clip.rs index 8949fbb5..cafdd21a 100644 --- a/streets_reader/src/clip.rs +++ b/streets_reader/src/clip.rs @@ -1,7 +1,7 @@ use abstutil::Timer; use anyhow::Result; -use osm2streets::{ControlType, IntersectionID, IntersectionType, StreetNetwork}; +use osm2streets::{IntersectionControl, IntersectionID, IntersectionKind, StreetNetwork}; // TODO This needs to update turn restrictions too pub fn clip_map(streets: &mut StreetNetwork, timer: &mut Timer) -> Result<()> { @@ -44,8 +44,8 @@ pub fn clip_map(streets: &mut StreetNetwork, timer: &mut Timer) -> Result<()> { } let mut old_intersection = streets.intersections.remove(&old_id).unwrap(); - old_intersection.t = IntersectionType::MapEdge; - old_intersection.control = ControlType::Border; + old_intersection.t = IntersectionKind::MapEdge; + old_intersection.control = IntersectionControl::Border; if old_intersection.roads.len() <= 1 { // We don't need to make copies of the intersection; put it back @@ -76,7 +76,7 @@ pub fn clip_map(streets: &mut StreetNetwork, timer: &mut Timer) -> Result<()> { // Now for all of the border intersections, find the one road they connect to and trim their // points. for intersection in streets.intersections.values_mut() { - if intersection.control != ControlType::Border { + if intersection.control != IntersectionControl::Border { continue; } assert_eq!(intersection.roads.len(), 1); diff --git a/streets_reader/src/split_ways.rs b/streets_reader/src/split_ways.rs index 7c5167aa..f375a4f4 100644 --- a/streets_reader/src/split_ways.rs +++ b/streets_reader/src/split_ways.rs @@ -3,8 +3,8 @@ use std::collections::{btree_map::Entry, BTreeMap, HashMap, HashSet}; use abstutil::{Counter, Tags, Timer}; use geom::{Distance, HashablePt2D, PolyLine, Pt2D}; use osm2streets::{ - osm, ControlType, CrossingType, Direction, IntersectionID, IntersectionType, OriginalRoad, - Road, RoadID, StreetNetwork, + osm, CrossingType, Direction, IntersectionControl, IntersectionID, IntersectionKind, + OriginalRoad, Road, RoadID, StreetNetwork, }; use super::OsmExtract; @@ -76,12 +76,12 @@ pub fn split_up_roads( vec![*osm_id], pt.to_pt2d(), // Assume a complicated intersection, until we determine otherwise. - IntersectionType::Intersection, + IntersectionKind::Intersection, if input.traffic_signals.remove(pt).is_some() { - ControlType::TrafficSignal + IntersectionControl::TrafficSignal } else { // TODO default to uncontrolled, guess StopSign as a transform - ControlType::StopSign + IntersectionControl::StopSign }, ); osm_id_to_id.insert(*osm_id, id); @@ -92,8 +92,8 @@ pub fn split_up_roads( let id = streets.insert_intersection( osm_ids.clone(), pt, - IntersectionType::Intersection, - ControlType::StopSign, + IntersectionKind::Intersection, + IntersectionControl::StopSign, ); for osm_id in osm_ids { osm_id_to_id.insert(osm_id, id); @@ -258,7 +258,8 @@ pub fn split_up_roads( } else { road.src_i }; - streets.intersections.get_mut(&i).unwrap().control = ControlType::TrafficSignal; + streets.intersections.get_mut(&i).unwrap().control = + IntersectionControl::TrafficSignal; } } } From c0ae6769bc6abfeae115cca1e0525abce16fca4d Mon Sep 17 00:00:00 2001 From: Ben Ritter Date: Wed, 23 Nov 2022 11:59:20 +0800 Subject: [PATCH 6/8] Expand the description of intersection and lane kinds in how_it_works.md --- docs/how_it_works.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/how_it_works.md b/docs/how_it_works.md index 328f5240..6a839534 100644 --- a/docs/how_it_works.md +++ b/docs/how_it_works.md @@ -4,7 +4,9 @@ As of November 2022, and probably incomplete. This describes how the codebase cu ## The model -At its heart, a graph of roads and intersections. A `Road` is a segment of road that leads between exactly two `Intersection`s. An `Intersection`'s type tells you if it represents a real-life intersection or some other kind of node in the graph. Roads have their lanes listed from left-to-right, each with a type, width, and direction. Note osm2streets doesn't model bidirectional lanes yet -- sidewalks and shared center turn lanes are either forwards or backwards right now, and something downstream interprets them in a special way. (osm2lanes has more nuance, but isn't used in osm2streets yet.) +At its heart, a graph of roads and intersections. A `Road` is a segment of road that leads between exactly two `Intersection`s. An `Intersection`'s kind tells you if it represents a real-life intersection or some other kind of node in the graph. A `MapEdge` connects a single `Road` the edge of the map, a `Terminus` marks an actual dead end. A `Connection` joins multiple `Road`s together where there is no traffic interaction at all, whereas a `Fork` joins multiple roads that merge or diverge without any stop line. Finally, an `IntersectionKind::Intersection` represents everything that you would actually call an "intersection", where traffic merges with, diverges from or crosses other traffic. + +Roads have their lanes listed from left-to-right, each with a type, width, and direction. A lane represents any longitudinal feature of a road: travel lanes on the carriageway, separated bike and footpaths, street-side parking, and buffers, medians and verges. Note osm2streets doesn't model bidirectional lanes yet -- sidewalks and shared center turn lanes are either forwards or backwards right now, and something downstream interprets them in a special way. (osm2lanes has more nuance, but isn't used in osm2streets yet.) ### IDs From 9a4095dcb7a850a8076cf709f1a90e4b46aa1bcc Mon Sep 17 00:00:00 2001 From: Ben Ritter Date: Wed, 23 Nov 2022 12:09:07 +0800 Subject: [PATCH 7/8] Rename `Intersection::t` to `kind` --- osm2streets/src/intersection.rs | 4 ++-- osm2streets/src/lib.rs | 4 ++-- osm2streets/src/render.rs | 5 ++++- osm2streets/src/transform/classify_intersections.rs | 4 ++-- streets_reader/src/clip.rs | 2 +- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/osm2streets/src/intersection.rs b/osm2streets/src/intersection.rs index 01b6938a..64f0ef0f 100644 --- a/osm2streets/src/intersection.rs +++ b/osm2streets/src/intersection.rs @@ -20,7 +20,7 @@ pub struct Intersection { pub point: Pt2D, /// This will be a placeholder until `Transformation::GenerateIntersectionGeometry` runs. pub polygon: Polygon, - pub t: IntersectionKind, + pub kind: IntersectionKind, pub control: IntersectionControl, pub elevation: Distance, @@ -58,7 +58,7 @@ impl StreetNetwork { osm_ids, point, polygon: Polygon::dummy(), - t, + kind: t, control, // Filled out later roads: Vec::new(), diff --git a/osm2streets/src/lib.rs b/osm2streets/src/lib.rs index d2dd696c..34d49399 100644 --- a/osm2streets/src/lib.rs +++ b/osm2streets/src/lib.rs @@ -293,8 +293,8 @@ impl StreetNetwork { int.movements = movements; // The fact that an intersection represents a road leaving the map bounds is stored in the // complexity field but guess_complexity ignores that. Make sure we don't overwrite it. - if int.t != IntersectionKind::MapEdge { - int.t = t; + if int.kind != IntersectionKind::MapEdge { + int.kind = t; } } } diff --git a/osm2streets/src/render.rs b/osm2streets/src/render.rs index c0cd6a2e..9d17fa8e 100644 --- a/osm2streets/src/render.rs +++ b/osm2streets/src/render.rs @@ -57,7 +57,10 @@ impl StreetNetwork { intersection.osm_ids.iter().map(|id| id.0.into()).collect(), ), ), - ("intersection_type", format!("{:?}", intersection.t).into()), + ( + "intersection_type", + format!("{:?}", intersection.kind).into(), + ), ("control", format!("{:?}", intersection.control).into()), ]), )); diff --git a/osm2streets/src/transform/classify_intersections.rs b/osm2streets/src/transform/classify_intersections.rs index c51ef933..114a9eee 100644 --- a/osm2streets/src/transform/classify_intersections.rs +++ b/osm2streets/src/transform/classify_intersections.rs @@ -12,14 +12,14 @@ use TrafficConflict::*; pub fn classify_intersections(streets: &mut StreetNetwork) { let mut changes: Vec<_> = Vec::new(); for i in streets.intersections.values() { - if i.t != MapEdge { + if i.kind != MapEdge { changes.push((i.id, guess_complexity(streets, i.id))); } } for (id, (t, movements)) in changes { let intersection = streets.intersections.get_mut(&id).unwrap(); - intersection.t = t; + intersection.kind = t; intersection.movements = movements; } } diff --git a/streets_reader/src/clip.rs b/streets_reader/src/clip.rs index cafdd21a..93bf6313 100644 --- a/streets_reader/src/clip.rs +++ b/streets_reader/src/clip.rs @@ -44,7 +44,7 @@ pub fn clip_map(streets: &mut StreetNetwork, timer: &mut Timer) -> Result<()> { } let mut old_intersection = streets.intersections.remove(&old_id).unwrap(); - old_intersection.t = IntersectionKind::MapEdge; + old_intersection.kind = IntersectionKind::MapEdge; old_intersection.control = IntersectionControl::Border; if old_intersection.roads.len() <= 1 { From 3f1c72b2c7b95fe4f29920e57d8b164290aadf4e Mon Sep 17 00:00:00 2001 From: Ben Ritter Date: Wed, 23 Nov 2022 12:39:02 +0800 Subject: [PATCH 8/8] Rename geojson output `intersection_type` to `intersectin_kind` and fix colouring in StreetExplorer --- osm2streets/src/render.rs | 2 +- street-explorer/www/js/layers.js | 6 +- tests/src/arizona_highways/geometry.json | 160 +-- tests/src/aurora_sausage_link/geometry.json | 20 +- tests/src/borough_sausage_links/geometry.json | 124 +- .../bristol_contraflow_cycleway/geometry.json | 58 +- tests/src/bristol_sausage_links/geometry.json | 40 +- tests/src/cycleway_rejoin_road/geometry.json | 294 ++--- tests/src/i5_exit_ramp/geometry.json | 118 +- tests/src/kingsway_junction/geometry.json | 294 ++--- tests/src/leeds_cycleway/geometry.json | 1146 ++++++++--------- tests/src/montlake_roundabout/geometry.json | 12 +- .../northgate_dual_carriageway/geometry.json | 346 ++--- tests/src/oneway_loop/geometry.json | 62 +- .../src/perth_peanut_roundabout/geometry.json | 76 +- .../src/perth_stretched_lights/geometry.json | 16 +- tests/src/roosevelt_cycletrack/geometry.json | 200 +-- tests/src/seattle_slip_lane/geometry.json | 70 +- tests/src/seattle_triangle/geometry.json | 66 +- tests/src/service_road_loop/geometry.json | 52 +- tests/src/st_georges_cycletrack/geometry.json | 250 ++-- tests/src/taipei/geometry.json | 116 +- tests/src/tempe_light_rail/geometry.json | 34 +- tests/src/tempe_split/geometry.json | 62 +- tests/src/tiny_loop/geometry.json | 16 +- tests/src/tiny_roundabout/geometry.json | 24 +- 26 files changed, 1831 insertions(+), 1833 deletions(-) diff --git a/osm2streets/src/render.rs b/osm2streets/src/render.rs index 9d17fa8e..272712fc 100644 --- a/osm2streets/src/render.rs +++ b/osm2streets/src/render.rs @@ -58,7 +58,7 @@ impl StreetNetwork { ), ), ( - "intersection_type", + "intersection_kind", format!("{:?}", intersection.kind).into(), ), ("control", format!("{:?}", intersection.control).into()), diff --git a/street-explorer/www/js/layers.js b/street-explorer/www/js/layers.js index 5476e8d1..8a0634fc 100644 --- a/street-explorer/www/js/layers.js +++ b/street-explorer/www/js/layers.js @@ -2,9 +2,7 @@ export const makePlainGeoJsonLayer = (text) => { const intersectionColours = { undefined: "#666", // for default tarmac Connection: "#666", - MultiConnection: "#669", - Merge: "#969", - Crossing: "#966", + Intersection: "#966", Terminus: "#999", MapEdge: "#696", }; @@ -13,7 +11,7 @@ export const makePlainGeoJsonLayer = (text) => { style: function (feature) { if (feature.properties.type == "intersection") { return { - color: intersectionColours[feature.properties.complexity], + color: intersectionColours[feature.properties.intersection_kind], weight: 1, fillOpacity: 0.7, }; diff --git a/tests/src/arizona_highways/geometry.json b/tests/src/arizona_highways/geometry.json index 8fbf7011..b479eaea 100644 --- a/tests/src/arizona_highways/geometry.json +++ b/tests/src/arizona_highways/geometry.json @@ -4043,7 +4043,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2390893346 ], @@ -4081,7 +4081,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 41833648 ], @@ -4119,7 +4119,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1950976016 ], @@ -4157,7 +4157,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4351379655 ], @@ -4195,7 +4195,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 2454767128 ], @@ -4233,7 +4233,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4351379654 ], @@ -4279,7 +4279,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6228919924 ], @@ -4325,7 +4325,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2454728514 ], @@ -4367,7 +4367,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1950975900 ], @@ -4405,7 +4405,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4351379653 ], @@ -4443,7 +4443,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5748112416 ], @@ -4489,7 +4489,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2391008617 ], @@ -4527,7 +4527,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 256978902 ], @@ -4569,7 +4569,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2457540699 ], @@ -4607,7 +4607,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 257963392 ], @@ -4645,7 +4645,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5766999736 ], @@ -4707,7 +4707,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 41643290 ], @@ -4753,7 +4753,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 1950975867 ], @@ -4807,7 +4807,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1950975953 ], @@ -4849,7 +4849,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2391008592 ], @@ -4891,7 +4891,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2457540707 ], @@ -4933,7 +4933,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 257973558 ], @@ -4979,7 +4979,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 257973659 ], @@ -5017,7 +5017,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1131443329 ], @@ -5055,7 +5055,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1131443311 ], @@ -5093,7 +5093,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 257970997 ], @@ -5139,7 +5139,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2457540697 ], @@ -5185,7 +5185,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 257970996 ], @@ -5227,7 +5227,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4341085388 ], @@ -5273,7 +5273,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2454435296 ], @@ -5323,7 +5323,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2454435301 ], @@ -5369,7 +5369,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1224380089 ], @@ -5407,7 +5407,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4341085382 ], @@ -5449,7 +5449,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 4341085386 ], @@ -5487,7 +5487,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1224380064 ], @@ -5533,7 +5533,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2457540691 ], @@ -5587,7 +5587,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2457540692 ], @@ -5641,7 +5641,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2457540689 ], @@ -5691,7 +5691,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2457540690 ], @@ -5729,7 +5729,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1224380077 ], @@ -5771,7 +5771,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5134463770 ], @@ -5813,7 +5813,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4341085381 ], @@ -5859,7 +5859,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2454435293 ], @@ -5901,7 +5901,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 257964186 ], @@ -5939,7 +5939,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1224380087 ], @@ -5985,7 +5985,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 608494024 ], @@ -6027,7 +6027,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4341085384 ], @@ -6069,7 +6069,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 257964183 ], @@ -6107,7 +6107,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5134463771 ], @@ -6145,7 +6145,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5134463772 ], @@ -6187,7 +6187,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2457540685 ], @@ -6225,7 +6225,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 257961882 ], @@ -6271,7 +6271,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2459207619 ], @@ -6313,7 +6313,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 257973235 ], @@ -6355,7 +6355,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2457540680 ], @@ -6397,7 +6397,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1131443242 ], @@ -6443,7 +6443,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 256990200 ], @@ -6493,7 +6493,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 608494028 ], @@ -6551,7 +6551,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1950975946 ], @@ -6589,7 +6589,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1131443248 ], @@ -6627,7 +6627,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 3715211173 ], @@ -6669,7 +6669,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2457540684 ], @@ -6707,7 +6707,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 4982224185 ], @@ -6745,7 +6745,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 4982224171 ], @@ -6787,7 +6787,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5748112414 ], @@ -6829,7 +6829,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1950975971 ], @@ -6871,7 +6871,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5748112415 ], @@ -6909,7 +6909,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 4982224184 ], @@ -6947,7 +6947,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5572469737 ], @@ -6989,7 +6989,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 1950975926 ], @@ -7027,7 +7027,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4353125861 ], @@ -7065,7 +7065,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5572469746 ], @@ -7107,7 +7107,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1950975883 ], @@ -7145,7 +7145,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1950975923 ], @@ -7183,7 +7183,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4353125862 ], @@ -7221,7 +7221,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 42522813 ], @@ -7259,7 +7259,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2391008616 ], @@ -7297,7 +7297,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2391008616 ], @@ -7335,7 +7335,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2459207580 ], @@ -7373,7 +7373,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2459207580 ], diff --git a/tests/src/aurora_sausage_link/geometry.json b/tests/src/aurora_sausage_link/geometry.json index a3175751..fd9498ae 100644 --- a/tests/src/aurora_sausage_link/geometry.json +++ b/tests/src/aurora_sausage_link/geometry.json @@ -443,7 +443,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9029531320 ], @@ -485,7 +485,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 53122087 ], @@ -523,7 +523,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 429692074 ], @@ -565,7 +565,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7404463397 ], @@ -607,7 +607,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7404463396 ], @@ -645,7 +645,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53178613 ], @@ -683,7 +683,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1424516769 ], @@ -733,7 +733,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 7404463398 ], @@ -771,7 +771,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6888045657 ], @@ -809,7 +809,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9580500970 ], diff --git a/tests/src/borough_sausage_links/geometry.json b/tests/src/borough_sausage_links/geometry.json index 844dc1b2..483e9a27 100644 --- a/tests/src/borough_sausage_links/geometry.json +++ b/tests/src/borough_sausage_links/geometry.json @@ -2808,7 +2808,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 364296 ], @@ -2846,7 +2846,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 276507 ], @@ -2884,7 +2884,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 364300 ], @@ -2922,7 +2922,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 295803799 ], @@ -2968,7 +2968,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 12238562 ], @@ -3018,7 +3018,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220776407 ], @@ -3056,7 +3056,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1150853978 ], @@ -3094,7 +3094,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 352928523 ], @@ -3132,7 +3132,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6024546591 ], @@ -3170,7 +3170,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2217388387 ], @@ -3208,7 +3208,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 25498065 ], @@ -3246,7 +3246,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220776402 ], @@ -3284,7 +3284,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220776403 ], @@ -3334,7 +3334,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5220776408 ], @@ -3372,7 +3372,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220776401 ], @@ -3410,7 +3410,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 6024546597 ], @@ -3452,7 +3452,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220776411 ], @@ -3490,7 +3490,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2217475492 ], @@ -3528,7 +3528,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 25497966 ], @@ -3566,7 +3566,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2217442436 ], @@ -3628,7 +3628,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2217475460 ], @@ -3678,7 +3678,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2217412069 ], @@ -3732,7 +3732,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5220719456 ], @@ -3774,7 +3774,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220776406 ], @@ -3816,7 +3816,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5220719432 ], @@ -3854,7 +3854,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220719448 ], @@ -3892,7 +3892,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 25500014 ], @@ -3946,7 +3946,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2217412073 ], @@ -4000,7 +4000,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 347413549 ], @@ -4038,7 +4038,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2217442429 ], @@ -4076,7 +4076,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9733253134 ], @@ -4114,7 +4114,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220719447 ], @@ -4156,7 +4156,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220719428 ], @@ -4198,7 +4198,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220719463 ], @@ -4236,7 +4236,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 872828485 ], @@ -4274,7 +4274,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220760621 ], @@ -4328,7 +4328,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1165070926 ], @@ -4382,7 +4382,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2217475451 ], @@ -4436,7 +4436,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220719449 ], @@ -4486,7 +4486,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2217388361 ], @@ -4524,7 +4524,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220719466 ], @@ -4562,7 +4562,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2217475464 ], @@ -4620,7 +4620,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1165071010 ], @@ -4674,7 +4674,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1165070941 ], @@ -4712,7 +4712,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220719469 ], @@ -4750,7 +4750,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 347413001 ], @@ -4788,7 +4788,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5220719472 ], @@ -4830,7 +4830,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 31349035 ], @@ -4872,7 +4872,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 60007209 ], @@ -4918,7 +4918,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2317365390 ], @@ -4964,7 +4964,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1165071224 ], @@ -5010,7 +5010,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2317365395 ], @@ -5056,7 +5056,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1165070964 ], @@ -5110,7 +5110,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1165071364 ], @@ -5164,7 +5164,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1165071161 ], @@ -5202,7 +5202,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 287453557 ], @@ -5240,7 +5240,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 25500037 ], @@ -5278,7 +5278,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 287453575 ], @@ -5316,7 +5316,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5220719437 ], @@ -5354,7 +5354,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5220719437 ], @@ -5392,7 +5392,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1165071291 ], @@ -5430,7 +5430,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1165071291 ], diff --git a/tests/src/bristol_contraflow_cycleway/geometry.json b/tests/src/bristol_contraflow_cycleway/geometry.json index 32aeeb26..4212a127 100644 --- a/tests/src/bristol_contraflow_cycleway/geometry.json +++ b/tests/src/bristol_contraflow_cycleway/geometry.json @@ -1360,7 +1360,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7875684771 ], @@ -1398,7 +1398,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 356289304 ], @@ -1448,7 +1448,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2847905816 ], @@ -1494,7 +1494,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 260742831 ], @@ -1540,7 +1540,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 282229032 ], @@ -1594,7 +1594,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2847905817 ], @@ -1632,7 +1632,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 260742834 ], @@ -1678,7 +1678,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 260742852 ], @@ -1728,7 +1728,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1316486883 ], @@ -1774,7 +1774,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2847905819 ], @@ -1816,7 +1816,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 1223212928 ], @@ -1854,7 +1854,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 1223212748 ], @@ -1892,7 +1892,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 260742931 ], @@ -1938,7 +1938,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 260742833 ], @@ -1976,7 +1976,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 282231403 ], @@ -2014,7 +2014,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 8411977307 ], @@ -2064,7 +2064,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 8411977306 ], @@ -2110,7 +2110,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 260742941 ], @@ -2164,7 +2164,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8411977276 ], @@ -2214,7 +2214,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 21310516 ], @@ -2264,7 +2264,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8411724259 ], @@ -2314,7 +2314,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8411724268 ], @@ -2352,7 +2352,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 2208694229 ], @@ -2390,7 +2390,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 21310508 ], @@ -2428,7 +2428,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2208694226 ], @@ -2466,7 +2466,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1316487047 ], @@ -2504,7 +2504,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 21310530 ], @@ -2542,7 +2542,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1223212892 ], @@ -2580,7 +2580,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1223212892 ], diff --git a/tests/src/bristol_sausage_links/geometry.json b/tests/src/bristol_sausage_links/geometry.json index 6dbdcbcf..446dc4c4 100644 --- a/tests/src/bristol_sausage_links/geometry.json +++ b/tests/src/bristol_sausage_links/geometry.json @@ -806,7 +806,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 21257308 ], @@ -844,7 +844,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2948578296 ], @@ -882,7 +882,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 21310516 ], @@ -920,7 +920,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1695906815 ], @@ -958,7 +958,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4883724684 ], @@ -1004,7 +1004,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4883724685 ], @@ -1042,7 +1042,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4740760680 ], @@ -1084,7 +1084,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 21257313 ], @@ -1122,7 +1122,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4740760678 ], @@ -1172,7 +1172,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1316487047 ], @@ -1222,7 +1222,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4740760690 ], @@ -1264,7 +1264,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4740760689 ], @@ -1318,7 +1318,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1695906751 ], @@ -1356,7 +1356,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1316486886 ], @@ -1398,7 +1398,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 154650255 ], @@ -1436,7 +1436,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 21310565 ], @@ -1482,7 +1482,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 21310567 ], @@ -1520,7 +1520,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9210121934 ], @@ -1558,7 +1558,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1695906885 ], @@ -1596,7 +1596,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2847261371 ], diff --git a/tests/src/cycleway_rejoin_road/geometry.json b/tests/src/cycleway_rejoin_road/geometry.json index 9913237f..76d2dcd4 100644 --- a/tests/src/cycleway_rejoin_road/geometry.json +++ b/tests/src/cycleway_rejoin_road/geometry.json @@ -7527,7 +7527,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9150256918 ], @@ -7565,7 +7565,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2555516144 ], @@ -7603,7 +7603,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4462219991 ], @@ -7641,7 +7641,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 1691695883 ], @@ -7683,7 +7683,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 730856862 ], @@ -7741,7 +7741,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150256934 ], @@ -7795,7 +7795,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9150256917 ], @@ -7853,7 +7853,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276555 ], @@ -7891,7 +7891,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9150217908 ], @@ -7929,7 +7929,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9150276556 ], @@ -7983,7 +7983,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276560 ], @@ -8029,7 +8029,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 25502684 ], @@ -8075,7 +8075,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150256922 ], @@ -8113,7 +8113,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150217910 ], @@ -8171,7 +8171,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9150276561 ], @@ -8217,7 +8217,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9150217904 ], @@ -8263,7 +8263,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276536 ], @@ -8317,7 +8317,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276553 ], @@ -8371,7 +8371,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276543 ], @@ -8413,7 +8413,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9150276535 ], @@ -8467,7 +8467,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276554 ], @@ -8505,7 +8505,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4957735652 ], @@ -8543,7 +8543,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9806699390 ], @@ -8593,7 +8593,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4967069559 ], @@ -8631,7 +8631,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 4967082877 ], @@ -8673,7 +8673,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4957735651 ], @@ -8723,7 +8723,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9150276564 ], @@ -8769,7 +8769,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7330281376 ], @@ -8807,7 +8807,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8013569055 ], @@ -8853,7 +8853,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9150276563 ], @@ -8899,7 +8899,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 25502865 ], @@ -8961,7 +8961,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276551 ], @@ -9007,7 +9007,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276548 ], @@ -9049,7 +9049,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2246184959 ], @@ -9095,7 +9095,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276546 ], @@ -9145,7 +9145,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276568 ], @@ -9195,7 +9195,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9150276559 ], @@ -9245,7 +9245,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136383834 ], @@ -9287,7 +9287,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9150276566 ], @@ -9345,7 +9345,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276567 ], @@ -9383,7 +9383,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136383851 ], @@ -9433,7 +9433,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136383822 ], @@ -9471,7 +9471,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4967088337 ], @@ -9509,7 +9509,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 25504973 ], @@ -9559,7 +9559,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136383836 ], @@ -9601,7 +9601,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9150276550 ], @@ -9647,7 +9647,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6847224398 ], @@ -9693,7 +9693,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136383837 ], @@ -9747,7 +9747,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136383840 ], @@ -9785,7 +9785,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136383839 ], @@ -9839,7 +9839,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136383835 ], @@ -9889,7 +9889,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 4673133618 ], @@ -9931,7 +9931,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 25504033 ], @@ -9969,7 +9969,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4967088341 ], @@ -10007,7 +10007,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5739261533 ], @@ -10045,7 +10045,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 3218009836 ], @@ -10083,7 +10083,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 25504987 ], @@ -10141,7 +10141,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 25502651 ], @@ -10179,7 +10179,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 4673133620 ], @@ -10217,7 +10217,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136383828 ], @@ -10263,7 +10263,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 21511934 ], @@ -10301,7 +10301,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136383827 ], @@ -10355,7 +10355,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136344008 ], @@ -10393,7 +10393,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 6847224406 ], @@ -10431,7 +10431,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 25502650 ], @@ -10485,7 +10485,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5739261534 ], @@ -10539,7 +10539,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1126026088 ], @@ -10589,7 +10589,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 3218009838 ], @@ -10635,7 +10635,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 25502890 ], @@ -10681,7 +10681,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136344010 ], @@ -10731,7 +10731,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9130071196 ], @@ -10789,7 +10789,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136344009 ], @@ -10843,7 +10843,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1126026083 ], @@ -10889,7 +10889,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136344005 ], @@ -10943,7 +10943,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343987 ], @@ -10989,7 +10989,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136344004 ], @@ -11035,7 +11035,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343986 ], @@ -11073,7 +11073,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 844790970 ], @@ -11111,7 +11111,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343985 ], @@ -11161,7 +11161,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343972 ], @@ -11199,7 +11199,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222569 ], @@ -11257,7 +11257,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 25502648 ], @@ -11295,7 +11295,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343993 ], @@ -11349,7 +11349,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343969 ], @@ -11403,7 +11403,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222586 ], @@ -11449,7 +11449,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136360631 ], @@ -11507,7 +11507,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136360630 ], @@ -11557,7 +11557,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343971 ], @@ -11595,7 +11595,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343978 ], @@ -11633,7 +11633,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222573 ], @@ -11671,7 +11671,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 730856505 ], @@ -11721,7 +11721,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343996 ], @@ -11779,7 +11779,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343997 ], @@ -11821,7 +11821,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343979 ], @@ -11859,7 +11859,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5739257306 ], @@ -11913,7 +11913,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343998 ], @@ -11955,7 +11955,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 25502896 ], @@ -11993,7 +11993,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 6029529898 ], @@ -12039,7 +12039,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9130071201 ], @@ -12093,7 +12093,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343970 ], @@ -12143,7 +12143,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343980 ], @@ -12189,7 +12189,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343977 ], @@ -12235,7 +12235,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 730856463 ], @@ -12281,7 +12281,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343976 ], @@ -12335,7 +12335,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9130071195 ], @@ -12377,7 +12377,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343947 ], @@ -12427,7 +12427,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5021048664 ], @@ -12465,7 +12465,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5023600724 ], @@ -12503,7 +12503,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343973 ], @@ -12541,7 +12541,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 730856502 ], @@ -12595,7 +12595,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6029529895 ], @@ -12649,7 +12649,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126025785 ], @@ -12687,7 +12687,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5021048671 ], @@ -12725,7 +12725,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5021048672 ], @@ -12771,7 +12771,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4849780710 ], @@ -12821,7 +12821,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1126222500 ], @@ -12879,7 +12879,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5021048663 ], @@ -12921,7 +12921,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 25503378 ], @@ -12959,7 +12959,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7926785716 ], @@ -12997,7 +12997,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222438 ], @@ -13035,7 +13035,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136343964 ], @@ -13089,7 +13089,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222441 ], @@ -13135,7 +13135,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1240373509 ], @@ -13189,7 +13189,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222455 ], @@ -13243,7 +13243,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222447 ], @@ -13281,7 +13281,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222425 ], @@ -13339,7 +13339,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222450 ], @@ -13377,7 +13377,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222387 ], @@ -13415,7 +13415,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1126222388 ], @@ -13457,7 +13457,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4839044023 ], @@ -13503,7 +13503,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4839044022 ], @@ -13541,7 +13541,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 6022905014 ], @@ -13595,7 +13595,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4839044024 ], @@ -13641,7 +13641,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 25503653 ], @@ -13691,7 +13691,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 266138052 ], @@ -13741,7 +13741,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5268321224 ], @@ -13779,7 +13779,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9820345292 ], @@ -13821,7 +13821,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 21511915 ], @@ -13863,7 +13863,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9316017763 ], @@ -13901,7 +13901,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9316017762 ], @@ -13943,7 +13943,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9316017761 ], @@ -13993,7 +13993,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6022905020 ], @@ -14031,7 +14031,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 102715106 ], @@ -14069,7 +14069,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 21508954 ], @@ -14115,7 +14115,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 264803343 ], @@ -14153,7 +14153,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5268325548 ], @@ -14191,7 +14191,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 266138058 ], diff --git a/tests/src/i5_exit_ramp/geometry.json b/tests/src/i5_exit_ramp/geometry.json index 4a18e587..d0428ab0 100644 --- a/tests/src/i5_exit_ramp/geometry.json +++ b/tests/src/i5_exit_ramp/geometry.json @@ -2195,7 +2195,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53125560 ], @@ -2233,7 +2233,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 59699628 ], @@ -2271,7 +2271,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5766717300 ], @@ -2309,7 +2309,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 59699630 ], @@ -2347,7 +2347,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53092499 ], @@ -2397,7 +2397,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53092522 ], @@ -2435,7 +2435,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5766863608 ], @@ -2489,7 +2489,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5766863606 ], @@ -2527,7 +2527,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5766863607 ], @@ -2565,7 +2565,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 29484769 ], @@ -2603,7 +2603,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 479736003 ], @@ -2641,7 +2641,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1864943614 ], @@ -2687,7 +2687,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 400020830 ], @@ -2725,7 +2725,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5757451262 ], @@ -2763,7 +2763,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 29545423 ], @@ -2801,7 +2801,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5757451242 ], @@ -2843,7 +2843,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 1864943558 ], @@ -2889,7 +2889,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 30101230 ], @@ -2935,7 +2935,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 3588212119 ], @@ -2973,7 +2973,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3584131214 ], @@ -3011,7 +3011,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 30458587 ], @@ -3049,7 +3049,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 31428567 ], @@ -3091,7 +3091,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 29545445 ], @@ -3129,7 +3129,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5757451241 ], @@ -3167,7 +3167,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 29484754 ], @@ -3205,7 +3205,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5757451243 ], @@ -3247,7 +3247,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 29484936 ], @@ -3293,7 +3293,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 400020831 ], @@ -3331,7 +3331,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 29484937 ], @@ -3369,7 +3369,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4013569890 ], @@ -3407,7 +3407,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1388978473 ], @@ -3445,7 +3445,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 29485034 ], @@ -3487,7 +3487,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 32178812 ], @@ -3533,7 +3533,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53163625 ], @@ -3583,7 +3583,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4696563247 ], @@ -3621,7 +3621,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 32259207 ], @@ -3667,7 +3667,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 631370102 ], @@ -3713,7 +3713,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53149325 ], @@ -3751,7 +3751,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53163628 ], @@ -3793,7 +3793,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2672451447 ], @@ -3831,7 +3831,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1222221757 ], @@ -3869,7 +3869,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 29545440 ], @@ -3919,7 +3919,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 59713406 ], @@ -3965,7 +3965,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8041342861 ], @@ -4003,7 +4003,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 8041388888 ], @@ -4041,7 +4041,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4789275355 ], @@ -4087,7 +4087,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3670717206 ], @@ -4141,7 +4141,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3670717205 ], @@ -4179,7 +4179,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8041342867 ], @@ -4217,7 +4217,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8041342868 ], @@ -4267,7 +4267,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 978142408 ], @@ -4305,7 +4305,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2672451455 ], @@ -4351,7 +4351,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 29937543 ], @@ -4389,7 +4389,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9454517095 ], @@ -4427,7 +4427,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 32178816 ], @@ -4465,7 +4465,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1841897176 ], @@ -4503,7 +4503,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1841897176 ], @@ -4541,7 +4541,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 29545412 ], @@ -4579,7 +4579,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 29545412 ], diff --git a/tests/src/kingsway_junction/geometry.json b/tests/src/kingsway_junction/geometry.json index fa45bbfb..900ab2db 100644 --- a/tests/src/kingsway_junction/geometry.json +++ b/tests/src/kingsway_junction/geometry.json @@ -7002,7 +7002,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8691903642 ], @@ -7040,7 +7040,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 743547865 ], @@ -7078,7 +7078,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 308222735 ], @@ -7116,7 +7116,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 32026058 ], @@ -7154,7 +7154,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1558341212 ], @@ -7212,7 +7212,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4762076679 ], @@ -7262,7 +7262,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4762076678 ], @@ -7300,7 +7300,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5401617887 ], @@ -7338,7 +7338,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7796397137 ], @@ -7376,7 +7376,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7796397127 ], @@ -7414,7 +7414,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4762076685 ], @@ -7460,7 +7460,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8672774810 ], @@ -7518,7 +7518,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4762076684 ], @@ -7572,7 +7572,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 306917570 ], @@ -7618,7 +7618,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5405641445 ], @@ -7672,7 +7672,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4762076680 ], @@ -7726,7 +7726,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4762076681 ], @@ -7764,7 +7764,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2913621162 ], @@ -7830,7 +7830,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2920872874 ], @@ -7868,7 +7868,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 32025957 ], @@ -7906,7 +7906,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 743548183 ], @@ -7952,7 +7952,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2918472522 ], @@ -7990,7 +7990,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4762076683 ], @@ -8028,7 +8028,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2920872879 ], @@ -8078,7 +8078,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2918434149 ], @@ -8132,7 +8132,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 32025949 ], @@ -8178,7 +8178,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6137128391 ], @@ -8216,7 +8216,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9169444979 ], @@ -8266,7 +8266,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401918 ], @@ -8312,7 +8312,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 743548194 ], @@ -8354,7 +8354,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 955166004 ], @@ -8400,7 +8400,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401795 ], @@ -8442,7 +8442,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 743548133 ], @@ -8500,7 +8500,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401919 ], @@ -8538,7 +8538,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 637466928 ], @@ -8580,7 +8580,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 8672774809 ], @@ -8622,7 +8622,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 32025947 ], @@ -8668,7 +8668,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401794 ], @@ -8706,7 +8706,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790153411 ], @@ -8744,7 +8744,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790153424 ], @@ -8786,7 +8786,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790153400 ], @@ -8828,7 +8828,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 32025961 ], @@ -8866,7 +8866,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6439595305 ], @@ -8908,7 +8908,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790153430 ], @@ -8962,7 +8962,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7796391487 ], @@ -9008,7 +9008,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790153455 ], @@ -9058,7 +9058,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790153452 ], @@ -9124,7 +9124,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 21653578 ], @@ -9166,7 +9166,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401798 ], @@ -9204,7 +9204,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 745988244 ], @@ -9242,7 +9242,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8093690662 ], @@ -9292,7 +9292,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401793 ], @@ -9334,7 +9334,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2918379027 ], @@ -9392,7 +9392,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790153398 ], @@ -9446,7 +9446,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 31287524 ], @@ -9484,7 +9484,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790153418 ], @@ -9534,7 +9534,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6480352153 ], @@ -9572,7 +9572,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9586125751 ], @@ -9618,7 +9618,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790153427 ], @@ -9660,7 +9660,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790153421 ], @@ -9698,7 +9698,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6480352136 ], @@ -9752,7 +9752,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6137128386 ], @@ -9806,7 +9806,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 21653579 ], @@ -9856,7 +9856,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790145018 ], @@ -9918,7 +9918,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 31287523 ], @@ -9956,7 +9956,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790145014 ], @@ -10010,7 +10010,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 745988105 ], @@ -10052,7 +10052,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 743547964 ], @@ -10098,7 +10098,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 743548189 ], @@ -10140,7 +10140,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 31287525 ], @@ -10178,7 +10178,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 743572640 ], @@ -10224,7 +10224,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2790145016 ], @@ -10262,7 +10262,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2913567879 ], @@ -10316,7 +10316,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2918402992 ], @@ -10358,7 +10358,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2913567877 ], @@ -10416,7 +10416,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6480352139 ], @@ -10462,7 +10462,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2918402993 ], @@ -10508,7 +10508,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 955166095 ], @@ -10546,7 +10546,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 955165990 ], @@ -10592,7 +10592,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 955165980 ], @@ -10634,7 +10634,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 2918402990 ], @@ -10680,7 +10680,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 745988281 ], @@ -10718,7 +10718,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 743548122 ], @@ -10756,7 +10756,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 745988236 ], @@ -10802,7 +10802,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 955166125 ], @@ -10852,7 +10852,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4140571229 ], @@ -10890,7 +10890,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2913629004 ], @@ -10932,7 +10932,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 743547944 ], @@ -10970,7 +10970,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6480352128 ], @@ -11016,7 +11016,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6137128080 ], @@ -11066,7 +11066,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 955166067 ], @@ -11112,7 +11112,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 637467098 ], @@ -11154,7 +11154,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 7218399545 ], @@ -11204,7 +11204,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2918402991 ], @@ -11254,7 +11254,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401787 ], @@ -11304,7 +11304,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 955166153 ], @@ -11358,7 +11358,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401799 ], @@ -11412,7 +11412,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2265010779 ], @@ -11450,7 +11450,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1277766621 ], @@ -11488,7 +11488,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 745988141 ], @@ -11526,7 +11526,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401802 ], @@ -11576,7 +11576,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 929679768 ], @@ -11622,7 +11622,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401796 ], @@ -11664,7 +11664,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1277766809 ], @@ -11710,7 +11710,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 745988174 ], @@ -11752,7 +11752,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401809 ], @@ -11790,7 +11790,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9298526716 ], @@ -11836,7 +11836,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401797 ], @@ -11882,7 +11882,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 745988110 ], @@ -11920,7 +11920,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 739096994 ], @@ -11962,7 +11962,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8778504595 ], @@ -12004,7 +12004,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 31287503 ], @@ -12042,7 +12042,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2790133529 ], @@ -12092,7 +12092,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6439595293 ], @@ -12130,7 +12130,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9298570017 ], @@ -12172,7 +12172,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401808 ], @@ -12222,7 +12222,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4145063897 ], @@ -12264,7 +12264,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1277766903 ], @@ -12318,7 +12318,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8778504602 ], @@ -12372,7 +12372,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 31287519 ], @@ -12434,7 +12434,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9298401807 ], @@ -12472,7 +12472,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 745988145 ], @@ -12522,7 +12522,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2913662306 ], @@ -12564,7 +12564,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1277766687 ], @@ -12606,7 +12606,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1277766833 ], @@ -12648,7 +12648,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6439595307 ], @@ -12690,7 +12690,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1278748166 ], @@ -12748,7 +12748,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2913662315 ], @@ -12786,7 +12786,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6439595306 ], @@ -12824,7 +12824,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8778504599 ], @@ -12862,7 +12862,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7003946189 ], @@ -12900,7 +12900,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5824302619 ], @@ -12938,7 +12938,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 745988188 ], @@ -12976,7 +12976,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 31287502 ], @@ -13014,7 +13014,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 31287522 ], @@ -13052,7 +13052,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1277766668 ], @@ -13090,7 +13090,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4040299167 ], @@ -13128,7 +13128,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9298401785 ], @@ -13166,7 +13166,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9280845971 ], @@ -13204,7 +13204,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2920872878 ], @@ -13242,7 +13242,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2920872878 ], @@ -13280,7 +13280,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 743548069 ], @@ -13318,7 +13318,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 743548069 ], @@ -13356,7 +13356,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 637467100 ], @@ -13394,7 +13394,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 637467100 ], @@ -13432,7 +13432,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 745988242 ], @@ -13470,7 +13470,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 745988242 ], diff --git a/tests/src/leeds_cycleway/geometry.json b/tests/src/leeds_cycleway/geometry.json index 7796617b..c32a194c 100644 --- a/tests/src/leeds_cycleway/geometry.json +++ b/tests/src/leeds_cycleway/geometry.json @@ -31981,7 +31981,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3193482754 ], @@ -32019,7 +32019,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1305300599 ], @@ -32057,7 +32057,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8450268992 ], @@ -32095,7 +32095,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2142487689 ], @@ -32133,7 +32133,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5071469704 ], @@ -32171,7 +32171,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5924236782 ], @@ -32209,7 +32209,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6001482087 ], @@ -32247,7 +32247,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5071469694 ], @@ -32285,7 +32285,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6001482135 ], @@ -32323,7 +32323,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 30822588 ], @@ -32361,7 +32361,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5071469695 ], @@ -32399,7 +32399,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 250093012 ], @@ -32437,7 +32437,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9194660290 ], @@ -32475,7 +32475,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1743296708 ], @@ -32513,7 +32513,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1675168086 ], @@ -32551,7 +32551,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 26299406 ], @@ -32601,7 +32601,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9356627340 ], @@ -32647,7 +32647,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26109193 ], @@ -32701,7 +32701,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342605804 ], @@ -32747,7 +32747,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5924236780 ], @@ -32797,7 +32797,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5924236779 ], @@ -32839,7 +32839,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342605802 ], @@ -32889,7 +32889,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482131 ], @@ -32947,7 +32947,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482132 ], @@ -33005,7 +33005,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26298428 ], @@ -33043,7 +33043,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022850280 ], @@ -33089,7 +33089,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022850276 ], @@ -33127,7 +33127,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 21133749 ], @@ -33185,7 +33185,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481692879 ], @@ -33235,7 +33235,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 342579616 ], @@ -33297,7 +33297,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 26298426 ], @@ -33335,7 +33335,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9319419244 ], @@ -33373,7 +33373,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 6665254444 ], @@ -33411,7 +33411,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 320959866 ], @@ -33457,7 +33457,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9356627345 ], @@ -33511,7 +33511,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320959868 ], @@ -33565,7 +33565,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320959869 ], @@ -33603,7 +33603,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5071469689 ], @@ -33649,7 +33649,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5931863421 ], @@ -33687,7 +33687,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3219472273 ], @@ -33733,7 +33733,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5071469697 ], @@ -33779,7 +33779,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5931863420 ], @@ -33833,7 +33833,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5924236781 ], @@ -33891,7 +33891,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26109190 ], @@ -33945,7 +33945,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5981573959 ], @@ -33983,7 +33983,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9319419245 ], @@ -34049,7 +34049,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482091 ], @@ -34115,7 +34115,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482136 ], @@ -34177,7 +34177,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5931863419 ], @@ -34235,7 +34235,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4457095876 ], @@ -34289,7 +34289,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482101 ], @@ -34327,7 +34327,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3219472259 ], @@ -34373,7 +34373,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5071469690 ], @@ -34427,7 +34427,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4457095875 ], @@ -34465,7 +34465,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 317087692 ], @@ -34503,7 +34503,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4457095874 ], @@ -34557,7 +34557,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022850279 ], @@ -34611,7 +34611,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022850278 ], @@ -34657,7 +34657,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 10440056 ], @@ -34695,7 +34695,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 320951154 ], @@ -34745,7 +34745,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342529365 ], @@ -34791,7 +34791,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342529363 ], @@ -34849,7 +34849,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5728993687 ], @@ -34903,7 +34903,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4457095868 ], @@ -34957,7 +34957,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5931863422 ], @@ -35011,7 +35011,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4457095867 ], @@ -35069,7 +35069,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482098 ], @@ -35131,7 +35131,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482090 ], @@ -35193,7 +35193,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482128 ], @@ -35263,7 +35263,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5931863423 ], @@ -35309,7 +35309,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 320959867 ], @@ -35355,7 +35355,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8892765835 ], @@ -35409,7 +35409,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482100 ], @@ -35459,7 +35459,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4457095870 ], @@ -35517,7 +35517,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5071469692 ], @@ -35555,7 +35555,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 6146456169 ], @@ -35601,7 +35601,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8892765836 ], @@ -35647,7 +35647,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5071469702 ], @@ -35689,7 +35689,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5728993720 ], @@ -35735,7 +35735,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482089 ], @@ -35781,7 +35781,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482093 ], @@ -35827,7 +35827,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9319419230 ], @@ -35869,7 +35869,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5071469698 ], @@ -35907,7 +35907,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4364076651 ], @@ -35961,7 +35961,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 301689294 ], @@ -36003,7 +36003,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 4457813299 ], @@ -36053,7 +36053,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5071469703 ], @@ -36111,7 +36111,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9319419240 ], @@ -36165,7 +36165,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6979945558 ], @@ -36211,7 +36211,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482097 ], @@ -36261,7 +36261,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482092 ], @@ -36315,7 +36315,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640864 ], @@ -36365,7 +36365,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6001482094 ], @@ -36427,7 +36427,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5071469699 ], @@ -36473,7 +36473,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5728993691 ], @@ -36531,7 +36531,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640857 ], @@ -36569,7 +36569,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3219472271 ], @@ -36615,7 +36615,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 301689323 ], @@ -36665,7 +36665,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 26298429 ], @@ -36715,7 +36715,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320951161 ], @@ -36753,7 +36753,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3219472282 ], @@ -36811,7 +36811,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9258530380 ], @@ -36865,7 +36865,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640866 ], @@ -36927,7 +36927,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640867 ], @@ -36989,7 +36989,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640868 ], @@ -37043,7 +37043,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640869 ], @@ -37085,7 +37085,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 9319419235 ], @@ -37143,7 +37143,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 26298424 ], @@ -37201,7 +37201,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6047091983 ], @@ -37247,7 +37247,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 342579502 ], @@ -37305,7 +37305,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640881 ], @@ -37375,7 +37375,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640883 ], @@ -37445,7 +37445,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640882 ], @@ -37503,7 +37503,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640880 ], @@ -37553,7 +37553,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8892765838 ], @@ -37591,7 +37591,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4457813310 ], @@ -37649,7 +37649,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640863 ], @@ -37715,7 +37715,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640862 ], @@ -37785,7 +37785,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640861 ], @@ -37843,7 +37843,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640860 ], @@ -37881,7 +37881,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9316506539 ], @@ -37939,7 +37939,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 9316506541 ], @@ -37993,7 +37993,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 320998072 ], @@ -38043,7 +38043,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 26298430 ], @@ -38089,7 +38089,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 342579620 ], @@ -38151,7 +38151,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6047609624 ], @@ -38197,7 +38197,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 342579576 ], @@ -38251,7 +38251,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640871 ], @@ -38321,7 +38321,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640873 ], @@ -38391,7 +38391,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640872 ], @@ -38449,7 +38449,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640870 ], @@ -38499,7 +38499,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8450014339 ], @@ -38537,7 +38537,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9258530382 ], @@ -38591,7 +38591,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 26298425 ], @@ -38653,7 +38653,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264671922 ], @@ -38695,7 +38695,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9319419234 ], @@ -38733,7 +38733,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6101189538 ], @@ -38791,7 +38791,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640874 ], @@ -38833,7 +38833,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26660405 ], @@ -38879,7 +38879,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640858 ], @@ -38941,7 +38941,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640875 ], @@ -39003,7 +39003,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640884 ], @@ -39041,7 +39041,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9319419252 ], @@ -39087,7 +39087,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7924241274 ], @@ -39121,7 +39121,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7261942276 ], @@ -39171,7 +39171,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 26109191 ], @@ -39217,7 +39217,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2014304918 ], @@ -39255,7 +39255,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4500478004 ], @@ -39293,7 +39293,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7261942277 ], @@ -39339,7 +39339,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264671921 ], @@ -39385,7 +39385,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9319419229 ], @@ -39423,7 +39423,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7592482435 ], @@ -39461,7 +39461,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4457813307 ], @@ -39515,7 +39515,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640877 ], @@ -39553,7 +39553,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 4457813308 ], @@ -39611,7 +39611,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640876 ], @@ -39681,7 +39681,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640879 ], @@ -39751,7 +39751,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640878 ], @@ -39801,7 +39801,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6584937084 ], @@ -39839,7 +39839,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1152092776 ], @@ -39893,7 +39893,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 320943570 ], @@ -39947,7 +39947,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5518536456 ], @@ -39997,7 +39997,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8450014342 ], @@ -40055,7 +40055,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640865 ], @@ -40113,7 +40113,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8481640859 ], @@ -40171,7 +40171,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6979945559 ], @@ -40221,7 +40221,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342579512 ], @@ -40271,7 +40271,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304923 ], @@ -40321,7 +40321,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7261942269 ], @@ -40367,7 +40367,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6979945557 ], @@ -40417,7 +40417,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304915 ], @@ -40471,7 +40471,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5518536453 ], @@ -40517,7 +40517,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304919 ], @@ -40571,7 +40571,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 9791699 ], @@ -40625,7 +40625,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 342579578 ], @@ -40675,7 +40675,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7261942271 ], @@ -40721,7 +40721,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 800488938 ], @@ -40775,7 +40775,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304920 ], @@ -40821,7 +40821,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1743212076 ], @@ -40875,7 +40875,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1675168064 ], @@ -40913,7 +40913,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 320998081 ], @@ -40963,7 +40963,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304911 ], @@ -41005,7 +41005,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 358163080 ], @@ -41047,7 +41047,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9319419287 ], @@ -41113,7 +41113,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6584937015 ], @@ -41151,7 +41151,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7261942264 ], @@ -41193,7 +41193,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 4540786888 ], @@ -41235,7 +41235,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342579538 ], @@ -41277,7 +41277,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 643946 ], @@ -41315,7 +41315,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7261942280 ], @@ -41361,7 +41361,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 342579580 ], @@ -41415,7 +41415,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4365671270 ], @@ -41469,7 +41469,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304912 ], @@ -41519,7 +41519,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7261942266 ], @@ -41557,7 +41557,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 358163085 ], @@ -41599,7 +41599,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9791722 ], @@ -41653,7 +41653,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304914 ], @@ -41691,7 +41691,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7924269285 ], @@ -41737,7 +41737,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 370191923 ], @@ -41783,7 +41783,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 26298423 ], @@ -41833,7 +41833,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7261942265 ], @@ -41887,7 +41887,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304908 ], @@ -41925,7 +41925,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 342579626 ], @@ -41963,7 +41963,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6309394782 ], @@ -42001,7 +42001,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6584937053 ], @@ -42059,7 +42059,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342579554 ], @@ -42113,7 +42113,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304895 ], @@ -42159,7 +42159,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 8273166694 ], @@ -42197,7 +42197,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6428423986 ], @@ -42243,7 +42243,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6584827765 ], @@ -42297,7 +42297,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9258530387 ], @@ -42339,7 +42339,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 643945 ], @@ -42381,7 +42381,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6111971409 ], @@ -42419,7 +42419,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 369772541 ], @@ -42469,7 +42469,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6500031458 ], @@ -42511,7 +42511,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 643907 ], @@ -42565,7 +42565,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4365671268 ], @@ -42607,7 +42607,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1152092921 ], @@ -42649,7 +42649,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342579667 ], @@ -42691,7 +42691,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 50021952 ], @@ -42737,7 +42737,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1877939967 ], @@ -42787,7 +42787,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304855 ], @@ -42829,7 +42829,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 21099344 ], @@ -42887,7 +42887,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9258530385 ], @@ -42933,7 +42933,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1877939950 ], @@ -42991,7 +42991,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342579666 ], @@ -43045,7 +43045,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6500031459 ], @@ -43083,7 +43083,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9319419289 ], @@ -43121,7 +43121,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1743212077 ], @@ -43171,7 +43171,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304864 ], @@ -43213,7 +43213,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1877939977 ], @@ -43267,7 +43267,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304856 ], @@ -43317,7 +43317,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26660637 ], @@ -43375,7 +43375,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264671916 ], @@ -43425,7 +43425,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320943573 ], @@ -43479,7 +43479,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304862 ], @@ -43537,7 +43537,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4365671272 ], @@ -43587,7 +43587,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437041 ], @@ -43649,7 +43649,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8174077587 ], @@ -43699,7 +43699,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304901 ], @@ -43737,7 +43737,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7261942252 ], @@ -43787,7 +43787,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 342579586 ], @@ -43841,7 +43841,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1877939971 ], @@ -43883,7 +43883,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1877939969 ], @@ -43933,7 +43933,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437075 ], @@ -43987,7 +43987,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8174077588 ], @@ -44041,7 +44041,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8740550411 ], @@ -44091,7 +44091,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 301689309 ], @@ -44145,7 +44145,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 250348721 ], @@ -44191,7 +44191,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4833244388 ], @@ -44233,7 +44233,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 26300437 ], @@ -44283,7 +44283,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5452444915 ], @@ -44321,7 +44321,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437077 ], @@ -44367,7 +44367,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1601683577 ], @@ -44405,7 +44405,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6665254427 ], @@ -44455,7 +44455,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437048 ], @@ -44513,7 +44513,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320943575 ], @@ -44559,7 +44559,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320943572 ], @@ -44605,7 +44605,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6665254428 ], @@ -44651,7 +44651,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6211583013 ], @@ -44705,7 +44705,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211583020 ], @@ -44751,7 +44751,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 26298420 ], @@ -44801,7 +44801,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342579601 ], @@ -44855,7 +44855,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211583022 ], @@ -44909,7 +44909,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 1022749752 ], @@ -44947,7 +44947,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1877939975 ], @@ -44989,7 +44989,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 60197213 ], @@ -45031,7 +45031,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3193487666 ], @@ -45081,7 +45081,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5452444914 ], @@ -45123,7 +45123,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 682218116 ], @@ -45181,7 +45181,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2014304851 ], @@ -45219,7 +45219,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 342579609 ], @@ -45261,7 +45261,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437116 ], @@ -45319,7 +45319,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9319419267 ], @@ -45357,7 +45357,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237435070 ], @@ -45403,7 +45403,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5452456321 ], @@ -45437,7 +45437,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437070 ], @@ -45483,7 +45483,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 9319419293 ], @@ -45529,7 +45529,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5452444913 ], @@ -45571,7 +45571,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26298432 ], @@ -45625,7 +45625,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2275824794 ], @@ -45675,7 +45675,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5452444908 ], @@ -45725,7 +45725,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1606819535 ], @@ -45775,7 +45775,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5452444895 ], @@ -45837,7 +45837,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6309354662 ], @@ -45887,7 +45887,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26660391 ], @@ -45945,7 +45945,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8174077586 ], @@ -45995,7 +45995,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5452456322 ], @@ -46041,7 +46041,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1675168026 ], @@ -46103,7 +46103,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5452444896 ], @@ -46153,7 +46153,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437002 ], @@ -46191,7 +46191,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237436999 ], @@ -46245,7 +46245,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6309407701 ], @@ -46299,7 +46299,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320943571 ], @@ -46353,7 +46353,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8740550412 ], @@ -46411,7 +46411,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437001 ], @@ -46449,7 +46449,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6309394776 ], @@ -46495,7 +46495,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378763 ], @@ -46533,7 +46533,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 342579596 ], @@ -46587,7 +46587,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237436998 ], @@ -46625,7 +46625,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6309407702 ], @@ -46679,7 +46679,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5452444899 ], @@ -46725,7 +46725,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237435065 ], @@ -46779,7 +46779,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237436997 ], @@ -46825,7 +46825,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378764 ], @@ -46871,7 +46871,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342579521 ], @@ -46917,7 +46917,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237435066 ], @@ -46963,7 +46963,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378765 ], @@ -47009,7 +47009,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 643911 ], @@ -47055,7 +47055,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320943615 ], @@ -47101,7 +47101,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5452444904 ], @@ -47155,7 +47155,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237436996 ], @@ -47201,7 +47201,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 659971029 ], @@ -47251,7 +47251,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342579517 ], @@ -47297,7 +47297,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 319558919 ], @@ -47347,7 +47347,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5452444905 ], @@ -47389,7 +47389,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 370191920 ], @@ -47427,7 +47427,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378766 ], @@ -47465,7 +47465,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6309354657 ], @@ -47727,7 +47727,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6216919223 ], @@ -47777,7 +47777,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237435071 ], @@ -47831,7 +47831,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4029217614 ], @@ -47869,7 +47869,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237435069 ], @@ -47919,7 +47919,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8312439326 ], @@ -47957,7 +47957,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8740550413 ], @@ -47995,7 +47995,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9319419273 ], @@ -48049,7 +48049,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9319419274 ], @@ -48091,7 +48091,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264671914 ], @@ -48141,7 +48141,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 301689312 ], @@ -48403,7 +48403,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6596024418 ], @@ -48457,7 +48457,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320943606 ], @@ -48503,7 +48503,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8312439329 ], @@ -48541,7 +48541,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1877939939 ], @@ -48603,7 +48603,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5728993838 ], @@ -48645,7 +48645,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4833244389 ], @@ -48695,7 +48695,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9316506598 ], @@ -48749,7 +48749,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1877939942 ], @@ -48787,7 +48787,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378768 ], @@ -48841,7 +48841,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1877939944 ], @@ -48891,7 +48891,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211583005 ], @@ -48933,7 +48933,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 643951 ], @@ -48987,7 +48987,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 301689321 ], @@ -49025,7 +49025,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1675168038 ], @@ -49067,7 +49067,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 60197210 ], @@ -49109,7 +49109,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3193487669 ], @@ -49147,7 +49147,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6665254450 ], @@ -49193,7 +49193,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 26661432 ], @@ -49255,7 +49255,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 643950 ], @@ -49305,7 +49305,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9316506597 ], @@ -49355,7 +49355,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6665254454 ], @@ -49409,7 +49409,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 643906 ], @@ -49455,7 +49455,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264670253 ], @@ -49493,7 +49493,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 1606959655 ], @@ -49539,7 +49539,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 1591373171 ], @@ -49597,7 +49597,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264670255 ], @@ -49651,7 +49651,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320943617 ], @@ -49713,7 +49713,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 643914 ], @@ -49755,7 +49755,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7105816299 ], @@ -49793,7 +49793,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8312439373 ], @@ -49855,7 +49855,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5728993833 ], @@ -49897,7 +49897,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9823112 ], @@ -49955,7 +49955,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1152092781 ], @@ -49997,7 +49997,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26661455 ], @@ -50051,7 +50051,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437091 ], @@ -50089,7 +50089,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8990249596 ], @@ -50139,7 +50139,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 643852 ], @@ -50189,7 +50189,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1152092841 ], @@ -50239,7 +50239,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437093 ], @@ -50285,7 +50285,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1591373154 ], @@ -50331,7 +50331,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 682264890 ], @@ -50377,7 +50377,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26661443 ], @@ -50415,7 +50415,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211583011 ], @@ -50465,7 +50465,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320943620 ], @@ -50519,7 +50519,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6905278501 ], @@ -50561,7 +50561,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26661442 ], @@ -50615,7 +50615,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5728993836 ], @@ -50673,7 +50673,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 342628235 ], @@ -50735,7 +50735,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6740104094 ], @@ -50797,7 +50797,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1606959629 ], @@ -50863,7 +50863,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1591373175 ], @@ -50905,7 +50905,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3672602007 ], @@ -50951,7 +50951,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9258530363 ], @@ -50989,7 +50989,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6740071784 ], @@ -51027,7 +51027,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437092 ], @@ -51073,7 +51073,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6905278494 ], @@ -51135,7 +51135,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6935272506 ], @@ -51173,7 +51173,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6905278499 ], @@ -51227,7 +51227,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 26661426 ], @@ -51265,7 +51265,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6905278500 ], @@ -51303,7 +51303,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7237437098 ], @@ -51341,7 +51341,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437094 ], @@ -51399,7 +51399,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8990249594 ], @@ -51453,7 +51453,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 9740274255 ], @@ -51507,7 +51507,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6596024419 ], @@ -51565,7 +51565,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5728993707 ], @@ -51631,7 +51631,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6596024424 ], @@ -51693,7 +51693,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6935272510 ], @@ -51731,7 +51731,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7241259893 ], @@ -51769,7 +51769,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7237437096 ], @@ -51823,7 +51823,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1569783677 ], @@ -51861,7 +51861,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9316506599 ], @@ -51915,7 +51915,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6905278495 ], @@ -51961,7 +51961,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 26661454 ], @@ -52011,7 +52011,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9823132 ], @@ -52061,7 +52061,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6935272509 ], @@ -52119,7 +52119,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8990249593 ], @@ -52177,7 +52177,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1284137007 ], @@ -52227,7 +52227,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5728993834 ], @@ -52281,7 +52281,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378781 ], @@ -52331,7 +52331,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211583009 ], @@ -52381,7 +52381,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9740274258 ], @@ -52427,7 +52427,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 1591373192 ], @@ -52465,7 +52465,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7241259894 ], @@ -52507,7 +52507,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 358204009 ], @@ -52557,7 +52557,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211583008 ], @@ -52607,7 +52607,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264670275 ], @@ -52645,7 +52645,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9740274265 ], @@ -52707,7 +52707,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 3381506666 ], @@ -52765,7 +52765,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1284137095 ], @@ -52831,7 +52831,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211582994 ], @@ -52885,7 +52885,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211583002 ], @@ -52931,7 +52931,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1296601330 ], @@ -52985,7 +52985,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1569761300 ], @@ -53023,7 +53023,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264670280 ], @@ -53085,7 +53085,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 615978081 ], @@ -53131,7 +53131,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6309354601 ], @@ -53185,7 +53185,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378757 ], @@ -53223,7 +53223,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1606959376 ], @@ -53269,7 +53269,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1591373207 ], @@ -53315,7 +53315,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211583003 ], @@ -53361,7 +53361,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378782 ], @@ -53399,7 +53399,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6596024422 ], @@ -53469,7 +53469,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1591373161 ], @@ -53507,7 +53507,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7105816301 ], @@ -53561,7 +53561,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3672604268 ], @@ -53599,7 +53599,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 26298445 ], @@ -53653,7 +53653,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4833244387 ], @@ -53699,7 +53699,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211583004 ], @@ -53745,7 +53745,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1675168033 ], @@ -53783,7 +53783,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 26661419 ], @@ -53837,7 +53837,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3381506667 ], @@ -53875,7 +53875,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8674724110 ], @@ -53913,7 +53913,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 342579557 ], @@ -53951,7 +53951,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1606819521 ], @@ -54001,7 +54001,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3371780106 ], @@ -54039,7 +54039,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1020737673 ], @@ -54097,7 +54097,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211582997 ], @@ -54135,7 +54135,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5506378774 ], @@ -54185,7 +54185,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1591373158 ], @@ -54227,7 +54227,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1606959650 ], @@ -54285,7 +54285,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6596024421 ], @@ -54323,7 +54323,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9740274263 ], @@ -54369,7 +54369,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2165840661 ], @@ -54419,7 +54419,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342626328 ], @@ -54465,7 +54465,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378777 ], @@ -54507,7 +54507,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264670261 ], @@ -54553,7 +54553,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1152092910 ], @@ -54615,7 +54615,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211582998 ], @@ -54661,7 +54661,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 342579559 ], @@ -54703,7 +54703,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378778 ], @@ -54745,7 +54745,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378793 ], @@ -54783,7 +54783,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 26298442 ], @@ -54821,7 +54821,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 1591164975 ], @@ -54871,7 +54871,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378779 ], @@ -54933,7 +54933,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 26661446 ], @@ -54979,7 +54979,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1675168031 ], @@ -55025,7 +55025,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6309354609 ], @@ -55067,7 +55067,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3381506663 ], @@ -55109,7 +55109,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1020737641 ], @@ -55155,7 +55155,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378761 ], @@ -55197,7 +55197,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6211583000 ], @@ -55235,7 +55235,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3381506664 ], @@ -55297,7 +55297,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320943623 ], @@ -55347,7 +55347,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 659985459 ], @@ -55393,7 +55393,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6905250281 ], @@ -55435,7 +55435,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 358204012 ], @@ -55493,7 +55493,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 342529324 ], @@ -55531,7 +55531,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5851965030 ], @@ -55573,7 +55573,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6665254462 ], @@ -55627,7 +55627,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 26661452 ], @@ -55665,7 +55665,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264559102 ], @@ -55703,7 +55703,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 342529328 ], @@ -55753,7 +55753,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1591373193 ], @@ -55799,7 +55799,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1020737603 ], @@ -55853,7 +55853,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5506378752 ], @@ -55907,7 +55907,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3371780107 ], @@ -55957,7 +55957,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 320943624 ], @@ -56011,7 +56011,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5506378754 ], @@ -56057,7 +56057,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8733041518 ], @@ -56103,7 +56103,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7692244824 ], @@ -56149,7 +56149,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6665254467 ], @@ -56199,7 +56199,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8733041519 ], @@ -56249,7 +56249,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5506378775 ], @@ -56303,7 +56303,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6264559092 ], @@ -56341,7 +56341,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7241259895 ], @@ -56399,7 +56399,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 475070619 ], @@ -56449,7 +56449,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 475070618 ], @@ -56499,7 +56499,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1020737577 ], @@ -56549,7 +56549,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 643851 ], @@ -56591,7 +56591,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 26298441 ], @@ -56629,7 +56629,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1675168030 ], @@ -56691,7 +56691,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5728993689 ], @@ -56745,7 +56745,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 342579565 ], @@ -56803,7 +56803,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 1020737601 ], @@ -56845,7 +56845,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8312439358 ], @@ -56887,7 +56887,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 3181227677 ], @@ -56925,7 +56925,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8660924478 ], @@ -56975,7 +56975,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1606819527 ], @@ -57025,7 +57025,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 26661450 ], @@ -57083,7 +57083,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 478743247 ], @@ -57121,7 +57121,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 4361246658 ], @@ -57167,7 +57167,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5728993713 ], @@ -57209,7 +57209,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 26661448 ], @@ -57271,7 +57271,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4361246652 ], @@ -57321,7 +57321,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 394143337 ], @@ -57359,7 +57359,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8312439359 ], @@ -57397,7 +57397,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 4361246660 ], @@ -57435,7 +57435,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6584937059 ], @@ -57477,7 +57477,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2377604550 ], @@ -57523,7 +57523,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 3181227681 ], @@ -57561,7 +57561,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6584937067 ], @@ -57611,7 +57611,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8312439361 ], @@ -57657,7 +57657,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 394143340 ], @@ -57707,7 +57707,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4361248196 ], @@ -57749,7 +57749,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1296601030 ], @@ -57799,7 +57799,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4361246654 ], @@ -57837,7 +57837,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6665254468 ], @@ -57895,7 +57895,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8312439368 ], @@ -57933,7 +57933,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5506378742 ], @@ -57971,7 +57971,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5506378741 ], @@ -58017,7 +58017,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5506378693 ], @@ -58055,7 +58055,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5335915830 ], @@ -58093,7 +58093,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9892308679 ], @@ -58131,7 +58131,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6584937066 ], @@ -58169,7 +58169,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 762669698 ], @@ -58207,7 +58207,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4361246653 ], @@ -58245,7 +58245,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1591373213 ], @@ -58283,7 +58283,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 342620651 ], @@ -58321,7 +58321,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 475070635 ], @@ -58359,7 +58359,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9823073 ], @@ -58397,7 +58397,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1675168080 ], @@ -58435,7 +58435,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7692244823 ], @@ -58473,7 +58473,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 358204014 ], @@ -58511,7 +58511,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7261160050 ], @@ -58549,7 +58549,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 474665273 ], @@ -58587,7 +58587,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9823004 ], @@ -58625,7 +58625,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3174228063 ], @@ -58663,7 +58663,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3193487681 ], @@ -58701,7 +58701,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3193487683 ], @@ -58739,7 +58739,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7275677007 ], @@ -58777,7 +58777,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7275677007 ], @@ -58815,7 +58815,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 301688528 ], @@ -58853,7 +58853,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 301688528 ], @@ -58891,7 +58891,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 26109188 ], @@ -58929,7 +58929,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 26109188 ], @@ -58967,7 +58967,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4457095865 ], @@ -59005,7 +59005,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4457095865 ], @@ -59043,7 +59043,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 320951155 ], @@ -59081,7 +59081,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 26661423 ], @@ -59119,7 +59119,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 26661423 ], @@ -59157,7 +59157,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1277537020 ], @@ -59195,7 +59195,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1277537020 ], @@ -59233,7 +59233,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6264670282 ], @@ -59271,7 +59271,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6264670282 ], @@ -59309,7 +59309,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 26298440 ], @@ -59347,7 +59347,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8312439365 ], @@ -59385,7 +59385,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8312439365 ], @@ -59423,7 +59423,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5506378690 ], @@ -59461,7 +59461,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5506378690 ], @@ -59499,7 +59499,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5506378735 ], @@ -59537,7 +59537,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5506378735 ], @@ -59575,7 +59575,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1020737635 ], @@ -59613,7 +59613,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1020737635 ], diff --git a/tests/src/montlake_roundabout/geometry.json b/tests/src/montlake_roundabout/geometry.json index 466293a6..f93f93b6 100644 --- a/tests/src/montlake_roundabout/geometry.json +++ b/tests/src/montlake_roundabout/geometry.json @@ -276,7 +276,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53084804 ], @@ -314,7 +314,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53128042 ], @@ -352,7 +352,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9167872266 ], @@ -390,7 +390,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53096947 ], @@ -428,7 +428,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53084816 ], @@ -490,7 +490,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9167886997, 9167886986, diff --git a/tests/src/northgate_dual_carriageway/geometry.json b/tests/src/northgate_dual_carriageway/geometry.json index 073dfe43..517bd576 100644 --- a/tests/src/northgate_dual_carriageway/geometry.json +++ b/tests/src/northgate_dual_carriageway/geometry.json @@ -7136,7 +7136,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8986752618 ], @@ -7174,7 +7174,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8986750916 ], @@ -7212,7 +7212,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7518081853 ], @@ -7250,7 +7250,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 944726788 ], @@ -7288,7 +7288,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7518081836 ], @@ -7326,7 +7326,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6224066906 ], @@ -7384,7 +7384,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53029362 ], @@ -7430,7 +7430,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53234912 ], @@ -7468,7 +7468,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4787708489 ], @@ -7506,7 +7506,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 90251447 ], @@ -7548,7 +7548,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 95600603 ], @@ -7590,7 +7590,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4022851877 ], @@ -7628,7 +7628,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1778657883 ], @@ -7666,7 +7666,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3835317537 ], @@ -7704,7 +7704,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8986752620 ], @@ -7758,7 +7758,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788161 ], @@ -7796,7 +7796,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8986752621 ], @@ -7838,7 +7838,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 476254735 ], @@ -7876,7 +7876,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 476254637 ], @@ -7914,7 +7914,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788177 ], @@ -7952,7 +7952,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6503414647 ], @@ -7990,7 +7990,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3835317544 ], @@ -8028,7 +8028,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788178 ], @@ -8070,7 +8070,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1968559770 ], @@ -8124,7 +8124,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788179 ], @@ -8178,7 +8178,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788163 ], @@ -8216,7 +8216,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788164 ], @@ -8274,7 +8274,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 476254734 ], @@ -8312,7 +8312,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788165 ], @@ -8350,7 +8350,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788166 ], @@ -8388,7 +8388,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788167 ], @@ -8430,7 +8430,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53100766 ], @@ -8468,7 +8468,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788168 ], @@ -8506,7 +8506,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 53100765 ], @@ -8552,7 +8552,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 1968559768 ], @@ -8590,7 +8590,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788169 ], @@ -8628,7 +8628,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 666566888 ], @@ -8666,7 +8666,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9718788170 ], @@ -8724,7 +8724,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4554773505 ], @@ -8782,7 +8782,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4554773508 ], @@ -8840,7 +8840,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4554837508 ], @@ -8898,7 +8898,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4632418342 ], @@ -8936,7 +8936,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 910032566 ], @@ -8974,7 +8974,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9693399658 ], @@ -9020,7 +9020,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9693399659 ], @@ -9058,7 +9058,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9693399665 ], @@ -9096,7 +9096,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9693399661 ], @@ -9134,7 +9134,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9693399662 ], @@ -9172,7 +9172,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9693399664 ], @@ -9226,7 +9226,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9188152718 ], @@ -9284,7 +9284,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9812120063 ], @@ -9346,7 +9346,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9188152680 ], @@ -9384,7 +9384,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4272355596 ], @@ -9422,7 +9422,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9188152707 ], @@ -9464,7 +9464,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 9322923125 ], @@ -9502,7 +9502,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9384044289 ], @@ -9572,7 +9572,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9322923130 ], @@ -9610,7 +9610,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9772983389 ], @@ -9656,7 +9656,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 9772983384 ], @@ -9718,7 +9718,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53211559 ], @@ -9776,7 +9776,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 476254742 ], @@ -9838,7 +9838,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 411602465 ], @@ -9876,7 +9876,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9384044300 ], @@ -9914,7 +9914,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9384044299 ], @@ -9952,7 +9952,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 471309345 ], @@ -10010,7 +10010,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9188152684 ], @@ -10056,7 +10056,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 95601224 ], @@ -10094,7 +10094,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 400473864 ], @@ -10148,7 +10148,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1968559794 ], @@ -10206,7 +10206,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9734066143 ], @@ -10244,7 +10244,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4632418344 ], @@ -10282,7 +10282,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9384178855 ], @@ -10320,7 +10320,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9188152667 ], @@ -10358,7 +10358,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9188152666 ], @@ -10396,7 +10396,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9123420395 ], @@ -10434,7 +10434,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8975595220 ], @@ -10484,7 +10484,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8500822585 ], @@ -10522,7 +10522,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9772983386 ], @@ -10560,7 +10560,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9772983388 ], @@ -10598,7 +10598,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8500822586 ], @@ -10656,7 +10656,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4554843686 ], @@ -10710,7 +10710,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8500822634 ], @@ -10760,7 +10760,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2706302796 ], @@ -10818,7 +10818,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4554843688 ], @@ -10868,7 +10868,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8500809111 ], @@ -10922,7 +10922,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 411602471 ], @@ -10960,7 +10960,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9188152681 ], @@ -11018,7 +11018,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2706302803 ], @@ -11076,7 +11076,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8500809112 ], @@ -11130,7 +11130,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2706302792 ], @@ -11168,7 +11168,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8500822593 ], @@ -11206,7 +11206,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4787774424 ], @@ -11264,7 +11264,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8500822594 ], @@ -11302,7 +11302,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6139800717 ], @@ -11340,7 +11340,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2706302794 ], @@ -11382,7 +11382,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 1968559734 ], @@ -11440,7 +11440,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 476661976 ], @@ -11490,7 +11490,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 476661975 ], @@ -11548,7 +11548,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1395426463 ], @@ -11606,7 +11606,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9127145511 ], @@ -11664,7 +11664,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9123420400 ], @@ -11702,7 +11702,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9725987903 ], @@ -11740,7 +11740,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4723314713 ], @@ -11794,7 +11794,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9725987906 ], @@ -11840,7 +11840,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9384317428 ], @@ -11886,7 +11886,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4789250352 ], @@ -11924,7 +11924,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9725719359 ], @@ -11962,7 +11962,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1111800655 ], @@ -12016,7 +12016,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2706302812 ], @@ -12058,7 +12058,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9725987904 ], @@ -12096,7 +12096,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 476714811 ], @@ -12146,7 +12146,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 411602472 ], @@ -12204,7 +12204,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4554843678 ], @@ -12262,7 +12262,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 476715244 ], @@ -12320,7 +12320,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9812120018 ], @@ -12370,7 +12370,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2706302814 ], @@ -12408,7 +12408,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4787774425 ], @@ -12454,7 +12454,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 479716854 ], @@ -12500,7 +12500,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 479716851 ], @@ -12554,7 +12554,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 479716858 ], @@ -12604,7 +12604,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 476715215 ], @@ -12646,7 +12646,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 476715211 ], @@ -12684,7 +12684,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2706302783 ], @@ -12722,7 +12722,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2706302805 ], @@ -12760,7 +12760,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4787774428 ], @@ -12810,7 +12810,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9198107249 ], @@ -12884,7 +12884,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 7625387504, 53092587 @@ -12931,7 +12931,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 4787774433 ], @@ -12969,7 +12969,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53092591 ], @@ -13023,7 +13023,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 7625387502 ], @@ -13069,7 +13069,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7625387501 ], @@ -13107,7 +13107,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 3409784125 ], @@ -13149,7 +13149,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1905102152 ], @@ -13187,7 +13187,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4272355594 ], @@ -13233,7 +13233,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 53092589 ], @@ -13275,7 +13275,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 476715048 ], @@ -13317,7 +13317,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9198107248 ], @@ -13355,7 +13355,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4787774427 ], @@ -13409,7 +13409,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4022851873 ], @@ -13451,7 +13451,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1905102153 ], @@ -13489,7 +13489,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4787774426 ], @@ -13527,7 +13527,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9754620676 ], @@ -13577,7 +13577,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 3711400490 ], @@ -13615,7 +13615,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096640 ], @@ -13653,7 +13653,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7518081809 ], @@ -13691,7 +13691,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2542516444 ], @@ -13745,7 +13745,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096644 ], @@ -13783,7 +13783,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096645 ], @@ -13821,7 +13821,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5420650496 ], @@ -13859,7 +13859,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096631 ], @@ -13897,7 +13897,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096630 ], @@ -13935,7 +13935,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096634 ], @@ -13973,7 +13973,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096633 ], @@ -14019,7 +14019,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096638 ], @@ -14057,7 +14057,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096637 ], @@ -14095,7 +14095,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096636 ], @@ -14141,7 +14141,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9801096635 ], @@ -14187,7 +14187,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4787774436 ], @@ -14237,7 +14237,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 3711400491 ], @@ -14275,7 +14275,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9687585569 ], @@ -14321,7 +14321,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9687585570 ], @@ -14359,7 +14359,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9687585571 ], @@ -14397,7 +14397,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9687585572 ], @@ -14435,7 +14435,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9800404631 ], @@ -14473,7 +14473,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9800403235 ], @@ -14511,7 +14511,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9800404629 ], @@ -14549,7 +14549,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5420650298 ], @@ -14587,7 +14587,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9800403239 ], @@ -14625,7 +14625,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4787774435 ], @@ -14663,7 +14663,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5420650779 ], @@ -14701,7 +14701,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 8145533038 ], @@ -14739,7 +14739,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 95600097 ], @@ -14777,7 +14777,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 95600097 ], diff --git a/tests/src/oneway_loop/geometry.json b/tests/src/oneway_loop/geometry.json index a6e30516..47ecbe66 100644 --- a/tests/src/oneway_loop/geometry.json +++ b/tests/src/oneway_loop/geometry.json @@ -1810,7 +1810,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1080429989 ], @@ -1848,7 +1848,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1080430042 ], @@ -1886,7 +1886,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3080103386 ], @@ -1936,7 +1936,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1080429864 ], @@ -1998,7 +1998,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 25496666 ], @@ -2052,7 +2052,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 25496667 ], @@ -2110,7 +2110,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9586144486 ], @@ -2168,7 +2168,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9586144488 ], @@ -2214,7 +2214,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1080429785 ], @@ -2256,7 +2256,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1080429761 ], @@ -2302,7 +2302,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1080429836 ], @@ -2360,7 +2360,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9568915258 ], @@ -2398,7 +2398,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9568915259 ], @@ -2456,7 +2456,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9568915241 ], @@ -2506,7 +2506,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9568915256 ], @@ -2552,7 +2552,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9568915240 ], @@ -2606,7 +2606,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9568915239 ], @@ -2656,7 +2656,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9586144492 ], @@ -2710,7 +2710,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1701265003 ], @@ -2756,7 +2756,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 25496664 ], @@ -2802,7 +2802,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1701265007 ], @@ -2840,7 +2840,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1701264964 ], @@ -2890,7 +2890,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 25496663 ], @@ -2928,7 +2928,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 25496662 ], @@ -2970,7 +2970,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 1701265019 ], @@ -3008,7 +3008,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1668102671 ], @@ -3046,7 +3046,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7845046175 ], @@ -3084,7 +3084,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7845046177 ], @@ -3122,7 +3122,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1249482198 ], @@ -3160,7 +3160,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1933344140 ], @@ -3198,7 +3198,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1737173631 ], diff --git a/tests/src/perth_peanut_roundabout/geometry.json b/tests/src/perth_peanut_roundabout/geometry.json index a09f9d1b..6ebe485d 100644 --- a/tests/src/perth_peanut_roundabout/geometry.json +++ b/tests/src/perth_peanut_roundabout/geometry.json @@ -1758,7 +1758,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6207591823 ], @@ -1796,7 +1796,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5548292729 ], @@ -1834,7 +1834,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2951226263 ], @@ -1880,7 +1880,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 367714943 ], @@ -1918,7 +1918,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 367715386 ], @@ -1956,7 +1956,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 367715438 ], @@ -1998,7 +1998,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5548292617 ], @@ -2048,7 +2048,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5082186796 ], @@ -2094,7 +2094,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 367716964 ], @@ -2136,7 +2136,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 585206954 ], @@ -2178,7 +2178,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5082188321 ], @@ -2216,7 +2216,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5082186794 ], @@ -2254,7 +2254,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 585206949 ], @@ -2304,7 +2304,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 585206960 ], @@ -2350,7 +2350,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 61067223 ], @@ -2404,7 +2404,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 585206956 ], @@ -2450,7 +2450,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 585206952 ], @@ -2500,7 +2500,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6257803111 ], @@ -2554,7 +2554,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6257803113 ], @@ -2600,7 +2600,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 585206951 ], @@ -2650,7 +2650,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 585206957 ], @@ -2692,7 +2692,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6257803115 ], @@ -2734,7 +2734,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5548292618 ], @@ -2784,7 +2784,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 569953961 ], @@ -2830,7 +2830,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 69038058 ], @@ -2876,7 +2876,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 69038027 ], @@ -2922,7 +2922,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 585206961 ], @@ -2972,7 +2972,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6265225781 ], @@ -3026,7 +3026,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5082188179 ], @@ -3064,7 +3064,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5082188178 ], @@ -3102,7 +3102,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 59750386 ], @@ -3140,7 +3140,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6265225783 ], @@ -3178,7 +3178,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 569953700 ], @@ -3216,7 +3216,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6261661812 ], @@ -3254,7 +3254,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 69037929 ], @@ -3292,7 +3292,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 69038540 ], @@ -3330,7 +3330,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3959658626 ], @@ -3368,7 +3368,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3959658626 ], diff --git a/tests/src/perth_stretched_lights/geometry.json b/tests/src/perth_stretched_lights/geometry.json index 097dab1b..4ea2bc6c 100644 --- a/tests/src/perth_stretched_lights/geometry.json +++ b/tests/src/perth_stretched_lights/geometry.json @@ -358,7 +358,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6207587996 ], @@ -396,7 +396,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 367715249 ], @@ -442,7 +442,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 367715264 ], @@ -488,7 +488,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 33397360 ], @@ -534,7 +534,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6257659836 ], @@ -576,7 +576,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6257659835 ], @@ -614,7 +614,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 367715398 ], @@ -652,7 +652,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 367715375 ], diff --git a/tests/src/roosevelt_cycletrack/geometry.json b/tests/src/roosevelt_cycletrack/geometry.json index caabe725..9539f610 100644 --- a/tests/src/roosevelt_cycletrack/geometry.json +++ b/tests/src/roosevelt_cycletrack/geometry.json @@ -4774,7 +4774,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 53252992 ], @@ -4812,7 +4812,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 3318126091 ], @@ -4850,7 +4850,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 53102768 ], @@ -4888,7 +4888,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 53176049 ], @@ -4926,7 +4926,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9150316167 ], @@ -4964,7 +4964,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9150316143 ], @@ -5002,7 +5002,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 752191853 ], @@ -5040,7 +5040,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 53070289 ], @@ -5078,7 +5078,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 752191859 ], @@ -5116,7 +5116,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9153364304 ], @@ -5154,7 +5154,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9150316190 ], @@ -5192,7 +5192,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 3570362036 ], @@ -5230,7 +5230,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 53079356 ], @@ -5268,7 +5268,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6338026453 ], @@ -5322,7 +5322,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7797741149 ], @@ -5360,7 +5360,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4694405879 ], @@ -5398,7 +5398,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6338033838 ], @@ -5436,7 +5436,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4829706959 ], @@ -5474,7 +5474,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4829706954 ], @@ -5512,7 +5512,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4694384138 ], @@ -5550,7 +5550,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4829706956 ], @@ -5588,7 +5588,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4831220201 ], @@ -5626,7 +5626,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4829706955 ], @@ -5664,7 +5664,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53108152 ], @@ -5702,7 +5702,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53079357 ], @@ -5756,7 +5756,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53162654 ], @@ -5798,7 +5798,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53242039 ], @@ -5844,7 +5844,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1099460970 ], @@ -5882,7 +5882,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4831220179 ], @@ -5920,7 +5920,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4831220200 ], @@ -5966,7 +5966,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8318893544 ], @@ -6004,7 +6004,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3976726723 ], @@ -6054,7 +6054,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8318893546 ], @@ -6104,7 +6104,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5908863566 ], @@ -6146,7 +6146,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5908851932 ], @@ -6176,7 +6176,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3976726724 ], @@ -6210,7 +6210,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5908851924 ], @@ -6256,7 +6256,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5908851929 ], @@ -6294,7 +6294,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4531063551 ], @@ -6332,7 +6332,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3976726725 ], @@ -6386,7 +6386,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5908863568 ], @@ -6436,7 +6436,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8318893551 ], @@ -6474,7 +6474,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5908863567 ], @@ -6512,7 +6512,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9451600301 ], @@ -6550,7 +6550,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3003528165 ], @@ -6620,7 +6620,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8428577667 ], @@ -6662,7 +6662,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4694379084 ], @@ -6700,7 +6700,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 53149329 ], @@ -6738,7 +6738,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5908851926 ], @@ -6788,7 +6788,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 4583297951 ], @@ -6838,7 +6838,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5908863569 ], @@ -6888,7 +6888,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5674754357 ], @@ -6942,7 +6942,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53079358 ], @@ -6988,7 +6988,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5674754355 ], @@ -7026,7 +7026,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5154286399 ], @@ -7080,7 +7080,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5452243878 ], @@ -7138,7 +7138,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4384739635 ], @@ -7196,7 +7196,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5443485497 ], @@ -7250,7 +7250,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4384739632 ], @@ -7296,7 +7296,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 59711142 ], @@ -7334,7 +7334,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4272380198 ], @@ -7388,7 +7388,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4384739631 ], @@ -7442,7 +7442,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4384739623 ], @@ -7496,7 +7496,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4384739630 ], @@ -7550,7 +7550,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4384739627 ], @@ -7604,7 +7604,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4384739624 ], @@ -7642,7 +7642,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6697419470 ], @@ -7692,7 +7692,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5443485520 ], @@ -7742,7 +7742,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5443485515 ], @@ -7788,7 +7788,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53222750 ], @@ -7838,7 +7838,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5443485510 ], @@ -7888,7 +7888,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 7152797295 ], @@ -7938,7 +7938,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53162656 ], @@ -7976,7 +7976,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3003528164 ], @@ -8026,7 +8026,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6040524426 ], @@ -8064,7 +8064,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53097833 ], @@ -8110,7 +8110,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53231060 ], @@ -8156,7 +8156,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 53108154 ], @@ -8206,7 +8206,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 53190558 ], @@ -8252,7 +8252,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 59713117 ], @@ -8298,7 +8298,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53231061 ], @@ -8348,7 +8348,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 53231062 ], @@ -8398,7 +8398,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 59713137 ], @@ -8444,7 +8444,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 53102770 ], @@ -8482,7 +8482,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 4214025137 ], @@ -8520,7 +8520,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 59713148 ], @@ -8570,7 +8570,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5443485514 ], @@ -8620,7 +8620,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 59713145 ], @@ -8670,7 +8670,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9729815848 ], @@ -8708,7 +8708,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 59713144 ], @@ -8746,7 +8746,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7152797297 ], @@ -8784,7 +8784,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9729815850 ], @@ -8822,7 +8822,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 53222751 ], @@ -8860,7 +8860,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 53162658 ], @@ -8898,7 +8898,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 59596700 ], @@ -8936,7 +8936,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9152495564 ], @@ -8974,7 +8974,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 9152495542 ], @@ -9012,7 +9012,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9152462287 ], @@ -9066,7 +9066,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9153364274, 9153364275, @@ -9140,7 +9140,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9153364295, 9153364282, diff --git a/tests/src/seattle_slip_lane/geometry.json b/tests/src/seattle_slip_lane/geometry.json index 24a15f31..3831aa2b 100644 --- a/tests/src/seattle_slip_lane/geometry.json +++ b/tests/src/seattle_slip_lane/geometry.json @@ -1823,7 +1823,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53079356 ], @@ -1873,7 +1873,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8318893544 ], @@ -1923,7 +1923,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8318893546 ], @@ -1961,7 +1961,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4531063551 ], @@ -2011,7 +2011,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8318893551 ], @@ -2049,7 +2049,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9451600301 ], @@ -2119,7 +2119,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8428577667 ], @@ -2161,7 +2161,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4694379084 ], @@ -2199,7 +2199,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53149329 ], @@ -2249,7 +2249,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 4583297951 ], @@ -2299,7 +2299,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5674754357 ], @@ -2353,7 +2353,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 53079358 ], @@ -2399,7 +2399,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5674754355 ], @@ -2445,7 +2445,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 59711142 ], @@ -2483,7 +2483,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4272380198 ], @@ -2521,7 +2521,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6697419470 ], @@ -2559,7 +2559,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53162656 ], @@ -2597,7 +2597,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 59713148 ], @@ -2647,7 +2647,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 59713145 ], @@ -2697,7 +2697,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9729815848 ], @@ -2751,7 +2751,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6886226579 ], @@ -2805,7 +2805,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6886226578 ], @@ -2843,7 +2843,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6900725446 ], @@ -2901,7 +2901,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9729815854 ], @@ -2951,7 +2951,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 59713144 ], @@ -2989,7 +2989,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 59713140 ], @@ -3043,7 +3043,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9729815853 ], @@ -3113,7 +3113,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9729815852 ], @@ -3163,7 +3163,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9729815851 ], @@ -3213,7 +3213,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9729815856 ], @@ -3267,7 +3267,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 9729815855 ], @@ -3305,7 +3305,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6886226581 ], @@ -3343,7 +3343,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6886226576 ], @@ -3381,7 +3381,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9729815850 ], @@ -3419,7 +3419,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53079359 ], diff --git a/tests/src/seattle_triangle/geometry.json b/tests/src/seattle_triangle/geometry.json index 5aed0383..c4af29a9 100644 --- a/tests/src/seattle_triangle/geometry.json +++ b/tests/src/seattle_triangle/geometry.json @@ -1020,7 +1020,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53086674 ], @@ -1058,7 +1058,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53220997 ], @@ -1100,7 +1100,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8780140700 ], @@ -1138,7 +1138,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021891 ], @@ -1176,7 +1176,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53070509 ], @@ -1214,7 +1214,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021892 ], @@ -1252,7 +1252,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021890 ], @@ -1290,7 +1290,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021889 ], @@ -1328,7 +1328,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021905 ], @@ -1366,7 +1366,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021904 ], @@ -1404,7 +1404,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021903 ], @@ -1442,7 +1442,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021902 ], @@ -1488,7 +1488,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8780140703 ], @@ -1542,7 +1542,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1884382823 ], @@ -1580,7 +1580,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021893 ], @@ -1630,7 +1630,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1884382824 ], @@ -1668,7 +1668,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7083431696 ], @@ -1706,7 +1706,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021906 ], @@ -1744,7 +1744,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4272306563 ], @@ -1782,7 +1782,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021896 ], @@ -1820,7 +1820,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5768923253 ], @@ -1858,7 +1858,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021895 ], @@ -1896,7 +1896,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021878 ], @@ -1946,7 +1946,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 775936191 ], @@ -1984,7 +1984,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021901 ], @@ -2042,7 +2042,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 8780140709 ], @@ -2080,7 +2080,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021897 ], @@ -2118,7 +2118,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021899 ], @@ -2156,7 +2156,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021900 ], @@ -2194,7 +2194,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5772021898 ], @@ -2232,7 +2232,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53070507 ], @@ -2270,7 +2270,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53148299 ], @@ -2308,7 +2308,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53148299 ], diff --git a/tests/src/service_road_loop/geometry.json b/tests/src/service_road_loop/geometry.json index 572d3e4a..beb6ba76 100644 --- a/tests/src/service_road_loop/geometry.json +++ b/tests/src/service_road_loop/geometry.json @@ -1227,7 +1227,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3606095831 ], @@ -1265,7 +1265,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 30984483 ], @@ -1303,7 +1303,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3710247249 ], @@ -1353,7 +1353,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3710247247 ], @@ -1403,7 +1403,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3710247242 ], @@ -1441,7 +1441,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2933464148 ], @@ -1491,7 +1491,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3710247245 ], @@ -1537,7 +1537,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5908769456 ], @@ -1575,7 +1575,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5908769458 ], @@ -1625,7 +1625,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 30984582 ], @@ -1675,7 +1675,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6036958563 ], @@ -1729,7 +1729,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6036958646 ], @@ -1771,7 +1771,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6036958564 ], @@ -1813,7 +1813,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6036958644 ], @@ -1879,7 +1879,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6036958569 ], @@ -1937,7 +1937,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6036958633 ], @@ -1991,7 +1991,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6036958634 ], @@ -2045,7 +2045,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6036958616 ], @@ -2107,7 +2107,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6036958639 ], @@ -2153,7 +2153,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6036958615 ], @@ -2191,7 +2191,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6036958542 ], @@ -2229,7 +2229,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 358460198 ], @@ -2267,7 +2267,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6036958484 ], @@ -2305,7 +2305,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6036958484 ], @@ -2343,7 +2343,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6036958604 ], @@ -2381,7 +2381,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6036958604 ], diff --git a/tests/src/st_georges_cycletrack/geometry.json b/tests/src/st_georges_cycletrack/geometry.json index 71a5f564..f2c7d7e7 100644 --- a/tests/src/st_georges_cycletrack/geometry.json +++ b/tests/src/st_georges_cycletrack/geometry.json @@ -6539,7 +6539,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 158863955 ], @@ -6581,7 +6581,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 3314367620 ], @@ -6619,7 +6619,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 96620001 ], @@ -6661,7 +6661,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 3314367623 ], @@ -6707,7 +6707,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022813716 ], @@ -6757,7 +6757,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2059768444 ], @@ -6807,7 +6807,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022813718 ], @@ -6845,7 +6845,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2932500936 ], @@ -6883,7 +6883,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1819350081 ], @@ -6921,7 +6921,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022813723 ], @@ -6959,7 +6959,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1819350182 ], @@ -7001,7 +7001,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2932500935 ], @@ -7039,7 +7039,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022823874 ], @@ -7077,7 +7077,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3328901241 ], @@ -7115,7 +7115,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8947442148 ], @@ -7157,7 +7157,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022823875 ], @@ -7195,7 +7195,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022813725 ], @@ -7233,7 +7233,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022813726 ], @@ -7271,7 +7271,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 61334096 ], @@ -7321,7 +7321,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6231431196 ], @@ -7387,7 +7387,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1819350194 ], @@ -7425,7 +7425,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6231431191 ], @@ -7491,7 +7491,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 364274 ], @@ -7529,7 +7529,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6231431193 ], @@ -7579,7 +7579,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022813734 ], @@ -7629,7 +7629,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1819350153 ], @@ -7683,7 +7683,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1819350128 ], @@ -7729,7 +7729,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1819350092 ], @@ -7779,7 +7779,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1819350083 ], @@ -7829,7 +7829,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1819350122 ], @@ -7867,7 +7867,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8936997805 ], @@ -7913,7 +7913,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1819350066 ], @@ -7951,7 +7951,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022813729 ], @@ -7989,7 +7989,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022813715 ], @@ -8027,7 +8027,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022813731 ], @@ -8077,7 +8077,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1819350134 ], @@ -8123,7 +8123,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2932500926 ], @@ -8169,7 +8169,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022813720 ], @@ -8207,7 +8207,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8947442152 ], @@ -8253,7 +8253,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2932500919 ], @@ -8303,7 +8303,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3799274019 ], @@ -8341,7 +8341,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6022819613 ], @@ -8379,7 +8379,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2059768440 ], @@ -8437,7 +8437,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3374579450 ], @@ -8487,7 +8487,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 61334104 ], @@ -8537,7 +8537,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 61334099 ], @@ -8587,7 +8587,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4169653680 ], @@ -8625,7 +8625,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 5425497684 ], @@ -8667,7 +8667,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8936977833 ], @@ -8717,7 +8717,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8936977834 ], @@ -8759,7 +8759,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 264341506 ], @@ -8809,7 +8809,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3799274011 ], @@ -8859,7 +8859,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 264790813 ], @@ -8897,7 +8897,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 25472582 ], @@ -8951,7 +8951,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 25472584 ], @@ -9001,7 +9001,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3799274013 ], @@ -9047,7 +9047,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 96619956 ], @@ -9093,7 +9093,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4156272585 ], @@ -9131,7 +9131,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 2467649381 ], @@ -9185,7 +9185,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6491174860 ], @@ -9239,7 +9239,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2467649384 ], @@ -9285,7 +9285,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3799274014 ], @@ -9331,7 +9331,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 4156273389 ], @@ -9369,7 +9369,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 96619946 ], @@ -9419,7 +9419,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3799274009 ], @@ -9457,7 +9457,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8947417390 ], @@ -9495,7 +9495,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8947417389 ], @@ -9529,7 +9529,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 96619957 ], @@ -9567,7 +9567,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 6491174866 ], @@ -9613,7 +9613,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 265241531 ], @@ -9671,7 +9671,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3799274008 ], @@ -9721,7 +9721,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 25472725 ], @@ -9775,7 +9775,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136430541 ], @@ -9813,7 +9813,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136430525 ], @@ -9863,7 +9863,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3799274015 ], @@ -9905,7 +9905,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 265241535 ], @@ -9943,7 +9943,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 25472731 ], @@ -9981,7 +9981,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 730857210 ], @@ -10019,7 +10019,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 8942217485 ], @@ -10065,7 +10065,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 96619952 ], @@ -10107,7 +10107,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3799274007 ], @@ -10157,7 +10157,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 1186174556 ], @@ -10195,7 +10195,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 1186174609 ], @@ -10237,7 +10237,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 287248398 ], @@ -10283,7 +10283,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4156272581 ], @@ -10337,7 +10337,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 9136430547 ], @@ -10375,7 +10375,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6970648945 ], @@ -10413,7 +10413,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6970648941 ], @@ -10451,7 +10451,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 25472738 ], @@ -10493,7 +10493,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 25472957 ], @@ -10539,7 +10539,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2464418698 ], @@ -10589,7 +10589,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 7728093176 ], @@ -10647,7 +10647,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 25472956 ], @@ -10693,7 +10693,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6970648943 ], @@ -10743,7 +10743,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4156273393 ], @@ -10781,7 +10781,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 264341502 ], @@ -10819,7 +10819,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7728093180 ], @@ -10857,7 +10857,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6502835823 ], @@ -10895,7 +10895,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6502835826 ], @@ -10937,7 +10937,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4169653677 ], @@ -10975,7 +10975,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6502835822 ], @@ -11013,7 +11013,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4169653676 ], @@ -11063,7 +11063,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3890206825 ], @@ -11101,7 +11101,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6502835827 ], @@ -11151,7 +11151,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3890206820 ], @@ -11197,7 +11197,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2180693485 ], @@ -11239,7 +11239,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 29158929 ], @@ -11289,7 +11289,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2180693488 ], @@ -11335,7 +11335,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3890206822 ], @@ -11373,7 +11373,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4175070882 ], @@ -11411,7 +11411,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 3881302130 ], @@ -11449,7 +11449,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6896299617 ], @@ -11495,7 +11495,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 3874597627 ], @@ -11561,7 +11561,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6329043358 ], @@ -11599,7 +11599,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8942303836 ], @@ -11637,7 +11637,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 6329043357 ], @@ -11691,7 +11691,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3890206831 ], @@ -11729,7 +11729,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8942303831 ], @@ -11767,7 +11767,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 7004860404 ], @@ -11805,7 +11805,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 3890206821 ], @@ -11843,7 +11843,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4421018012 ], @@ -11885,7 +11885,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 3874597641 ], @@ -11947,7 +11947,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 8942303872 ], @@ -11989,7 +11989,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 8952790002 ], @@ -12027,7 +12027,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 3071561909 ], diff --git a/tests/src/taipei/geometry.json b/tests/src/taipei/geometry.json index 3241d3f8..6faa6c02 100644 --- a/tests/src/taipei/geometry.json +++ b/tests/src/taipei/geometry.json @@ -2699,7 +2699,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9260164952 ], @@ -2737,7 +2737,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2137955716 ], @@ -2775,7 +2775,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2137955730 ], @@ -2813,7 +2813,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 662161237 ], @@ -2851,7 +2851,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 6982946638 ], @@ -2889,7 +2889,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7702095012 ], @@ -2935,7 +2935,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 6982946642 ], @@ -2981,7 +2981,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2137955743 ], @@ -3039,7 +3039,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2137955862 ], @@ -3077,7 +3077,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 3143261407 ], @@ -3115,7 +3115,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 656416180 ], @@ -3153,7 +3153,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2137955866 ], @@ -3191,7 +3191,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 656416259 ], @@ -3229,7 +3229,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 656416084 ], @@ -3267,7 +3267,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 656416199 ], @@ -3325,7 +3325,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2137955785 ], @@ -3391,7 +3391,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4568593105 ], @@ -3433,7 +3433,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 2137955831 ], @@ -3471,7 +3471,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4568593109 ], @@ -3509,7 +3509,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5262459478 ], @@ -3567,7 +3567,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4568589283 ], @@ -3625,7 +3625,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 656416177 ], @@ -3675,7 +3675,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 656416176 ], @@ -3721,7 +3721,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 662161241 ], @@ -3779,7 +3779,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 656416254 ], @@ -3837,7 +3837,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 656416249 ], @@ -3887,7 +3887,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 656415898 ], @@ -3933,7 +3933,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 656416087 ], @@ -3971,7 +3971,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 656415970 ], @@ -4025,7 +4025,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 656416158 ], @@ -4063,7 +4063,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 662161208 ], @@ -4101,7 +4101,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4568593157 ], @@ -4167,7 +4167,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 656416189 ], @@ -4229,7 +4229,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 656416186 ], @@ -4267,7 +4267,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4498536440 ], @@ -4313,7 +4313,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 662161980 ], @@ -4351,7 +4351,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4498536439 ], @@ -4401,7 +4401,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 662161955 ], @@ -4471,7 +4471,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 662161961 ], @@ -4533,7 +4533,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2637893915 ], @@ -4571,7 +4571,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 662161969 ], @@ -4625,7 +4625,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 656415900 ], @@ -4671,7 +4671,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 656415914 ], @@ -4717,7 +4717,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 656415974 ], @@ -4763,7 +4763,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 662161891 ], @@ -4833,7 +4833,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 662161900 ], @@ -4895,7 +4895,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 662161907 ], @@ -4933,7 +4933,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 662161928 ], @@ -4971,7 +4971,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 662161824 ], @@ -5009,7 +5009,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 662161764 ], @@ -5047,7 +5047,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 656415902 ], @@ -5085,7 +5085,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 656415916 ], @@ -5123,7 +5123,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 656416271 ], @@ -5161,7 +5161,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4961152331 ], @@ -5199,7 +5199,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9735064047 ], @@ -5237,7 +5237,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9631718933 ], @@ -5275,7 +5275,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 662162162 ], @@ -5313,7 +5313,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 662162162 ], diff --git a/tests/src/tempe_light_rail/geometry.json b/tests/src/tempe_light_rail/geometry.json index a1e00724..12e59372 100644 --- a/tests/src/tempe_light_rail/geometry.json +++ b/tests/src/tempe_light_rail/geometry.json @@ -712,7 +712,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1501648702 ], @@ -750,7 +750,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 330686495 ], @@ -788,7 +788,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1501648856 ], @@ -826,7 +826,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4346571426 ], @@ -864,7 +864,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4347879967 ], @@ -902,7 +902,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4347879970 ], @@ -952,7 +952,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 7509154720 ], @@ -1046,7 +1046,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 3756578325, 1501648667, @@ -1087,7 +1087,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4347879973 ], @@ -1125,7 +1125,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7890703228 ], @@ -1163,7 +1163,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 1501648604 ], @@ -1209,7 +1209,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 7509154723 ], @@ -1247,7 +1247,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4347879968 ], @@ -1285,7 +1285,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1501648599 ], @@ -1323,7 +1323,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2819230448 ], @@ -1361,7 +1361,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 1501648738 ], @@ -1399,7 +1399,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 41624283 ], diff --git a/tests/src/tempe_split/geometry.json b/tests/src/tempe_split/geometry.json index 42994b39..42998fb1 100644 --- a/tests/src/tempe_split/geometry.json +++ b/tests/src/tempe_split/geometry.json @@ -1354,7 +1354,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4346605154 ], @@ -1392,7 +1392,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4346605155 ], @@ -1430,7 +1430,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5986666325 ], @@ -1472,7 +1472,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4346605156 ], @@ -1522,7 +1522,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6672814189 ], @@ -1560,7 +1560,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 6672805084 ], @@ -1598,7 +1598,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4346581618 ], @@ -1636,7 +1636,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 41662587 ], @@ -1674,7 +1674,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9643219691 ], @@ -1712,7 +1712,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4346586751 ], @@ -1786,7 +1786,7 @@ }, "properties": { "control": "TrafficSignal", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2941419917, 41662590 @@ -1825,7 +1825,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4346577523 ], @@ -1863,7 +1863,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4346577522 ], @@ -1917,7 +1917,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2860653268 ], @@ -1955,7 +1955,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5415311167 ], @@ -2013,7 +2013,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 2239876836 ], @@ -2067,7 +2067,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 5415307199 ], @@ -2105,7 +2105,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5707494418 ], @@ -2159,7 +2159,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 7121900772 ], @@ -2225,7 +2225,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 5717678154 ], @@ -2275,7 +2275,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Fork", + "intersection_kind": "Fork", "osm_node_ids": [ 5707494413 ], @@ -2333,7 +2333,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 6672807663 ], @@ -2371,7 +2371,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 8482792367 ], @@ -2409,7 +2409,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Connection", + "intersection_kind": "Connection", "osm_node_ids": [ 4346605157 ], @@ -2447,7 +2447,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 9530050516 ], @@ -2485,7 +2485,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 6672807665 ], @@ -2523,7 +2523,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 5415316931 ], @@ -2561,7 +2561,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2065989266 ], @@ -2599,7 +2599,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 2916726375 ], @@ -2637,7 +2637,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7121900770 ], @@ -2675,7 +2675,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 7121900770 ], diff --git a/tests/src/tiny_loop/geometry.json b/tests/src/tiny_loop/geometry.json index 181db9a4..275d39d3 100644 --- a/tests/src/tiny_loop/geometry.json +++ b/tests/src/tiny_loop/geometry.json @@ -654,7 +654,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 233086880 ], @@ -696,7 +696,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 233087070 ], @@ -742,7 +742,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 233087064 ], @@ -780,7 +780,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 233170569 ], @@ -826,7 +826,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 233087044 ], @@ -876,7 +876,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 233087041 ], @@ -914,7 +914,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 233138961 ], @@ -952,7 +952,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 233086977 ], diff --git a/tests/src/tiny_roundabout/geometry.json b/tests/src/tiny_roundabout/geometry.json index a3f915df..0165fa72 100644 --- a/tests/src/tiny_roundabout/geometry.json +++ b/tests/src/tiny_roundabout/geometry.json @@ -466,7 +466,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53112684 ], @@ -504,7 +504,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 53112685 ], @@ -542,7 +542,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4263867484 ], @@ -580,7 +580,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 4263867655 ], @@ -630,7 +630,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 2369815160 ], @@ -668,7 +668,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 2369815603 ], @@ -706,7 +706,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 7625151516 ], @@ -760,7 +760,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 7625151513 ], @@ -798,7 +798,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Terminus", + "intersection_kind": "Terminus", "osm_node_ids": [ 53189876 ], @@ -836,7 +836,7 @@ }, "properties": { "control": "Border", - "intersection_type": "MapEdge", + "intersection_kind": "MapEdge", "osm_node_ids": [ 53139411 ], @@ -902,7 +902,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4263867608, 4263867610, @@ -974,7 +974,7 @@ }, "properties": { "control": "StopSign", - "intersection_type": "Intersection", + "intersection_kind": "Intersection", "osm_node_ids": [ 4263867488, 4263867590,