diff --git a/import_streets/src/extract.rs b/import_streets/src/extract.rs index a8d0fd6c..b6cb1fb2 100644 --- a/import_streets/src/extract.rs +++ b/import_streets/src/extract.rs @@ -119,15 +119,14 @@ impl OsmExtract { return false; } - // If we're only handling sidewalks tagged on roads, skip a bunch of ways + // If we're only handling sidewalks tagged on roads, skip crossings and separate sidewalks + // Note we have to do this here -- get_lane_specs_ltr doesn't support decisions like + // "actually, let's pretend this road doesn't exist at all" if opts.map_config.inferred_sidewalks { - if tags.is_any( - osm::HIGHWAY, - vec!["footway", "path", "pedestrian", "steps", "track"], - ) { - if !tags.is_any("bicycle", vec!["designated", "yes"]) { - return false; - } + if tags.is(osm::HIGHWAY, "footway") + && tags.is_any("footway", vec!["crossing", "sidewalk"]) + { + return false; } } diff --git a/osm2streets/src/io.rs b/osm2streets/src/io.rs index 11243b2f..d2e7570f 100644 --- a/osm2streets/src/io.rs +++ b/osm2streets/src/io.rs @@ -187,6 +187,15 @@ impl From<&LaneSpec> for RoadPart { carriage: Carriage::Cars, }, LaneType::Construction => Designation::NoTravel, + LaneType::Footway => Designation::Travel { + carriage: Carriage::Foot, + direction: TrafficDirections::BothWays, + }, + LaneType::SharedUse => Designation::Travel { + // TODO Both foot and bike + carriage: Carriage::Foot, + direction: TrafficDirections::BothWays, + }, }, can_enter_from_inside: true, can_enter_from_outside: false, diff --git a/street_network/src/lanes/classic.rs b/street_network/src/lanes/classic.rs index 2a5683f2..8f1b9361 100644 --- a/street_network/src/lanes/classic.rs +++ b/street_network/src/lanes/classic.rs @@ -14,6 +14,9 @@ pub fn get_lane_specs_ltr(tags: &Tags, cfg: &MapConfig) -> Vec { // TODO This hides a potentially expensive (on a hot-path) clone let mut tags = tags.clone(); + // This'll do weird things for the special cases of railways and cycleways/footways, but the + // added tags will be ignored, so it doesn't matter too much. Running this later causes borrow + // checker problems. infer_sidewalk_tags(&mut tags, cfg); let fwd = |lt: LaneType| LaneSpec { @@ -31,26 +34,11 @@ pub fn get_lane_specs_ltr(tags: &Tags, cfg: &MapConfig) -> Vec { if tags.is_any("railway", vec!["light_rail", "rail"]) { return vec![fwd(LaneType::LightRail)]; } - if tags.is(osm::HIGHWAY, "steps") { - return vec![fwd(LaneType::Sidewalk)]; - } - // Eventually, we should have some kind of special LaneType for shared walking/cycling paths of - // different kinds. Until then, model by making bike lanes and a shoulder for walking. - if tags.is_any( - osm::HIGHWAY, - vec!["cycleway", "footway", "path", "pedestrian", "track"], - ) { - // If it just allows foot traffic, simply make it a sidewalk. For most of the above highway - // types, assume bikes are allowed, except for footways, where they must be explicitly - // allowed. - if tags.is("bicycle", "no") - || (tags.is(osm::HIGHWAY, "footway") - && !tags.is_any("bicycle", vec!["designated", "yes", "dismount"])) - { - return vec![fwd(LaneType::Sidewalk)]; - } - // Otherwise, there'll always be a bike lane. + // If it's a primarily cycleway, have directional bike lanes and add a shoulder for walking + // TODO Consider variations of SharedUse that specify the priority is cyclists over pedestrians + // in this case? + if tags.is(osm::HIGHWAY, "cycleway") { let mut fwd_side = vec![fwd(LaneType::Biking)]; let mut back_side = if tags.is("oneway", "yes") { vec![] @@ -58,6 +46,8 @@ pub fn get_lane_specs_ltr(tags: &Tags, cfg: &MapConfig) -> Vec { vec![back(LaneType::Biking)] }; + // TODO If this cycleway is parallel to a main road, we might end up with double sidewalks. + // Once snapping works well, this problem will improve if !tags.is("foot", "no") { fwd_side.push(fwd(LaneType::Shoulder)); if !back_side.is_empty() { @@ -67,6 +57,28 @@ pub fn get_lane_specs_ltr(tags: &Tags, cfg: &MapConfig) -> Vec { return LaneSpec::assemble_ltr(fwd_side, back_side, cfg.driving_side); } + // These roads will only exist if cfg.inferred_sidewalks is false + if tags.is(osm::HIGHWAY, "footway") && tags.is_any("footway", vec!["crossing", "sidewalk"]) { + // Treating a crossing as a sidewalk for now. Eventually crossings need to be dealt with + // completely differently. + return vec![fwd(LaneType::Sidewalk)]; + } + + // Handle pedestrian-oriented spaces + if tags.is_any( + osm::HIGHWAY, + vec!["footway", "path", "pedestrian", "steps", "track"], + ) { + // Assume no bikes unless they're explicitly allowed + if tags.is_any("bicycle", vec!["designated", "yes", "dismount"]) { + return vec![fwd(LaneType::SharedUse)]; + } + + return vec![fwd(LaneType::Footway)]; + } + + // Most cases are below -- it's a "normal road" + // TODO Reversible roads should be handled differently? let oneway = tags.is_any("oneway", vec!["yes", "reversible"]) || tags.is("junction", "roundabout"); @@ -109,23 +121,23 @@ pub fn get_lane_specs_ltr(tags: &Tags, cfg: &MapConfig) -> Vec { }; #[allow(clippy::if_same_then_else)] // better readability - let driving_lane = - if tags.is("access", "no") && (tags.is("bus", "yes") || tags.is("psv", "yes")) { - // Sup West Seattle - LaneType::Bus - } else if tags - .get("motor_vehicle:conditional") - .map(|x| x.starts_with("no")) - .unwrap_or(false) - && tags.is("bus", "yes") - { - // Example: 3rd Ave in downtown Seattle - LaneType::Bus - } else if tags.is("access", "no") || tags.is("highway", "construction") { - LaneType::Construction - } else { - LaneType::Driving - }; + let driving_lane = if tags.is("access", "no") + && (tags.is("bus", "yes") || tags.is_any("psv", vec!["yes", "designated"])) + { + LaneType::Bus + } else if tags + .get("motor_vehicle:conditional") + .map(|x| x.starts_with("no")) + .unwrap_or(false) + && tags.is("bus", "yes") + { + // Example: 3rd Ave in downtown Seattle + LaneType::Bus + } else if tags.is("access", "no") || tags.is("highway", "construction") { + LaneType::Construction + } else { + LaneType::Driving + }; // These are ordered from the road center, going outwards. Most of the members of fwd_side will // have Direction::Fwd, but there can be exceptions with two-way cycletracks. diff --git a/street_network/src/lanes/mod.rs b/street_network/src/lanes/mod.rs index 2ee1eaa6..db854639 100644 --- a/street_network/src/lanes/mod.rs +++ b/street_network/src/lanes/mod.rs @@ -32,6 +32,11 @@ pub enum LaneType { Construction, LightRail, Buffer(BufferType), + /// Some kind of pedestrian-only path unassociated with a road + Footway, + /// Some kind of shared pedestrian+bicycle space. May be associated with a road or not. Unclear + /// which mode has effective priority. + SharedUse, } #[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, PartialOrd, Ord, Serialize, Deserialize)] @@ -61,6 +66,8 @@ impl LaneType { LaneType::Construction => false, LaneType::LightRail => true, LaneType::Buffer(_) => false, + LaneType::Footway => false, + LaneType::SharedUse => true, } } @@ -76,17 +83,22 @@ impl LaneType { LaneType::Construction => false, LaneType::LightRail => true, LaneType::Buffer(_) => false, + LaneType::Footway => true, + LaneType::SharedUse => true, } } pub fn is_walkable(self) -> bool { - self == LaneType::Sidewalk || self == LaneType::Shoulder + matches!( + self, + LaneType::Sidewalk | LaneType::Shoulder | LaneType::Footway | LaneType::SharedUse + ) } pub fn describe(self) -> &'static str { match self { LaneType::Driving => "a general-purpose driving lane", - LaneType::Biking => "a protected bike lane", + LaneType::Biking => "a bike lane", LaneType::Bus => "a bus-only lane", LaneType::Parking => "an on-street parking lane", LaneType::Sidewalk => "a sidewalk", @@ -99,6 +111,8 @@ impl LaneType { LaneType::Buffer(BufferType::Planters) => "planter barriers", LaneType::Buffer(BufferType::JerseyBarrier) => "a Jersey barrier", LaneType::Buffer(BufferType::Curb) => "a raised curb", + LaneType::Footway => "a footway", + LaneType::SharedUse => "a shared-use walking/cycling path", } } @@ -118,6 +132,8 @@ impl LaneType { LaneType::Buffer(BufferType::Planters) => "planters", LaneType::Buffer(BufferType::JerseyBarrier) => "Jersey barrier", LaneType::Buffer(BufferType::Curb) => "curb", + LaneType::Footway => "footway", + LaneType::SharedUse => "shared-use path", } } @@ -137,6 +153,8 @@ impl LaneType { "planters" => Some(LaneType::Buffer(BufferType::Planters)), "Jersey barrier" => Some(LaneType::Buffer(BufferType::JerseyBarrier)), "curb" => Some(LaneType::Buffer(BufferType::Curb)), + "footway" => Some(LaneType::Footway), + "shared-use path" => Some(LaneType::SharedUse), _ => None, } } @@ -154,6 +172,8 @@ impl LaneType { LaneType::Construction => 'x', LaneType::LightRail => 'l', LaneType::Buffer(_) => '|', + LaneType::Footway => 'f', + LaneType::SharedUse => 'F', } } @@ -170,6 +190,8 @@ impl LaneType { 'x' => LaneType::Construction, 'l' => LaneType::LightRail, '|' => LaneType::Buffer(BufferType::FlexPosts), + 'f' => LaneType::Footway, + 'F' => LaneType::SharedUse, _ => panic!("from_char({}) undefined", x), } } @@ -249,6 +271,8 @@ impl LaneSpec { vec![(Distance::meters(1.5), "default")] } LaneType::Buffer(BufferType::Curb) => vec![(Distance::meters(0.5), "default")], + LaneType::Footway => vec![(Distance::meters(2.0), "default")], + LaneType::SharedUse => vec![(Distance::meters(3.0), "default")], } } diff --git a/street_network/src/lib.rs b/street_network/src/lib.rs index 38239b39..8a85c069 100644 --- a/street_network/src/lib.rs +++ b/street_network/src/lib.rs @@ -389,6 +389,8 @@ impl Road { self.osm_tags.is_any( osm::HIGHWAY, vec![ + // TODO cycleway in here is weird, reconsider. is_footway is only used in one + // disabled transformation right now. "cycleway", "footway", "path", diff --git a/street_network/src/types.rs b/street_network/src/types.rs index bdc0c4e8..59295beb 100644 --- a/street_network/src/types.rs +++ b/street_network/src/types.rs @@ -56,9 +56,8 @@ pub struct MapConfig { /// (Australia). pub driving_side: DrivingSide, pub bikes_can_use_bus_lanes: bool, - /// If true, roads without explicitly tagged sidewalks may have sidewalks or shoulders. If - /// false, no sidewalks will be inferred if not tagged in OSM, and separate sidewalks will be - /// included. + /// If true, roads without explicitly tagged sidewalks may be assigned sidewalks or shoulders. + /// If false, no inference will occur and separate sidewalks and crossings will be included. pub inferred_sidewalks: bool, /// Street parking is divided into spots of this length. 8 meters is a reasonable default, but /// people in some regions might be more accustomed to squeezing into smaller spaces. This diff --git a/tests-web/www/js/layers.js b/tests-web/www/js/layers.js index 679241f6..2c226110 100644 --- a/tests-web/www/js/layers.js +++ b/tests-web/www/js/layers.js @@ -66,6 +66,25 @@ export const makeLanePolygonLayer = (text) => { return new L.geoJSON(JSON.parse(text), { style: function (feature) { + if (feature.properties.type == "Footway") { + return { + fill: true, + fillColor: "#DDDDE8", + stroke: true, + color: "black", + dashArray: "5,10", + }; + } + if (feature.properties.type == "SharedUse") { + return { + fill: true, + fillColor: "#E5E1BB", + stroke: true, + color: "black", + dashArray: "5,10", + }; + } + return { fill: true, fillColor: colors[feature.properties.type] || "red", diff --git a/tests/src/borough_sausage_links/geometry.json b/tests/src/borough_sausage_links/geometry.json index a65aa5f3..6d7b8d9c 100644 --- a/tests/src/borough_sausage_links/geometry.json +++ b/tests/src/borough_sausage_links/geometry.json @@ -77,33 +77,41 @@ "coordinates": [ [ [ - -0.09431901785058028, - 51.50060374448926 + -0.09261955529421903, + 51.50177821209071 ], [ - -0.09427033093145915, - 51.50057052713656 + -0.09232881633139274, + 51.501693696519055 ], [ - -0.09418626830869363, - 51.5006182721348 + -0.09167837694809063, + 51.501633420369835 ], [ - -0.09423495522781476, - 51.5006514894875 + -0.09167412383127235, + 51.50165121075513 ], [ - -0.09431901785058028, - 51.50060374448926 + -0.0923203996674718, + 51.50171110019594 + ], + [ + -0.09260733047271216, + 51.501794509601694 + ], + [ + -0.09261955529421903, + 51.50177821209071 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 12238562, - "osm_way_id": 31538622, - "src_i": 364300, + "dst_i": 2317365395, + "osm_way_id": 31248255, + "src_i": 347413549, "type": "road" }, "type": "Feature" @@ -113,33 +121,33 @@ "coordinates": [ [ [ - -0.09163327715161208, - 51.50072394245488 + -0.09159293610744311, + 51.50162543888821 ], [ - -0.09164237136709137, - 51.50073851326787 + -0.09152152303999717, + 51.501618680484334 ], [ - -0.09176946790418525, - 51.50070777264761 + -0.09151718035346329, + 51.50163646187641 ], [ - -0.09176037368870596, - 51.500693201834615 + -0.09158859342090923, + 51.501643220280286 ], [ - -0.09163327715161208, - 51.50072394245488 + -0.09159293610744311, + 51.50162543888821 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719472, - "osm_way_id": 95568203, - "src_i": 60007209, + "dst_i": 25500037, + "osm_way_id": 31248255, + "src_i": 1165070964, "type": "road" }, "type": "Feature" @@ -149,33 +157,33 @@ "coordinates": [ [ [ - -0.09412046779520114, - 51.501503812799456 + -0.09164191340580354, + 51.50163004161756 ], [ - -0.09373415505648164, - 51.50140409419153 + -0.09162853573537649, + 51.50162880774795 ], [ - -0.09369056927713133, - 51.50146952885101 + -0.09162429995463221, + 51.50164659993188 ], [ - -0.09407688201585085, - 51.50156924745894 + -0.09163767762505924, + 51.50164783380149 ], [ - -0.09412046779520114, - 51.501503812799456 + -0.09164191340580354, + 51.50163004161756 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 352928523, - "osm_way_id": 150182429, - "src_i": 364296, + "dst_i": 1165070964, + "osm_way_id": 31248255, + "src_i": 2317365395, "type": "road" }, "type": "Feature" @@ -185,33 +193,33 @@ "coordinates": [ [ [ - -0.09229916731085558, - 51.50101515996449 + -0.09431901785058028, + 51.50060374448926 ], [ - -0.09226644258185845, - 51.50102765244463 + -0.09427033093145915, + 51.50057052713656 ], [ - -0.09232593131974665, - 51.50108804010976 + -0.09418626830869363, + 51.5006182721348 ], [ - -0.09235865604874377, - 51.50107554762962 + -0.09423495522781476, + 51.5006514894875 ], [ - -0.09229916731085558, - 51.50101515996449 + -0.09431901785058028, + 51.50060374448926 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719463, - "osm_way_id": 210112374, - "src_i": 5220719428, + "dst_i": 12238562, + "osm_way_id": 31538622, + "src_i": 364300, "type": "road" }, "type": "Feature" @@ -221,33 +229,33 @@ "coordinates": [ [ [ - -0.0931798687628785, - 51.50121681310944 + -0.09421723631552668, + 51.501478499586696 ], [ - -0.09315677277830861, - 51.50120664987295 + -0.0941824153662499, + 51.50151789617999 ], [ - -0.09309942793490354, - 51.50125715039341 + -0.09420772892361735, + 51.50152656744149 ], [ - -0.09312252391947343, - 51.501267313629896 + -0.09424254987289413, + 51.50148717084819 ], [ - -0.0931798687628785, - 51.50121681310944 + -0.09421723631552668, + 51.501478499586696 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220776411, - "osm_way_id": 211779456, - "src_i": 5220776408, + "dst_i": 5220776407, + "osm_way_id": 31538623, + "src_i": 295803799, "type": "road" }, "type": "Feature" @@ -257,33 +265,33 @@ "coordinates": [ [ [ - -0.09428645492494037, - 51.500638876498236 + -0.09163327715161208, + 51.50072394245488 ], [ - -0.09434247644803105, - 51.500610491201954 + -0.09164237136709137, + 51.50073851326787 ], [ - -0.09422616583830308, - 51.50052153747685 + -0.09176946790418525, + 51.50070777264761 ], [ - -0.0941701443152124, - 51.500549922773125 + -0.09176037368870596, + 51.500693201834615 ], [ - -0.09428645492494037, - 51.500638876498236 + -0.09163327715161208, + 51.50072394245488 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 276507, - "osm_way_id": 211779461, - "src_i": 12238562, + "dst_i": 5220719472, + "osm_way_id": 95568203, + "src_i": 60007209, "type": "road" }, "type": "Feature" @@ -293,33 +301,33 @@ "coordinates": [ [ [ - -0.09350859250848428, - 51.50093504927136 + -0.09147768299822838, + 51.50140407800374 ], [ - -0.09320745912462965, - 51.501139878821164 + -0.091549546803598, + 51.50140862227716 ], [ - -0.09334870767678867, - 51.50122035014236 + -0.0915524679320649, + 51.50139072757053 ], [ - -0.09364984106064331, - 51.50101552059256 + -0.09148060412669527, + 51.50138618329711 ], [ - -0.09350859250848428, - 51.50093504927136 + -0.09147768299822838, + 51.50140407800374 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220776403, - "osm_way_id": 211780341, - "src_i": 2217388387, + "dst_i": 1165071364, + "osm_way_id": 100799869, + "src_i": -1, "type": "road" }, "type": "Feature" @@ -329,33 +337,33 @@ "coordinates": [ [ [ - -0.09303212207231981, - 51.5015082140807 + -0.09211922608622923, + 51.50144343142958 ], [ - -0.09322269753366468, - 51.50133566748818 + -0.09214521719515502, + 51.50143534113001 ], [ - -0.09312297754674277, - 51.50129298567208 + -0.09213229604134299, + 51.501419254060345 ], [ - -0.09293240208539791, - 51.50146553226461 + -0.09210630493241719, + 51.50142734435991 ], [ - -0.09303212207231981, - 51.5015082140807 + -0.09211922608622923, + 51.50144343142958 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220776401, - "osm_way_id": 211780343, - "src_i": 25497966, + "dst_i": 5220760621, + "osm_way_id": 100799869, + "src_i": 1165070926, "type": "road" }, "type": "Feature" @@ -365,33 +373,33 @@ "coordinates": [ [ [ - -0.0926351173099685, - 51.50062167157148 + -0.09184844527858108, + 51.50142445573806 ], [ - -0.09271040643462349, - 51.50075099675479 + -0.09203245181255751, + 51.501450049539244 ], [ - -0.09282418308820362, - 51.50072532830989 + -0.09203875347545197, + 51.50143249657492 ], [ - -0.09274889396354863, - 51.50059600312658 + -0.09185474694147555, + 51.50140690277374 ], [ - -0.0926351173099685, - 51.50062167157148 + -0.09184844527858108, + 51.50142445573806 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719448, - "osm_way_id": 211780349, - "src_i": 25500014, + "dst_i": 1165070926, + "osm_way_id": 100799869, + "src_i": 1165071010, "type": "road" }, "type": "Feature" @@ -401,41 +409,33 @@ "coordinates": [ [ [ - -0.09183120455300049, - 51.501104578639 - ], - [ - -0.09185119882499942, - 51.50110244814549 - ], - [ - -0.09191140989930377, - 51.50110232403907 + -0.09162264291489357, + 51.501412354462936 ], [ - -0.09191122209183557, - 51.501066905146416 + -0.09178165083017997, + 51.50141854629403 ], [ - -0.09184626671194998, - 51.501067038246056 + -0.09178345378187468, + 51.501400595829445 ], [ - -0.09182160325735707, - 51.50106966696389 + -0.09162444586658827, + 51.50139440399835 ], [ - -0.09183120455300049, - 51.501104578639 + -0.09162264291489357, + 51.501412354462936 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2217388361, - "osm_way_id": 211780353, - "src_i": 31349035, + "dst_i": 1165071010, + "osm_way_id": 100799869, + "src_i": 1165071364, "type": "road" }, "type": "Feature" @@ -445,41 +445,49 @@ "coordinates": [ [ [ - -0.09203842553471904, - 51.50109886794511 + -0.09203968817877446, + 51.50145670631974 ], [ - -0.09211669213008139, - 51.50109267791266 + -0.09201666731719187, + 51.501544913607695 ], [ - -0.09212882738187265, - 51.50109279032789 + -0.09198039447171863, + 51.50156761968635 ], [ - -0.09212967684949804, - 51.50105737503253 + -0.09183129556738892, + 51.50155913638312 ], [ - -0.092113516739196, - 51.50105722484578 + -0.09182866626283415, + 51.50157704727754 ], [ - -0.09203125417877953, - 51.50106373143953 + -0.09199129886225678, + 51.5015863004003 ], [ - -0.09203842553471904, - 51.50109886794511 + -0.09204370003522974, + 51.5015534985343 + ], + [ + -0.0920682089098296, + 51.501459591344315 + ], + [ + -0.09203968817877446, + 51.50145670631974 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719463, - "osm_way_id": 211780353, - "src_i": 2217388361, + "dst_i": 1165070941, + "osm_way_id": 100799873, + "src_i": 1165070926, "type": "road" }, "type": "Feature" @@ -489,33 +497,33 @@ "coordinates": [ [ [ - -0.09367551723089167, - 51.501384386452 + -0.09175937108576035, + 51.501555036374704 ], [ - -0.09332839702143945, - 51.50126949538476 + -0.09169290457809218, + 51.50155124213572 ], [ - -0.09327158381763666, - 51.50133601282778 + -0.0916902666055004, + 51.50156915303014 ], [ - -0.09361870402708888, - 51.50145090389502 + -0.09175673311316858, + 51.501572947269125 ], [ - -0.09367551723089167, - 51.501384386452 + -0.09175937108576035, + 51.501555036374704 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220776402, - "osm_way_id": 211781360, - "src_i": 352928523, + "dst_i": 2317365390, + "osm_way_id": 100799873, + "src_i": 1165070941, "type": "road" }, "type": "Feature" @@ -525,41 +533,33 @@ "coordinates": [ [ [ - -0.09262152438328944, - 51.500932828845656 - ], - [ - -0.09254511852653509, - 51.500966494959975 - ], - [ - -0.09245736043066458, - 51.50098596797649 + -0.0915301809642811, + 51.501541932355686 ], [ - -0.09247646478419883, - 51.501019331019336 + -0.09145825214863403, + 51.501537810763544 ], [ - -0.09257159649020537, - 51.50099822123701 + -0.0914556026186596, + 51.501555721657965 ], [ - -0.09265439646891546, - 51.500961738446584 + -0.09152753143430667, + 51.501559843250114 ], [ - -0.09262152438328944, - 51.500932828845656 + -0.0915301809642811, + 51.501541932355686 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719428, - "osm_way_id": 211782553, - "src_i": 2217412073, + "dst_i": 1165071291, + "osm_way_id": 100799873, + "src_i": 1165071161, "type": "road" }, "type": "Feature" @@ -569,33 +569,33 @@ "coordinates": [ [ [ - -0.09287172582644157, - 51.50095079100142 + -0.09160605084741467, + 51.501546250000004 ], [ - -0.09286349841466165, - 51.50091672468887 + -0.09160208666516285, + 51.50154602516953 ], [ - -0.09280723418653514, - 51.500921991117764 + -0.09159946602864508, + 51.5015639378626 ], [ - -0.09281546159831505, - 51.500956057430315 + -0.0916034302108969, + 51.50156416269307 ], [ - -0.09287172582644157, - 51.50095079100142 + -0.09160605084741467, + 51.501546250000004 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719456, - "osm_way_id": 211782554, - "src_i": 2217412069, + "dst_i": 1165071161, + "osm_way_id": 100799873, + "src_i": 1165071224, "type": "road" }, "type": "Feature" @@ -605,41 +605,33 @@ "coordinates": [ [ [ - -0.09281546304298789, - 51.500956057430315 - ], - [ - -0.09279560601490801, - 51.50094538068104 - ], - [ - -0.09272227731128645, - 51.500926049757375 + -0.09165709113857962, + 51.5015491979771 ], [ - -0.09270009002592808, - 51.50095866456442 + -0.09164219078298733, + 51.5015482977559 ], [ - -0.09276518698375123, - 51.500975824525085 + -0.09163939967507534, + 51.50156619965711 ], [ - -0.09277827138559332, - 51.50098286081942 + -0.09165430003066762, + 51.50156709987831 ], [ - -0.09281546304298789, - 51.500956057430315 + -0.09165709113857962, + 51.5015491979771 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2217412073, - "osm_way_id": 211782556, - "src_i": 2217412069, + "dst_i": 1165071224, + "osm_way_id": 100799873, + "src_i": 2317365390, "type": "road" }, "type": "Feature" @@ -649,33 +641,33 @@ "coordinates": [ [ [ - -0.09328577628354112, - 51.50124272347192 + -0.09182492744954417, + 51.50155434749415 ], [ - -0.0932934431622621, - 51.50123057902935 + -0.09184479314566105, + 51.501426105993694 ], [ - -0.09318753419692664, - 51.501204669566185 + -0.09181603259891574, + 51.5014243792957 ], [ - -0.09317986731820567, - 51.50121681400876 + -0.09179616690279886, + 51.50155262079615 ], [ - -0.09328577628354112, - 51.50124272347192 + -0.09182492744954417, + 51.50155434749415 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220776403, - "osm_way_id": 380116492, - "src_i": 5220776408, + "dst_i": 1165071010, + "osm_way_id": 100799897, + "src_i": 1165070941, "type": "road" }, "type": "Feature" @@ -685,33 +677,33 @@ "coordinates": [ [ [ - -0.09275525052401072, - 51.50178161332604 + -0.09159557263536204, + 51.50154115534159 ], [ - -0.0928376792218029, - 51.501701650121696 + -0.09161387086145588, + 51.50141703273532 ], [ - -0.09274190897040448, - 51.50166339296922 + -0.09158509875732791, + 51.50141538877493 ], [ - -0.0926594802726123, - 51.501743356173556 + -0.09156680053123409, + 51.5015395113812 ], [ - -0.09275525052401072, - 51.50178161332604 + -0.09159557263536204, + 51.50154115534159 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220776406, - "osm_way_id": 462430761, - "src_i": 347413001, + "dst_i": 1165071364, + "osm_way_id": 100799924, + "src_i": 1165071161, "type": "road" }, "type": "Feature" @@ -721,33 +713,33 @@ "coordinates": [ [ [ - -0.09287824130091521, - 51.50166091623678 + -0.09165719082100504, + 51.501626357095844 ], [ - -0.09299200206309419, - 51.50154290362331 + -0.09166390277098388, + 51.50159061894393 ], [ - -0.09289442886000106, - 51.5015064541078 + -0.09163520578984319, + 51.50158853071854 ], [ - -0.0927806680978221, - 51.50162446672127 + -0.09162849383986435, + 51.50162426887045 ], [ - -0.09287824130091521, - 51.50166091623678 + -0.09165719082100504, + 51.501626357095844 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25497966, - "osm_way_id": 462430761, - "src_i": 5220776406, + "dst_i": 1165071224, + "osm_way_id": 100799946, + "src_i": 1165070964, "type": "road" }, "type": "Feature" @@ -757,33 +749,33 @@ "coordinates": [ [ [ - -0.09272144951375354, - 51.500554767420056 + -0.09430267137748287, + 51.501558553622544 ], [ - -0.09269239280907761, - 51.50050315623709 + -0.09423914477902841, + 51.50153715156061 ], [ - -0.09258500449876189, - 51.50052658537052 + -0.09418498399454572, + 51.50159945118404 ], [ - -0.09261406120343782, - 51.50057819655349 + -0.09424851059300017, + 51.50162085324598 ], [ - -0.09272144951375354, - 51.500554767420056 + -0.09430267137748287, + 51.501558553622544 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719437, - "osm_way_id": 539534590, - "src_i": 25500014, + "dst_i": 5220776407, + "osm_way_id": 150182429, + "src_i": 364296, "type": "road" }, "type": "Feature" @@ -793,33 +785,33 @@ "coordinates": [ [ [ - -0.09198448434050685, - 51.501111774113305 + -0.09416873142518242, + 51.501516271105366 ], [ - -0.0919870717495495, - 51.501115965852556 + -0.09373415505648164, + 51.50140409419153 ], [ - -0.09204101294376167, - 51.50110306238233 + -0.09369056927713133, + 51.50146952885101 ], [ - -0.09203842553471904, - 51.50109887064308 + -0.09412514564583212, + 51.50158170576485 ], [ - -0.09198448434050685, - 51.501111774113305 + -0.09416873142518242, + 51.501516271105366 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719449, - "osm_way_id": 539534591, - "src_i": 2217388361, + "dst_i": 352928523, + "osm_way_id": 150182429, + "src_i": 5220776407, "type": "road" }, "type": "Feature" @@ -829,49 +821,33 @@ "coordinates": [ [ [ - -0.09286349985933448, - 51.50091672468887 - ], - [ - -0.09296865326077865, - 51.501080245687085 - ], - [ - -0.09307642152004927, - 51.50118683961073 - ], - [ - -0.09308106036451376, - 51.501204449232326 - ], - [ - -0.09313720612946803, - 51.501198716954704 + -0.09229916731085558, + 51.50101515996449 ], [ - -0.09313070365704987, - 51.5011740350659 + -0.09226644258185845, + 51.50102765244463 ], [ - -0.09301955775269735, - 51.50106410106082 + -0.09232593131974665, + 51.50108804010976 ], [ - -0.09291632287677447, - 51.50090356221394 + -0.09235865604874377, + 51.50107554762962 ], [ - -0.09286349985933448, - 51.50091672468887 + -0.09229916731085558, + 51.50101515996449 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220776411, - "osm_way_id": 539534592, - "src_i": 5220719456, + "dst_i": 5220719463, + "osm_way_id": 210112374, + "src_i": 5220719428, "type": "road" }, "type": "Feature" @@ -881,33 +857,33 @@ "coordinates": [ [ [ - -0.09276148717662773, - 51.500842086369346 + -0.0931798687628785, + 51.50121681310944 ], [ - -0.09267614023971431, - 51.500901438915 + -0.09315677277830861, + 51.50120664987295 ], [ - -0.09271853271930514, - 51.50092506230196 + -0.09309942793490354, + 51.50125715039341 ], [ - -0.09280387965621856, - 51.500865709756305 + -0.09312252391947343, + 51.501267313629896 ], [ - -0.09276148717662773, - 51.500842086369346 + -0.0931798687628785, + 51.50121681310944 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2217412073, - "osm_way_id": 539534593, - "src_i": 5220719456, + "dst_i": 5220776411, + "osm_way_id": 211779456, + "src_i": 5220776408, "type": "road" }, "type": "Feature" @@ -917,33 +893,33 @@ "coordinates": [ [ [ - -0.09256561554467968, - 51.500397068631656 + -0.09428645492494037, + 51.500638876498236 ], [ - -0.09249966045119414, - 51.50041540310668 + -0.09434247644803105, + 51.500610491201954 ], [ - -0.09253169462657741, - 51.50046006163225 + -0.09422616583830308, + 51.50052153747685 ], [ - -0.09259764972006296, - 51.500441727157224 + -0.0941701443152124, + 51.500549922773125 ], [ - -0.09256561554467968, - 51.500397068631656 + -0.09428645492494037, + 51.500638876498236 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9733253134, - "osm_way_id": 539534595, - "src_i": -1, + "dst_i": 276507, + "osm_way_id": 211779461, + "src_i": 12238562, "type": "road" }, "type": "Feature" @@ -953,41 +929,33 @@ "coordinates": [ [ [ - -0.09199081056283946, - 51.501106085902464 - ], - [ - -0.09185189371263176, - 51.501106243283786 - ], - [ - -0.09183120310832765, - 51.501104578639 + -0.09350859250848428, + 51.50093504927136 ], [ - -0.09182391039987023, - 51.50113970615136 + -0.09320745912462965, + 51.501139878821164 ], [ - -0.0918482762518597, - 51.50114166577372 + -0.09334870767678867, + 51.50122035014236 ], [ - -0.09199091457928339, - 51.50114150479511 + -0.09364984106064331, + 51.50101552059256 ], [ - -0.09199081056283946, - 51.501106085902464 + -0.09350859250848428, + 51.50093504927136 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 31349035, - "osm_way_id": 539534596, - "src_i": 5220719449, + "dst_i": 5220776403, + "osm_way_id": 211780341, + "src_i": 2217388387, "type": "road" }, "type": "Feature" @@ -997,41 +965,33 @@ "coordinates": [ [ [ - -0.09212883027121832, - 51.50109279032789 - ], - [ - -0.09212416108862434, - 51.501094561991984 - ], - [ - -0.09205926494032488, - 51.50110196071303 + -0.09303212207231981, + 51.5015082140807 ], [ - -0.09206951344939716, - 51.50113680044239 + -0.09322269753366468, + 51.50133566748818 ], [ - -0.0921447823486325, - 51.5011282200124 + -0.09312297754674277, + 51.50129298567208 ], [ - -0.092158448953626, - 51.50112303272384 + -0.09293240208539791, + 51.50146553226461 ], [ - -0.09212883027121832, - 51.50109279032789 + -0.09303212207231981, + 51.5015082140807 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719449, - "osm_way_id": 539534596, - "src_i": 5220719463, + "dst_i": 5220776401, + "osm_way_id": 211780343, + "src_i": 25497966, "type": "road" }, "type": "Feature" @@ -1041,33 +1001,33 @@ "coordinates": [ [ [ - -0.09237864165270572, - 51.50044918523352 + -0.0926351173099685, + 51.50062167157148 ], [ - -0.09177964851363442, - 51.50061492216082 + -0.09271040643462349, + 51.50075099675479 ], [ - -0.09181155844715412, - 51.50065961486062 + -0.09282418308820362, + 51.50072532830989 ], [ - -0.09241055158622542, - 51.50049387793332 + -0.09274889396354863, + 51.50059600312658 ], [ - -0.09237864165270572, - 51.50044918523352 + -0.0926351173099685, + 51.50062167157148 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719469, - "osm_way_id": 539534597, - "src_i": 5220719447, + "dst_i": 5220719448, + "osm_way_id": 211780349, + "src_i": 25500014, "type": "road" }, "type": "Feature" @@ -1077,49 +1037,41 @@ "coordinates": [ [ [ - -0.09200612265018895, - 51.501159518212226 + -0.09183120455300049, + 51.501104578639 ], [ - -0.09203432844256665, - 51.501205558995515 + -0.09185119882499942, + 51.50110244814549 ], [ - -0.09253281424802244, - 51.50157468116169 + -0.09191140989930377, + 51.50110232403907 ], [ - -0.09274028949215948, - 51.50166175260612 - ], - [ - -0.0927806680978221, - 51.50162446851991 - ], - [ - -0.09258158640284068, - 51.50154091881994 + -0.09191122209183557, + 51.501066905146416 ], [ - -0.09209747220272055, - 51.501182441027446 + -0.09184626671194998, + 51.501067038246056 ], [ - -0.09207361487556805, - 51.501143495893736 + -0.09182160325735707, + 51.50106966696389 ], [ - -0.09200612265018895, - 51.501159518212226 + -0.09183120455300049, + 51.501104578639 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220776406, - "osm_way_id": 539534598, - "src_i": 5220719449, + "dst_i": 2217388361, + "osm_way_id": 211780353, + "src_i": 31349035, "type": "road" }, "type": "Feature" @@ -1129,41 +1081,41 @@ "coordinates": [ [ [ - -0.09169822097411501, - 51.50077469748343 + -0.09203842553471904, + 51.50109886794511 ], [ - -0.09173948660889665, - 51.500831092159444 + -0.09211669213008139, + 51.50109267791266 ], [ - -0.09182446515423784, - 51.500914169715436 + -0.09212882738187265, + 51.50109279032789 ], [ - -0.09189073807574648, - 51.50088790052352 + -0.09212967684949804, + 51.50105737503253 ], [ - -0.0918087124416745, - 51.5008077079921 + -0.092113516739196, + 51.50105722484578 ], [ - -0.09176972072193089, - 51.500754423171124 + -0.09203125417877953, + 51.50106373143953 ], [ - -0.09169822097411501, - 51.50077469748343 + -0.09203842553471904, + 51.50109886794511 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719466, - "osm_way_id": 539534599, - "src_i": 5220719472, + "dst_i": 5220719463, + "osm_way_id": 211780353, + "src_i": 2217388361, "type": "road" }, "type": "Feature" @@ -1173,33 +1125,33 @@ "coordinates": [ [ [ - -0.09173565244719975, - 51.50060741552115 + -0.09367551723089167, + 51.501384386452 ], [ - -0.09170647583467874, - 51.50061523062823 + -0.09332839702143945, + 51.50126949538476 ], [ - -0.0917603707993603, - 51.500693200035975 + -0.09327158381763666, + 51.50133601282778 ], [ - -0.09178954741188129, - 51.5006853849289 + -0.09361870402708888, + 51.50145090389502 ], [ - -0.09173565244719975, - 51.50060741552115 + -0.09367551723089167, + 51.501384386452 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 60007209, - "osm_way_id": 539534603, - "src_i": 5220719469, + "dst_i": 5220776402, + "osm_way_id": 211781360, + "src_i": 352928523, "type": "road" }, "type": "Feature" @@ -1209,33 +1161,41 @@ "coordinates": [ [ [ - -0.09165612754180047, - 51.501057718573485 + -0.09262152438328944, + 51.500932828845656 ], [ - -0.09152941528767998, - 51.50104982702405 + -0.09254511852653509, + 51.500966494959975 ], [ - -0.09151808616332914, - 51.50112031227517 + -0.09245736043066458, + 51.50098596797649 ], [ - -0.09164479841744962, - 51.50112820382461 + -0.09247646478419883, + 51.501019331019336 ], [ - -0.09165612754180047, - 51.501057718573485 + -0.09257159649020537, + 51.50099822123701 + ], + [ + -0.09265439646891546, + 51.500961738446584 + ], + [ + -0.09262152438328944, + 51.500932828845656 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 287453575, - "osm_way_id": 539534606, - "src_i": 31349035, + "dst_i": 5220719428, + "osm_way_id": 211782553, + "src_i": 2217412073, "type": "road" }, "type": "Feature" @@ -1245,33 +1205,33 @@ "coordinates": [ [ [ - -0.09283785691656127, - 51.50075340783673 + -0.09287172582644157, + 51.50095079100142 ], [ - -0.09283131688264948, - 51.50074453242917 + -0.09286349841466165, + 51.50091672468887 ], [ - -0.09272788408654857, - 51.50077406795812 + -0.09280723418653514, + 51.500921991117764 ], [ - -0.09273442412046037, - 51.500782943365685 + -0.09281546159831505, + 51.500956057430315 ], [ - -0.09283785691656127, - 51.50075340783673 + -0.09287172582644157, + 51.50095079100142 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719448, - "osm_way_id": 539534607, - "src_i": 5220719432, + "dst_i": 5220719456, + "osm_way_id": 211782554, + "src_i": 2217412069, "type": "road" }, "type": "Feature" @@ -1281,33 +1241,41 @@ "coordinates": [ [ [ - -0.09183032908126412, - 51.500958244581106 + -0.09281546304298789, + 51.500956057430315 ], [ - -0.09191122064716274, - 51.5010669042471 + -0.09279560601490801, + 51.50094538068104 ], [ - -0.09203493664982905, - 51.50103121375924 + -0.09272227731128645, + 51.500926049757375 ], [ - -0.09195404508393043, - 51.50092255409326 + -0.09270009002592808, + 51.50095866456442 ], [ - -0.09183032908126412, - 51.500958244581106 + -0.09276518698375123, + 51.500975824525085 + ], + [ + -0.09277827138559332, + 51.50098286081942 + ], + [ + -0.09281546304298789, + 51.500956057430315 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2217388361, - "osm_way_id": 539534608, - "src_i": 5220719466, + "dst_i": 2217412073, + "osm_way_id": 211782556, + "src_i": 2217412069, "type": "road" }, "type": "Feature" @@ -1317,57 +1285,69 @@ "coordinates": [ [ [ - -0.09245735898599174, - 51.50098596887581 - ], - [ - -0.09250047235732589, - 51.500945360895955 + -0.09162122858019076, + 51.50158722850047 ], [ - -0.09261653014930821, - 51.50087192496977 + -0.09161411212181887, + 51.50162339652824 ], [ - -0.09271139314616794, - 51.50082830965757 + -0.09164279176688557, + 51.50162558367903 ], [ - -0.09275788705192965, - 51.5008152074372 + -0.09164990822525744, + 51.50158941565126 ], [ - -0.09273442267578753, - 51.50078294156704 - ], + -0.09162122858019076, + 51.50158722850047 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2317365395, + "osm_way_id": 222795385, + "src_i": 2317365390, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -0.09268243323457179, - 51.50079759241967 + -0.0929039637006942, + 51.501198323951044 ], [ - -0.09257911312295179, - 51.50084509639965 + -0.09273644088373426, + 51.50105852976181 ], [ - -0.09245604866773285, - 51.500922965982674 + -0.09271328277823258, + 51.50106928385277 ], [ - -0.0924098928154139, - 51.50096643920202 + -0.09288080559519253, + 51.501209078042 ], [ - -0.09245735898599174, - 51.50098596887581 + -0.0929039637006942, + 51.501198323951044 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719432, - "osm_way_id": 539534609, - "src_i": 5220719428, + "dst_i": 2217442429, + "osm_way_id": 243285287, + "src_i": 2217475460, "type": "road" }, "type": "Feature" @@ -1377,41 +1357,33 @@ "coordinates": [ [ [ - -0.09366909421547928, - 51.50096858588333 - ], - [ - -0.09408196148552919, - 51.500720716587324 - ], - [ - -0.09423843399999493, - 51.50063587456182 + -0.09328577628354112, + 51.50124272347192 ], [ - -0.09416369529568903, - 51.50058245843985 + -0.0932934431622621, + 51.50123057902935 ], [ - -0.09400503843590087, - 51.50066848397294 + -0.09318753419692664, + 51.501204669566185 ], [ - -0.09359009950500946, - 51.50091759793041 + -0.09317986731820567, + 51.50121681400876 ], [ - -0.09366909421547928, - 51.50096858588333 + -0.09328577628354112, + 51.50124272347192 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 12238562, - "osm_way_id": 539540870, - "src_i": 2217388387, + "dst_i": 5220776403, + "osm_way_id": 380116492, + "src_i": 5220776408, "type": "road" }, "type": "Feature" @@ -1421,33 +1393,33 @@ "coordinates": [ [ [ - -0.09325887069671247, - 51.50128610945704 + -0.09292840178632528, + 51.50119520060618 ], [ - -0.09326238414104061, - 51.50127977553309 + -0.09291702354309814, + 51.50119978444977 ], [ - -0.09315482246998502, - 51.50125665396773 + -0.09293272135809384, + 51.50121488406402 ], [ - -0.09315130902565688, - 51.501262987891685 + -0.09294409960132098, + 51.50121030022043 ], [ - -0.09325887069671247, - 51.50128610945704 + -0.09292840178632528, + 51.50119520060618 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220776408, - "osm_way_id": 539540874, - "src_i": 5220776401, + "dst_i": 2217475460, + "osm_way_id": 454007398, + "src_i": 2217442436, "type": "road" }, "type": "Feature" @@ -1457,57 +1429,77 @@ "coordinates": [ [ [ - -0.09308106036451376, - 51.501204448333006 + -0.0929060079127519, + 51.50125580410856 ], [ - -0.09305294414185167, - 51.50120272793026 + -0.09293482046771917, + 51.50127494797327 ], [ - -0.0930071682384876, - 51.501177885962164 + -0.09294012241701369, + 51.501290408215596 ], [ - -0.09295484652252042, - 51.501125379953926 + -0.09296838021761335, + 51.50128665264745 ], [ - -0.09289392611385543, - 51.50101731653834 + -0.0929613995584877, + 51.501266300094144 ], [ - -0.09284023918206172, - 51.50102904549421 + -0.09292709435741206, + 51.50124350678127 ], [ - -0.09290321969418557, - 51.50114076375389 + -0.0929060079127519, + 51.50125580410856 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2217475492, + "osm_way_id": 454007398, + "src_i": 2217475460, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09266155193345381, + 51.50188566576607 ], [ - -0.09296332530737315, - 51.50120107947327 + -0.09269374068883014, + 51.50184541121971 ], [ - -0.09302927462216737, - 51.50123686978585 + -0.09259187102873379, + 51.50181384502197 ], [ - -0.09307549548476376, - 51.501239698153135 + -0.09255968227335744, + 51.50185409956833 ], [ - -0.09308106036451376, - 51.501204448333006 + -0.09266155193345381, + 51.50188566576607 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2217412069, - "osm_way_id": 539540878, - "src_i": 5220776411, + "dst_i": 347413549, + "osm_way_id": 462430761, + "src_i": 347413001, "type": "road" }, "type": "Feature" @@ -1517,33 +1509,33 @@ "coordinates": [ [ [ - -0.09285910660925148, - 51.50080608741409 + -0.09272629061241455, + 51.50180970724203 ], [ - -0.09285454144310143, - 51.50079674975508 + -0.0928376792218029, + 51.501701650121696 ], [ - -0.09275949930681049, - 51.50081475597762 + -0.09274190897040448, + 51.50166339296922 ], [ - -0.09276406447296054, - 51.50082409363663 + -0.09263052036101614, + 51.50177145008955 ], [ - -0.09285910660925148, - 51.50080608741409 + -0.09272629061241455, + 51.50180970724203 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719432, - "osm_way_id": 539540881, - "src_i": 5220719456, + "dst_i": 5220776406, + "osm_way_id": 462430761, + "src_i": 347413549, "type": "road" }, "type": "Feature" @@ -1553,33 +1545,33 @@ "coordinates": [ [ [ - -0.09326982998481825, - 51.501250261587856 + -0.09287824130091521, + 51.50166091623678 ], [ - -0.09324071549322904, - 51.501238093762915 + -0.09299200206309419, + 51.50154290362331 ], [ - -0.09317728568785436, - 51.501296905816126 + -0.09289442886000106, + 51.5015064541078 ], [ - -0.09320640017944357, - 51.50130907364107 + -0.0927806680978221, + 51.50162446672127 ], [ - -0.09326982998481825, - 51.501250261587856 + -0.09287824130091521, + 51.50166091623678 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220776408, - "osm_way_id": 539540882, - "src_i": 5220776402, + "dst_i": 25497966, + "osm_way_id": 462430761, + "src_i": 5220776406, "type": "road" }, "type": "Feature" @@ -1589,49 +1581,69 @@ "coordinates": [ [ [ - -0.09366985844740756, - 51.50047247137478 + -0.09272144951375354, + 51.500554767420056 ], [ - -0.09356784143068231, - 51.50052370754053 + -0.09269239280907761, + 51.50050315623709 ], [ - -0.0933624205113128, - 51.50061630441854 + -0.09258500449876189, + 51.50052658537052 ], [ - -0.09327880429245247, - 51.50063576214659 + -0.09261406120343782, + 51.50057819655349 ], [ - -0.09329903838014157, - 51.50066945793853 + -0.09272144951375354, + 51.500554767420056 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220719437, + "osm_way_id": 539534590, + "src_i": 25500014, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09198448434050685, + 51.501111774113305 ], [ - -0.09338997909026163, - 51.50064829509621 + -0.0919870717495495, + 51.501115965852556 ], [ - -0.0936029585378897, - 51.50055229158694 + -0.09204101294376167, + 51.50110306238233 ], [ - -0.09370614285026346, - 51.500500469063326 + -0.09203842553471904, + 51.50109887064308 ], [ - -0.09366985844740756, - 51.50047247137478 + -0.09198448434050685, + 51.501111774113305 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6024546597, - "osm_way_id": 639342503, - "src_i": 6024546591, + "dst_i": 5220719449, + "osm_way_id": 539534591, + "src_i": 2217388361, "type": "road" }, "type": "Feature" @@ -1641,33 +1653,85 @@ "coordinates": [ [ [ - -0.09245462566499305, - 51.50040822471949 + -0.09286349985933448, + 51.50091672468887 ], [ - -0.09243243837963468, - 51.50041446601329 + -0.09296865326077865, + 51.501080245687085 ], [ - -0.0924885870339346, - 51.500491816687585 + -0.09307642152004927, + 51.50118683961073 ], [ - -0.09251077431929297, - 51.50048557539379 + -0.09308106036451376, + 51.501204449232326 ], [ - -0.09245462566499305, - 51.50040822471949 + -0.09313720612946803, + 51.501198716954704 + ], + [ + -0.09313070365704987, + 51.5011740350659 + ], + [ + -0.09301955775269735, + 51.50106410106082 + ], + [ + -0.09291632287677447, + 51.50090356221394 + ], + [ + -0.09286349985933448, + 51.50091672468887 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5220719447, - "osm_way_id": 1059354151, - "src_i": 9733253134, + "dst_i": 5220776411, + "osm_way_id": 539534592, + "src_i": 5220719456, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09276148717662773, + 51.500842086369346 + ], + [ + -0.09267614023971431, + 51.500901438915 + ], + [ + -0.09271853271930514, + 51.50092506230196 + ], + [ + -0.09280387965621856, + 51.500865709756305 + ], + [ + -0.09276148717662773, + 51.500842086369346 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2217412073, + "osm_way_id": 539534593, + "src_i": 5220719456, "type": "road" }, "type": "Feature" @@ -1677,34 +1741,1824 @@ "coordinates": [ [ [ - -0.09268104056996145, - 51.50036498262587 + -0.09256561554467968, + 51.500397068631656 + ], + [ + -0.09249966045119414, + 51.50041540310668 + ], + [ + -0.09253169462657741, + 51.50046006163225 + ], + [ + -0.09259764972006296, + 51.500441727157224 + ], + [ + -0.09256561554467968, + 51.500397068631656 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9733253134, + "osm_way_id": 539534595, + "src_i": -2, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09199081056283946, + 51.501106085902464 + ], + [ + -0.09185189371263176, + 51.501106243283786 + ], + [ + -0.09183120310832765, + 51.501104578639 + ], + [ + -0.09182391039987023, + 51.50113970615136 + ], + [ + -0.0918482762518597, + 51.50114166577372 + ], + [ + -0.09199091457928339, + 51.50114150479511 + ], + [ + -0.09199081056283946, + 51.501106085902464 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 31349035, + "osm_way_id": 539534596, + "src_i": 5220719449, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09212883027121832, + 51.50109279032789 + ], + [ + -0.09212416108862434, + 51.501094561991984 + ], + [ + -0.09205544955937478, + 51.501102395984816 + ], + [ + -0.09206569806844708, + 51.501137235714175 + ], + [ + -0.0921447823486325, + 51.5011282200124 + ], + [ + -0.092158448953626, + 51.50112303272384 + ], + [ + -0.09212883027121832, + 51.50109279032789 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220719449, + "osm_way_id": 539534596, + "src_i": 5220719463, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09237864165270572, + 51.50044918523352 + ], + [ + -0.09177964851363442, + 51.50061492216082 + ], + [ + -0.09181155844715412, + 51.50065961486062 + ], + [ + -0.09241055158622542, + 51.50049387793332 + ], + [ + -0.09237864165270572, + 51.50044918523352 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220719469, + "osm_way_id": 539534597, + "src_i": 5220719447, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09204281589545638, + 51.50120201566734 + ], + [ + -0.09253261054915309, + 51.50157459572612 + ], + [ + -0.09274028949215948, + 51.50166175260612 + ], + [ + -0.0927806680978221, + 51.50162446851991 + ], + [ + -0.09258179010171004, + 51.501541004255515 + ], + [ + -0.09209871606602915, + 51.501173537740904 + ], + [ + -0.09204281589545638, + 51.50120201566734 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220776406, + "osm_way_id": 539534598, + "src_i": 2217475451, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09169822097411501, + 51.50077469748343 + ], + [ + -0.09173948660889665, + 51.500831092159444 + ], + [ + -0.09182446515423784, + 51.500914169715436 + ], + [ + -0.09189073807574648, + 51.50088790052352 + ], + [ + -0.0918087124416745, + 51.5008077079921 + ], + [ + -0.09176972072193089, + 51.500754423171124 + ], + [ + -0.09169822097411501, + 51.50077469748343 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220719466, + "osm_way_id": 539534599, + "src_i": 5220719472, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09173565244719975, + 51.50060741552115 + ], + [ + -0.09170647583467874, + 51.50061523062823 + ], + [ + -0.0917603707993603, + 51.500693200035975 + ], + [ + -0.09178954741188129, + 51.5006853849289 + ], + [ + -0.09173565244719975, + 51.50060741552115 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 60007209, + "osm_way_id": 539534603, + "src_i": 5220719469, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09209871606602915, + 51.501173538640224 + ], + [ + -0.09248239805552105, + 51.50114077004914 + ], + [ + -0.09285808522555905, + 51.501235345435276 + ], + [ + -0.09286891738245559, + 51.501218670209106 + ], + [ + -0.0924860993073174, + 51.50112229977651 + ], + [ + -0.09209478944527098, + 51.501155719476635 + ], + [ + -0.09209871606602915, + 51.501173538640224 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2217475460, + "osm_way_id": 539534605, + "src_i": 2217475451, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09193925307880056, + 51.50117811888653 + ], + [ + -0.0919982694086726, + 51.5011785289773 + ], + [ + -0.09199859301538703, + 51.50116054433848 + ], + [ + -0.091939576685515, + 51.50116013424771 + ], + [ + -0.09193925307880056, + 51.50117811888653 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2217475451, + "osm_way_id": 539534605, + "src_i": 2217475464, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09165612754180047, + 51.501057718573485 + ], + [ + -0.09152941528767998, + 51.50104982702405 + ], + [ + -0.09151808616332914, + 51.50112031227517 + ], + [ + -0.09164479841744962, + 51.50112820382461 + ], + [ + -0.09165612754180047, + 51.501057718573485 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 287453575, + "osm_way_id": 539534606, + "src_i": 31349035, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09283785691656127, + 51.50075340783673 + ], + [ + -0.09283131688264948, + 51.50074453242917 + ], + [ + -0.09272788408654857, + 51.50077406795812 + ], + [ + -0.09273442412046037, + 51.500782943365685 + ], + [ + -0.09283785691656127, + 51.50075340783673 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220719448, + "osm_way_id": 539534607, + "src_i": 5220719432, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09183032908126412, + 51.500958244581106 + ], + [ + -0.09191122064716274, + 51.5010669042471 + ], + [ + -0.09203493664982905, + 51.50103121375924 + ], + [ + -0.09195404508393043, + 51.50092255409326 + ], + [ + -0.09183032908126412, + 51.500958244581106 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2217388361, + "osm_way_id": 539534608, + "src_i": 5220719466, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09245735898599174, + 51.50098596887581 + ], + [ + -0.09250047235732589, + 51.500945360895955 + ], + [ + -0.09261653014930821, + 51.50087192496977 + ], + [ + -0.09271139314616794, + 51.50082830965757 + ], + [ + -0.09275788705192965, + 51.5008152074372 + ], + [ + -0.09273442267578753, + 51.50078294156704 + ], + [ + -0.09268243323457179, + 51.50079759241967 + ], + [ + -0.09257911312295179, + 51.50084509639965 + ], + [ + -0.09245604866773285, + 51.500922965982674 + ], + [ + -0.0924098928154139, + 51.50096643920202 + ], + [ + -0.09245735898599174, + 51.50098596887581 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220719432, + "osm_way_id": 539534609, + "src_i": 5220719428, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09218468710160613, + 51.50142212829305 + ], + [ + -0.09220428697792185, + 51.50141032829075 + ], + [ + -0.09218420024686164, + 51.50139739963951 + ], + [ + -0.09216460037054591, + 51.501409199641806 + ], + [ + -0.09218468710160613, + 51.50142212829305 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 872828485, + "osm_way_id": 539539172, + "src_i": 5220760621, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09366909421547928, + 51.50096858588333 + ], + [ + -0.09408196148552919, + 51.500720716587324 + ], + [ + -0.09423843399999493, + 51.50063587456182 + ], + [ + -0.09416369529568903, + 51.50058245843985 + ], + [ + -0.09400503843590087, + 51.50066848397294 + ], + [ + -0.09359009950500946, + 51.50091759793041 + ], + [ + -0.09366909421547928, + 51.50096858588333 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 12238562, + "osm_way_id": 539540870, + "src_i": 2217388387, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09325887069671247, + 51.50128610945704 + ], + [ + -0.09326238414104061, + 51.50127977553309 + ], + [ + -0.09315482246998502, + 51.50125665396773 + ], + [ + -0.09315130902565688, + 51.501262987891685 + ], + [ + -0.09325887069671247, + 51.50128610945704 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220776408, + "osm_way_id": 539540874, + "src_i": 5220776401, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09308106036451376, + 51.501204448333006 + ], + [ + -0.09305294414185167, + 51.50120272793026 + ], + [ + -0.0930071682384876, + 51.501177885962164 + ], + [ + -0.09295484652252042, + 51.501125379953926 + ], + [ + -0.09289392611385543, + 51.50101731653834 + ], + [ + -0.09284023918206172, + 51.50102904549421 + ], + [ + -0.09290321969418557, + 51.50114076375389 + ], + [ + -0.09296332530737315, + 51.50120107947327 + ], + [ + -0.09302927462216737, + 51.50123686978585 + ], + [ + -0.09307549548476376, + 51.501239698153135 + ], + [ + -0.09308106036451376, + 51.501204448333006 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2217412069, + "osm_way_id": 539540878, + "src_i": 5220776411, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09285910660925148, + 51.50080608741409 + ], + [ + -0.09285454144310143, + 51.50079674975508 + ], + [ + -0.09275949930681049, + 51.50081475597762 + ], + [ + -0.09276406447296054, + 51.50082409363663 + ], + [ + -0.09285910660925148, + 51.50080608741409 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220719432, + "osm_way_id": 539540881, + "src_i": 5220719456, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09326982998481825, + 51.501250261587856 + ], + [ + -0.09324071549322904, + 51.501238093762915 + ], + [ + -0.09317728568785436, + 51.501296905816126 + ], + [ + -0.09320640017944357, + 51.50130907364107 + ], + [ + -0.09326982998481825, + 51.501250261587856 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220776408, + "osm_way_id": 539540882, + "src_i": 5220776402, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09366985844740756, + 51.50047247137478 + ], + [ + -0.09356784143068231, + 51.50052370754053 + ], + [ + -0.0933624205113128, + 51.50061630441854 + ], + [ + -0.09327880429245247, + 51.50063576214659 + ], + [ + -0.09329903838014157, + 51.50066945793853 + ], + [ + -0.09338997909026163, + 51.50064829509621 + ], + [ + -0.0936029585378897, + 51.50055229158694 + ], + [ + -0.09370614285026346, + 51.500500469063326 + ], + [ + -0.09366985844740756, + 51.50047247137478 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6024546597, + "osm_way_id": 639342503, + "src_i": 6024546591, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09199337485711678, + 51.50114150119782 + ], + [ + -0.09199362478551677, + 51.50114241400952 + ], + [ + -0.09206483270942054, + 51.50113485790715 + ], + [ + -0.09206458278102055, + 51.50113394509545 + ], + [ + -0.09199337485711678, + 51.50114150119782 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2217475451, + "osm_way_id": 1059353228, + "src_i": 5220719449, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09245462566499305, + 51.50040822471949 + ], + [ + -0.09243243837963468, + 51.50041446601329 + ], + [ + -0.0924885870339346, + 51.500491816687585 + ], + [ + -0.09251077431929297, + 51.50048557539379 + ], + [ + -0.09245462566499305, + 51.50040822471949 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5220719447, + "osm_way_id": 1059354151, + "src_i": 9733253134, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09268104056996145, + 51.50036498262587 + ], + [ + -0.09271307474534474, + 51.50040964115144 + ], + [ + -0.09259764972006296, + 51.500441727157224 + ], + [ + -0.09256561554467968, + 51.500397068631656 + ], + [ + -0.09268104056996145, + 51.50036498262587 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-2", + "osm_node_id": -2, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09135192133883153, + 51.50139612530041 + ], + [ + -0.09135484246729844, + 51.50137823059379 + ], + [ + -0.09148060412669527, + 51.50138618329711 + ], + [ + -0.09147768299822838, + 51.50140407800374 + ], + [ + -0.09135192133883153, + 51.50139612530041 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-1", + "osm_node_id": -1, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.0943242042260482, + 51.50047186253387 + ], + [ + -0.09444051483577617, + 51.500560816258975 + ], + [ + -0.09434247644803105, + 51.500610491201954 + ], + [ + -0.09422616583830308, + 51.50052153747685 + ], + [ + -0.0943242042260482, + 51.50047186253387 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/276507", + "osm_node_id": 276507, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09441384328594637, + 51.50159600768059 + ], + [ + -0.09435968250146368, + 51.50165830730403 + ], + [ + -0.09424851059300017, + 51.50162085324598 + ], + [ + -0.09430267137748287, + 51.501558553622544 + ], + [ + -0.09441384328594637, + 51.50159600768059 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/364296", + "osm_node_id": 364296, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09440421887553763, + 51.50066187485649 + ], + [ + -0.09432015625277212, + 51.50070961985473 + ], + [ + -0.09423495522781476, + 51.50065149038682 + ], + [ + -0.09431901785058028, + 51.50060374358994 + ], + [ + -0.09440421887553763, + 51.50066187485649 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/364300", + "osm_node_id": 364300, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09427033093145915, + 51.50057052713656 + ], + [ + -0.09418626830869363, + 51.5006182721348 + ], + [ + -0.09423843399999493, + 51.50063587456182 + ], + [ + -0.09416369529568903, + 51.50058245843985 + ], + [ + -0.09417014575988523, + 51.500549921873805 + ], + [ + -0.09428645348026754, + 51.500638877397556 + ], + [ + -0.09427033093145915, + 51.50057052713656 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/12238562", + "osm_node_id": 12238562, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09299200206309419, + 51.50154290362331 + ], + [ + -0.09289442886000106, + 51.5015064541078 + ], + [ + -0.09293240208539791, + 51.50146553226461 + ], + [ + -0.09303212207231981, + 51.5015082140807 + ], + [ + -0.09299200206309419, + 51.50154290362331 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25497966", + "osm_node_id": 25497966, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09341232673430439, + 51.50173843418495 + ], + [ + -0.09343267350647441, + 51.501704765372665 + ], + [ + -0.09356788910488578, + 51.50173643049582 + ], + [ + -0.09354754233271576, + 51.5017700993081 + ], + [ + -0.09341232673430439, + 51.50173843418495 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25498065", + "osm_node_id": 25498065, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09274889396354863, + 51.50059600312658 + ], + [ + -0.0926351173099685, + 51.50062167157148 + ], + [ + -0.09261405975876498, + 51.50057819655349 + ], + [ + -0.09272145095842638, + 51.500554767420056 + ], + [ + -0.09274889396354863, + 51.50059600312658 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25500014", + "osm_node_id": 25500014, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09139220748543289, + 51.501624634894455 + ], + [ + -0.09139655017196677, + 51.50160685350238 + ], + [ + -0.09152152303999717, + 51.501618680484334 + ], + [ + -0.09151718035346329, + 51.50163646187641 + ], + [ + -0.09139220748543289, + 51.501624634894455 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/25500037", + "osm_node_id": 25500037, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09183120310832765, + 51.501104578639 + ], + [ + -0.09182391039987023, + 51.50113970615136 + ], + [ + -0.09164479986212246, + 51.50112820382461 + ], + [ + -0.09165612609712764, + 51.501057718573485 + ], + [ + -0.09182160325735707, + 51.50106966696389 + ], + [ + -0.09183120310832765, + 51.501104578639 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/31349035", + "osm_node_id": 31349035, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09176037368870596, + 51.500693201834615 + ], + [ + -0.09163327715161208, + 51.50072394245488 + ], + [ + -0.0915928956566038, + 51.50065142743429 + ], + [ + -0.09169376271375455, + 51.50061863636016 + ], + [ + -0.09170647583467874, + 51.50061523062823 + ], + [ + -0.09176037368870596, + 51.500693201834615 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/60007209", + "osm_node_id": 60007209, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09143121365190482, + 51.50044397186462 + ], + [ + -0.09153577907150624, + 51.50041602813538 + ], + [ + -0.09159105514341546, + 51.50049620268037 + ], + [ + -0.09149018808626472, + 51.5005289937545 + ], + [ + -0.09143121365190482, + 51.50044397186462 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/287453557", + "osm_node_id": 287453557, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09137433688249741, + 51.50111136042525 + ], + [ + -0.0913856631175026, + 51.50104087517413 + ], + [ + -0.09152941528767998, + 51.50104982702405 + ], + [ + -0.09151808616332914, + 51.50112031227517 + ], + [ + -0.09137433688249741, + 51.50111136042525 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/287453575", + "osm_node_id": 287453575, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09427817261559283, + 51.501409555773265 + ], + [ + -0.09430348617296028, + 51.50141822703476 + ], + [ + -0.09424254987289413, + 51.50148717084819 + ], + [ + -0.09421723631552668, + 51.501478499586696 + ], + [ + -0.09427817261559283, + 51.501409555773265 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/295803799", + "osm_node_id": 295803799, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09260522125037701, + 51.50195611144703 + ], + [ + -0.09250335159028064, + 51.50192454524929 + ], + [ + -0.09255968227335744, + 51.50185409956833 + ], + [ + -0.09266155193345381, + 51.50188566576607 + ], + [ + -0.09260522125037701, + 51.50195611144703 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/347413001", + "osm_node_id": 347413001, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09270846190499121, + 51.50182700210097 + ], + [ + -0.09269374068883014, + 51.50184541211903 + ], + [ + -0.09259187102873379, + 51.501813844122644 + ], + [ + -0.09260733047271216, + 51.501794509601694 + ], + [ + -0.09261955529421903, + 51.50177821209071 + ], + [ + -0.09262262811333331, + 51.501779105117336 + ], + [ + -0.09263052036101614, + 51.50177145008955 + ], + [ + -0.09272629061241455, + 51.50180970724203 + ], + [ + -0.09270846190499121, + 51.50182700210097 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/347413549", + "osm_node_id": 347413549, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09373415505648164, + 51.50140409419153 + ], + [ + -0.09369056927713133, + 51.50146952885101 + ], + [ + -0.09361870402708888, + 51.50145090389502 + ], + [ + -0.09367551723089167, + 51.501384386452 + ], + [ + -0.09373415505648164, + 51.50140409419153 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/352928523", + "osm_node_id": 352928523, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09230738894394416, + 51.501323234363284 + ], + [ + -0.09232747567500438, + 51.50133616301453 + ], + [ + -0.09220428697792185, + 51.50141032829075 + ], + [ + -0.09218420024686164, + 51.50139739963951 + ], + [ + -0.09230738894394416, + 51.501323234363284 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/872828485", + "osm_node_id": 872828485, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09384920591149984, + 51.50182557397783 + ], + [ + -0.09381469267753635, + 51.50185442602217 + ], + [ + -0.09370294867863126, + 51.50180649216633 + ], + [ + -0.09372329545080128, + 51.50177282335405 + ], + [ + -0.09384920591149984, + 51.50182557397783 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1150853978", + "osm_node_id": 1150853978, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.0920682089098296, + 51.501459591344315 + ], + [ + -0.09203968817877446, + 51.50145670631974 + ], + [ + -0.09204111118151427, + 51.50145125463055 + ], + [ + -0.09203245181255751, + 51.501450049539244 + ], + [ + -0.09203875347545197, + 51.50143249657492 + ], + [ + -0.09207400060321427, + 51.501437399677776 + ], + [ + -0.09210630493241719, + 51.50142734435991 + ], + [ + -0.09211922608622923, + 51.50144343142958 + ], + [ + -0.0920682089098296, + 51.501459591344315 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1165070926", + "osm_node_id": 1165070926, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09182424700864016, + 51.50155873528556 + ], + [ + -0.09183129556738892, + 51.50155913638312 + ], + [ + -0.09182866626283415, + 51.50157704727754 + ], + [ + -0.09179269968800136, + 51.501575000420964 + ], + [ + -0.09175673311316858, + 51.501572947269125 + ], + [ + -0.09175937108576035, + 51.501555036374704 + ], + [ + -0.09179616690279886, + 51.50155262079615 + ], + [ + -0.09182492744954417, + 51.50155434749415 + ], + [ + -0.09182424700864016, + 51.50155873528556 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1165070941", + "osm_node_id": 1165070941, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09162429995463221, + 51.50164659993188 ], [ - -0.09271307474534474, - 51.50040964115144 + -0.09158859342090923, + 51.501643220280286 ], [ - -0.09259764972006296, - 51.500441727157224 + -0.09159293610744311, + 51.50162543888821 ], [ - -0.09256561554467968, - 51.500397068631656 + -0.09162849383986435, + 51.50162426887045 ], [ - -0.09268104056996145, - 51.50036498262587 + -0.09162765737429446, + 51.501628725010335 + ], + [ + -0.09165719082100504, + 51.501626357095844 + ], + [ + -0.09162429995463221, + 51.50164659993188 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-1", - "osm_node_id": -1, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1165070964", + "osm_node_id": 1165070964, "type": "intersection" }, "type": "Feature" @@ -1714,34 +3568,54 @@ "coordinates": [ [ [ - -0.0943242042260482, - 51.50047186253387 + -0.09181949981371323, + 51.50140199967089 ], [ - -0.09444051483577617, - 51.500560816258975 + -0.09185474694147555, + 51.50140690277374 ], [ - -0.09434247644803105, - 51.500610491201954 + -0.09184844527858108, + 51.50142445573806 ], [ - -0.09422616583830308, - 51.50052153747685 + -0.09184512108639398, + 51.50142399258729 ], [ - -0.0943242042260482, - 51.50047186253387 + -0.09184479314566105, + 51.501426105993694 + ], + [ + -0.09181603259891574, + 51.5014243792957 + ], + [ + -0.0918167245972024, + 51.50141991236396 + ], + [ + -0.09178165083017997, + 51.50141854629403 + ], + [ + -0.09178345378187468, + 51.501400595829445 + ], + [ + -0.09181949981371323, + 51.50140199967089 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/276507", - "osm_node_id": 276507, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1165071010", + "osm_node_id": 1165071010, "type": "intersection" }, "type": "Feature" @@ -1751,34 +3625,54 @@ "coordinates": [ [ [ - -0.09425639706199167, - 51.50154242698272 + -0.09159491386455051, + 51.50154561867605 + ], + [ + -0.09160208522049003, + 51.50154602516953 + ], + [ + -0.0915994674733179, + 51.5015639378626 + ], + [ + -0.09156349945381229, + 51.50156189999924 + ], + [ + -0.09152753432365233, + 51.501559843250114 + ], + [ + -0.09153017807493544, + 51.501541932355686 ], [ - -0.09420360293800832, - 51.50160517986438 + -0.09156614031574972, + 51.50154398910481 ], [ - -0.09407688201585085, - 51.50156924745894 + -0.09156680053123409, + 51.5015395113812 ], [ - -0.09412046779520114, - 51.501503812799456 + -0.09159557263536204, + 51.50154115534159 ], [ - -0.09425639706199167, - 51.50154242698272 + -0.09159491386455051, + 51.50154561867605 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/364296", - "osm_node_id": 364296, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1165071161", + "osm_node_id": 1165071161, "type": "intersection" }, "type": "Feature" @@ -1788,34 +3682,42 @@ "coordinates": [ [ [ - -0.09440421887553763, - 51.50066187485649 + -0.09166390277098388, + 51.50159061894393 ], [ - -0.09432015625277212, - 51.50070961985473 + -0.09163520578984319, + 51.50158853071854 ], [ - -0.09423495522781476, - 51.50065149038682 + -0.0916034302108969, + 51.50156416269307 ], [ - -0.09431901785058028, - 51.50060374358994 + -0.09160605084741467, + 51.501546250000004 ], [ - -0.09440421887553763, - 51.50066187485649 + -0.09164219078298733, + 51.5015482977559 + ], + [ + -0.09163939967507534, + 51.50156619965711 + ], + [ + -0.09166390277098388, + 51.50159061894393 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/364300", - "osm_node_id": 364300, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1165071224", + "osm_node_id": 1165071224, "type": "intersection" }, "type": "Feature" @@ -1825,42 +3727,34 @@ "coordinates": [ [ [ - -0.09427033093145915, - 51.50057052713656 - ], - [ - -0.09418626830869363, - 51.5006182721348 - ], - [ - -0.09423843399999493, - 51.50063587456182 + -0.09132972394076334, + 51.501548509096544 ], [ - -0.09416369529568903, - 51.50058245843985 + -0.09133237347073778, + 51.50153059820212 ], [ - -0.09417014575988523, - 51.500549921873805 + -0.09145825214863403, + 51.501537810763544 ], [ - -0.09428645348026754, - 51.500638877397556 + -0.0914556026186596, + 51.501555721657965 ], [ - -0.09427033093145915, - 51.50057052713656 + -0.09132972394076334, + 51.501548509096544 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/12238562", - "osm_node_id": 12238562, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1165071291", + "osm_node_id": 1165071291, "type": "intersection" }, "type": "Feature" @@ -1870,24 +3764,40 @@ "coordinates": [ [ [ - -0.09299200206309419, - 51.50154290362331 + -0.0915883998347497, + 51.5013930001569 ], [ - -0.09289442886000106, - 51.5015064541078 + -0.09162444586658827, + 51.50139440399835 ], [ - -0.09293240208539791, - 51.50146553226461 + -0.09162264291489357, + 51.501412354462936 ], [ - -0.09303212207231981, - 51.5015082140807 + -0.09161460764460035, + 51.501412041498924 ], [ - -0.09299200206309419, - 51.50154290362331 + -0.09161387086145588, + 51.50141703273532 + ], + [ + -0.09158509875732791, + 51.50141538877493 + ], + [ + -0.091549546803598, + 51.50140862227716 + ], + [ + -0.0915524679320649, + 51.50139072757053 + ], + [ + -0.0915883998347497, + 51.5013930001569 ] ] ], @@ -1896,8 +3806,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25497966", - "osm_node_id": 25497966, + "osm_link": "https://www.openstreetmap.org/node/1165071364", + "osm_node_id": 1165071364, "type": "intersection" }, "type": "Feature" @@ -1907,34 +3817,46 @@ "coordinates": [ [ [ - -0.09341232673430439, - 51.50173843418495 + -0.09203842553471904, + 51.50109886974375 ], [ - -0.09343267350647441, - 51.501704765372665 + -0.09198448434050685, + 51.50111177501263 ], [ - -0.09356788910488578, - 51.50173643049582 + -0.09197856407124011, + 51.50110218644282 ], [ - -0.09354754233271576, - 51.5017700993081 + -0.09191140989930377, + 51.50110232403907 ], [ - -0.09341232673430439, - 51.50173843418495 + -0.09191122209183557, + 51.501066905146416 + ], + [ + -0.09203493664982905, + 51.50103121375924 + ], + [ + -0.09203125417877953, + 51.50106373143953 + ], + [ + -0.09203842553471904, + 51.50109886974375 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25498065", - "osm_node_id": 25498065, + "osm_link": "https://www.openstreetmap.org/node/2217388361", + "osm_node_id": 2217388361, "type": "intersection" }, "type": "Feature" @@ -1944,24 +3866,24 @@ "coordinates": [ [ [ - -0.09274889396354863, - 51.50059600312658 + -0.09364984106064331, + 51.50101552059256 ], [ - -0.0926351173099685, - 51.50062167157148 + -0.09350859250848428, + 51.50093504927136 ], [ - -0.09261405975876498, - 51.50057819655349 + -0.09359009950500946, + 51.50091759793041 ], [ - -0.09272145095842638, - 51.500554767420056 + -0.09366909421547928, + 51.50096858588333 ], [ - -0.09274889396354863, - 51.50059600312658 + -0.09364984106064331, + 51.50101552059256 ] ] ], @@ -1969,9 +3891,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25500014", - "osm_node_id": 25500014, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2217388387", + "osm_node_id": 2217388387, "type": "intersection" }, "type": "Feature" @@ -1981,28 +3903,36 @@ "coordinates": [ [ [ - -0.09183120310832765, - 51.501104578639 + -0.09288319508405715, + 51.500998280592256 ], [ - -0.09182391039987023, - 51.50113970615136 + -0.09289392611385543, + 51.50101731653834 ], [ - -0.09164479986212246, - 51.50112820382461 + -0.09284023918206172, + 51.50102904549421 ], [ - -0.09165612609712764, - 51.501057718573485 + -0.09282983320365071, + 51.50101058601344 ], [ - -0.09182160325735707, - 51.50106966696389 + -0.09277827138559332, + 51.50098286081942 ], [ - -0.09183120310832765, - 51.501104578639 + -0.09281546304298789, + 51.500956057430315 + ], + [ + -0.09287172582644157, + 51.50095079100142 + ], + [ + -0.09288319508405715, + 51.500998280592256 ] ] ], @@ -2011,8 +3941,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/31349035", - "osm_node_id": 31349035, + "osm_link": "https://www.openstreetmap.org/node/2217412069", + "osm_node_id": 2217412069, "type": "intersection" }, "type": "Feature" @@ -2022,28 +3952,40 @@ "coordinates": [ [ [ - -0.09176037368870596, - 51.500693201834615 + -0.09271853271930514, + 51.50092506230196 ], [ - -0.09163327715161208, - 51.50072394245488 + -0.09272227731128645, + 51.500926049757375 ], [ - -0.0915928956566038, - 51.50065142743429 + -0.09270009002592808, + 51.50095866456442 ], [ - -0.09169376271375455, - 51.50061863636016 + -0.09267586719654901, + 51.5009522784798 ], [ - -0.09170647583467874, - 51.50061523062823 + -0.09265439646891546, + 51.500961738446584 + ], + [ + -0.09262152438328944, + 51.500932828845656 + ], + [ + -0.09264738980567883, + 51.50092143263888 + ], + [ + -0.09267614023971431, + 51.500901438915 ], [ - -0.09176037368870596, - 51.500693201834615 + -0.09271853271930514, + 51.50092506230196 ] ] ], @@ -2051,9 +3993,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/60007209", - "osm_node_id": 60007209, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2217412073", + "osm_node_id": 2217412073, "type": "intersection" }, "type": "Feature" @@ -2063,34 +4005,34 @@ "coordinates": [ [ [ - -0.09143121365190482, - 51.50044397186462 + -0.0926269000108984, + 51.50099719960736 ], [ - -0.09153577907150624, - 51.50041602813538 + -0.09265005811640008, + 51.5009864455164 ], [ - -0.09159105514341546, - 51.50049620268037 + -0.09273644088373426, + 51.50105852976181 ], [ - -0.09149018808626472, - 51.5005289937545 + -0.09271328277823258, + 51.50106928385277 ], [ - -0.09143121365190482, - 51.50044397186462 + -0.0926269000108984, + 51.50099719960736 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/287453557", - "osm_node_id": 287453557, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2217442429", + "osm_node_id": 2217442429, "type": "intersection" }, "type": "Feature" @@ -2100,34 +4042,34 @@ "coordinates": [ [ [ - -0.09137433688249741, - 51.50111136042525 + -0.09305346855808978, + 51.50114481519893 ], [ - -0.0913856631175026, - 51.50104087517413 + -0.09306916637308549, + 51.50115991481317 ], [ - -0.09152941528767998, - 51.50104982702405 + -0.09294409960132098, + 51.50121030022043 ], [ - -0.09151808616332914, - 51.50112031227517 + -0.09292840178632528, + 51.50119520060618 ], [ - -0.09137433688249741, - 51.50111136042525 + -0.09305346855808978, + 51.50114481519893 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/287453575", - "osm_node_id": 287453575, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2217442436", + "osm_node_id": 2217442436, "type": "intersection" }, "type": "Feature" @@ -2137,61 +4079,40 @@ "coordinates": [ [ [ - -0.09268544826677277, - 51.501855783098875 + -0.09209478944527098, + 51.501155719476635 ], [ - -0.09258357571733075, - 51.50182421690113 + -0.09209871606602915, + 51.501173538640224 ], [ - -0.0926594802726123, - 51.501743356173556 + -0.09204281589545638, + 51.50120201566734 ], [ - -0.09275525052401072, - 51.50178161332604 + -0.092012066034221, + 51.50117862520474 ], [ - -0.09268544826677277, - 51.501855783098875 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/347413001", - "osm_node_id": 347413001, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -0.09373415505648164, - 51.50140409419153 + -0.0919982694086726, + 51.5011785289773 ], [ - -0.09369056927713133, - 51.50146952885101 + -0.09199859301538703, + 51.50116054433848 ], [ - -0.09361870402708888, - 51.50145090389502 + -0.09199362623018961, + 51.50114241580817 ], [ - -0.09367551723089167, - 51.501384386452 + -0.09206483126474771, + 51.5011348561085 ], [ - -0.09373415505648164, - 51.50140409419153 + -0.09209478944527098, + 51.501155719476635 ] ] ], @@ -2200,8 +4121,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/352928523", - "osm_node_id": 352928523, + "osm_link": "https://www.openstreetmap.org/node/2217475451", + "osm_node_id": 2217475451, "type": "intersection" }, "type": "Feature" @@ -2211,34 +4132,58 @@ "coordinates": [ [ [ - -0.09384920591149984, - 51.50182557397783 + -0.09290240056468967, + 51.50122709955302 ], [ - -0.09381469267753635, - 51.50185442602217 + -0.09292709435741206, + 51.50124350678127 ], [ - -0.09370294867863126, - 51.50180649216633 + -0.0929060079127519, + 51.50125580410856 ], [ - -0.09372329545080128, - 51.50177282335405 + -0.0928856669192732, + 51.50124228909945 ], [ - -0.09384920591149984, - 51.50182557397783 + -0.09285808522555905, + 51.501235345435276 + ], + [ + -0.09286891738245559, + 51.501218670209106 + ], + [ + -0.09288080559519253, + 51.501209078042 + ], + [ + -0.0929039637006942, + 51.501198323951044 + ], + [ + -0.09291702354309814, + 51.50119978444977 + ], + [ + -0.09293272135809384, + 51.50121488406402 + ], + [ + -0.09290240056468967, + 51.50122709955302 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1150853978", - "osm_node_id": 1150853978, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2217475460", + "osm_node_id": 2217475460, "type": "intersection" }, "type": "Feature" @@ -2248,46 +4193,34 @@ "coordinates": [ [ [ - -0.09203842553471904, - 51.50109886974375 - ], - [ - -0.09198448434050685, - 51.50111177501263 - ], - [ - -0.09197856407124011, - 51.50110218644282 - ], - [ - -0.09191140989930377, - 51.50110232403907 + -0.09182022359480221, + 51.50114419017022 ], [ - -0.09191122209183557, - 51.501066905146416 + -0.091849936180944, + 51.50112942510371 ], [ - -0.09203493664982905, - 51.50103121375924 + -0.091939576685515, + 51.50116013424771 ], [ - -0.09203125417877953, - 51.50106373143953 + -0.09193925307880056, + 51.50117811888653 ], [ - -0.09203842553471904, - 51.50109886974375 + -0.09182022359480221, + 51.50114419017022 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2217388361", - "osm_node_id": 2217388361, + "osm_link": "https://www.openstreetmap.org/node/2217475464", + "osm_node_id": 2217475464, "type": "intersection" }, "type": "Feature" @@ -2297,34 +4230,34 @@ "coordinates": [ [ [ - -0.09364984106064331, - 51.50101552059256 + -0.09299520056874488, + 51.50134930030845 ], [ - -0.09350859250848428, - 51.50093504927136 + -0.09297883242555499, + 51.50136412293156 ], [ - -0.09359009950500946, - 51.50091759793041 + -0.09294012241701369, + 51.501290408215596 ], [ - -0.09366909421547928, - 51.50096858588333 + -0.09296838021761335, + 51.50128665264745 ], [ - -0.09364984106064331, - 51.50101552059256 + -0.09299520056874488, + 51.50134930030845 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2217388387", - "osm_node_id": 2217388387, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2217475492", + "osm_node_id": 2217475492, "type": "intersection" }, "type": "Feature" @@ -2334,36 +4267,32 @@ "coordinates": [ [ [ - -0.09288319508405715, - 51.500998280592256 - ], - [ - -0.09289392611385543, - 51.50101731653834 + -0.0916902666055004, + 51.50156915303014 ], [ - -0.09284023918206172, - 51.50102904549421 + -0.09164990822525744, + 51.50158941565126 ], [ - -0.09282983320365071, - 51.50101058601344 + -0.09162122858019076, + 51.50158722850047 ], [ - -0.09277827138559332, - 51.50098286081942 + -0.09165430003066762, + 51.50156709987831 ], [ - -0.09281546304298789, - 51.500956057430315 + -0.09165709113857962, + 51.5015491979771 ], [ - -0.09287172582644157, - 51.50095079100142 + -0.09169290457809218, + 51.50155124213572 ], [ - -0.09288319508405715, - 51.500998280592256 + -0.0916902666055004, + 51.50156915303014 ] ] ], @@ -2372,8 +4301,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2217412069", - "osm_node_id": 2217412069, + "osm_link": "https://www.openstreetmap.org/node/2317365390", + "osm_node_id": 2317365390, "type": "intersection" }, "type": "Feature" @@ -2383,40 +4312,32 @@ "coordinates": [ [ [ - -0.09271853271930514, - 51.50092506230196 - ], - [ - -0.09272227731128645, - 51.500926049757375 - ], - [ - -0.09270009002592808, - 51.50095866456442 + -0.09161411212181887, + 51.50162339652824 ], [ - -0.09267586719654901, - 51.5009522784798 + -0.09164279176688557, + 51.50162558367903 ], [ - -0.09265439646891546, - 51.500961738446584 + -0.0916383999614754, + 51.50164790035131 ], [ - -0.09262152438328944, - 51.500932828845656 + -0.09164191340580354, + 51.50163004161756 ], [ - -0.09264738980567883, - 51.50092143263888 + -0.09167837694809063, + 51.501633420369835 ], [ - -0.09267614023971431, - 51.500901438915 + -0.09167412383127235, + 51.50165121075513 ], [ - -0.09271853271930514, - 51.50092506230196 + -0.09161411212181887, + 51.50162339652824 ] ] ], @@ -2424,9 +4345,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2217412073", - "osm_node_id": 2217412073, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2317365395", + "osm_node_id": 2317365395, "type": "intersection" }, "type": "Feature" @@ -2629,20 +4550,12 @@ "coordinates": [ [ [ - -0.09206951344939716, - 51.50113680044239 + -0.09206458278102055, + 51.50113394509545 ], [ - -0.09207361487556805, - 51.501143495893736 - ], - [ - -0.09200612265018895, - 51.501159518212226 - ], - [ - -0.09199508534975022, - 51.5011415002985 + -0.09199337485711678, + 51.50114150119782 ], [ -0.09199091457928339, @@ -2661,12 +4574,16 @@ 51.50110306238233 ], [ - -0.09205926494032488, - 51.50110196071303 + -0.09205544955937478, + 51.501102395984816 ], [ - -0.09206951344939716, - 51.50113680044239 + -0.09206569806844708, + 51.501137235714175 + ], + [ + -0.09206458278102055, + 51.50113394509545 ] ] ], @@ -2886,6 +4803,43 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09214521719515502, + 51.50143534113001 + ], + [ + -0.09213229604134299, + 51.501419254060345 + ], + [ + -0.09216460037054591, + 51.501409199641806 + ], + [ + -0.09218468710160613, + 51.50142212829305 + ], + [ + -0.09214521719515502, + 51.50143534113001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5220760621", + "osm_node_id": 5220760621, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3031,13 +4985,62 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", + "control": "StopSign", "osm_link": "https://www.openstreetmap.org/node/5220776406", "osm_node_id": 5220776406, "type": "intersection" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09423914477902841, + 51.50153715156061 + ], + [ + -0.09418498399454572, + 51.50159945118404 + ], + [ + -0.0941557929352964, + 51.50158961709936 + ], + [ + -0.09412514564583212, + 51.50158170576485 + ], + [ + -0.09416873142518242, + 51.501516271105366 + ], + [ + -0.0941824153662499, + 51.50151789617999 + ], + [ + -0.09420772892361735, + 51.50152656744149 + ], + [ + -0.09423914477902841, + 51.50153715156061 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5220776407", + "osm_node_id": 5220776407, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ diff --git a/tests/src/borough_sausage_links/road_network.dot b/tests/src/borough_sausage_links/road_network.dot index 1d3cab85..a0b631cc 100644 --- a/tests/src/borough_sausage_links/road_network.dot +++ b/tests/src/borough_sausage_links/road_network.dot @@ -3,104 +3,155 @@ digraph { 1 [ label = "MapEdge" ] 2 [ label = "MapEdge" ] 3 [ label = "MapEdge" ] - 4 [ label = "Unknown" ] + 4 [ label = "MapEdge" ] 5 [ label = "Unknown" ] 6 [ label = "Unknown" ] 7 [ label = "Unknown" ] 8 [ label = "Unknown" ] - 9 [ label = "Unknown" ] - 10 [ label = "MapEdge" ] - 11 [ label = "MapEdge" ] - 12 [ label = "Lights RoadIntersection" ] + 9 [ label = "MapEdge" ] + 10 [ label = "Unknown" ] + 11 [ label = "Unknown" ] + 12 [ label = "MapEdge" ] 13 [ label = "MapEdge" ] - 14 [ label = "Unknown" ] + 14 [ label = "Lights RoadIntersection" ] 15 [ label = "MapEdge" ] - 16 [ label = "Unknown" ] + 16 [ label = "MapEdge" ] 17 [ label = "Lights RoadIntersection" ] 18 [ label = "Unknown" ] - 19 [ label = "Lights RoadIntersection" ] - 20 [ label = "Unknown" ] - 21 [ label = "Lights RoadIntersection" ] - 22 [ label = "MapEdge" ] + 19 [ label = "Unknown" ] + 20 [ label = "MapEdge" ] + 21 [ label = "Unknown" ] + 22 [ label = "Unknown" ] 23 [ label = "Unknown" ] - 24 [ label = "Lights RoadIntersection" ] + 24 [ label = "Unknown" ] 25 [ label = "Unknown" ] - 26 [ label = "Lights RoadIntersection" ] - 27 [ label = "Unknown" ] + 26 [ label = "Unknown" ] + 27 [ label = "MapEdge" ] 28 [ label = "Unknown" ] 29 [ label = "Unknown" ] - 30 [ label = "Unknown" ] - 31 [ label = "Lights RoadIntersection" ] + 30 [ label = "Lights RoadIntersection" ] + 31 [ label = "Unknown" ] 32 [ label = "Lights RoadIntersection" ] - 33 [ label = "Lights RoadIntersection" ] - 34 [ label = "Lights RoadIntersection" ] + 33 [ label = "Unknown" ] + 34 [ label = "Unknown" ] 35 [ label = "Unknown" ] - 36 [ label = "Lights RoadIntersection" ] - 37 [ label = "MapEdge" ] + 36 [ label = "Unknown" ] + 37 [ label = "Unknown" ] 38 [ label = "Unknown" ] 39 [ label = "Unknown" ] - 15 -> 6 [ label = "1 lanes" ] - 6 -> 15 [ label = "1 lanes" ] - 10 -> 9 [ label = "2 lanes" ] - 9 -> 10 [ label = "2 lanes" ] - 3 -> 4 [ label = "2 lanes" ] - 4 -> 3 [ label = "2 lanes" ] - 9 -> 30 [ label = "5 lanes" ] - 2 -> 14 [ label = "2 lanes" ] - 14 -> 2 [ label = "2 lanes" ] - 20 -> 27 [ label = "2 lanes" ] - 27 -> 20 [ label = "2 lanes" ] + 40 [ label = "Unknown" ] + 41 [ label = "Unknown" ] + 42 [ label = "Lights RoadIntersection" ] + 43 [ label = "MapEdge" ] + 44 [ label = "Unknown" ] + 45 [ label = "Lights RoadIntersection" ] + 46 [ label = "Unknown" ] + 47 [ label = "Lights RoadIntersection" ] + 48 [ label = "Unknown" ] + 49 [ label = "Unknown" ] + 50 [ label = "Unknown" ] + 51 [ label = "Unknown" ] + 52 [ label = "Unknown" ] + 53 [ label = "Lights RoadIntersection" ] + 54 [ label = "Lights RoadIntersection" ] + 55 [ label = "Lights RoadIntersection" ] + 56 [ label = "Unknown" ] + 57 [ label = "Unknown" ] + 58 [ label = "Unknown" ] + 59 [ label = "Lights RoadIntersection" ] + 60 [ label = "MapEdge" ] + 61 [ label = "Unknown" ] + 62 [ label = "Unknown" ] + 20 -> 7 [ label = "1 lanes" ] + 7 -> 20 [ label = "1 lanes" ] + 12 -> 11 [ label = "2 lanes" ] + 11 -> 12 [ label = "2 lanes" ] + 17 -> 40 [ label = "1 lanes" ] + 23 -> 9 [ label = "1 lanes" ] + 40 -> 23 [ label = "1 lanes" ] + 4 -> 5 [ label = "2 lanes" ] + 5 -> 4 [ label = "2 lanes" ] + 15 -> 57 [ label = "1 lanes" ] + 11 -> 51 [ label = "5 lanes" ] + 1 -> 28 [ label = "1 lanes" ] + 21 -> 52 [ label = "1 lanes" ] + 24 -> 21 [ label = "1 lanes" ] + 28 -> 24 [ label = "1 lanes" ] + 21 -> 22 [ label = "1 lanes" ] + 22 -> 39 [ label = "1 lanes" ] + 25 -> 27 [ label = "1 lanes" ] + 26 -> 25 [ label = "1 lanes" ] + 39 -> 26 [ label = "1 lanes" ] + 22 -> 24 [ label = "1 lanes" ] + 25 -> 28 [ label = "1 lanes" ] + 23 -> 26 [ label = "1 lanes" ] + 3 -> 57 [ label = "2 lanes" ] + 57 -> 3 [ label = "2 lanes" ] + 57 -> 18 [ label = "2 lanes" ] + 18 -> 57 [ label = "2 lanes" ] + 41 -> 48 [ label = "2 lanes" ] + 48 -> 41 [ label = "2 lanes" ] + 58 -> 59 [ label = "1 lanes" ] + 59 -> 58 [ label = "2 lanes" ] + 5 -> 2 [ label = "3 lanes" ] + 2 -> 5 [ label = "3 lanes" ] + 30 -> 55 [ label = "4 lanes" ] + 55 -> 30 [ label = "2 lanes" ] + 6 -> 53 [ label = "2 lanes" ] + 53 -> 6 [ label = "2 lanes" ] + 8 -> 45 [ label = "2 lanes" ] + 45 -> 8 [ label = "2 lanes" ] + 10 -> 29 [ label = "2 lanes" ] + 29 -> 48 [ label = "2 lanes" ] + 18 -> 54 [ label = "2 lanes" ] + 54 -> 18 [ label = "2 lanes" ] + 32 -> 41 [ label = "2 lanes" ] + 31 -> 47 [ label = "2 lanes" ] + 31 -> 32 [ label = "2 lanes" ] + 39 -> 40 [ label = "1 lanes" ] + 36 -> 33 [ label = "1 lanes" ] + 58 -> 55 [ label = "2 lanes" ] + 55 -> 58 [ label = "2 lanes" ] + 34 -> 36 [ label = "1 lanes" ] + 36 -> 38 [ label = "1 lanes" ] + 16 -> 17 [ label = "2 lanes" ] + 17 -> 16 [ label = "2 lanes" ] + 17 -> 56 [ label = "2 lanes" ] + 56 -> 17 [ label = "2 lanes" ] + 56 -> 6 [ label = "2 lanes" ] + 6 -> 56 [ label = "2 lanes" ] + 8 -> 43 [ label = "2 lanes" ] + 43 -> 8 [ label = "2 lanes" ] + 29 -> 46 [ label = "2 lanes" ] + 47 -> 59 [ label = "2 lanes" ] + 47 -> 32 [ label = "2 lanes" ] + 0 -> 62 [ label = "3 lanes" ] + 46 -> 10 [ label = "2 lanes" ] + 48 -> 46 [ label = "2 lanes" ] + 44 -> 50 [ label = "3 lanes" ] + 35 -> 56 [ label = "2 lanes" ] + 51 -> 49 [ label = "3 lanes" ] + 50 -> 11 [ label = "5 lanes" ] 35 -> 36 [ label = "1 lanes" ] - 36 -> 35 [ label = "2 lanes" ] - 4 -> 1 [ label = "3 lanes" ] - 1 -> 4 [ label = "3 lanes" ] - 17 -> 33 [ label = "4 lanes" ] - 33 -> 17 [ label = "2 lanes" ] - 5 -> 31 [ label = "2 lanes" ] - 31 -> 5 [ label = "2 lanes" ] - 7 -> 24 [ label = "2 lanes" ] - 24 -> 7 [ label = "2 lanes" ] - 8 -> 16 [ label = "2 lanes" ] - 16 -> 27 [ label = "2 lanes" ] - 14 -> 32 [ label = "2 lanes" ] - 32 -> 14 [ label = "2 lanes" ] - 19 -> 20 [ label = "2 lanes" ] - 18 -> 26 [ label = "2 lanes" ] - 18 -> 19 [ label = "2 lanes" ] - 35 -> 33 [ label = "2 lanes" ] - 33 -> 35 [ label = "2 lanes" ] - 13 -> 34 [ label = "2 lanes" ] - 34 -> 13 [ label = "2 lanes" ] - 34 -> 5 [ label = "2 lanes" ] - 5 -> 34 [ label = "2 lanes" ] - 7 -> 22 [ label = "2 lanes" ] - 22 -> 7 [ label = "2 lanes" ] - 16 -> 25 [ label = "2 lanes" ] - 26 -> 36 [ label = "2 lanes" ] - 26 -> 19 [ label = "2 lanes" ] - 0 -> 39 [ label = "3 lanes" ] - 25 -> 8 [ label = "2 lanes" ] - 27 -> 25 [ label = "2 lanes" ] - 23 -> 29 [ label = "3 lanes" ] - 25 -> 34 [ label = "2 lanes" ] - 30 -> 28 [ label = "3 lanes" ] - 29 -> 9 [ label = "5 lanes" ] - 8 -> 11 [ label = "2 lanes" ] - 11 -> 8 [ label = "2 lanes" ] - 21 -> 24 [ label = "2 lanes" ] - 24 -> 21 [ label = "2 lanes" ] - 28 -> 16 [ label = "5 lanes" ] - 20 -> 21 [ label = "2 lanes" ] - 17 -> 4 [ label = "2 lanes" ] - 4 -> 17 [ label = "2 lanes" ] - 31 -> 35 [ label = "2 lanes" ] - 35 -> 31 [ label = "2 lanes" ] - 36 -> 18 [ label = "2 lanes" ] - 26 -> 21 [ label = "1 lanes" ] - 21 -> 26 [ label = "2 lanes" ] - 32 -> 35 [ label = "2 lanes" ] - 35 -> 32 [ label = "2 lanes" ] - 37 -> 38 [ label = "1 lanes" ] - 38 -> 37 [ label = "1 lanes" ] - 39 -> 23 [ label = "5 lanes" ] + 37 -> 35 [ label = "1 lanes" ] + 10 -> 13 [ label = "2 lanes" ] + 13 -> 10 [ label = "2 lanes" ] + 42 -> 45 [ label = "2 lanes" ] + 45 -> 42 [ label = "2 lanes" ] + 49 -> 29 [ label = "5 lanes" ] + 41 -> 42 [ label = "2 lanes" ] + 52 -> 19 [ label = "1 lanes" ] + 30 -> 5 [ label = "2 lanes" ] + 5 -> 30 [ label = "2 lanes" ] + 53 -> 58 [ label = "2 lanes" ] + 58 -> 53 [ label = "2 lanes" ] + 59 -> 31 [ label = "2 lanes" ] + 47 -> 42 [ label = "1 lanes" ] + 42 -> 47 [ label = "2 lanes" ] + 54 -> 58 [ label = "2 lanes" ] + 58 -> 54 [ label = "2 lanes" ] + 60 -> 61 [ label = "1 lanes" ] + 61 -> 60 [ label = "1 lanes" ] + 46 -> 35 [ label = "2 lanes" ] + 62 -> 44 [ label = "5 lanes" ] } diff --git a/tests/src/bristol_contraflow_cycleway/geometry.json b/tests/src/bristol_contraflow_cycleway/geometry.json index d19b908f..91006502 100644 --- a/tests/src/bristol_contraflow_cycleway/geometry.json +++ b/tests/src/bristol_contraflow_cycleway/geometry.json @@ -5,8 +5,44 @@ "coordinates": [ [ [ - -2.552005181729886, - 51.45754643733981 + -2.5520115409641657, + 51.457430656054676 + ], + [ + -2.55201541914449, + 51.45747555735419 + ], + [ + -2.5521289414352366, + 51.45747175142767 + ], + [ + -2.552125063254912, + 51.45742685012815 + ], + [ + -2.5520115409641657, + 51.457430656054676 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 260742941, + "osm_way_id": 4019483, + "src_i": 21310508, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5520125498395085, + 51.457495417959436 ], [ -2.5519834194660485, @@ -17,12 +53,12 @@ 51.45770348217096 ], [ - -2.552118412471535, - 51.45755278654615 + -2.5521257805811572, + 51.45750176716579 ], [ - -2.552005181729886, - 51.45754643733981 + -2.5520125498395085, + 51.457495417959436 ] ] ], @@ -31,7 +67,7 @@ "properties": { "dst_i": 8411977276, "osm_way_id": 4019483, - "src_i": 21310508, + "src_i": 260742941, "type": "road" }, "type": "Feature" @@ -916,6 +952,114 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.551648917392366, + 51.45749304824857 + ], + [ + -2.5516703173848003, + 51.45749894869373 + ], + [ + -2.5516819995550817, + 51.45748250011241 + ], + [ + -2.5516605995626476, + 51.457476599667245 + ], + [ + -2.551648917392366, + 51.45749304824857 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8411724259, + "osm_way_id": 905798389, + "src_i": 2208694229, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5517188184535096, + 51.457499899276044 + ], + [ + -2.5520125873656303, + 51.457495158954984 + ], + [ + -2.552011839729825, + 51.45747717793066 + ], + [ + -2.5517180708177043, + 51.457481918251716 + ], + [ + -2.5517188184535096, + 51.457499899276044 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 260742941, + "osm_way_id": 905798389, + "src_i": 8411724259, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.551698329191178, + 51.457700758127615 + ], + [ + -2.5517095552747517, + 51.45750561266244 + ], + [ + -2.5516807063472027, + 51.457504968748594 + ], + [ + -2.551669480263629, + 51.457700114213765 + ], + [ + -2.551698329191178, + 51.457700758127615 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8411724259, + "osm_way_id": 905798392, + "src_i": 8411724268, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1053,28 +1197,20 @@ 51.457730413238004 ], [ - -2.5519161928627176, - 51.457730833220914 + -2.5519166388462384, + 51.457730829623635 ], [ - -2.5517091352708534, - 51.45770438059265 + -2.5517151019241697, + 51.4577030684833 ], [ - -2.551685109893228, - 51.45769867530015 + -2.5516905627273423, + 51.45777223706102 ], [ - -2.5516446249813933, - 51.45776486892396 - ], - [ - -2.5516772640472123, - 51.45777261927245 - ], - [ - -2.5519054084327273, - 51.45780176626647 + -2.5519049624492065, + 51.45780176986375 ], [ -2.5519680698390483, @@ -1089,13 +1225,49 @@ "type": "Polygon" }, "properties": { - "dst_i": 21310530, + "dst_i": 8411724268, "osm_way_id": 1004031465, "src_i": 21310516, "type": "road" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.551687898372717, + 51.45769971671388 + ], + [ + -2.551620489912028, + 51.4576836593372 + ], + [ + -2.5515798924218287, + 51.45774982598138 + ], + [ + -2.5516473008825176, + 51.457765883358064 + ], + [ + -2.551687898372717, + 51.45769971671388 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 21310530, + "osm_way_id": 1004031465, + "src_i": 8411724268, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1138,24 +1310,24 @@ "coordinates": [ [ [ - -2.552014239958288, - 51.45746190206394 + -2.552004754509426, + 51.45735207878052 ], [ - -2.552127762249034, - 51.457458097936055 + -2.5521182768001722, + 51.45734827285399 ], [ - -2.552118412471535, - 51.45755278654615 + -2.552125063254912, + 51.45742685012815 ], [ - -2.552005181729886, - 51.45754643733981 + -2.5520115409641657, + 51.457430656054676 ], [ - -2.552014239958288, - 51.45746190206394 + -2.552004754509426, + 51.45735207878052 ] ] ], @@ -1224,24 +1396,24 @@ "coordinates": [ [ [ - -2.5515097561007702, - 51.457732840505415 + -2.551461930502248, + 51.45772172669634 ], [ - -2.55155024389923, - 51.457666646881606 + -2.5515025279924473, + 51.45765556005216 ], [ - -2.551685109893228, - 51.45769867530015 + -2.551620489912028, + 51.4576836593372 ], [ - -2.5516446249813933, - 51.45776486892396 + -2.5515798924218287, + 51.45774982598138 ], [ - -2.5515097561007702, - 51.457732840505415 + -2.551461930502248, + 51.45772172669634 ] ] ], @@ -1465,6 +1637,51 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5521257805811572, + 51.45750176716579 + ], + [ + -2.5520125498395085, + 51.457495417959436 + ], + [ + -2.552011839729825, + 51.45747717793066 + ], + [ + -2.55201555337254, + 51.45747711767615 + ], + [ + -2.55201541914449, + 51.45747555735419 + ], + [ + -2.5521289414352366, + 51.45747175142767 + ], + [ + -2.5521257805811572, + 51.45750176716579 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/260742941", + "osm_node_id": 260742941, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1827,12 +2044,12 @@ "coordinates": [ [ [ - -2.5517450694188017, - 51.45757607626242 + -2.5516605995626476, + 51.457476599667245 ], [ - -2.5516329558009234, - 51.45758781599892 + -2.551648917392366, + 51.45749304824857 ], [ -2.5516045427537084, @@ -1843,15 +2060,15 @@ 51.457470729799 ], [ - -2.5517450694188017, - 51.45757607626242 + -2.5516605995626476, + 51.457476599667245 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Connection", "control": "StopSign", "osm_link": "https://www.openstreetmap.org/node/2208694229", "osm_node_id": 2208694229, @@ -2043,6 +2260,100 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5516819995550817, + 51.45748250011241 + ], + [ + -2.5517180708177043, + 51.457481918251716 + ], + [ + -2.5517188184535096, + 51.457499899276044 + ], + [ + -2.5517098756900967, + 51.45750004316741 + ], + [ + -2.5517095552747517, + 51.45750561266244 + ], + [ + -2.5516807063472027, + 51.457504968748594 + ], + [ + -2.5516703173848003, + 51.45749894869373 + ], + [ + -2.5516819995550817, + 51.45748250011241 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8411724259", + "osm_node_id": 8411724259, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.551698329191178, + 51.457700758127615 + ], + [ + -2.5517151019241697, + 51.4577030684833 + ], + [ + -2.5516905627273423, + 51.45777223706102 + ], + [ + -2.5516473008825176, + 51.457765883358064 + ], + [ + -2.551687898372717, + 51.45769971671388 + ], + [ + -2.551669480263629, + 51.457700114213765 + ], + [ + -2.551698329191178, + 51.457700758127615 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8411724268", + "osm_node_id": 8411724268, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -2081,7 +2392,7 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", + "control": "StopSign", "osm_link": "https://www.openstreetmap.org/node/8411977276", "osm_node_id": 8411977276, "type": "intersection" diff --git a/tests/src/bristol_contraflow_cycleway/road_network.dot b/tests/src/bristol_contraflow_cycleway/road_network.dot index c66dbdcd..39fc058d 100644 --- a/tests/src/bristol_contraflow_cycleway/road_network.dot +++ b/tests/src/bristol_contraflow_cycleway/road_network.dot @@ -9,65 +9,75 @@ digraph { 7 [ label = "MapEdge" ] 8 [ label = "Unknown" ] 9 [ label = "MapEdge" ] - 10 [ label = "Unknown" ] + 10 [ label = "Lights RoadIntersection" ] 11 [ label = "Unknown" ] - 12 [ label = "MapEdge" ] - 13 [ label = "Unknown" ] - 14 [ label = "MapEdge" ] - 15 [ label = "Unknown" ] + 12 [ label = "Unknown" ] + 13 [ label = "MapEdge" ] + 14 [ label = "Unknown" ] + 15 [ label = "MapEdge" ] 16 [ label = "Unknown" ] - 17 [ label = "MapEdge" ] + 17 [ label = "Unknown" ] 18 [ label = "MapEdge" ] - 19 [ label = "Unknown" ] + 19 [ label = "MapEdge" ] 20 [ label = "Unknown" ] - 21 [ label = "Lights RoadIntersection" ] - 22 [ label = "Unknown" ] - 23 [ label = "MapEdge" ] - 24 [ label = "Lights RoadIntersection" ] + 21 [ label = "Unknown" ] + 22 [ label = "Lights RoadIntersection" ] + 23 [ label = "Unknown" ] + 24 [ label = "MapEdge" ] 25 [ label = "Unknown" ] 26 [ label = "Unknown" ] - 1 -> 24 [ label = "2 lanes" ] - 24 -> 1 [ label = "2 lanes" ] - 24 -> 2 [ label = "2 lanes" ] - 2 -> 24 [ label = "2 lanes" ] - 2 -> 17 [ label = "2 lanes" ] - 17 -> 2 [ label = "2 lanes" ] - 10 -> 20 [ label = "2 lanes" ] - 20 -> 10 [ label = "2 lanes" ] - 20 -> 23 [ label = "2 lanes" ] - 23 -> 20 [ label = "2 lanes" ] + 27 [ label = "Unknown" ] + 28 [ label = "Unknown" ] + 29 [ label = "Unknown" ] + 1 -> 10 [ label = "2 lanes" ] + 10 -> 1 [ label = "2 lanes" ] + 10 -> 27 [ label = "2 lanes" ] + 27 -> 10 [ label = "2 lanes" ] + 27 -> 2 [ label = "2 lanes" ] + 2 -> 27 [ label = "2 lanes" ] + 2 -> 18 [ label = "2 lanes" ] + 18 -> 2 [ label = "2 lanes" ] + 11 -> 21 [ label = "2 lanes" ] + 21 -> 11 [ label = "2 lanes" ] + 21 -> 24 [ label = "2 lanes" ] + 24 -> 21 [ label = "2 lanes" ] 5 -> 8 [ label = "2 lanes" ] 8 -> 5 [ label = "2 lanes" ] - 8 -> 16 [ label = "2 lanes" ] - 16 -> 8 [ label = "2 lanes" ] - 16 -> 9 [ label = "2 lanes" ] - 9 -> 16 [ label = "2 lanes" ] - 7 -> 21 [ label = "2 lanes" ] - 21 -> 7 [ label = "2 lanes" ] - 10 -> 5 [ label = "2 lanes" ] - 5 -> 10 [ label = "2 lanes" ] - 21 -> 10 [ label = "2 lanes" ] - 10 -> 21 [ label = "2 lanes" ] - 11 -> 0 [ label = "2 lanes" ] - 0 -> 11 [ label = "2 lanes" ] - 6 -> 14 [ label = "1 lanes" ] - 14 -> 6 [ label = "1 lanes" ] - 13 -> 15 [ label = "2 lanes" ] - 15 -> 13 [ label = "2 lanes" ] - 8 -> 22 [ label = "3 lanes" ] - 5 -> 12 [ label = "2 lanes" ] - 12 -> 5 [ label = "2 lanes" ] - 19 -> 18 [ label = "2 lanes" ] - 18 -> 19 [ label = "2 lanes" ] - 20 -> 21 [ label = "2 lanes" ] + 8 -> 17 [ label = "2 lanes" ] + 17 -> 8 [ label = "2 lanes" ] + 17 -> 9 [ label = "2 lanes" ] + 9 -> 17 [ label = "2 lanes" ] + 7 -> 22 [ label = "2 lanes" ] + 22 -> 7 [ label = "2 lanes" ] + 11 -> 5 [ label = "2 lanes" ] + 5 -> 11 [ label = "2 lanes" ] + 22 -> 11 [ label = "2 lanes" ] + 11 -> 22 [ label = "2 lanes" ] + 12 -> 0 [ label = "2 lanes" ] + 0 -> 12 [ label = "2 lanes" ] + 6 -> 15 [ label = "1 lanes" ] + 15 -> 6 [ label = "1 lanes" ] + 14 -> 16 [ label = "2 lanes" ] + 16 -> 14 [ label = "2 lanes" ] + 8 -> 23 [ label = "3 lanes" ] + 5 -> 13 [ label = "2 lanes" ] + 13 -> 5 [ label = "2 lanes" ] + 20 -> 19 [ label = "2 lanes" ] + 19 -> 20 [ label = "2 lanes" ] 21 -> 22 [ label = "2 lanes" ] - 6 -> 25 [ label = "4 lanes" ] - 15 -> 6 [ label = "4 lanes" ] - 22 -> 15 [ label = "4 lanes" ] - 25 -> 2 [ label = "4 lanes" ] - 24 -> 16 [ label = "1 lanes" ] - 25 -> 26 [ label = "1 lanes" ] + 22 -> 23 [ label = "2 lanes" ] + 6 -> 28 [ label = "4 lanes" ] + 16 -> 6 [ label = "4 lanes" ] + 23 -> 16 [ label = "4 lanes" ] + 28 -> 2 [ label = "4 lanes" ] + 20 -> 25 [ label = "1 lanes" ] + 25 -> 10 [ label = "1 lanes" ] 26 -> 25 [ label = "1 lanes" ] - 2 -> 3 [ label = "2 lanes" ] - 3 -> 2 [ label = "2 lanes" ] + 27 -> 17 [ label = "1 lanes" ] + 28 -> 29 [ label = "1 lanes" ] + 29 -> 28 [ label = "1 lanes" ] + 2 -> 26 [ label = "2 lanes" ] + 26 -> 2 [ label = "2 lanes" ] + 26 -> 3 [ label = "2 lanes" ] + 3 -> 26 [ label = "2 lanes" ] } diff --git a/tests/src/bristol_sausage_links/geometry.json b/tests/src/bristol_sausage_links/geometry.json index eb4b135f..c199ec21 100644 --- a/tests/src/bristol_sausage_links/geometry.json +++ b/tests/src/bristol_sausage_links/geometry.json @@ -121,39 +121,67 @@ "coordinates": [ [ [ - -2.5504966719590385, - 51.459990352084176 + -2.5505620135069433, + 51.459944196231845 ], [ - -2.5505348578656295, - 51.45996094428707 + -2.5505810328481573, + 51.459926895094206 ], [ - -2.550542958081376, - 51.45995357525069 + -2.5505453093378714, + 51.4599116498044 ], [ - -2.5504834160108176, - 51.459928165834796 + -2.5505262899966574, + 51.45992895094204 ], [ - -2.5504769410343675, - 51.45993405638743 + -2.5505620135069433, + 51.459944196231845 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1695906751, + "osm_way_id": 15509329, + "src_i": 154650255, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.550494169148257, + 51.459999428031836 ], [ - -2.5504405651189646, - 51.459962070236976 + -2.550539561821994, + 51.45996447052475 ], [ - -2.5504966719590385, - 51.459990352084176 + -2.5505058994499987, + 51.45994750033725 + ], + [ + -2.550460506776262, + 51.45998245784433 + ], + [ + -2.550494169148257, + 51.459999428031836 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1695906751, + "dst_i": 154650255, "osm_way_id": 15509329, "src_i": 1695906885, "type": "road" @@ -165,24 +193,24 @@ "coordinates": [ [ [ - -2.550467000516576, - 51.459884378794015 + -2.5505207127989307, + 51.45987194208373 ], [ - -2.550238443662828, - 51.45991764737623 + -2.550236802546416, + 51.45991326858222 ], [ - -2.5502548606004436, - 51.45996143531634 + -2.550246652131636, + 51.45993954134629 ], [ - -2.550483417454192, - 51.459928166734116 + -2.5505305623841505, + 51.45989821484779 ], [ - -2.550467000516576, - 51.459884378794015 + -2.5505207127989307, + 51.45987194208373 ] ] ], @@ -196,6 +224,42 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5505711746026924, + 51.45997379288637 + ], + [ + -2.550529455316175, + 51.4599371023877 + ], + [ + -2.5505058994499987, + 51.45994750033725 + ], + [ + -2.550547618736516, + 51.45998419083592 + ], + [ + -2.5505711746026924, + 51.45997379288637 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 154650255, + "osm_way_id": 157371356, + "src_i": 1695906815, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -421,12 +485,12 @@ 51.45980704977742 ], [ - -2.5508886938223587, - 51.4597921507262 + -2.5508914492236165, + 51.45979349071451 ], [ - -2.5508537237533804, - 51.459820074643645 + -2.5508564791546386, + 51.45982141463195 ], [ -2.5508843680300224, @@ -641,24 +705,24 @@ "coordinates": [ [ [ - -2.550614885745541, - 51.45990157291245 + -2.550618445106202, + 51.45990548405954 ], [ - -2.550822502127078, - 51.45982824587437 + -2.550826061487739, + 51.45983215702145 ], [ - -2.5507869142939623, - 51.45978912720896 + -2.55080470821052, + 51.45980868654166 ], [ - -2.5505792979124253, - 51.459862454247045 + -2.550597091828983, + 51.45988201357975 ], [ - -2.550614885745541, - 51.45990157291245 + -2.550618445106202, + 51.45990548405954 ] ] ], @@ -869,6 +933,47 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.550539561821994, + 51.45996447052475 + ], + [ + -2.5505058994499987, + 51.45994750033725 + ], + [ + -2.550529455316175, + 51.4599371023877 + ], + [ + -2.5505262899966574, + 51.45992895094204 + ], + [ + -2.5505620135069433, + 51.459944196231845 + ], + [ + -2.550539561821994, + 51.45996447052475 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/154650255", + "osm_node_id": 154650255, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -964,36 +1069,40 @@ "coordinates": [ [ [ - -2.5505907554164513, - 51.45991009487837 + -2.5505957639247625, + 51.4599134943118 ], [ - -2.550542958081376, - 51.45995357525069 + -2.5505810328481573, + 51.459926895094206 ], [ - -2.5504834160108176, - 51.459928165834796 + -2.5505453093378714, + 51.4599116498044 ], [ - -2.550467000516576, - 51.459884378794015 + -2.55056569988453, + 51.4598931004092 ], [ - -2.5505524266158193, - 51.45987194478169 + -2.5505305623841505, + 51.45989821484779 ], [ - -2.5505792979124253, - 51.459862454247045 + -2.5505207127989307, + 51.45987194208373 ], [ - -2.550614885745541, - 51.45990157291245 + -2.550597091828983, + 51.45988201357975 ], [ - -2.5505907554164513, - 51.45991009487837 + -2.550618445106202, + 51.45990548405954 + ], + [ + -2.5505957639247625, + 51.4599134943118 ] ] ], @@ -1013,24 +1122,61 @@ "coordinates": [ [ [ - -2.550419045853718, - 51.460050133549174 + -2.550644184797472, + 51.46003800260803 ], [ - -2.5503593190312683, - 51.46002463959711 + -2.5506206289312954, + 51.46004840055758 ], [ - -2.5504405651189646, - 51.459962070236976 + -2.550547618736516, + 51.45998419083592 ], [ - -2.5504966719590385, - 51.459990352084176 + -2.5505711746026924, + 51.45997379288637 ], [ - -2.550419045853718, - 51.460050133549174 + -2.550644184797472, + 51.46003800260803 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1695906815", + "osm_node_id": 1695906815, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5504147316083747, + 51.460060603444404 + ], + [ + -2.550381069236379, + 51.460043633256895 + ], + [ + -2.550460506776262, + 51.45998245784433 + ], + [ + -2.550494169148257, + 51.459999428031836 + ], + [ + -2.5504147316083747, + 51.460060603444404 ] ] ], @@ -1050,24 +1196,24 @@ "coordinates": [ [ [ - -2.5501143077121764, - 51.45998189397005 + -2.550106099243368, + 51.45996 ], [ - -2.5500978907745604, - 51.45993810602995 + -2.5500962496581483, + 51.45993372723594 ], [ - -2.550238443662828, - 51.45991764737623 + -2.550236802546416, + 51.45991326858222 ], [ - -2.5502548606004436, - 51.45996143531634 + -2.550246652131636, + 51.45993954134629 ], [ - -2.5501143077121764, - 51.45998189397005 + -2.550106099243368, + 51.45996 ] ] ], @@ -1243,28 +1389,24 @@ 51.45978153154369 ], [ - -2.5508886938223587, - 51.4597921507262 - ], - [ - -2.5508537237533804, - 51.459820074643645 + -2.5508914492236165, + 51.45979349071451 ], [ - -2.550850320277128, - 51.4598184207923 + -2.5508564791546386, + 51.45982141463195 ], [ - -2.550822502127078, - 51.45982824587437 + -2.550826061487739, + 51.45983215702145 ], [ - -2.5507869142939623, - 51.45978912720896 + -2.55080470821052, + 51.45980868654166 ], [ - -2.5508038753836337, - 51.459783136831696 + -2.550803650217266, + 51.459782871532 ], [ -2.5508538738642925, diff --git a/tests/src/bristol_sausage_links/road_network.dot b/tests/src/bristol_sausage_links/road_network.dot index b2e1b4de..7bd9bb9a 100644 --- a/tests/src/bristol_sausage_links/road_network.dot +++ b/tests/src/bristol_sausage_links/road_network.dot @@ -4,46 +4,50 @@ digraph { 2 [ label = "MapEdge" ] 3 [ label = "MapEdge" ] 4 [ label = "Unknown" ] - 5 [ label = "Lights RoadIntersection" ] + 5 [ label = "Unknown" ] 6 [ label = "Lights RoadIntersection" ] - 7 [ label = "Unknown" ] - 8 [ label = "MapEdge" ] + 7 [ label = "Lights RoadIntersection" ] + 8 [ label = "Unknown" ] 9 [ label = "MapEdge" ] 10 [ label = "MapEdge" ] - 11 [ label = "Lights RoadIntersection" ] - 12 [ label = "Lights RoadIntersection" ] + 11 [ label = "MapEdge" ] + 12 [ label = "MapEdge" ] 13 [ label = "Lights RoadIntersection" ] 14 [ label = "Lights RoadIntersection" ] - 15 [ label = "MapEdge" ] - 16 [ label = "Unknown" ] + 15 [ label = "Lights RoadIntersection" ] + 16 [ label = "Lights RoadIntersection" ] 17 [ label = "MapEdge" ] + 18 [ label = "Unknown" ] + 19 [ label = "MapEdge" ] 0 -> 1 [ label = "2 lanes" ] 1 -> 0 [ label = "2 lanes" ] - 2 -> 6 [ label = "2 lanes" ] - 6 -> 2 [ label = "2 lanes" ] + 2 -> 7 [ label = "2 lanes" ] + 7 -> 2 [ label = "2 lanes" ] 3 -> 4 [ label = "3 lanes" ] - 8 -> 7 [ label = "2 lanes" ] - 7 -> 9 [ label = "2 lanes" ] - 11 -> 12 [ label = "2 lanes" ] - 12 -> 11 [ label = "2 lanes" ] - 11 -> 6 [ label = "2 lanes" ] - 6 -> 11 [ label = "2 lanes" ] - 10 -> 16 [ label = "3 lanes" ] - 16 -> 10 [ label = "2 lanes" ] - 16 -> 12 [ label = "3 lanes" ] - 12 -> 16 [ label = "2 lanes" ] - 13 -> 5 [ label = "2 lanes" ] - 5 -> 13 [ label = "2 lanes" ] - 6 -> 13 [ label = "2 lanes" ] - 13 -> 6 [ label = "2 lanes" ] - 1 -> 14 [ label = "2 lanes" ] - 6 -> 1 [ label = "2 lanes" ] - 16 -> 15 [ label = "1 lanes" ] - 15 -> 16 [ label = "1 lanes" ] + 5 -> 8 [ label = "1 lanes" ] + 10 -> 5 [ label = "1 lanes" ] + 8 -> 11 [ label = "1 lanes" ] + 9 -> 5 [ label = "1 lanes" ] + 13 -> 14 [ label = "2 lanes" ] 14 -> 13 [ label = "2 lanes" ] - 5 -> 4 [ label = "2 lanes" ] - 4 -> 5 [ label = "2 lanes" ] - 4 -> 17 [ label = "3 lanes" ] - 17 -> 4 [ label = "2 lanes" ] - 7 -> 14 [ label = "2 lanes" ] + 13 -> 7 [ label = "2 lanes" ] + 7 -> 13 [ label = "2 lanes" ] + 12 -> 18 [ label = "3 lanes" ] + 18 -> 12 [ label = "2 lanes" ] + 18 -> 14 [ label = "3 lanes" ] + 14 -> 18 [ label = "2 lanes" ] + 15 -> 6 [ label = "2 lanes" ] + 6 -> 15 [ label = "2 lanes" ] + 7 -> 15 [ label = "2 lanes" ] + 15 -> 7 [ label = "2 lanes" ] + 1 -> 16 [ label = "2 lanes" ] + 7 -> 1 [ label = "2 lanes" ] + 18 -> 17 [ label = "1 lanes" ] + 17 -> 18 [ label = "1 lanes" ] + 16 -> 15 [ label = "2 lanes" ] + 6 -> 4 [ label = "2 lanes" ] + 4 -> 6 [ label = "2 lanes" ] + 4 -> 19 [ label = "3 lanes" ] + 19 -> 4 [ label = "2 lanes" ] + 8 -> 16 [ label = "1 lanes" ] } diff --git a/tests/src/cycleway_rejoin_road/geometry.json b/tests/src/cycleway_rejoin_road/geometry.json index dfb5d9f0..3754d628 100644 --- a/tests/src/cycleway_rejoin_road/geometry.json +++ b/tests/src/cycleway_rejoin_road/geometry.json @@ -5,8 +5,8 @@ "coordinates": [ [ [ - -0.11453347871068228, - 51.489963657728346 + -0.11453363613115586, + 51.489963467971485 ], [ -0.11472425932660929, @@ -17,12 +17,12 @@ 51.48971692255299 ], [ - -0.11448291929840534, - 51.489947432168094 + -0.11448307671887892, + 51.48994724241123 ], [ - -0.11453347871068228, - 51.489963657728346 + -0.11453363613115586, + 51.489963467971485 ] ] ], @@ -104,6 +104,42 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11307398872940053, + 51.48957921663143 + ], + [ + -0.1130748581525664, + 51.48957937041542 + ], + [ + -0.11310594075285846, + 51.489511228818024 + ], + [ + -0.11310507132969261, + 51.48951107503403 + ], + [ + -0.11307398872940053, + 51.48957921663143 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343998, + "osm_way_id": 4256387, + "src_i": 25502896, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -121,60 +157,208 @@ 51.4895607436665 ], [ - -0.11304244686570858, - 51.489573634542275 + -0.11298640373289873, + 51.4895679930979 + ], + [ + -0.11300455763521594, + 51.489498063649165 + ], + [ + -0.11292501696933521, + 51.48949005698899 + ], + [ + -0.11272686791986626, + 51.489486767270584 + ], + [ + -0.1123588058546757, + 51.48949321630576 + ], + [ + -0.1123620062562298, + 51.48956402529101 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 25502896, + "osm_way_id": 4256387, + "src_i": 4849780710, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11321345171517339, + 51.4896051332812 + ], + [ + -0.11333533559999115, + 51.489631485202636 + ], + [ + -0.1133726485848971, + 51.48956456668261 + ], + [ + -0.11325076470007932, + 51.48953821476118 ], [ - -0.11318069959132693, - 51.48959806011685 + -0.11321345171517339, + 51.4896051332812 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136360631, + "osm_way_id": 4256387, + "src_i": 9136343996, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11310961919273134, + 51.48958550918464 ], [ - -0.11339461379574375, - 51.489645488539225 + -0.11314774672027109, + 51.48959224150612 ], [ - -0.11376196096979295, - 51.48975289361822 + -0.11317878021692918, + 51.4895240909155 ], [ - -0.11441116589117971, - 51.490003085785794 + -0.11314065268938944, + 51.48951735859403 ], [ - -0.11447103188631522, - 51.489942851023876 + -0.11310961919273134, + 51.48958550918464 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343996, + "osm_way_id": 4256387, + "src_i": 9136343998, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11387660351282722, + 51.489794239029315 ], [ - -0.11381623781600503, - 51.4896905058804 + -0.11390070617597536, + 51.48980327271475 ], [ - -0.11343798674676925, - 51.48957991180702 + -0.11395937057630356, + 51.48974258109747 ], [ - -0.11321530032256924, - 51.48953053905135 + -0.11393526791315542, + 51.48973354741202 ], [ - -0.11306715177048489, - 51.48950436519559 + -0.11387660351282722, + 51.489794239029315 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136344005, + "osm_way_id": 4256387, + "src_i": 9136344004, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11393168768055045, + 51.489815351503125 ], [ - -0.11292501696933521, - 51.48949005698899 + -0.11435529895376229, + 51.489980672892955 ], [ - -0.11272686791986626, - 51.489486767270584 + -0.11441571086576938, + 51.489920648572294 ], [ - -0.1123588058546757, - 51.48949321630576 + -0.11399209959255756, + 51.48975532718246 ], [ - -0.1123620062562298, - 51.48956402529101 + -0.11393168768055045, + 51.489815351503125 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136344010, + "osm_way_id": 4256387, + "src_i": 9136344005, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11440349417048686, + 51.489999628793576 + ], + [ + -0.11441072251424961, + 51.49000251021997 + ], + [ + -0.11447205584150558, + 51.48994284922524 + ], + [ + -0.11446482749774284, + 51.48993996779884 + ], + [ + -0.11440349417048686, + 51.489999628793576 ] ] ], @@ -183,7 +367,43 @@ "properties": { "dst_i": 25502890, "osm_way_id": 4256387, - "src_i": 4849780710, + "src_i": 9136344010, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11339579228295862, + 51.489647078539804 + ], + [ + -0.11381770803657454, + 51.4897743712166 + ], + [ + -0.11386730848376489, + 51.48971062190588 + ], + [ + -0.11344539273014895, + 51.48958332922909 + ], + [ + -0.11339579228295862, + 51.489647078539804 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136344004, + "osm_way_id": 4256387, + "src_i": 9136360631, "type": "road" }, "type": "Feature" @@ -193,8 +413,8 @@ "coordinates": [ [ [ - -0.11681081137881419, - 51.48989871951448 + -0.1168200125332822, + 51.48990055143257 ], [ -0.11657724561124458, @@ -205,12 +425,12 @@ 51.489933071800834 ], [ - -0.11676930147742981, - 51.48997957032468 + -0.11677850263189785, + 51.48998140224277 ], [ - -0.11681081137881419, - 51.48989871951448 + -0.1168200125332822, + 51.48990055143257 ] ] ], @@ -274,19 +494,19 @@ ], [ -0.1160988274614189, - 51.490759909875656 + 51.49075990897634 ], [ - -0.1156541839464055, - 51.491128908721436 + -0.11601587120452941, + 51.49082876013848 ], [ - -0.11574517586856892, - 51.49117142504925 + -0.11610686601514186, + 51.490871272869 ], [ -0.11617817315698836, - 51.490812090313355 + 51.490812091212675 ], [ -0.11623675668074299, @@ -305,7 +525,7 @@ "type": "Polygon" }, "properties": { - "dst_i": 25504973, + "dst_i": 9136383834, "osm_way_id": 4256703, "src_i": 2246184959, "type": "road" @@ -317,8 +537,80 @@ "coordinates": [ [ [ - -0.11473610341196358, - 51.49012476669582 + -0.11580253324569925, + 51.4910057322396 + ], + [ + -0.11565415939458853, + 51.49112890422483 + ], + [ + -0.11574516287054817, + 51.49117141155943 + ], + [ + -0.11589353672165889, + 51.4910482395742 + ], + [ + -0.11580253324569925, + 51.4910057322396 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 25504973, + "osm_way_id": 4256703, + "src_i": 9136383822, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1159725358033416, + 51.49086471501592 + ], + [ + -0.11584589175447949, + 51.49096975487911 + ], + [ + -0.1159368634574995, + 51.49101228559607 + ], + [ + -0.11606350750636163, + 51.49090724573288 + ], + [ + -0.1159725358033416, + 51.49086471501592 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136383822, + "osm_way_id": 4256703, + "src_i": 9136383834, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11473610630041264, + 51.490124763997855 ], [ -0.11446822575805726, @@ -329,12 +621,12 @@ 51.49041645176323 ], [ - -0.1148310380670885, - 51.49016379545448 + -0.11483104095553753, + 51.49016379275652 ], [ - -0.11473610341196358, - 51.49012476669582 + -0.11473610630041264, + 51.490124763997855 ] ] ], @@ -637,8 +929,8 @@ "coordinates": [ [ [ - -0.11708168435439162, - 51.48949611661791 + -0.11708168579861614, + 51.48949611391994 ], [ -0.11693445721755613, @@ -649,12 +941,12 @@ 51.48975429655991 ], [ - -0.11718749113176347, - 51.489522133991706 + -0.11718749257598798, + 51.48952213129374 ], [ - -0.11708168435439162, - 51.48949611661791 + -0.11708168579861614, + 51.48949611391994 ] ] ], @@ -677,12 +969,12 @@ 51.489382516112435 ], [ - -0.11710935280789941, - 51.489450272800184 + -0.11710935425212396, + 51.4894502692029 ], [ - -0.11721640161836536, - 51.48947423972074 + -0.1172164030625899, + 51.489474236123456 ], [ -0.11725552421660493, @@ -849,8 +1141,8 @@ "coordinates": [ [ [ - -0.11279164138994799, - 51.48989048892322 + -0.11279225085269881, + 51.48988994213569 ], [ -0.11291782906385925, @@ -885,12 +1177,12 @@ 51.489727934745936 ], [ - -0.11274421016799874, - 51.48986995381388 + -0.11274481963074956, + 51.48986940702635 ], [ - -0.11279164138994799, - 51.48989048892322 + -0.11279225085269881, + 51.48988994213569 ] ] ], @@ -909,49 +1201,33 @@ "coordinates": [ [ [ - -0.11224930475096118, - 51.48933654638969 - ], - [ - -0.11231157682416038, - 51.48906067139595 - ], - [ - -0.11229942223053255, - 51.48902988941633 - ], - [ - -0.11231273364800731, - 51.48899048653988 - ], - [ - -0.11225620092308247, - 51.48898308152585 + -0.11205087118926021, + 51.48914290806073 ], [ - -0.11224017725194407, - 51.48903050994823 + -0.11204121510406587, + 51.489141908015114 ], [ - -0.11225282288191143, - 51.48906252939437 + -0.1120364751591649, + 51.48915964983158 ], [ - -0.11219209901740629, - 51.489331538967036 + -0.11204613124435925, + 51.48916064987719 ], [ - -0.11224930475096118, - 51.48933654638969 + -0.11205087118926021, + 51.48914290806073 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1126222500, - "osm_way_id": 97223147, - "src_i": 7926785716, + "dst_i": 1126222441, + "osm_way_id": 97223143, + "src_i": 1126222438, "type": "road" }, "type": "Feature" @@ -961,33 +1237,41 @@ "coordinates": [ [ [ - -0.11501384223094721, - 51.48942343164781 + -0.11196175387053417, + 51.48912727155612 ], [ - -0.11509393459059766, - 51.489328887766966 + -0.11193816968399159, + 51.489128140300785 ], [ - -0.11497337072699851, - 51.48928928344248 + -0.11190393289733033, + 51.489116493186785 ], [ - -0.11489327836734806, - 51.48938382732332 + -0.11189008567255568, + 51.48913227807945 ], [ - -0.11501384223094721, - 51.48942343164781 + -0.11193159846238909, + 51.489146400126494 + ], + [ + -0.11196345805547722, + 51.48914522741113 + ], + [ + -0.11196175387053417, + 51.48912727155612 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5739261533, - "osm_way_id": 112683088, - "src_i": 25502651, + "dst_i": 1126222447, + "osm_way_id": 97223143, + "src_i": 1126222441, "type": "road" }, "type": "Feature" @@ -997,33 +1281,33 @@ "coordinates": [ [ [ - -0.11134454141089212, - 51.48891977917797 + -0.11186672967348853, + 51.4890959104134 ], [ - -0.11134990237234013, - 51.48891998242465 + -0.11186438569707954, + 51.489084919804164 ], [ - -0.11135467409018071, - 51.48887116365108 + -0.111835752501587, + 51.4890872868186 ], [ - -0.1113493131287327, - 51.488870960404405 + -0.11183809647799597, + 51.48909827742784 ], [ - -0.11134454141089212, - 51.48891977917797 + -0.11186672967348853, + 51.4890959104134 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4839044022, - "osm_way_id": 160933126, - "src_i": 25503653, + "dst_i": 1126222450, + "osm_way_id": 97223143, + "src_i": 1126222447, "type": "road" }, "type": "Feature" @@ -1033,33 +1317,49 @@ "coordinates": [ [ [ - -0.11113675938382128, - 51.4888509433043 + -0.11187272176105528, + 51.4890525909914 ], [ - -0.11113629578774778, - 51.48886778400052 + -0.11188691848816572, + 51.48903431407858 ], [ - -0.11134933912477421, - 51.48887005748552 + -0.1119051937053433, + 51.48902502228784 ], [ - -0.1113498027208477, - 51.488853216789295 + -0.11193096155937224, + 51.48902252667041 ], [ - -0.11113675938382128, - 51.4888509433043 + -0.1119265220131731, + 51.48900475427701 + ], + [ + -0.11189299867342868, + 51.48900799992866 + ], + [ + -0.11186370113465327, + 51.489022898090234 + ], + [ + -0.1118467199426528, + 51.48904475969893 + ], + [ + -0.11187272176105528, + 51.4890525909914 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25503653, - "osm_way_id": 195341133, - "src_i": 4839044024, + "dst_i": 1126222455, + "osm_way_id": 97223143, + "src_i": 1126222450, "type": "road" }, "type": "Feature" @@ -1069,69 +1369,73 @@ "coordinates": [ [ [ - -0.11113476057707448, - 51.488794390365 + -0.1119858825297238, + 51.48902602862871 ], [ - -0.11113540325698945, - 51.48880344563416 + -0.11201088638897741, + 51.48903185893062 ], [ - -0.11134827039862347, - 51.48879758745328 + -0.11202685084691016, + 51.489040755919184 ], [ - -0.11134762771870849, - 51.48878853218412 + -0.1120347233148124, + 51.4890538113708 ], [ - -0.11113476057707448, - 51.488794390365 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 4839044024, - "osm_way_id": 195341133, - "src_i": 5268321224, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -0.11203696763972895, + 51.48908897844253 + ], [ - -0.1110853738751143, - 51.48873306742395 + -0.11202986061082656, + 51.48909881162487 ], [ - -0.11112897501361524, - 51.48878170453455 + -0.11200407109342969, + 51.48911524942502 ], [ - -0.11131502579421296, - 51.48871703251988 + -0.11202473216952755, + 51.489127818343654 ], [ - -0.11127142465571202, - 51.48866839540928 + -0.11205410047530485, + 51.48910909986394 ], [ - -0.1110853738751143, - 51.48873306742395 + -0.11206610053690817, + 51.489092500185905 + ], + [ + -0.11206339983704078, + 51.48905019969527 + ], + [ + -0.11205139977543746, + 51.4890303004063 + ], + [ + -0.11202609985015559, + 51.48901619994298 + ], + [ + -0.11199601232056333, + 51.4890091843352 + ], + [ + -0.1119858825297238, + 51.48902602862871 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5268321224, - "osm_way_id": 195341133, - "src_i": 6022905020, + "dst_i": 1126222441, + "osm_way_id": 97223143, + "src_i": 1126222455, "type": "road" }, "type": "Feature" @@ -1141,41 +1445,41 @@ "coordinates": [ [ [ - -0.11111235487774677, - 51.48977597560632 + -0.1118121610939218, + 51.489121491616224 ], [ - -0.11101989273501384, - 51.49114599763042 + -0.11180124420071448, + 51.48912692621663 ], [ - -0.11096697057140906, - 51.49169530775841 + -0.11176332319728224, + 51.48912772391489 ], [ - -0.11108052416914921, - 51.4916995507577 + -0.11176429949306319, + 51.48914569955497 ], [ - -0.11113350699018416, - 51.49114960211138 + -0.1118118014820143, + 51.48914470040867 ], [ - -0.11122601245965294, - 51.48977895056217 + -0.11183019945827677, + 51.48913554081821 ], [ - -0.11111235487774677, - 51.48977597560632 + -0.1118121610939218, + 51.489121491616224 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 21508954, - "osm_way_id": 228767989, - "src_i": 9316017761, + "dst_i": 1126222388, + "osm_way_id": 97223144, + "src_i": 1126222447, "type": "road" }, "type": "Feature" @@ -1185,41 +1489,33 @@ "coordinates": [ [ [ - -0.11490053703982589, - 51.4887772591879 - ], - [ - -0.11481064272830378, - 51.488875978618914 - ], - [ - -0.11451272231576558, - 51.488983314450145 + -0.11178537217315154, + 51.489082179571255 ], [ - -0.1145416530215109, - 51.489014450762475 + -0.1117940808470555, + 51.489082335153896 ], [ - -0.11485315780995965, - 51.48890222082311 + -0.11179490983193459, + 51.489064355916526 ], [ - -0.1149507902765029, - 51.48879500280301 + -0.11178620115803062, + 51.48906420033389 ], [ - -0.11490053703982589, - 51.4887772591879 + -0.11178537217315154, + 51.489082179571255 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3218009838, - "osm_way_id": 315670001, - "src_i": 3218009836, + "dst_i": 1126222450, + "osm_way_id": 97223145, + "src_i": 1126222387, "type": "road" }, "type": "Feature" @@ -1229,33 +1525,33 @@ "coordinates": [ [ [ - -0.11109985944713036, - 51.48866321351824 + -0.111834849861257, + 51.489083052812525 ], [ - -0.11105845786258559, - 51.488679547896396 + -0.11184296640310448, + 51.489083181415516 ], [ - -0.11111934059178882, - 51.48873938695681 + -0.11184370006916469, + 51.48906520037951 ], [ - -0.11116074217633358, - 51.48872305257865 + -0.11183558352731723, + 51.489065071776515 ], [ - -0.11109985944713036, - 51.48866321351824 + -0.111834849861257, + 51.489083052812525 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 102715106, - "osm_way_id": 424630562, - "src_i": 6022905020, + "dst_i": 1126222425, + "osm_way_id": 97223145, + "src_i": 1126222450, "type": "road" }, "type": "Feature" @@ -1265,41 +1561,49 @@ "coordinates": [ [ [ - -0.1153602524820137, - 51.48887750386834 + -0.11224930475096118, + 51.48933654638969 ], [ - -0.11506710378731609, - 51.488805284746824 + -0.11231157682416038, + 51.48906067139595 ], [ - -0.11495667549145458, - 51.488944220041006 + -0.11229942223053255, + 51.48902988941633 ], [ - -0.11500845094078412, - 51.488960177603424 + -0.11231273364800731, + 51.48899048653988 ], [ - -0.11509529505010305, - 51.488850914526004 + -0.11225620092308247, + 51.48898308152585 ], [ - -0.11533899927385935, - 51.488910953235816 + -0.11224017725194407, + 51.48903050994823 ], [ - -0.1153602524820137, - 51.48887750386834 + -0.11225282288191143, + 51.48906252939437 + ], + [ + -0.11219209901740629, + 51.489331538967036 + ], + [ + -0.11224930475096118, + 51.48933654638969 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4673133620, - "osm_way_id": 473149319, - "src_i": 4673133618, + "dst_i": 1126222500, + "osm_way_id": 97223147, + "src_i": 7926785716, "type": "road" }, "type": "Feature" @@ -1309,33 +1613,33 @@ "coordinates": [ [ [ - -0.11139334897881659, - 51.4888734713103 + -0.1134468947236581, + 51.48912667800387 ], [ - -0.1113958604852708, - 51.488859620858385 + -0.1133957865060605, + 51.48929588086572 ], [ - -0.11132410563382063, - 51.48885457566423 + -0.11342417418338327, + 51.48929920475834 ], [ - -0.11132159412736639, - 51.48886842611614 + -0.11347528240098087, + 51.48913000189649 ], [ - -0.11139334897881659, - 51.4888734713103 + -0.1134468947236581, + 51.48912667800387 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4839044023, - "osm_way_id": 491816527, - "src_i": 4839044022, + "dst_i": 1126222586, + "osm_way_id": 97223152, + "src_i": 25502648, "type": "road" }, "type": "Feature" @@ -1345,33 +1649,33 @@ "coordinates": [ [ [ - -0.11325370225276932, - 51.48770247275288 + -0.11337466616656272, + 51.48933520819915 ], [ - -0.11444101945639841, - 51.48900373264768 + -0.11337725277269242, + 51.48933546810309 ], [ - -0.11450930816898133, - 51.48897957147366 + -0.11338185407203868, + 51.489317711897485 ], [ - -0.11332199096535223, - 51.48767831157886 + -0.11337926746590901, + 51.48931745199354 ], [ - -0.11325370225276932, - 51.48770247275288 + -0.11337466616656272, + 51.48933520819915 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3218009838, - "osm_way_id": 491816528, - "src_i": 730856505, + "dst_i": 1126222586, + "osm_way_id": 97223153, + "src_i": 1126222573, "type": "road" }, "type": "Feature" @@ -1381,49 +1685,69 @@ "coordinates": [ [ [ - -0.11447518114338422, - 51.48904251139494 + -0.11344838660759554, + 51.4893427265277 ], [ - -0.11460675288633596, - 51.48919730172887 + -0.11346179623233821, + 51.489344113281604 ], [ - -0.11460680343419444, - 51.4892097411452 + -0.113466527511892, + 51.48932636966649 ], [ - -0.11454653016774202, - 51.4892845826885 + -0.11345311788714932, + 51.48932498291259 ], [ - -0.1146167396989472, - 51.48930650814903 + -0.11344838660759554, + 51.4893427265277 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1126222569, + "osm_way_id": 97223153, + "src_i": 1126222586, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1119963921516142, + 51.488981917803706 ], [ - -0.11468539524456026, - 51.48922125965622 + -0.11200185276455465, + 51.488960518446305 ], [ - -0.11468524648943387, - 51.48918509793481 + -0.11197332644167718, + 51.48895769637514 ], [ - -0.11454459923954805, - 51.48901963085487 + -0.11196786582873675, + 51.48897909573253 ], [ - -0.11447518114338422, - 51.48904251139494 + -0.1119963921516142, + 51.488981917803706 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25502650, - "osm_way_id": 491816528, - "src_i": 3218009838, + "dst_i": 1240373509, + "osm_way_id": 108046709, + "src_i": 1126222455, "type": "road" }, "type": "Feature" @@ -1433,49 +1757,33 @@ "coordinates": [ [ [ - -0.11643014845461663, - 51.49061422607221 - ], - [ - -0.11642068733973357, - 51.49060392074603 - ], - [ - -0.11642477016247428, - 51.49059656429537 - ], - [ - -0.11643329253141413, - 51.490595203621794 - ], - [ - -0.11642432389709512, - 51.490573425650005 + -0.11501384223094721, + 51.48942343164781 ], [ - -0.11639698617100422, - 51.49057779185636 + -0.11509393459059766, + 51.489328887766966 ], [ - -0.11638121090648465, - 51.49060622121068 + -0.11497337072699851, + 51.48928928344248 ], [ - -0.11639880300546047, - 51.49062538485459 + -0.11489327836734806, + 51.48938382732332 ], [ - -0.11643014845461663, - 51.49061422607221 + -0.11501384223094721, + 51.48942343164781 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4957735651, - "osm_way_id": 505956321, - "src_i": 7330281376, + "dst_i": 5739261533, + "osm_way_id": 112683088, + "src_i": 25502651, "type": "road" }, "type": "Feature" @@ -1485,33 +1793,33 @@ "coordinates": [ [ [ - -0.11655050290565923, - 51.490317800680664 + -0.11134454141089212, + 51.48891977917797 ], [ - -0.11642091697143353, - 51.49053935125402 + -0.11134990237234013, + 51.48891998242465 ], [ - -0.1165489965794765, - 51.4905683993416 + -0.11135467409018071, + 51.48887116365108 ], [ - -0.1166785825137022, - 51.49034684876824 + -0.1113493131287327, + 51.488870960404405 ], [ - -0.11655050290565923, - 51.490317800680664 + -0.11134454141089212, + 51.48891977917797 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4957735651, - "osm_way_id": 505956322, - "src_i": 4957735652, + "dst_i": 4839044022, + "osm_way_id": 160933126, + "src_i": 25503653, "type": "road" }, "type": "Feature" @@ -1521,41 +1829,33 @@ "coordinates": [ [ [ - -0.11650221237011579, - 51.48985497561268 - ], - [ - -0.11589201884167993, - 51.48971133416858 - ], - [ - -0.11512449871428415, - 51.48947722816641 + -0.11113675938382128, + 51.4888509433043 ], [ - -0.11508994997512484, - 51.4895211510332 + -0.11113629578774778, + 51.48886778400052 ], [ - -0.11586078026513885, - 51.48975626607421 + -0.11134933912477421, + 51.48887005748552 ], [ - -0.11647443993244197, - 51.48990072410231 + -0.1113498027208477, + 51.488853216789295 ], [ - -0.11650221237011579, - 51.48985497561268 + -0.11113675938382128, + 51.4888509433043 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4967088341, - "osm_way_id": 507120964, - "src_i": 4967069559, + "dst_i": 25503653, + "osm_way_id": 195341133, + "src_i": 4839044024, "type": "road" }, "type": "Feature" @@ -1565,41 +1865,33 @@ "coordinates": [ [ [ - -0.1157870988181683, - 51.489121788392346 - ], - [ - -0.11621704157171098, - 51.48926177499348 - ], - [ - -0.11707800591451874, - 51.48949511927026 + -0.11113476057707448, + 51.488794390365 ], [ - -0.1171093513636749, - 51.489450273699504 + -0.11113540325698945, + 51.48880344563416 ], [ - -0.116250957740527, - 51.489217625497645 + -0.11134827039862347, + 51.48879758745328 ], [ - -0.11582349327627442, - 51.489078446487305 + -0.11134762771870849, + 51.48878853218412 ], [ - -0.1157870988181683, - 51.489121788392346 + -0.11113476057707448, + 51.488794390365 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 730856862, - "osm_way_id": 507124192, - "src_i": 4967088337, + "dst_i": 4839044024, + "osm_way_id": 195341133, + "src_i": 5268321224, "type": "road" }, "type": "Feature" @@ -1609,33 +1901,33 @@ "coordinates": [ [ [ - -0.11507237376261883, - 51.489441295772004 + -0.1110853738751143, + 51.48873306742395 ], [ - -0.11501415273922075, - 51.48942352697589 + -0.11112897501361524, + 51.48878170453455 ], [ - -0.11495416254077583, - 51.489499746279876 + -0.11131502579421296, + 51.48871703251988 ], [ - -0.11501238356417391, - 51.48951751507599 + -0.11127142465571202, + 51.48866839540928 ], [ - -0.11507237376261883, - 51.489441295772004 + -0.1110853738751143, + 51.48873306742395 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25502651, - "osm_way_id": 507124193, - "src_i": 4967088341, + "dst_i": 5268321224, + "osm_way_id": 195341133, + "src_i": 6022905020, "type": "road" }, "type": "Feature" @@ -1645,33 +1937,41 @@ "coordinates": [ [ [ - -0.11253487704378479, - 51.490462486237135 + -0.11111235487774677, + 51.48977597560632 + ], + [ + -0.11101989273501384, + 51.49114599763042 + ], + [ + -0.11096697057140906, + 51.49169530775841 ], [ - -0.11256790357029156, - 51.490433223211696 + -0.11108052416914921, + 51.4916995507577 ], [ - -0.11247483196480781, - 51.49039249293657 + -0.11113350699018416, + 51.49114960211138 ], [ - -0.11244180543830104, - 51.49042175596201 + -0.11122601245965294, + 51.48977895056217 ], [ - -0.11253487704378479, - 51.490462486237135 + -0.11111235487774677, + 51.48977597560632 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9130071201, - "osm_way_id": 513728905, - "src_i": 5021048671, + "dst_i": 21508954, + "osm_way_id": 228767989, + "src_i": 9316017761, "type": "road" }, "type": "Feature" @@ -1681,41 +1981,41 @@ "coordinates": [ [ [ - -0.11132830688297263, - 51.48878269918424 + -0.11490053703982589, + 51.4887772591879 ], [ - -0.11134674529752188, - 51.48880480360977 + -0.11481064272830378, + 51.488875978618914 ], [ - -0.11134602607370693, - 51.48880967793283 + -0.11451272231576558, + 51.488983314450145 ], [ - -0.11138198148755653, - 51.48881173378199 + -0.1145416530215109, + 51.489014450762475 ], [ - -0.11138366834180524, - 51.48880029261264 + -0.11485315780995965, + 51.48890222082311 ], [ - -0.1113603484483513, - 51.48877233540216 + -0.1149507902765029, + 51.48879500280301 ], [ - -0.11132830688297263, - 51.48878269918424 + -0.11490053703982589, + 51.4887772591879 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4839044023, - "osm_way_id": 545055866, - "src_i": 5268321224, + "dst_i": 3218009838, + "osm_way_id": 315670001, + "src_i": 3218009836, "type": "road" }, "type": "Feature" @@ -1725,41 +2025,33 @@ "coordinates": [ [ [ - -0.111135404701214, - 51.48880344833212 - ], - [ - -0.11112545399421593, - 51.48880311468381 - ], - [ - -0.11105723027173678, - 51.48877137672533 + -0.11109985944713036, + 51.48866321351824 ], [ - -0.11101401040851122, - 51.48880739995122 + -0.11105845786258559, + 51.488679547896396 ], [ - -0.11109974679761717, - 51.48884728576336 + -0.11111934059178882, + 51.48873938695681 ], [ - -0.11113152551413173, - 51.48884834966081 + -0.11116074217633358, + 51.48872305257865 ], [ - -0.111135404701214, - 51.48880344833212 + -0.11109985944713036, + 51.48866321351824 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 264803343, - "osm_way_id": 545055867, - "src_i": 4839044024, + "dst_i": 102715106, + "osm_way_id": 424630562, + "src_i": 6022905020, "type": "road" }, "type": "Feature" @@ -1769,85 +2061,73 @@ "coordinates": [ [ [ - -0.11132766564728219, - 51.48880966354368 + -0.11721492850934678, + 51.49025537337269 ], [ - -0.11128174363996474, - 51.48880825160877 + -0.11716198468237408, + 51.490243783815274 ], [ - -0.11127818218227864, - 51.488853163729324 + -0.11710714458859608, + 51.4901998951227 ], [ - -0.1113241041895961, - 51.48885457566423 + -0.11710656401033581, + 51.49011384443502 ], [ - -0.11132766564728219, - 51.48880966354368 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 4839044024, - "osm_way_id": 545055868, - "src_i": 4839044023, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -0.11707152134638793, + 51.49005068058267 + ], [ - -0.11454653016774202, - 51.48928458358782 + -0.11700217257300144, + 51.49000584760242 ], [ - -0.11408214699187964, - 51.489134716140306 + -0.11689542560546186, + 51.48997561600762 ], [ - -0.1135670484274913, - 51.489063902658444 + -0.11688346742636985, + 51.48999198905661 ], [ - -0.113561569039632, - 51.48906129462581 + -0.11698520004634813, + 51.49002079972329 ], [ - -0.11349248022666053, - 51.4891175723727 + -0.11704629940923059, + 51.490060299726466 ], [ - -0.1135179505704367, - 51.48912969702647 + -0.1170776997389188, + 51.49011690032981 ], [ - -0.11404305183390612, - 51.48920188467173 + -0.11707830053632245, + 51.49020610044172 ], [ - -0.11449418569394845, - 51.48934747674438 + -0.1171443998045209, + 51.49025900033669 ], [ - -0.11454653016774202, - 51.48928458358782 + -0.11720535041227696, + 51.49027234177258 + ], + [ + -0.11721492850934678, + 51.49025537337269 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25502648, - "osm_way_id": 605011818, - "src_i": 25502650, + "dst_i": 9150256922, + "osm_way_id": 449250558, + "src_i": 4462219991, "type": "road" }, "type": "Feature" @@ -1857,49 +2137,41 @@ "coordinates": [ [ [ - -0.11316856521684249, - 51.48910690731788 - ], - [ - -0.11332366048890663, - 51.48912536949095 - ], - [ - -0.11343079739706877, - 51.48912989307858 + -0.1153602524820137, + 51.48887750386834 ], [ - -0.11347893340058769, - 51.489120279330706 + -0.11506710378731609, + 51.488805284746824 ], [ - -0.11343730507279204, - 51.48903945370151 + -0.11495667549145458, + 51.488944220041006 ], [ - -0.11341400395425695, - 51.489044106791454 + -0.11500845094078412, + 51.488960177603424 ], [ - -0.11334113849414472, - 51.48904103111159 + -0.11509529505010305, + 51.488850914526004 ], [ - -0.11319415976392808, - 51.489023534809924 + -0.11533899927385935, + 51.488910953235816 ], [ - -0.11316856521684249, - 51.48910690731788 + -0.1153602524820137, + 51.48887750386834 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25502648, - "osm_way_id": 605011819, - "src_i": 5739257306, + "dst_i": 4673133620, + "osm_way_id": 473149319, + "src_i": 4673133618, "type": "road" }, "type": "Feature" @@ -1909,33 +2181,33 @@ "coordinates": [ [ [ - -0.11540910337667401, - 51.48892317141903 + -0.11139334897881659, + 51.4888734713103 ], [ - -0.11541652524652349, - 51.48891544534719 + -0.1113958604852708, + 51.488859620858385 ], [ - -0.11534912039935172, - 51.48889033808685 + -0.11132410563382063, + 51.48885457566423 ], [ - -0.11534169852950221, - 51.48889806415869 + -0.11132159412736639, + 51.48886842611614 ], [ - -0.11540910337667401, - 51.48892317141903 + -0.11139334897881659, + 51.4888734713103 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4673133618, - "osm_way_id": 605012633, - "src_i": 25504033, + "dst_i": 4839044023, + "osm_way_id": 491816527, + "src_i": 4839044022, "type": "road" }, "type": "Feature" @@ -1945,33 +2217,33 @@ "coordinates": [ [ [ - -0.11543579842284993, - 51.48889695979177 + -0.11325370225276932, + 51.48770247275288 ], [ - -0.11559427462453416, - 51.48874497444189 + -0.11444101945639841, + 51.48900373264768 ], [ - -0.1155284006553621, - 51.48871834013348 + -0.11450930816898133, + 51.48897957147366 ], [ - -0.11536992445367786, - 51.488870325483354 + -0.11332199096535223, + 51.48767831157886 ], [ - -0.11543579842284993, - 51.48889695979177 + -0.11325370225276932, + 51.48770247275288 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6847224398, - "osm_way_id": 605012633, - "src_i": 4673133618, + "dst_i": 3218009838, + "osm_way_id": 491816528, + "src_i": 730856505, "type": "road" }, "type": "Feature" @@ -1981,33 +2253,49 @@ "coordinates": [ [ [ - -0.11510207857271115, - 51.489280720102236 + -0.11447518114338422, + 51.48904251139494 ], [ - -0.1153422068965361, - 51.4889971747946 + -0.11460675288633596, + 51.48919730172887 ], [ - -0.11527273391984019, - 51.48897436080433 + -0.11460680343419444, + 51.4892097411452 ], [ - -0.11503260559601526, - 51.489257906111966 + -0.11454653016774202, + 51.4892845826885 ], [ - -0.11510207857271115, - 51.489280720102236 + -0.1146167396989472, + 51.48930650814903 + ], + [ + -0.11468539524456026, + 51.48922125965622 + ], + [ + -0.11468524648943387, + 51.48918509793481 + ], + [ + -0.11454459923954805, + 51.48901963085487 + ], + [ + -0.11447518114338422, + 51.48904251139494 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25504033, - "osm_way_id": 605012633, - "src_i": 5739261533, + "dst_i": 25502650, + "osm_way_id": 491816528, + "src_i": 3218009838, "type": "road" }, "type": "Feature" @@ -2017,49 +2305,49 @@ "coordinates": [ [ [ - -0.1156335979699831, - 51.4887072559948 + -0.11643014845461663, + 51.49061422607221 ], [ - -0.11593695733209383, - 51.48841622383486 + -0.11642068733973357, + 51.49060392074603 ], [ - -0.11604889628681166, - 51.48829382796417 + -0.11642477016247428, + 51.49059656429537 ], [ - -0.11616820078662238, - 51.48819053098623 + -0.11643329253141413, + 51.490595203621794 ], [ - -0.1161044353852612, - 51.48816197392824 + -0.11642432389709512, + 51.490573425650005 ], [ - -0.11598270458824342, - 51.488267371721435 + -0.11639698617100422, + 51.49057779185636 ], [ - -0.11586984132982765, - 51.48839077663096 + -0.11638121090648465, + 51.49060622121068 ], [ - -0.11556771533546387, - 51.48868062708232 + -0.11639880300546047, + 51.49062538485459 ], [ - -0.1156335979699831, - 51.4887072559948 + -0.11643014845461663, + 51.49061422607221 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9150276559, - "osm_way_id": 605012633, - "src_i": 6847224398, + "dst_i": 4957735651, + "osm_way_id": 505956321, + "src_i": 7330281376, "type": "road" }, "type": "Feature" @@ -2069,33 +2357,33 @@ "coordinates": [ [ [ - -0.11621072164517635, - 51.48815900346901 + -0.11655050290565923, + 51.490317800680664 ], [ - -0.11642197992068615, - 51.48802432196598 + -0.11642091697143353, + 51.49053935125402 ], [ - -0.11636579380964804, - 51.48799014774529 + -0.1165489965794765, + 51.4905683993416 ], [ - -0.11615453553413824, - 51.48812482924833 + -0.1166785825137022, + 51.49034684876824 ], [ - -0.11621072164517635, - 51.48815900346901 + -0.11655050290565923, + 51.490317800680664 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4967082877, - "osm_way_id": 605012633, - "src_i": 9150276559, + "dst_i": 4957735651, + "osm_way_id": 505956322, + "src_i": 4957735652, "type": "road" }, "type": "Feature" @@ -2105,35 +2393,43 @@ "coordinates": [ [ [ - -0.11472425932660929, - 51.48973314811324 + -0.11650221237011579, + 51.48985497561268 ], [ - -0.11453499370221218, - 51.4899663251162 + -0.11589201884167993, + 51.48971133416858 ], [ - -0.11456721723988139, - 51.48997646766517 + -0.11512449871428415, + 51.48947722816641 ], [ - -0.11475648286427848, - 51.489743290662204 + -0.11508994997512484, + 51.4895211510332 ], [ - -0.11472425932660929, - 51.48973314811324 + -0.11586078026513885, + 51.48975626607421 + ], + [ + -0.11647443993244197, + 51.48990072410231 + ], + [ + -0.11650221237011579, + 51.48985497561268 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5739261534, - "osm_way_id": 605012636, - "src_i": 25502651, - "type": "road" - }, + "dst_i": 4967088341, + "osm_way_id": 507120964, + "src_i": 4967069559, + "type": "road" + }, "type": "Feature" }, { @@ -2141,33 +2437,41 @@ "coordinates": [ [ [ - -0.11447623831573872, - 51.49002701853213 + -0.11671409743907075, + 51.489097901511414 ], [ - -0.11447912243212119, - 51.49002803116825 + -0.11687970233302528, + 51.48887845355195 ], [ - -0.11453499659066124, - 51.489966326914846 + -0.11688287962698694, + 51.48887801648165 ], [ - -0.11453211247427877, - 51.48996531427873 + -0.11687041019241201, + 51.48884289077872 ], [ - -0.11447623831573872, - 51.49002701853213 + -0.11683949801061425, + 51.488847146368514 + ], + [ + -0.11666181362270735, + 51.48908260225241 + ], + [ + -0.11671409743907075, + 51.489097901511414 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5739261534, - "osm_way_id": 605014315, - "src_i": 25502890, + "dst_i": 9150276555, + "osm_way_id": 507122658, + "src_i": 9150276543, "type": "road" }, "type": "Feature" @@ -2177,77 +2481,57 @@ "coordinates": [ [ [ - -0.11483363189434082, - 51.4901613519977 + -0.11695337367042416, + 51.48886833168737 ], [ - -0.11585731990316972, - 51.49054157977294 + -0.11694172599960566, + 51.48886992888253 ], [ - -0.11621869809724461, - 51.49068370316218 + -0.11701250888794848, + 51.48901305051874 ], [ - -0.11627944506934221, - 51.49062381014247 + -0.11691263642916228, + 51.489152889631136 ], [ - -0.11591687972270528, - 51.49048122090464 + -0.11671700033037208, + 51.489102560896605 ], [ - -0.11489190635404645, - 51.49010051469032 + -0.11669494124493109, + 51.489135808816044 ], [ - -0.11483363189434082, - 51.4901613519977 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 2246184959, - "osm_way_id": 605014316, - "src_i": 21511934, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -0.11630067950257769, - 51.490716052659344 + -0.11694256364983191, + 51.48919951046272 ], [ - -0.11630658782512182, - 51.49071839719075 + -0.11707409062182328, + 51.48901534918475 ], [ - -0.11636772184939295, - 51.49065865885435 + -0.11698127464408098, + 51.488827671559335 ], [ - -0.11636181352684881, - 51.49065631432295 + -0.11694095045103411, + 51.488833200588516 ], [ - -0.11630067950257769, - 51.490716052659344 + -0.11695337367042416, + 51.48886833168737 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25502865, - "osm_way_id": 605014316, - "src_i": 2246184959, + "dst_i": 9150276543, + "osm_way_id": 507122658, + "src_i": 9150276555, "type": "road" }, "type": "Feature" @@ -2257,33 +2541,33 @@ "coordinates": [ [ [ - -0.11452950276055665, - 51.49004654460264 + -0.11578710315084188, + 51.489121787493026 ], [ - -0.11473610341196358, - 51.490124763997855 + -0.11613810892435653, + 51.48923605529513 ], [ - -0.11479520107965019, - 51.490064236057094 + -0.11617449760556453, + 51.48919271159144 ], [ - -0.11458860042824326, - 51.48998601666189 + -0.11582349183204989, + 51.489078443789346 ], [ - -0.11452950276055665, - 51.49004654460264 + -0.11578710315084188, + 51.489121787493026 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 21511934, - "osm_way_id": 605014316, - "src_i": 5739261534, + "dst_i": 9150276546, + "osm_way_id": 507124192, + "src_i": 4967088337, "type": "road" }, "type": "Feature" @@ -2293,33 +2577,33 @@ "coordinates": [ [ [ - -0.1111709066285618, - 51.48847832378977 + -0.11672492912303091, + 51.48939939637881 ], [ - -0.11109205630200546, - 51.488627681321944 + -0.11707800158184516, + 51.48949511387433 ], [ - -0.11126703565737137, - 51.48866350130115 + -0.11710935280789941, + 51.48945027010222 ], [ - -0.11134588598392771, - 51.488514143768974 + -0.11675628034908518, + 51.4893545526067 ], [ - -0.1111709066285618, - 51.48847832378977 + -0.11672492912303091, + 51.48939939637881 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6022905020, - "osm_way_id": 639139876, - "src_i": 6022905014, + "dst_i": 730856862, + "osm_way_id": 507124192, + "src_i": 9150276536, "type": "road" }, "type": "Feature" @@ -2329,41 +2613,33 @@ "coordinates": [ [ [ - -0.11251397622641528, - 51.489014470547545 - ], - [ - -0.11246267881540452, - 51.48921888814517 - ], - [ - -0.11289616425171442, - 51.48926589208775 + -0.11620540834313776, + 51.48925626395073 ], [ - -0.1129060745204257, - 51.489230451622255 + -0.11665858433666271, + 51.48938125436423 ], [ - -0.11252852101163699, - 51.48918951270452 + -0.11669039193766784, + 51.48933653649715 ], [ - -0.11257105197976265, - 51.48902002475773 + -0.11623721594414288, + 51.489211546083645 ], [ - -0.11251397622641528, - 51.489014470547545 + -0.11620540834313776, + 51.48925626395073 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6029529898, - "osm_way_id": 639994500, - "src_i": 6029529895, + "dst_i": 9150276536, + "osm_way_id": 507124192, + "src_i": 9150276546, "type": "road" }, "type": "Feature" @@ -2373,41 +2649,33 @@ "coordinates": [ [ [ - -0.11434743081853363, - 51.49049508394706 - ], - [ - -0.11414463569875805, - 51.490690752044856 - ], - [ - -0.11479045391362658, - 51.490989589416934 + -0.11507237376261883, + 51.489441295772004 ], [ - -0.11485830358195298, - 51.49093273070829 + -0.11501415273922075, + 51.48942352697589 ], [ - -0.11429796323999986, - 51.49067344729869 + -0.11495416254077583, + 51.489499746279876 ], [ - -0.11444301248624708, - 51.4905334957711 + -0.11501238356417391, + 51.48951751507599 ], [ - -0.11434743081853363, - 51.49049508394706 + -0.11507237376261883, + 51.489441295772004 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25504987, - "osm_way_id": 673392192, - "src_i": 9130071196, + "dst_i": 25502651, + "osm_way_id": 507124193, + "src_i": 4967088341, "type": "road" }, "type": "Feature" @@ -2417,49 +2685,33 @@ "coordinates": [ [ [ - -0.11273991648847694, - 51.4898679645145 - ], - [ - -0.11238756036502859, - 51.489704560478316 - ], - [ - -0.11236410327024447, - 51.489680283291804 - ], - [ - -0.11236200481200526, - 51.48956402349237 - ], - [ - -0.11224825191128024, - 51.48956482029131 + -0.11264195618296582, + 51.49024227475363 ], [ - -0.11225069698340617, - 51.4897003165797 + -0.11229861490902138, + 51.490135277067324 ], [ - -0.11230164055940758, - 51.48975303930832 + -0.11228568909949559, + 51.49015136233341 ], [ - -0.11267196861288262, - 51.48992477825707 + -0.11262903037344005, + 51.490258360019716 ], [ - -0.11273991648847694, - 51.4898679645145 + -0.11264195618296582, + 51.49024227475363 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4849780710, - "osm_way_id": 673392248, - "src_i": 9130071195, + "dst_i": 5021048663, + "osm_way_id": 513728904, + "src_i": 5021048664, "type": "road" }, "type": "Feature" @@ -2469,33 +2721,33 @@ "coordinates": [ [ [ - -0.11099293628419835, - 51.488711586228284 + -0.11274781061974709, + 51.49027617288259 ], [ - -0.11097831495507665, - 51.48872035551318 + -0.11295327033377689, + 51.49009228409906 ], [ - -0.11105723027173678, - 51.48877137582601 + -0.11285988966424412, + 51.490051827217705 ], [ - -0.11107185160085845, - 51.48876260654112 + -0.11265442995021432, + 51.49023571600123 ], [ - -0.11099293628419835, - 51.488711586228284 + -0.11274781061974709, + 51.49027617288259 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 264803343, - "osm_way_id": 693647907, - "src_i": 102715106, + "dst_i": 9136343980, + "osm_way_id": 513728905, + "src_i": 5021048664, "type": "road" }, "type": "Feature" @@ -2505,33 +2757,33 @@ "coordinates": [ [ [ - -0.11091792615066201, - 51.48876012171555 + -0.11253529731312245, + 51.490462885535926 ], [ - -0.11074058982086636, - 51.488891499111034 + -0.11270596710249675, + 51.49031323932152 ], [ - -0.11082767367145695, - 51.4889370785282 + -0.11261321900330727, + 51.490272223062135 ], [ - -0.1110050100012526, - 51.488805701132726 + -0.11244254921393297, + 51.49042186927653 ], [ - -0.11091792615066201, - 51.48876012171555 + -0.11253529731312245, + 51.490462885535926 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 266138058, - "osm_way_id": 693647907, - "src_i": 264803343, + "dst_i": 5021048664, + "osm_way_id": 513728905, + "src_i": 5021048671, "type": "road" }, "type": "Feature" @@ -2541,33 +2793,33 @@ "coordinates": [ [ [ - -0.11113304050566161, - 51.48901658934923 + -0.1129945101651745, + 51.490055360652256 ], [ - -0.11111068390996787, - 51.48921952936146 + -0.11299852222091335, + 51.490051767862475 ], [ - -0.11132325931824721, - 51.489228610710946 + -0.11290512422068627, + 51.49001132537027 ], [ - -0.11134561591394096, - 51.489025670698716 + -0.11290111216494741, + 51.49001491816004 ], [ - -0.11113304050566161, - 51.48901658934923 + -0.1129945101651745, + 51.490055360652256 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9820345292, - "osm_way_id": 693647908, - "src_i": 266138052, + "dst_i": 9130071201, + "osm_way_id": 513728905, + "src_i": 9136343980, "type": "road" }, "type": "Feature" @@ -2577,33 +2829,33 @@ "coordinates": [ [ [ - -0.11226706437998224, - 51.488985758806244 + -0.11229375076081101, + 51.490127240729535 ], [ - -0.11228610792460872, - 51.488987443235594 + -0.11230729325421027, + 51.49010648708504 ], [ - -0.11229715335379903, - 51.488939020163535 + -0.1122805346621551, + 51.490099716992056 ], [ - -0.11227810980917255, - 51.488937335734185 + -0.11226699216875584, + 51.49012047063655 ], [ - -0.11226706437998224, - 51.488985758806244 + -0.11229375076081101, + 51.490127240729535 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1126222500, - "osm_way_id": 726171380, - "src_i": 25503378, + "dst_i": 5021048672, + "osm_way_id": 513728909, + "src_i": 5021048663, "type": "road" }, "type": "Feature" @@ -2613,33 +2865,33 @@ "coordinates": [ [ [ - -0.11232082130536422, - 51.488991411941804 + -0.11211458459853835, + 51.490431061242575 ], [ - -0.1125060965373904, - 51.489012592764055 + -0.11226817932131787, + 51.49016858254334 ], [ - -0.11252027882225556, - 51.488964488051835 + -0.1122410394539873, + 51.49016242398905 ], [ - -0.11233500359022938, - 51.48894330722958 + -0.1120874447312078, + 51.49042490268828 ], [ - -0.11232082130536422, - 51.488991411941804 + -0.11211458459853835, + 51.490431061242575 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6029529895, - "osm_way_id": 726171380, - "src_i": 1126222500, + "dst_i": 5021048663, + "osm_way_id": 513728909, + "src_i": 9136343964, "type": "road" }, "type": "Feature" @@ -2649,41 +2901,41 @@ "coordinates": [ [ [ - -0.11138575380202372, - 51.48892215158834 + -0.11253393829784158, + 51.489762098174765 ], [ - -0.11197459447081279, - 51.48895777281747 + -0.11255616346910328, + 51.48974009986918 ], [ - -0.11218204143779315, - 51.48897788614499 + -0.11254629219445428, + 51.48973600705659 ], [ - -0.11219412382019456, - 51.48892956019966 + -0.11256229997912284, + 51.48972103515065 ], [ - -0.11198440653225616, - 51.488909227437674 + -0.11254750101038422, + 51.489714899079395 ], [ - -0.11139334753459204, - 51.4888734713103 + -0.11250949046503125, + 51.489752520399755 ], [ - -0.11138575380202372, - 51.48892215158834 + -0.11253393829784158, + 51.489762098174765 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25503378, - "osm_way_id": 726171380, - "src_i": 4839044022, + "dst_i": 5023600724, + "osm_way_id": 514112569, + "src_i": 1126025785, "type": "road" }, "type": "Feature" @@ -2693,33 +2945,41 @@ "coordinates": [ [ [ - -0.11257710616898411, - 51.48902071723536 + -0.11132830688297263, + 51.48878269918424 ], [ - -0.11310328482395143, - 51.489080983473535 - ], + -0.11134674529752188, + 51.48880480360977 + ], [ - -0.11311749310485811, - 51.4890328823586 + -0.11134602607370693, + 51.48880967793283 ], [ - -0.11259131444989079, - 51.48897261612043 + -0.11138198148755653, + 51.48881173378199 ], [ - -0.11257710616898411, - 51.48902071723536 + -0.11138366834180524, + 51.48880029261264 + ], + [ + -0.1113603484483513, + 51.48877233540216 + ], + [ + -0.11132830688297263, + 51.48878269918424 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5739257306, - "osm_way_id": 726171380, - "src_i": 6029529895, + "dst_i": 4839044023, + "osm_way_id": 545055866, + "src_i": 5268321224, "type": "road" }, "type": "Feature" @@ -2729,57 +2989,41 @@ "coordinates": [ [ [ - -0.11556171169410087, - 51.48868444470249 - ], - [ - -0.115267801893077, - 51.48857314016505 - ], - [ - -0.11515551488024793, - 51.48845656830102 - ], - [ - -0.11473544773402786, - 51.48858722354126 - ], - [ - -0.11465156572921589, - 51.488487435716195 + -0.111135404701214, + 51.48880344833212 ], [ - -0.1146003853003919, - 51.488504118131814 + -0.11112545399421593, + 51.48880311468381 ], [ - -0.11471055219161383, - 51.48863517716745 + -0.11105723027173678, + 51.48877137672533 ], [ - -0.11513348467929749, - 51.48850363159883 + -0.11101401040851122, + 51.48880739995122 ], [ - -0.11522559876391919, - 51.48859926006151 + -0.11109974679761717, + 51.48884728576336 ], [ - -0.1155316949315105, - 51.488715179917385 + -0.11113152551413173, + 51.48884834966081 ], [ - -0.11556171169410087, - 51.48868444470249 + -0.111135404701214, + 51.48880344833212 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6847224406, - "osm_way_id": 731053049, - "src_i": 6847224398, + "dst_i": 264803343, + "osm_way_id": 545055867, + "src_i": 4839044024, "type": "road" }, "type": "Feature" @@ -2789,33 +3033,33 @@ "coordinates": [ [ [ - -0.11643329253141413, - 51.49059520452112 + -0.11132766564728219, + 51.48880966354368 ], [ - -0.1164184372379189, - 51.490608202416155 + -0.11128174363996474, + 51.48880825160877 ], [ - -0.11646477951457404, - 51.490628739324144 + -0.11127818218227864, + 51.488853163729324 ], [ - -0.11647963480806925, - 51.4906157414291 + -0.1113241041895961, + 51.48885457566423 ], [ - -0.11643329253141413, - 51.49059520452112 + -0.11132766564728219, + 51.48880966354368 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7330281376, - "osm_way_id": 784643056, - "src_i": 4957735651, + "dst_i": 4839044024, + "osm_way_id": 545055868, + "src_i": 4839044023, "type": "road" }, "type": "Feature" @@ -2825,33 +3069,49 @@ "coordinates": [ [ [ - -0.1163776263412061, - 51.490648612532794 + -0.11454653016774202, + 51.48928458358782 ], [ - -0.11637408943533699, - 51.49065220262461 + -0.11408214699187964, + 51.489134716140306 ], [ - -0.11644103790755791, - 51.49067777753218 + -0.1135670484274913, + 51.489063902658444 ], [ - -0.11644457481342702, - 51.49067418744036 + -0.113561569039632, + 51.48906129462581 ], [ - -0.1163776263412061, - 51.490648612532794 + -0.11349248022666053, + 51.4891175723727 + ], + [ + -0.1135179505704367, + 51.48912969702647 + ], + [ + -0.11404305183390612, + 51.48920188467173 + ], + [ + -0.11449418569394845, + 51.48934747674438 + ], + [ + -0.11454653016774202, + 51.48928458358782 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25502865, - "osm_way_id": 784643057, - "src_i": 8013569055, + "dst_i": 25502648, + "osm_way_id": 605011818, + "src_i": 25502650, "type": "road" }, "type": "Feature" @@ -2861,33 +3121,49 @@ "coordinates": [ [ [ - -0.11676930147742981, - 51.489979571224 + -0.11316856521684249, + 51.48910690731788 + ], + [ + -0.11332366048890663, + 51.48912536949095 + ], + [ + -0.11343080172974236, + 51.48912989307858 + ], + [ + -0.11344689616788262, + 51.48912667800387 + ], + [ + -0.11340526206318885, + 51.48904585237467 ], [ - -0.11666839062120796, - 51.49014279269791 + -0.11341399962158336, + 51.489044106791454 ], [ - -0.1167745526778137, - 51.4901682434991 + -0.11334113849414472, + 51.48904103111159 ], [ - -0.11687546353403555, - 51.490005022025194 + -0.11319415976392808, + 51.489023534809924 ], [ - -0.11676930147742981, - 51.489979571224 + -0.11316856521684249, + 51.48910690731788 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9150217904, - "osm_way_id": 798193875, - "src_i": 25502684, + "dst_i": 25502648, + "osm_way_id": 605011819, + "src_i": 5739257306, "type": "road" }, "type": "Feature" @@ -2897,33 +3173,33 @@ "coordinates": [ [ [ - -0.11664253755793186, - 51.49018503563195 + -0.11540910337667401, + 51.48892317141903 ], [ - -0.11658642510234468, - 51.49027766305847 + -0.11541652524652349, + 51.48891544534719 ], [ - -0.11669286156161074, - 51.490302664198865 + -0.11534912039935172, + 51.48889033808685 ], [ - -0.11674897401719792, - 51.49021003677235 + -0.11534169852950221, + 51.48889806415869 ], [ - -0.11664253755793186, - 51.49018503563195 + -0.11540910337667401, + 51.48892317141903 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4957735652, - "osm_way_id": 798193875, - "src_i": 9150217904, + "dst_i": 4673133618, + "osm_way_id": 605012633, + "src_i": 25504033, "type": "road" }, "type": "Feature" @@ -2933,33 +3209,33 @@ "coordinates": [ [ [ - -0.11295432028500876, - 51.48997369685533 + -0.11543579842284993, + 51.48889695979177 ], [ - -0.11279862132709192, - 51.48989617713232 + -0.11559427462453416, + 51.48874497444189 ], [ - -0.11272757992255858, - 51.48995150339696 + -0.1155284006553621, + 51.48871834013348 ], [ - -0.11288327888047542, - 51.49002902311997 + -0.11536992445367786, + 51.488870325483354 ], [ - -0.11295432028500876, - 51.48997369685533 + -0.11543579842284993, + 51.48889695979177 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9130071195, - "osm_way_id": 846713831, - "src_i": 9130071201, + "dst_i": 6847224398, + "osm_way_id": 605012633, + "src_i": 4673133618, "type": "road" }, "type": "Feature" @@ -2969,41 +3245,33 @@ "coordinates": [ [ [ - -0.11657455646517341, - 51.4898516867936 - ], - [ - -0.11666628783029516, - 51.489705733193674 - ], - [ - -0.11665592840775567, - 51.48969337201833 + -0.11510207857271115, + 51.489280720102236 ], [ - -0.116604713317543, - 51.4897100148638 + -0.1153422068965361, + 51.4889971747946 ], [ - -0.11660291236955656, - 51.48970786638451 + -0.11527273391984019, + 51.48897436080433 ], [ - -0.1165207619899537, - 51.489838576483365 + -0.11503260559601526, + 51.489257906111966 ], [ - -0.11657455646517341, - 51.4898516867936 + -0.11510207857271115, + 51.489280720102236 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8655624472, - "osm_way_id": 933882058, - "src_i": 4967069559, + "dst_i": 25504033, + "osm_way_id": 605012633, + "src_i": 5739261533, "type": "road" }, "type": "Feature" @@ -3013,49 +3281,33 @@ "coordinates": [ [ [ - -0.11421749971464573, - 51.490383197548546 + -0.11561400273158692, + 51.48872605451414 ], [ - -0.11313696847261846, - 51.489902796139276 + -0.11562850274584825, + 51.48871205387552 ], [ - -0.11306964305779572, - 51.48995597392462 + -0.11556249590801959, + 51.48868554547213 ], [ - -0.11300237396772958, - 51.48998270086316 - ], - [ - -0.11303344790267447, - 51.4900130259874 + -0.11554799589375828, + 51.488699546110745 ], [ - -0.1131089577378975, - 51.48998302551826 - ], - [ - -0.11314823053548796, - 51.489952003419766 - ], - [ - -0.11418393304816547, - 51.49041247406381 - ], - [ - -0.11421749971464573, - 51.490383197548546 + -0.11561400273158692, + 51.48872605451414 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9130071201, - "osm_way_id": 987763225, - "src_i": 1126026083, + "dst_i": 9150276550, + "osm_way_id": 605012633, + "src_i": 6847224398, "type": "road" }, "type": "Feature" @@ -3065,33 +3317,49 @@ "coordinates": [ [ [ - -0.11438433508789814, - 51.49045914255944 + -0.11564809942846896, + 51.48869325985279 ], [ - -0.11427629987207955, - 51.49040971674379 + -0.11593695588786931, + 51.48841622473419 ], [ - -0.11424209485835793, - 51.49043870727479 + -0.11604889628681166, + 51.48829382796417 ], [ - -0.11435013007417649, - 51.49048813309044 + -0.11616820078662238, + 51.48819053098623 ], [ - -0.11438433508789814, - 51.49045914255944 + -0.1161044353852612, + 51.48816197392824 + ], + [ + -0.11598270458824342, + 51.488267371721435 + ], + [ + -0.11586984277405218, + 51.48839077573164 + ], + [ + -0.11558222257084783, + 51.488666625544376 + ], + [ + -0.11564809942846896, + 51.48869325985279 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1126026083, - "osm_way_id": 987763225, - "src_i": 9130071196, + "dst_i": 9150276559, + "osm_way_id": 605012633, + "src_i": 9150276550, "type": "road" }, "type": "Feature" @@ -3101,49 +3369,33 @@ "coordinates": [ [ [ - -0.11675109558302958, - 51.49020653931066 - ], - [ - -0.1170243746366707, - 51.49027489944321 - ], - [ - -0.1170615778605125, - 51.49030269567512 - ], - [ - -0.11692571965916161, - 51.490529453320526 - ], - [ - -0.11697984341757371, - 51.490542027635094 + -0.11621072164517635, + 51.48815900346901 ], [ - -0.11712742294519402, - 51.49029570434902 + -0.11642197992068615, + 51.48802432196598 ], [ - -0.11705942596596575, - 51.490244899873375 + -0.11636579380964804, + 51.48799014774529 ], [ - -0.11677262897074236, - 51.490173158291626 + -0.11615453553413824, + 51.48812482924833 ], [ - -0.11675109558302958, - 51.49020653931066 + -0.11621072164517635, + 51.48815900346901 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9150217908, - "osm_way_id": 990184954, - "src_i": 9150217904, + "dst_i": 4967082877, + "osm_way_id": 605012633, + "src_i": 9150276559, "type": "road" }, "type": "Feature" @@ -3153,49 +3405,33 @@ "coordinates": [ [ [ - -0.11789498784355018, - 51.48987603322787 - ], - [ - -0.11738916408908077, - 51.4897636279208 - ], - [ - -0.11734030597329784, - 51.48982111435591 - ], - [ - -0.11703860169249623, - 51.489756917183044 - ], - [ - -0.11701992209245082, - 51.48979095830413 + -0.11472425932660929, + 51.48973314811324 ], [ - -0.11736829504465088, - 51.48986508578607 + -0.11453499370221218, + 51.4899663251162 ], [ - -0.11741683543103765, - 51.489807971670096 + -0.11456721723988139, + 51.48997646766517 ], [ - -0.11787557168899546, - 51.48990991247107 + -0.11475648286427848, + 51.489743290662204 ], [ - -0.11789498784355018, - 51.48987603322787 + -0.11472425932660929, + 51.48973314811324 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9150256917, - "osm_way_id": 990184958, - "src_i": 9150256918, + "dst_i": 5739261534, + "osm_way_id": 605012636, + "src_i": 25502651, "type": "road" }, "type": "Feature" @@ -3205,41 +3441,33 @@ "coordinates": [ [ [ - -0.11643932216881861, - 51.488299670856584 - ], - [ - -0.11644095847520886, - 51.48830010253095 - ], - [ - -0.11620886003975973, - 51.488163534251214 + -0.11447623831573872, + 51.49002701853213 ], [ - -0.11616918430352596, - 51.48818968112732 + -0.11447912243212119, + 51.49002803116825 ], [ - -0.11640884181015473, - 51.48833069745168 + -0.11453499659066124, + 51.489966326914846 ], [ - -0.11641678360083432, - 51.488332792871 + -0.11453211247427877, + 51.48996531427873 ], [ - -0.11643932216881861, - 51.488299670856584 + -0.11447623831573872, + 51.49002701853213 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9150276559, - "osm_way_id": 990187785, - "src_i": 9150276564, + "dst_i": 5739261534, + "osm_way_id": 605014315, + "src_i": 25502890, "type": "road" }, "type": "Feature" @@ -3249,57 +3477,41 @@ "coordinates": [ [ [ - -0.11648325836741005, - 51.48835033863536 - ], - [ - -0.11668243426051844, - 51.4884029543447 - ], - [ - -0.11675607960187578, - 51.488570622064586 - ], - [ - -0.11650623020275275, - 51.48860595461148 - ], - [ - -0.11644008616359394, - 51.48841968622301 + -0.11483363189434082, + 51.4901613519977 ], [ - -0.11638368053042757, - 51.48842745276432 + -0.11585731990316972, + 51.49054157977294 ], [ - -0.11646236910383677, - 51.48864904470648 + -0.11621869809724461, + 51.49068370316218 ], [ - -0.11682772180381279, - 51.48859737868073 + -0.11627944506934221, + 51.49062381014247 ], [ - -0.11673076667857316, - 51.488376645590705 + -0.11591687972270528, + 51.49048122090464 ], [ - -0.11650582004298679, - 51.48831722201687 + -0.11489190635404645, + 51.49010051469032 ], [ - -0.11648325836741005, - 51.48835033863536 + -0.11483363189434082, + 51.4901613519977 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9150276563, - "osm_way_id": 990187787, - "src_i": 9150276564, + "dst_i": 2246184959, + "osm_way_id": 605014316, + "src_i": 21511934, "type": "road" }, "type": "Feature" @@ -3309,33 +3521,33 @@ "coordinates": [ [ [ - -0.11633569617048409, - 51.48840742307372 + -0.11630067950257769, + 51.490716052659344 ], [ - -0.11609502481823664, - 51.48863098453017 + -0.11630658782512182, + 51.49071839719075 ], [ - -0.11614301062240463, - 51.48865101422077 + -0.11636772184939295, + 51.49065865885435 ], [ - -0.1163836819746521, - 51.48842745276432 + -0.11636181352684881, + 51.49065631432295 ], [ - -0.11633569617048409, - 51.48840742307372 + -0.11630067950257769, + 51.490716052659344 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9150276566, - "osm_way_id": 990187788, - "src_i": 9150276563, + "dst_i": 25502865, + "osm_way_id": 605014316, + "src_i": 2246184959, "type": "road" }, "type": "Feature" @@ -3345,33 +3557,33 @@ "coordinates": [ [ [ - -0.1164169930133909, - 51.488333232639256 + -0.11452950853745476, + 51.49004654460264 ], [ - -0.11639412660643875, - 51.4883537758425 + -0.11458140241319559, + 51.490066187584965 ], [ - -0.11644160693202193, - 51.4883742677844 + -0.11464049141553503, + 51.49000565604692 ], [ - -0.1164644733389741, - 51.48835372458117 + -0.1145885975397942, + 51.4899860130646 ], [ - -0.1164169930133909, - 51.488333232639256 + -0.11452950853745476, + 51.49004654460264 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9150276563, - "osm_way_id": 990187788, - "src_i": 9150276564, + "dst_i": 9136344008, + "osm_way_id": 605014316, + "src_i": 5739261534, "type": "road" }, "type": "Feature" @@ -3381,33 +3593,33 @@ "coordinates": [ [ [ - -0.1111172262470798, - 51.489715407196094 + -0.11464309824080812, + 51.490089544765475 ], [ - -0.11111588600671779, - 51.48973060932837 + -0.11473611063308622, + 51.490124763997855 ], [ - -0.11122947426584662, - 51.48973449259903 + -0.11479521407767093, + 51.49006423785574 ], [ - -0.11123081450620861, - 51.48971929046675 + -0.11470220168539283, + 51.49002901862336 ], [ - -0.1111172262470798, - 51.489715407196094 + -0.11464309824080812, + 51.490089544765475 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9316017761, - "osm_way_id": 1009689020, - "src_i": 9316017762, + "dst_i": 21511934, + "osm_way_id": 605014316, + "src_i": 9136344008, "type": "road" }, "type": "Feature" @@ -3417,33 +3629,33 @@ "coordinates": [ [ [ - -0.11114118593199965, - 51.48940642817437 + -0.1111709066285618, + 51.48847832378977 ], [ - -0.111132904748556, - 51.48952084526386 + -0.11109205630200546, + 51.488627681321944 ], [ - -0.11124654788821686, - 51.48952403425824 + -0.11126703565737137, + 51.48866350130115 ], [ - -0.11125482907166054, - 51.489409617168754 + -0.11134588598392771, + 51.488514143768974 ], [ - -0.11114118593199965, - 51.48940642817437 + -0.1111709066285618, + 51.48847832378977 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9316017763, - "osm_way_id": 1009689021, - "src_i": 21511915, + "dst_i": 6022905020, + "osm_way_id": 639139876, + "src_i": 6022905014, "type": "road" }, "type": "Feature" @@ -3453,33 +3665,41 @@ "coordinates": [ [ [ - -0.11635237985223178, - 51.49063982346283 + -0.11251397622641528, + 51.489014470547545 ], [ - -0.11635146565810554, - 51.49064085228673 + -0.11246267881540452, + 51.48921888814517 ], [ - -0.11647073549652759, - 51.490681947686426 + -0.11289616425171442, + 51.48926589208775 ], [ - -0.11647164969065382, - 51.490680918862516 + -0.1129060745204257, + 51.489230451622255 ], [ - -0.11635237985223178, - 51.49063982346283 + -0.11252852101163699, + 51.48918951270452 + ], + [ + -0.11257105197976265, + 51.48902002475773 + ], + [ + -0.11251397622641528, + 51.489014470547545 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8013569055, - "osm_way_id": 1056763990, - "src_i": 7330281376, + "dst_i": 6029529898, + "osm_way_id": 639994500, + "src_i": 6029529895, "type": "road" }, "type": "Feature" @@ -3489,33 +3709,41 @@ "coordinates": [ [ [ - -0.11636139181328663, - 51.490751465245864 + -0.11434743081853363, + 51.49049508394706 ], [ - -0.1164364654927022, - 51.49078292981058 + -0.11414463569875805, + 51.490690752044856 ], [ - -0.11651611158697348, - 51.49070924119757 + -0.11479045391362658, + 51.490989589416934 ], [ - -0.11644103790755791, - 51.49067777663286 + -0.11485830358195298, + 51.49093273070829 ], [ - -0.11636139181328663, - 51.490751465245864 + -0.11429796323999986, + 51.49067344729869 + ], + [ + -0.11444301248624708, + 51.4905334957711 + ], + [ + -0.11434743081853363, + 51.49049508394706 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9806699390, - "osm_way_id": 1068255164, - "src_i": 25502865, + "dst_i": 25504987, + "osm_way_id": 673392192, + "src_i": 9130071196, "type": "road" }, "type": "Feature" @@ -3525,33 +3753,49 @@ "coordinates": [ [ [ - -0.11112948193642458, - 51.48956557752009 + -0.11247948236778804, + 51.48974054773134 ], [ - -0.1111210043384451, - 51.489670667745294 + -0.11238648152930616, + 51.48970344352089 ], [ - -0.11123461859361541, - 51.48967422186424 + -0.11236410327024447, + 51.489680283291804 ], [ - -0.1112430961915949, - 51.48956913163904 + -0.11236200481200526, + 51.48956402349237 ], [ - -0.11112948193642458, - 51.48956557752009 + -0.11224825191128024, + 51.48956482029131 + ], + [ + -0.11225069698340617, + 51.4897003165797 + ], + [ + -0.11230271939513001, + 51.48975415626574 + ], + [ + -0.11241811437914338, + 51.48980019433693 + ], + [ + -0.11247948236778804, + 51.48974054773134 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9316017762, - "osm_way_id": 1069976332, - "src_i": 9316017763, + "dst_i": 4849780710, + "osm_way_id": 673392248, + "src_i": 1126025785, "type": "road" }, "type": "Feature" @@ -3561,33 +3805,33 @@ "coordinates": [ [ [ - -0.1111201435806264, - 51.489264990068186 + -0.11099293628419835, + 51.488711586228284 ], [ - -0.11111270293585804, - 51.48933227101482 + -0.11097831495507665, + 51.48872035551318 ], [ - -0.1112964573994562, - 51.489340150870646 + -0.11105723027173678, + 51.48877137582601 ], [ - -0.11130389804422457, - 51.489272869924015 + -0.11107185160085845, + 51.48876260654112 ], [ - -0.1111201435806264, - 51.489264990068186 + -0.11099293628419835, + 51.488711586228284 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 21511915, - "osm_way_id": 1069976333, - "src_i": 9820345292, + "dst_i": 264803343, + "osm_way_id": 693647907, + "src_i": 102715106, "type": "road" }, "type": "Feature" @@ -3597,35 +3841,34 @@ "coordinates": [ [ [ - -0.11107187615267541, - 51.491789321039505 + -0.11091792615066201, + 51.48876012171555 ], [ - -0.11095832255493528, - 51.491785079838856 + -0.11074058982086636, + 51.488891499111034 ], [ - -0.11096697057140906, - 51.49169530775841 + -0.11082767367145695, + 51.4889370785282 ], [ - -0.11108052416914921, - 51.4916995507577 + -0.1110050100012526, + 51.488805701132726 ], [ - -0.11107187615267541, - 51.491789321039505 + -0.11091792615066201, + 51.48876012171555 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/21508954", - "osm_node_id": 21508954, - "type": "intersection" + "dst_i": 266138058, + "osm_way_id": 693647907, + "src_i": 264803343, + "type": "road" }, "type": "Feature" }, @@ -3634,39 +3877,70 @@ "coordinates": [ [ [ - -0.11129645595523167, - 51.489340150870646 + -0.11113304050566161, + 51.48901658934923 ], [ - -0.11128993672571219, - 51.489410871722384 + -0.11111068390996787, + 51.48921952936146 ], [ - -0.11125482907166054, - 51.489409616269434 + -0.11132325931824721, + 51.489228610710946 ], [ - -0.11114118593199965, - 51.48940642817437 + -0.11134561591394096, + 51.489025670698716 ], [ - -0.11111270293585804, - 51.48933227101482 + -0.11113304050566161, + 51.48901658934923 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9820345292, + "osm_way_id": 693647908, + "src_i": 266138052, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11226706437998224, + 51.488985758806244 ], [ - -0.11129645595523167, - 51.489340150870646 + -0.11228610792460872, + 51.488987443235594 + ], + [ + -0.11229715335379903, + 51.488939020163535 + ], + [ + -0.11227810980917255, + 51.488937335734185 + ], + [ + -0.11226706437998224, + 51.488985758806244 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/21511915", - "osm_node_id": 21511915, - "type": "intersection" + "dst_i": 1126222500, + "osm_way_id": 726171380, + "src_i": 25503378, + "type": "road" }, "type": "Feature" }, @@ -3675,42 +3949,6457 @@ "coordinates": [ [ [ - -0.11484539799157059, - 51.49008324052108 + -0.11232082130536422, + 51.488991411941804 ], [ - -0.11489190635404645, - 51.49010051469032 + -0.1125060965373904, + 51.489012592764055 ], [ - -0.11483363189434082, - 51.4901613519977 + -0.11252027882225556, + 51.488964488051835 ], [ - -0.1148310380670885, - 51.49016379545448 + -0.11233500359022938, + 51.48894330722958 ], [ - -0.11473610341196358, - 51.49012476669582 + -0.11232082130536422, + 51.488991411941804 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6029529895, + "osm_way_id": 726171380, + "src_i": 1126222500, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11200913454462494, + 51.4889611218911 + ], + [ + -0.11218204143779315, + 51.48897788614499 + ], + [ + -0.11219412382019456, + 51.48892956019966 + ], + [ + -0.11202121692702635, + 51.488912795945765 + ], + [ + -0.11200913454462494, + 51.4889611218911 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 25503378, + "osm_way_id": 726171380, + "src_i": 1240373509, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11138575380202372, + 51.48892215158834 + ], + [ + -0.11193976699631958, + 51.488955666606294 + ], + [ + -0.1119473607288879, + 51.48890698632825 + ], + [ + -0.11139334753459204, + 51.4888734713103 + ], + [ + -0.11138575380202372, + 51.48892215158834 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1240373509, + "osm_way_id": 726171380, + "src_i": 4839044022, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11257710616898411, + 51.48902071723536 + ], + [ + -0.11310328482395143, + 51.489080983473535 + ], + [ + -0.11311749310485811, + 51.4890328823586 + ], + [ + -0.11259131444989079, + 51.48897261612043 + ], + [ + -0.11257710616898411, + 51.48902071723536 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5739257306, + "osm_way_id": 726171380, + "src_i": 6029529895, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11556171169410087, + 51.48868444470249 + ], + [ + -0.115267801893077, + 51.48857314016505 + ], + [ + -0.11515551488024793, + 51.48845656830102 + ], + [ + -0.11473544773402786, + 51.48858722354126 + ], + [ + -0.11465156572921589, + 51.488487435716195 + ], + [ + -0.1146003853003919, + 51.488504118131814 + ], + [ + -0.11471055219161383, + 51.48863517716745 + ], + [ + -0.11513348467929749, + 51.48850363159883 + ], + [ + -0.11522559876391919, + 51.48859926006151 + ], + [ + -0.1155316949315105, + 51.488715179917385 + ], + [ + -0.11556171169410087, + 51.48868444470249 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6847224406, + "osm_way_id": 731053049, + "src_i": 6847224398, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11643329253141413, + 51.49059520452112 + ], + [ + -0.1164184372379189, + 51.490608202416155 + ], + [ + -0.11646477951457404, + 51.490628739324144 + ], + [ + -0.11647963480806925, + 51.4906157414291 + ], + [ + -0.11643329253141413, + 51.49059520452112 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7330281376, + "osm_way_id": 784643056, + "src_i": 4957735651, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1163776263412061, + 51.490648612532794 + ], + [ + -0.11637408943533699, + 51.49065220262461 + ], + [ + -0.11644103790755791, + 51.49067777753218 + ], + [ + -0.11644457481342702, + 51.49067418744036 + ], + [ + -0.1163776263412061, + 51.490648612532794 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 25502865, + "osm_way_id": 784643057, + "src_i": 8013569055, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11678203231664432, + 51.48995891020964 + ], + [ + -0.11677854162596008, + 51.48996453726487 + ], + [ + -0.11688465746738091, + 51.48999006360907 + ], + [ + -0.11688814815806516, + 51.48998443655384 + ], + [ + -0.11678203231664432, + 51.48995891020964 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150256922, + "osm_way_id": 798193875, + "src_i": 25502684, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11664253755793186, + 51.49018503563195 + ], + [ + -0.11658642510234468, + 51.49027766305847 + ], + [ + -0.11669286156161074, + 51.490302664198865 + ], + [ + -0.11674897401719792, + 51.49021003677235 + ], + [ + -0.11664253755793186, + 51.49018503563195 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4957735652, + "osm_way_id": 798193875, + "src_i": 9150217904, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11676554793788149, + 51.4899855634038 + ], + [ + -0.1166683819558608, + 51.490142797194515 + ], + [ + -0.11677454978936465, + 51.49016823720385 + ], + [ + -0.11687171577138533, + 51.49001100341314 + ], + [ + -0.11676554793788149, + 51.4899855634038 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150217904, + "osm_way_id": 798193875, + "src_i": 9150256922, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11274217092296518, + 51.489868092218174 + ], + [ + -0.1127180870347359, + 51.48985611954975 + ], + [ + -0.11264711206453085, + 51.48991147998861 + ], + [ + -0.11267119595276012, + 51.48992345265703 + ], + [ + -0.11274217092296518, + 51.489868092218174 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343947, + "osm_way_id": 846713831, + "src_i": 9130071195, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11295432028500876, + 51.48997369685533 + ], + [ + -0.11279862132709192, + 51.48989617713232 + ], + [ + -0.11272757992255858, + 51.48995150339696 + ], + [ + -0.11288327888047542, + 51.49002902311997 + ], + [ + -0.11295432028500876, + 51.48997369685533 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9130071195, + "osm_way_id": 846713831, + "src_i": 9130071201, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11268957370987918, + 51.489841919261735 + ], + [ + -0.11254292281863039, + 51.48976888265689 + ], + [ + -0.11247186986030083, + 51.4898242035256 + ], + [ + -0.11261852075154963, + 51.489897240130446 + ], + [ + -0.11268957370987918, + 51.489841919261735 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1126025785, + "osm_way_id": 846713831, + "src_i": 9136343947, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11657455646517341, + 51.4898516867936 + ], + [ + -0.11666628783029516, + 51.489705732294354 + ], + [ + -0.11663068769567944, + 51.48966325643601 + ], + [ + -0.11656536542027708, + 51.489633526662665 + ], + [ + -0.11666515989093877, + 51.489478664383 + ], + [ + -0.1166115473880096, + 51.489465268088495 + ], + [ + -0.11649503457421154, + 51.489646073997584 + ], + [ + -0.11658571165542783, + 51.48968734386566 + ], + [ + -0.11660291236955656, + 51.489707867283826 + ], + [ + -0.1165207619899537, + 51.489838576483365 + ], + [ + -0.11657455646517341, + 51.4898516867936 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276535, + "osm_way_id": 933882058, + "src_i": 4967069559, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11421717765257598, + 51.49038325510513 + ], + [ + -0.11396834932019426, + 51.490274317582134 + ], + [ + -0.11393512349070262, + 51.490303745183425 + ], + [ + -0.11418395182308433, + 51.49041268270642 + ], + [ + -0.11421717765257598, + 51.49038325510513 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343987, + "osm_way_id": 987763225, + "src_i": 1126026083, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11438433508789814, + 51.49045914255944 + ], + [ + -0.11427629987207955, + 51.49040971674379 + ], + [ + -0.11424209485835793, + 51.49043870727479 + ], + [ + -0.11435013007417649, + 51.49048813309044 + ], + [ + -0.11438433508789814, + 51.49045914255944 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1126026083, + "osm_way_id": 987763225, + "src_i": 9130071196, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11390972680237738, + 51.49024837485202 + ], + [ + -0.11313701757625241, + 51.48990275746844 + ], + [ + -0.11306964450202026, + 51.489955973025296 + ], + [ + -0.11300237541195411, + 51.48998269906451 + ], + [ + -0.11303344645844995, + 51.4900130259874 + ], + [ + -0.11310895629367297, + 51.489983026417576 + ], + [ + -0.11314818143185401, + 51.4899520420906 + ], + [ + -0.11387602437879149, + 51.49027759201206 + ], + [ + -0.11390972680237738, + 51.49024837485202 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9130071201, + "osm_way_id": 987763225, + "src_i": 9136343987, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11298640373289873, + 51.4895679930979 + ], + [ + -0.1127774258879187, + 51.48975163456798 + ], + [ + -0.11268957515410372, + 51.48984192016106 + ], + [ + -0.11271428005888004, + 51.48985124073009 + ], + [ + -0.11280159931806868, + 51.4897615001259 + ], + [ + -0.11300997058874697, + 51.48957839285284 + ], + [ + -0.11298640373289873, + 51.4895679930979 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343947, + "osm_way_id": 988439973, + "src_i": 25502896, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1134208510227443, + 51.49067965261771 + ], + [ + -0.11298680811576658, + 51.49047877564922 + ], + [ + -0.11296957851714728, + 51.490493211559496 + ], + [ + -0.113403621424125, + 51.49069408852798 + ], + [ + -0.1134208510227443, + 51.49067965261771 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343970, + "osm_way_id": 988439977, + "src_i": 9136343969, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1129850880443537, + 51.490471951596945 + ], + [ + -0.11326093059653206, + 51.490231348895556 + ], + [ + -0.11323742150966493, + 51.490220898778595 + ], + [ + -0.11296157895748658, + 51.490461501479984 + ], + [ + -0.1129850880443537, + 51.490471951596945 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343971, + "osm_way_id": 988439977, + "src_i": 9136343970, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11327047692066226, + 51.49023039381602 + ], + [ + -0.11370700533805272, + 51.49042933634375 + ], + [ + -0.11372406451817768, + 51.49041482129318 + ], + [ + -0.11328753610078723, + 51.49021587876544 + ], + [ + -0.11327047692066226, + 51.49023039381602 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343972, + "osm_way_id": 988439977, + "src_i": 9136343971, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11370870952299578, + 51.49043593556563 + ], + [ + -0.11343008972705004, + 51.49067874969882 + ], + [ + -0.11345359014856998, + 51.490689207010355 + ], + [ + -0.11373220994451572, + 51.49044639287716 + ], + [ + -0.11370870952299578, + 51.49043593556563 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343969, + "osm_way_id": 988439977, + "src_i": 9136343972, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11269342834514448, + 51.49063160276411 + ], + [ + -0.11276804276116013, + 51.49066154567668 + ], + [ + -0.11281219848187983, + 51.49062182264174 + ], + [ + -0.11278844965374105, + 51.490611586563325 + ], + [ + -0.11276020062197298, + 51.490636999593015 + ], + [ + -0.11270907507368105, + 51.49061648336942 + ], + [ + -0.11269342834514448, + 51.49063160276411 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343976, + "osm_way_id": 988439978, + "src_i": 9136343973, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1128533271079888, + 51.490584906389515 + ], + [ + -0.1128859059248919, + 51.49055572610166 + ], + [ + -0.11286218886969274, + 51.49054545944631 + ], + [ + -0.11282961005278966, + 51.49057463973416 + ], + [ + -0.1128533271079888, + 51.490584906389515 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343977, + "osm_way_id": 988439979, + "src_i": 9136343976, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11292766134444601, + 51.49052002843019 + ], + [ + -0.11294167609926595, + 51.49050858456287 + ], + [ + -0.11291870715237229, + 51.49049767759054 + ], + [ + -0.11290469239755238, + 51.49050912145786 + ], + [ + -0.11292766134444601, + 51.49052002843019 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343970, + "osm_way_id": 988439980, + "src_i": 9136343977, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11327634624914415, + 51.490188506114 + ], + [ + -0.1132603456855982, + 51.49018060557377 + ], + [ + -0.11324239975161302, + 51.490194699741835 + ], + [ + -0.11325840031515895, + 51.49020260028207 + ], + [ + -0.11327634624914415, + 51.490188506114 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343978, + "osm_way_id": 988439981, + "src_i": 9136343971, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11323160706171512, + 51.490166702961204 + ], + [ + -0.11319953372339683, + 51.49015118876434 + ], + [ + -0.11318181308843803, + 51.49016539264964 + ], + [ + -0.11321388642675631, + 51.490180906846504 + ], + [ + -0.11323160706171512, + 51.490166702961204 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343979, + "osm_way_id": 988439982, + "src_i": 9136343978, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11314016742994802, + 51.49012399417857 + ], + [ + -0.11299038545992249, + 51.49005907305181 + ], + [ + -0.11297388375046531, + 51.4900738345165 + ], + [ + -0.11312366572049087, + 51.49013875564326 + ], + [ + -0.11314016742994802, + 51.49012399417857 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343980, + "osm_way_id": 988439983, + "src_i": 9136343979, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11377600749755248, + 51.49043913625119 + ], + [ + -0.11379110686499294, + 51.49042703677843 + ], + [ + -0.11376829967124644, + 51.49041600030379 + ], + [ + -0.11375320030380598, + 51.49042809977656 + ], + [ + -0.11377600749755248, + 51.49043913625119 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343985, + "osm_way_id": 988439985, + "src_i": 9136343972, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11381215210481524, + 51.49040687398823 + ], + [ + -0.11382587368205598, + 51.49039364496753 + ], + [ + -0.11380161070998523, + 51.49038388552957 + ], + [ + -0.1137878891327445, + 51.490397114550255 + ], + [ + -0.11381215210481524, + 51.49040687398823 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343986, + "osm_way_id": 988439986, + "src_i": 9136343985, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1138656346275369, + 51.490357032686006 + ], + [ + -0.11392492870975932, + 51.49030484145645 + ], + [ + -0.1139013474116658, + 51.490294454292005 + ], + [ + -0.11384205332944339, + 51.49034664552156 + ], + [ + -0.1138656346275369, + 51.490357032686006 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343987, + "osm_way_id": 988439987, + "src_i": 9136343986, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11338842962631476, + 51.49071601488784 + ], + [ + -0.1133535544924121, + 51.49074804332719 + ], + [ + -0.11345557595729602, + 51.49079270363769 + ], + [ + -0.11352968056205329, + 51.490717754175805 + ], + [ + -0.11351807621797064, + 51.490712999462524 + ], + [ + -0.11353395113398265, + 51.49069797359728 + ], + [ + -0.11352069170859089, + 51.490692540795514 + ], + [ + -0.1134470752517241, + 51.49076699563052 + ], + [ + -0.11339340064714021, + 51.49074349995448 + ], + [ + -0.11341233731915161, + 51.49072610887344 + ], + [ + -0.11338842962631476, + 51.49071601488784 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343993, + "osm_way_id": 988439988, + "src_i": 9136343969, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11315159413441372, + 51.48959292049392 + ], + [ + -0.11314026274876687, + 51.489613381858895 + ], + [ + -0.11316757014614269, + 51.489619245435705 + ], + [ + -0.11317890153178954, + 51.48959878407073 + ], + [ + -0.11315159413441372, + 51.48959292049392 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343997, + "osm_way_id": 988439991, + "src_i": 9136343996, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11317055969091569, + 51.48966778721822 + ], + [ + -0.11327098095502255, + 51.48970797160513 + ], + [ + -0.11328094177159231, + 51.48970870814952 + ], + [ + -0.11328434725302938, + 51.489690847622605 + ], + [ + -0.1132809980963489, + 51.48969060030917 + ], + [ + -0.11318617464651265, + 51.48965265523303 + ], + [ + -0.11317055969091569, + 51.48966778721822 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136360630, + "osm_way_id": 988439992, + "src_i": 9136343997, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11305933996001283, + 51.48958105304613 + ], + [ + -0.11305644573405868, + 51.489629097503794 + ], + [ + -0.11311050594659154, + 51.489646291633406 + ], + [ + -0.11312364550134747, + 51.489630272917125 + ], + [ + -0.11308600034480008, + 51.48961830024871 + ], + [ + -0.11308820423142985, + 51.48958172753733 + ], + [ + -0.11305933996001283, + 51.48958105304613 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136343997, + "osm_way_id": 988439992, + "src_i": 9136343998, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11334139845455976, + 51.48971912499157 + ], + [ + -0.11373715930197326, + 51.48990092375171 + ], + [ + -0.113864376707973, + 51.489791980832784 + ], + [ + -0.11384101493200774, + 51.48978140301216 + ], + [ + -0.11373090003286881, + 51.48987569957956 + ], + [ + -0.11335854428815642, + 51.48970465130979 + ], + [ + -0.11334139845455976, + 51.48971912499157 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136344004, + "osm_way_id": 988439992, + "src_i": 9136360630, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11387635366198387, + 51.4897936014103 + ], + [ + -0.11377730296695412, + 51.48989031625347 + ], + [ + -0.11422154209909965, + 51.49007404405843 + ], + [ + -0.11423752388772673, + 51.490059061360625 + ], + [ + -0.1138169007150634, + 51.48988510018821 + ], + [ + -0.11390070617597536, + 51.48980327271475 + ], + [ + -0.11387635366198387, + 51.4897936014103 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136344009, + "osm_way_id": 988439993, + "src_i": 9136344005, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11428169982758983, + 51.490098921991766 + ], + [ + -0.11451208685697326, + 51.4901941862292 + ], + [ + -0.11463273881826862, + 51.490086988893495 + ], + [ + -0.1146090853089487, + 51.490076666480206 + ], + [ + -0.11450459999701999, + 51.49016949985137 + ], + [ + -0.11429767872776785, + 51.49008393749532 + ], + [ + -0.11428169982758983, + 51.490098921991766 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136344008, + "osm_way_id": 988439993, + "src_i": 9136344009, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1143129889519894, + 51.490066004123356 + ], + [ + -0.11440091622970434, + 51.4900015245635 + ], + [ + -0.11437889758255014, + 51.48998988194611 + ], + [ + -0.11429097030483519, + 51.49005436150596 + ], + [ + -0.1143129889519894, + 51.490066004123356 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136344010, + "osm_way_id": 988439994, + "src_i": 9136344009, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11336186311612183, + 51.48968101264162 + ], + [ + -0.11338937126070703, + 51.48964532036609 + ], + [ + -0.11336332900401777, + 51.48963753763699 + ], + [ + -0.11333582085943256, + 51.48967322991252 + ], + [ + -0.11336186311612183, + 51.48968101264162 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136360631, + "osm_way_id": 988439999, + "src_i": 9136360630, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11583901724572612, + 51.490974137273255 + ], + [ + -0.11546930876457359, + 51.49081664807521 + ], + [ + -0.1154530005812032, + 51.490831494076126 + ], + [ + -0.1158227090623557, + 51.49098898327418 + ], + [ + -0.11583901724572612, + 51.490974137273255 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136383835, + "osm_way_id": 988442661, + "src_i": 9136383822, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11541030641570585, + 51.49079114871065 + ], + [ + -0.11495479222267005, + 51.4905914354643 + ], + [ + -0.11498464578788875, + 51.49056441174964 + ], + [ + -0.11494325864558927, + 51.490544383857674 + ], + [ + -0.1149255351221814, + 51.490558585944335 + ], + [ + -0.11494540043056432, + 51.490568199692206 + ], + [ + -0.1149147987570401, + 51.490595899696714 + ], + [ + -0.11539367761449021, + 51.49080585621604 + ], + [ + -0.11541030641570585, + 51.49079114871065 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136383827, + "osm_way_id": 988442661, + "src_i": 9136383835, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11498319723068715, + 51.490509875988685 + ], + [ + -0.115028469336967, + 51.49052794695685 + ], + [ + -0.11509732418556493, + 51.49047096414183 + ], + [ + -0.11555074280881056, + 51.490670511013676 + ], + [ + -0.11556741493676204, + 51.49065582329336 + ], + [ + -0.11509109957784916, + 51.49044620042234 + ], + [ + -0.11502149950939479, + 51.49050380017197 + ], + [ + -0.1149987861902426, + 51.490494733211634 + ], + [ + -0.11498319723068715, + 51.490509875988685 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136383836, + "osm_way_id": 988442666, + "src_i": 9136383828, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11560925267711425, + 51.490696545474584 + ], + [ + -0.1159762416834805, + 51.49086164203402 + ], + [ + -0.11599315644115268, + 51.49084706223229 + ], + [ + -0.11562616743478643, + 51.490681965672856 + ], + [ + -0.11560925267711425, + 51.490696545474584 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136383834, + "osm_way_id": 988442666, + "src_i": 9136383836, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11546774755785881, + 51.490811087569774 + ], + [ + -0.1155250038392722, + 51.4907616563582 + ], + [ + -0.11550157851742768, + 51.490751134295515 + ], + [ + -0.11544432223601432, + 51.49080056550709 + ], + [ + -0.11546774755785881, + 51.490811087569774 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136383840, + "osm_way_id": 988442667, + "src_i": 9136383835, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1155987964915314, + 51.49069784769226 + ], + [ + -0.11559913010739736, + 51.49069756080867 + ], + [ + -0.11557573655849249, + 51.49068701176633 + ], + [ + -0.11557540294262653, + 51.490687298649924 + ], + [ + -0.1155987964915314, + 51.49069784769226 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136383836, + "osm_way_id": 988442667, + "src_i": 9136383837, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11556723585292056, + 51.49072515739119 + ], + [ + -0.11557775558438266, + 51.49071605535731 + ], + [ + -0.11555431004339478, + 51.49070554948241 + ], + [ + -0.11554379031193268, + 51.49071465151629 + ], + [ + -0.11556723585292056, + 51.49072515739119 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136383837, + "osm_way_id": 988442667, + "src_i": 9136383840, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11556287140639687, + 51.4906595851556 + ], + [ + -0.11553571131992292, + 51.49064746859572 + ], + [ + -0.11548179119716928, + 51.490692792605564 + ], + [ + -0.11550499988533457, + 51.49070349992849 + ], + [ + -0.11554199947351793, + 51.49067239958903 + ], + [ + -0.11554604907909449, + 51.49067420632612 + ], + [ + -0.11556287140639687, + 51.4906595851556 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136383839, + "osm_way_id": 988442668, + "src_i": 9136383837, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11553454871917787, + 51.490760730956275 + ], + [ + -0.11560780267568813, + 51.490794477099875 + ], + [ + -0.11564133323655518, + 51.490838482704255 + ], + [ + -0.1156771918873614, + 51.49086387774751 + ], + [ + -0.11576468156504437, + 51.49088245503374 + ], + [ + -0.11577400259014821, + 51.49086543087591 + ], + [ + -0.11569380046943364, + 51.49084840042283 + ], + [ + -0.11566570019279195, + 51.490828500234535 + ], + [ + -0.11563080050707233, + 51.490782699584244 + ], + [ + -0.11555172632571414, + 51.49074627166364 + ], + [ + -0.11553454871917787, + 51.490760730956275 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9136383851, + "osm_way_id": 988442669, + "src_i": 9136383840, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11675109558302958, + 51.49020653931066 + ], + [ + -0.1170243746366707, + 51.49027489944321 + ], + [ + -0.11706709913088313, + 51.49030682176261 + ], + [ + -0.11711147726218014, + 51.49028379013651 + ], + [ + -0.11705942596596575, + 51.490244899873375 + ], + [ + -0.11677262897074236, + 51.490173158291626 + ], + [ + -0.11675109558302958, + 51.49020653931066 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150256934, + "osm_way_id": 990184954, + "src_i": 9150217904, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1170453982131251, + 51.49033035880744 + ], + [ + -0.11688789108609918, + 51.49059264145457 + ], + [ + -0.11694200040226599, + 51.49060524095014 + ], + [ + -0.11709950752929191, + 51.49034295830301 + ], + [ + -0.1170453982131251, + 51.49033035880744 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150217908, + "osm_way_id": 990184954, + "src_i": 9150256934, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11691320400940178, + 51.49064798030971 + ], + [ + -0.11700748876348907, + 51.490693360077486 + ], + [ + -0.11688209685729276, + 51.4908076908321 + ], + [ + -0.11690594966959754, + 51.49081783517971 + ], + [ + -0.11704669945942484, + 51.4906895001892 + ], + [ + -0.11693086687537949, + 51.49063374944476 + ], + [ + -0.11691320400940178, + 51.49064798030971 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150217910, + "osm_way_id": 990184955, + "src_i": 9150217908, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11789498784355018, + 51.48987603322787 + ], + [ + -0.11738916408908077, + 51.4897636279208 + ], + [ + -0.11734030597329784, + 51.48982111435591 + ], + [ + -0.11703860169249623, + 51.489756917183044 + ], + [ + -0.11701992209245082, + 51.48979095830413 + ], + [ + -0.11736829504465088, + 51.48986508578607 + ], + [ + -0.11741683543103765, + 51.489807971670096 + ], + [ + -0.11787557168899546, + 51.48990991247107 + ], + [ + -0.11789498784355018, + 51.48987603322787 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150256917, + "osm_way_id": 990184958, + "src_i": 9150256918, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11743231029685539, + 51.49039334279548 + ], + [ + -0.11712988679223882, + 51.49030844413877 + ], + [ + -0.1171180152666185, + 51.490324840570125 + ], + [ + -0.11742043877123506, + 51.490409739226834 + ], + [ + -0.11743231029685539, + 51.49039334279548 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150256934, + "osm_way_id": 990184962, + "src_i": 2555516144, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11669236185992404, + 51.489437280301075 + ], + [ + -0.11671885760311511, + 51.489397750620284 + ], + [ + -0.11669220299522597, + 51.489390822246705 + ], + [ + -0.1166657072520349, + 51.489430351927496 + ], + [ + -0.11669236185992404, + 51.489437280301075 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276536, + "osm_way_id": 990187778, + "src_i": 9150276535, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11623064616676493, + 51.48920967549473 + ], + [ + -0.1163467935917574, + 51.489046340706295 + ], + [ + -0.11632038161358896, + 51.48903905800001 + ], + [ + -0.11620423418859649, + 51.489202392788435 + ], + [ + -0.11623064616676493, + 51.48920967549473 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276548, + "osm_way_id": 990187781, + "src_i": 9150276546, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11637520582089714, + 51.48900427853589 + ], + [ + -0.11638160662400532, + 51.48899428437498 + ], + [ + -0.11635477582072376, + 51.4889876222006 + ], + [ + -0.11634837501761558, + 51.4889976163615 + ], + [ + -0.11637520582089714, + 51.48900427853589 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276551, + "osm_way_id": 990187781, + "src_i": 9150276548, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11631999889408903, + 51.48895825125656 + ], + [ + -0.1159613141787589, + 51.488819304271196 + ], + [ + -0.11594605739084488, + 51.48883457655056 + ], + [ + -0.11630474210617503, + 51.48897352353592 + ], + [ + -0.11631999889408903, + 51.48895825125656 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276567, + "osm_way_id": 990187781, + "src_i": 9150276551, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11589999673797272, + 51.48879555318783 + ], + [ + -0.11564458563019228, + 51.48869662961081 + ], + [ + -0.11562932884227828, + 51.48871190189017 + ], + [ + -0.11588473995005871, + 51.48881082546718 + ], + [ + -0.11589999673797272, + 51.48879555318783 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276550, + "osm_way_id": 990187781, + "src_i": 9150276567, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11665112058430188, + 51.489085102366445 + ], + [ + -0.11637966269779061, + 51.48901104683023 + ], + [ + -0.11636807135172872, + 51.489027522401884 + ], + [ + -0.11663952923824, + 51.4891015779381 + ], + [ + -0.11665112058430188, + 51.489085102366445 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276548, + "osm_way_id": 990187782, + "src_i": 9150276543, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11638160662400532, + 51.48899428437498 + ], + [ + -0.11663555184388982, + 51.4889382359551 + ], + [ + -0.11671447438167257, + 51.48881566022009 + ], + [ + -0.1166876637975344, + 51.48880896746876 + ], + [ + -0.11661359963106392, + 51.48892399969422 + ], + [ + -0.1163719563157091, + 51.48897733216288 + ], + [ + -0.11638160662400532, + 51.48899428437498 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276553, + "osm_way_id": 990187783, + "src_i": 9150276551, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1167204390289733, + 51.48876194553975 + ], + [ + -0.11666753130761379, + 51.48862918858494 + ], + [ + -0.11663949602107586, + 51.48863352151639 + ], + [ + -0.11669240374243536, + 51.4887662784712 + ], + [ + -0.1167204390289733, + 51.48876194553975 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276554, + "osm_way_id": 990187783, + "src_i": 9150276553, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11693195148800002, + 51.4888296563621 + ], + [ + -0.11693044371759276, + 51.488825577039336 + ], + [ + -0.11690229578154164, + 51.48882961139602 + ], + [ + -0.1169038035519489, + 51.488833690718785 + ], + [ + -0.11693195148800002, + 51.4888296563621 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276556, + "osm_way_id": 990187784, + "src_i": 9150276555, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11691229992484725, + 51.488781205411065 + ], + [ + -0.11690893632592148, + 51.4887737113642 + ], + [ + -0.11685329902020401, + 51.488783395259155 + ], + [ + -0.11685666261912978, + 51.488790889306024 + ], + [ + -0.11691229992484725, + 51.488781205411065 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276560, + "osm_way_id": 990187785, + "src_i": 9150276556, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11688922988223664, + 51.48873033528494 + ], + [ + -0.11682960651682184, + 51.488600663902524 + ], + [ + -0.11677407030682134, + 51.488610565433305 + ], + [ + -0.11683369367223614, + 51.48874023681572 + ], + [ + -0.11688922988223664, + 51.48873033528494 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276561, + "osm_way_id": 990187785, + "src_i": 9150276560, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1168102351332275, + 51.48855756931093 + ], + [ + -0.11673076667857316, + 51.488376645590705 + ], + [ + -0.11650582004298679, + 51.48831722201687 + ], + [ + -0.11648325836741005, + 51.48835033863536 + ], + [ + -0.11668243426051844, + 51.4884029543447 + ], + [ + -0.11675451406248741, + 51.48856705895241 + ], + [ + -0.1168102351332275, + 51.48855756931093 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276564, + "osm_way_id": 990187785, + "src_i": 9150276561, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11643932216881861, + 51.488299670856584 + ], + [ + -0.11644095847520886, + 51.48830010253095 + ], + [ + -0.11620886003975973, + 51.488163534251214 + ], + [ + -0.11616918430352596, + 51.48818968112732 + ], + [ + -0.11640884181015473, + 51.48833069745168 + ], + [ + -0.11641678360083432, + 51.488332792871 + ], + [ + -0.11643932216881861, + 51.488299670856584 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276559, + "osm_way_id": 990187785, + "src_i": 9150276564, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11682861000189751, + 51.48874599157462 + ], + [ + -0.11672758649616247, + 51.48876449961308 + ], + [ + -0.11673573769939861, + 51.488781753997245 + ], + [ + -0.11683676120513367, + 51.48876324595878 + ], + [ + -0.11682861000189751, + 51.48874599157462 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276553, + "osm_way_id": 990187786, + "src_i": 9150276560, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11659029562407978, + 51.48859781395239 + ], + [ + -0.11650654648792438, + 51.488606845839186 + ], + [ + -0.11643989408173172, + 51.48841914663005 + ], + [ + -0.11638348844856534, + 51.48842691317137 + ], + [ + -0.11646205281866513, + 51.48864815347877 + ], + [ + -0.11660015390070805, + 51.4886332598138 + ], + [ + -0.11659029562407978, + 51.48859781395239 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276563, + "osm_way_id": 990187787, + "src_i": 9150276554, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11674941017300539, + 51.4885726464375 + ], + [ + -0.11665791566070623, + 51.488588378270194 + ], + [ + -0.11667329087503153, + 51.48862305431233 + ], + [ + -0.1167647853873307, + 51.48860732247963 + ], + [ + -0.11674941017300539, + 51.4885726464375 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276554, + "osm_way_id": 990187787, + "src_i": 9150276561, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11633581604111991, + 51.488406595697846 + ], + [ + -0.11616195595976321, + 51.488564787266064 + ], + [ + -0.11620962981143318, + 51.48858510473958 + ], + [ + -0.11638348989278988, + 51.48842691317137 + ], + [ + -0.11633581604111991, + 51.488406595697846 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276568, + "osm_way_id": 990187788, + "src_i": 9150276563, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1164169930133909, + 51.488333232639256 + ], + [ + -0.11639412660643875, + 51.4883537758425 + ], + [ + -0.11644160693202193, + 51.4883742677844 + ], + [ + -0.1164644733389741, + 51.48835372458117 + ], + [ + -0.1164169930133909, + 51.488333232639256 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276563, + "osm_way_id": 990187788, + "src_i": 9150276564, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11612154511324467, + 51.48860262262497 + ], + [ + -0.11603393556492587, + 51.48868705453377 + ], + [ + -0.11608245573216926, + 51.488706577006994 + ], + [ + -0.11617006528048804, + 51.48862214509819 + ], + [ + -0.11612154511324467, + 51.48860262262497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276566, + "osm_way_id": 990187788, + "src_i": 9150276568, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11599408796597327, + 51.48872349054827 + ], + [ + -0.1159129629857853, + 51.48879394789877 + ], + [ + -0.11593643741126373, + 51.488804428592665 + ], + [ + -0.11601756239145171, + 51.488733971242155 + ], + [ + -0.11599408796597327, + 51.48872349054827 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276567, + "osm_way_id": 990187789, + "src_i": 9150276566, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11635224120667709, + 51.488955248421746 + ], + [ + -0.11620342397863626, + 51.488612179715574 + ], + [ + -0.11617553889144924, + 51.488616870577026 + ], + [ + -0.11632435611949007, + 51.4889599392832 + ], + [ + -0.11635224120667709, + 51.488955248421746 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9150276568, + "osm_way_id": 990187790, + "src_i": 9150276551, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1111172262470798, + 51.489715407196094 + ], + [ + -0.11111588600671779, + 51.48973060932837 + ], + [ + -0.11122947426584662, + 51.48973449259903 + ], + [ + -0.11123081450620861, + 51.48971929046675 + ], + [ + -0.1111172262470798, + 51.489715407196094 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9316017761, + "osm_way_id": 1009689020, + "src_i": 9316017762, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11114118593199965, + 51.48940642817437 + ], + [ + -0.111132904748556, + 51.48952084526386 + ], + [ + -0.11124654788821686, + 51.48952403425824 + ], + [ + -0.11125482907166054, + 51.489409617168754 + ], + [ + -0.11114118593199965, + 51.48940642817437 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9316017763, + "osm_way_id": 1009689021, + "src_i": 21511915, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11635237985223178, + 51.49063982346283 + ], + [ + -0.11635146565810554, + 51.49064085228673 + ], + [ + -0.11647073549652759, + 51.490681947686426 + ], + [ + -0.11647164969065382, + 51.490680918862516 + ], + [ + -0.11635237985223178, + 51.49063982346283 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8013569055, + "osm_way_id": 1056763990, + "src_i": 7330281376, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11636139181328663, + 51.490751465245864 + ], + [ + -0.1164364654927022, + 51.49078292981058 + ], + [ + -0.11651611158697348, + 51.49070924119757 + ], + [ + -0.11644103790755791, + 51.49067777663286 + ], + [ + -0.11636139181328663, + 51.490751465245864 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9806699390, + "osm_way_id": 1068255164, + "src_i": 25502865, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11112948193642458, + 51.48956557752009 + ], + [ + -0.1111210043384451, + 51.489670667745294 + ], + [ + -0.11123461859361541, + 51.48967422186424 + ], + [ + -0.1112430961915949, + 51.48956913163904 + ], + [ + -0.11112948193642458, + 51.48956557752009 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9316017762, + "osm_way_id": 1069976332, + "src_i": 9316017763, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1111201435806264, + 51.489264990068186 + ], + [ + -0.11111270293585804, + 51.48933227101482 + ], + [ + -0.1112964573994562, + 51.489340150870646 + ], + [ + -0.11130389804422457, + 51.489272869924015 + ], + [ + -0.1111201435806264, + 51.489264990068186 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 21511915, + "osm_way_id": 1069976333, + "src_i": 9820345292, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11107187615267541, + 51.491789321039505 + ], + [ + -0.11095832255493528, + 51.491785079838856 + ], + [ + -0.11096697057140906, + 51.49169530775841 + ], + [ + -0.11108052416914921, + 51.4916995507577 + ], + [ + -0.11107187615267541, + 51.491789321039505 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/21508954", + "osm_node_id": 21508954, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11129645595523167, + 51.489340150870646 + ], + [ + -0.11128993672571219, + 51.489410871722384 + ], + [ + -0.11125482907166054, + 51.489409616269434 + ], + [ + -0.11114118593199965, + 51.48940642817437 + ], + [ + -0.11111270293585804, + 51.48933227101482 + ], + [ + -0.11129645595523167, + 51.489340150870646 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/21511915", + "osm_node_id": 21511915, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11484542687606117, + 51.49008325131294 + ], + [ + -0.11489190635404645, + 51.49010051469032 + ], + [ + -0.11483363189434082, + 51.4901613519977 + ], + [ + -0.11483104095553753, + 51.49016379275652 + ], + [ + -0.11473610630041264, + 51.490124763997855 + ], + [ + -0.11479521407767093, + 51.49006423785574 + ], + [ + -0.11484542687606117, + 51.49008325131294 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/21511934", + "osm_node_id": 21511934, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1135380570643158, + 51.48905010436718 + ], + [ + -0.113561569039632, + 51.48906129462581 + ], + [ + -0.11349248022666053, + 51.4891175723727 + ], + [ + -0.1134807271274515, + 51.48911197769305 + ], + [ + -0.11347528240098087, + 51.48913000189649 + ], + [ + -0.1134468947236581, + 51.48912667800387 + ], + [ + -0.11341399962158336, + 51.489044106791454 + ], + [ + -0.1134625169003777, + 51.48903441839989 + ], + [ + -0.11354010064202297, + 51.489042038351776 + ], + [ + -0.1135380570643158, + 51.48905010436718 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25502648", + "osm_node_id": 25502648, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11461645085404161, + 51.489306866978346 + ], + [ + -0.11456515488725535, + 51.489370093783215 + ], + [ + -0.11449418569394845, + 51.48934747674438 + ], + [ + -0.11454653016774202, + 51.48928458358782 + ], + [ + -0.11461645085404161, + 51.489306866978346 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25502650", + "osm_node_id": 25502650, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11501384223094721, + 51.48942343164781 + ], + [ + -0.11495416254077583, + 51.489499746279876 + ], + [ + -0.11475648286427848, + 51.489743290662204 + ], + [ + -0.11472425932660929, + 51.48973314811324 + ], + [ + -0.11467369991433234, + 51.48971692255299 + ], + [ + -0.11487902531548103, + 51.48946884019387 + ], + [ + -0.11483520465485184, + 51.489455053593794 + ], + [ + -0.11488650351008711, + 51.489391827688245 + ], + [ + -0.11489327836734806, + 51.48938382732332 + ], + [ + -0.11501384223094721, + 51.48942343164781 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25502651", + "osm_node_id": 25502651, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11690090788177021, + 51.489963868169596 + ], + [ + -0.11688814815806516, + 51.48998443655384 + ], + [ + -0.11678203231664432, + 51.48995891020964 + ], + [ + -0.11677850263189785, + 51.48998140224277 + ], + [ + -0.1168200125332822, + 51.48990055143257 + ], + [ + -0.11692503509673532, + 51.48992777299799 + ], + [ + -0.11690090788177021, + 51.489963868169596 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25502684", + "osm_node_id": 25502684, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11644103790755791, + 51.49067777663286 + ], + [ + -0.11636139181328663, + 51.490751465245864 + ], + [ + -0.11630658493667276, + 51.49071839719075 + ], + [ + -0.11636772473784199, + 51.49065865885435 + ], + [ + -0.11637408943533699, + 51.49065220262461 + ], + [ + -0.11644103790755791, + 51.49067777663286 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25502865", + "osm_node_id": 25502865, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1145321081416052, + 51.48996531248008 + ], + [ + -0.11447624264841232, + 51.49002702033077 + ], + [ + -0.11441072684692319, + 51.49000251111929 + ], + [ + -0.114472051508832, + 51.48994284832591 + ], + [ + -0.11448307671887892, + 51.48994724241123 + ], + [ + -0.11453363613115586, + 51.489963467971485 + ], + [ + -0.1145321081416052, + 51.48996531248008 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25502890", + "osm_node_id": 25502890, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11310507132969261, + 51.48951107503403 + ], + [ + -0.11307398872940053, + 51.48957921663143 + ], + [ + -0.11300997058874697, + 51.48957839285284 + ], + [ + -0.11298640373289873, + 51.4895679930979 + ], + [ + -0.11300455763521594, + 51.489498063649165 + ], + [ + -0.11310507132969261, + 51.48951107503403 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25502896", + "osm_node_id": 25502896, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11227811125339707, + 51.488937335734185 + ], + [ + -0.11226706293575771, + 51.488985758806244 + ], + [ + -0.11218204143779315, + 51.48897788614499 + ], + [ + -0.11219412382019456, + 51.48892956019966 + ], + [ + -0.112194584527819, + 51.488927964803146 + ], + [ + -0.11227811125339707, + 51.488937335734185 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25503378", + "osm_node_id": 25503378, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1113493131287327, + 51.488870960404405 + ], + [ + -0.11134454141089212, + 51.48891977917797 + ], + [ + -0.11133419065369979, + 51.48891938797307 + ], + [ + -0.11115000003429416, + 51.48891912177388 + ], + [ + -0.11113629578774778, + 51.4888677831012 + ], + [ + -0.11134933912477421, + 51.48887005838484 + ], + [ + -0.1113493131287327, + 51.488870960404405 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/25503653", + "osm_node_id": 25503653, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11540910193244948, + 51.48892317231835 + ], + [ + -0.11534591999779763, + 51.48899838618079 + ], + [ + -0.11534220545231155, + 51.48899717569392 + ], + [ + -0.11527273391984019, + 51.48897436080433 + ], + [ + -0.11534169997372676, + 51.48889806415869 + ], + [ + -0.11540910193244948, + 51.48892317231835 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25504033", + "osm_node_id": 25504033, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11565850217774429, + 51.49124335368989 + ], + [ + -0.11556749870178466, + 51.49120084635529 + ], + [ + -0.11565415939458853, + 51.49112890422483 + ], + [ + -0.11574516287054817, + 51.49117141155943 + ], + [ + -0.11565850217774429, + 51.49124335368989 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25504973", + "osm_node_id": 25504973, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11497422426369455, + 51.490986370744935 + ], + [ + -0.11490637459536815, + 51.49104322945358 + ], + [ + -0.11479045391362658, + 51.490989589416934 + ], + [ + -0.11485830358195298, + 51.49093273070829 + ], + [ + -0.11497422426369455, + 51.490986370744935 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25504987", + "osm_node_id": 25504987, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11109370560641646, + 51.488749500727494 + ], + [ + -0.11107185160085845, + 51.48876260744044 + ], + [ + -0.11099293628419835, + 51.488711585328964 + ], + [ + -0.11105845786258559, + 51.488679547896396 + ], + [ + -0.11111934059178882, + 51.48873938695681 + ], + [ + -0.11109370560641646, + 51.488749500727494 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/102715106", + "osm_node_id": 102715106, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11105723027173678, + 51.48877137672533 + ], + [ + -0.11101401040851122, + 51.48880739995122 + ], + [ + -0.11100707379810312, + 51.48880417228601 + ], + [ + -0.1110050100012526, + 51.488805701132726 + ], + [ + -0.11091792615066201, + 51.48876012171555 + ], + [ + -0.11097831495507665, + 51.48872035551318 + ], + [ + -0.11105723027173678, + 51.48877137672533 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/264803343", + "osm_node_id": 264803343, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11134561591394096, + 51.489025670698716 + ], + [ + -0.11113304050566161, + 51.48901658934923 + ], + [ + -0.11113493388401785, + 51.48899939701826 + ], + [ + -0.1111375594842098, + 51.488981484330694 + ], + [ + -0.11114976462569609, + 51.48898217860697 + ], + [ + -0.11114978773328854, + 51.488976083904504 + ], + [ + -0.11133397835269418, + 51.4889763501037 + ], + [ + -0.11134561591394096, + 51.489025670698716 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/266138052", + "osm_node_id": 266138052, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11081490239395567, + 51.488946540290726 + ], + [ + -0.11079562632918016, + 51.48895993568591 + ], + [ + -0.11074058982086636, + 51.488891499111034 + ], + [ + -0.11082767367145695, + 51.4889370785282 + ], + [ + -0.11081490239395567, + 51.488946540290726 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/266138058", + "osm_node_id": 266138058, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1128979204287405, + 51.48811028452014 + ], + [ + -0.11291863494114589, + 51.48813265514486 + ], + [ + -0.1128505946351818, + 51.488157086115365 + ], + [ + -0.11284877635650101, + 51.48815770125133 + ], + [ + -0.11280823119710136, + 51.48811126927729 + ], + [ + -0.11287632205092395, + 51.48808689136676 + ], + [ + -0.1128979204287405, + 51.48811028452014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/730856463", + "osm_node_id": 730856463, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11256135545628153, + 51.487843889275354 + ], + [ + -0.11262944486587959, + 51.4878195104655 + ], + [ + -0.11270143079325423, + 51.487897474453376 + ], + [ + -0.11263334138365617, + 51.48792185326323 + ], + [ + -0.11256135545628153, + 51.487843889275354 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/730856502", + "osm_node_id": 730856502, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11318235611686056, + 51.48762428033732 + ], + [ + -0.11325064482944348, + 51.4876001191633 + ], + [ + -0.11332199096535223, + 51.48767831157886 + ], + [ + -0.11325370225276932, + 51.48770247275288 + ], + [ + -0.11318235611686056, + 51.48762428033732 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/730856505", + "osm_node_id": 730856505, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11718749257598798, + 51.48952213129374 + ], + [ + -0.11708168579861614, + 51.48949611391994 + ], + [ + -0.11707800158184516, + 51.48949511387433 + ], + [ + -0.11710935280789941, + 51.48945027010222 + ], + [ + -0.1172164030625899, + 51.489474236123456 + ], + [ + -0.11718749257598798, + 51.48952213129374 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/730856862", + "osm_node_id": 730856862, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11381196579985113, + 51.49079515878565 + ], + [ + -0.1137654328855583, + 51.49077384126652 + ], + [ + -0.11385101907531334, + 51.49070140181121 + ], + [ + -0.11389755198960616, + 51.49072271933034 + ], + [ + -0.11381196579985113, + 51.49079515878565 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/844790970", + "osm_node_id": 844790970, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11253238575647395, + 51.489763635115374 + ], + [ + -0.11254292281863039, + 51.48976888265689 + ], + [ + -0.11247186986030083, + 51.4898242035256 + ], + [ + -0.11244599946633041, + 51.48981131984441 + ], + [ + -0.11241811437914338, + 51.48980019433693 + ], + [ + -0.11247948236778804, + 51.48974054773134 + ], + [ + -0.11250949046503125, + 51.489752520399755 + ], + [ + -0.11253393829784158, + 51.489762098174765 + ], + [ + -0.11253238575647395, + 51.489763635115374 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126025785", + "osm_node_id": 1126025785, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11427629987207955, + 51.49040971674379 + ], + [ + -0.11424209485835793, + 51.49043870727479 + ], + [ + -0.11423626019126472, + 51.49043603808829 + ], + [ + -0.1142319708444165, + 51.49043966864958 + ], + [ + -0.11418543793012367, + 51.490418351130444 + ], + [ + -0.11418934455747197, + 51.49041504432493 + ], + [ + -0.11418395182308433, + 51.49041268270642 + ], + [ + -0.11421717765257598, + 51.49038325510513 + ], + [ + -0.11427629987207955, + 51.49040971674379 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126026083", + "osm_node_id": 1126026083, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1145435550652143, + 51.490434943613906 + ], + [ + -0.11452455484732366, + 51.490453639610585 + ], + [ + -0.11442843015118766, + 51.49041575658764 + ], + [ + -0.11443469375296568, + 51.49040959353673 + ], + [ + -0.11443148035339085, + 51.490408088971705 + ], + [ + -0.1144661966225954, + 51.49037933586161 + ], + [ + -0.11446822575805726, + 51.490377423004574 + ], + [ + -0.11456316041318218, + 51.49041645176323 + ], + [ + -0.1145435550652143, + 51.490434943613906 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126026088", + "osm_node_id": 1126026088, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11163167491043052, + 51.48907943664039 + ], + [ + -0.11163250100686056, + 51.48906145740302 + ], + [ + -0.1117861997138061, + 51.48906420033389 + ], + [ + -0.11178537361737606, + 51.489082179571255 + ], + [ + -0.11163167491043052, + 51.48907943664039 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222387", + "osm_node_id": 1126222387, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11167296095701307, + 51.489147620505896 + ], + [ + -0.11165282991131698, + 51.4891300477619 + ], + [ + -0.11176332319728224, + 51.48912772391489 + ], + [ + -0.11176429949306319, + 51.48914569955497 + ], + [ + -0.11167296095701307, + 51.489147620505896 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222388", + "osm_node_id": 1126222388, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1120295168853889, + 51.489068134865875 + ], + [ + -0.11202878321932866, + 51.489086115901884 + ], + [ + -0.11184296640310448, + 51.489083181415516 + ], + [ + -0.11184370006916469, + 51.48906520037951 + ], + [ + -0.1120295168853889, + 51.489068134865875 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222425", + "osm_node_id": 1126222425, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11221437184807741, + 51.489159834192506 + ], + [ + -0.11218859966137487, + 51.489175399650705 + ], + [ + -0.11204613268858377, + 51.48916065077651 + ], + [ + -0.11205086974503567, + 51.48914290716141 + ], + [ + -0.11221437184807741, + 51.489159834192506 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222438", + "osm_node_id": 1126222438, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11204121510406587, + 51.489141908015114 + ], + [ + -0.1120364751591649, + 51.48915964983158 + ], + [ + -0.11199950012279851, + 51.48914390001245 + ], + [ + -0.11196345805547722, + 51.48914522741113 + ], + [ + -0.11196175387053417, + 51.48912727155612 + ], + [ + -0.11198664652449913, + 51.48912635514742 + ], + [ + -0.11200407109342969, + 51.48911524942502 + ], + [ + -0.11202473216952755, + 51.489127818343654 + ], + [ + -0.11204121510406587, + 51.489141908015114 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222441", + "osm_node_id": 1126222441, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11187781842941466, + 51.48910760968805 + ], + [ + -0.11190393289733033, + 51.489116493186785 + ], + [ + -0.11189008567255568, + 51.48913227807945 + ], + [ + -0.1118583993864109, + 51.489121499710116 + ], + [ + -0.11183019945827677, + 51.48913554081821 + ], + [ + -0.1118121610939218, + 51.489121491616224 + ], + [ + -0.11183809647799597, + 51.48909827742784 + ], + [ + -0.11186672967348853, + 51.4890959104134 + ], + [ + -0.11187781842941466, + 51.48910760968805 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222447", + "osm_node_id": 1126222447, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11186438569707954, + 51.489084919804164 + ], + [ + -0.111835752501587, + 51.4890872868186 + ], + [ + -0.111834849861257, + 51.489083052812525 + ], + [ + -0.11183026589260506, + 51.4890829808668 + ], + [ + -0.1117940808470555, + 51.489082335153896 + ], + [ + -0.11179490983193459, + 51.489064355916526 + ], + [ + -0.1118309995586653, + 51.48906499983079 + ], + [ + -0.11183558352731723, + 51.489065071776515 + ], + [ + -0.1118467199426528, + 51.48904475969893 + ], + [ + -0.11187272176105528, + 51.4890525909914 + ], + [ + -0.11186077224731043, + 51.489067976585275 + ], + [ + -0.11186438569707954, + 51.489084919804164 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222450", + "osm_node_id": 1126222450, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11199601232056333, + 51.4890091843352 + ], + [ + -0.1119858825297238, + 51.48902602862871 + ], + [ + -0.11195915715483278, + 51.48901979633004 + ], + [ + -0.11193096155937224, + 51.48902252667041 + ], + [ + -0.1119265220131731, + 51.48900475427701 + ], + [ + -0.11196220013591332, + 51.48900129998276 + ], + [ + -0.11196786582873675, + 51.48897909573253 + ], + [ + -0.1119963921516142, + 51.488981917803706 + ], + [ + -0.11199601232056333, + 51.4890091843352 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222455", + "osm_node_id": 1126222455, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11233500359022938, + 51.48894330722958 + ], + [ + -0.11232082130536422, + 51.488991411941804 + ], + [ + -0.11231273364800731, + 51.4889904874392 + ], + [ + -0.11225620092308247, + 51.48898308152585 + ], + [ + -0.11228610792460872, + 51.488987443235594 + ], + [ + -0.11229715335379903, + 51.488939020163535 + ], + [ + -0.11233500359022938, + 51.48894330722958 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222500", + "osm_node_id": 1126222500, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11361339936949358, + 51.48934155471166 + ], + [ + -0.11360866808993979, + 51.48935929832677 + ], + [ + -0.11346179623233821, + 51.489344113281604 + ], + [ + -0.113466527511892, + 51.48932636966649 + ], + [ + -0.11361339936949358, + 51.48934155471166 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222569", + "osm_node_id": 1126222569, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11321685430816139, + 51.48931932258246 + ], + [ + -0.11322146427285483, + 51.48930156637685 + ], + [ + -0.11337927179858259, + 51.48931745199354 + ], + [ + -0.11337466183388914, + 51.48933520819915 + ], + [ + -0.11321685430816139, + 51.48931932258246 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222573", + "osm_node_id": 1126222573, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11341750042183929, + 51.48932130019065 + ], + [ + -0.11345311788714932, + 51.48932498291259 + ], + [ + -0.11344838660759554, + 51.4893427265277 + ], + [ + -0.11341276914228549, + 51.489339043805764 + ], + [ + -0.11337725277269242, + 51.48933546810309 + ], + [ + -0.11338185407203868, + 51.489317711897485 + ], + [ + -0.1133957865060605, + 51.48929588086572 + ], + [ + -0.11342417418338327, + 51.48929920475834 + ], + [ + -0.11341750042183929, + 51.48932130019065 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1126222586", + "osm_node_id": 1126222586, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11202121692702635, + 51.488912795945765 + ], + [ + -0.11200913454462494, + 51.4889611218911 + ], + [ + -0.11200185276455465, + 51.488960518446305 + ], + [ + -0.11197332644167718, + 51.48895769637514 + ], + [ + -0.11193976699631958, + 51.488955666606294 + ], + [ + -0.1119473607288879, + 51.48890698632825 + ], + [ + -0.11202121692702635, + 51.488912795945765 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1240373509", + "osm_node_id": 1240373509, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11717654390984106, + 51.489333905981475 + ], + [ + -0.117283592720307, + 51.48935787290203 + ], + [ + -0.11725552421660493, + 51.48940648303299 + ], + [ + -0.11714847540613899, + 51.489382516112435 + ], + [ + -0.11717654390984106, + 51.489333905981475 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1691695883", + "osm_node_id": 1691695883, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11636181352684881, + 51.49065631432295 + ], + [ + -0.11630067950257769, + 51.490716052659344 + ], + [ + -0.11631020560756453, + 51.49072578781563 + ], + [ + -0.11621869954146914, + 51.49068370316218 + ], + [ + -0.11627944506934221, + 51.49062381014247 + ], + [ + -0.11636181352684881, + 51.49065631432295 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2246184959", + "osm_node_id": 2246184959, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11756397158172785, + 51.49043030401379 + ], + [ + -0.11755210005610753, + 51.49044670044515 + ], + [ + -0.11742043877123506, + 51.490409739226834 + ], + [ + -0.11743231029685539, + 51.49039334279548 + ], + [ + -0.11756397158172785, + 51.49043030401379 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2555516144", + "osm_node_id": 2555516144, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1149717734146705, + 51.48869902810151 + ], + [ + -0.1150220266513475, + 51.48871677171662 + ], + [ + -0.1149507902765029, + 51.48879500280301 + ], + [ + -0.11490053703982589, + 51.4887772591879 + ], + [ + -0.1149717734146705, + 51.48869902810151 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3218009836", + "osm_node_id": 3218009836, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11454053808017527, + 51.489014852759226 + ], + [ + -0.11454459923954805, + 51.48901963085487 + ], + [ + -0.11447518114338422, + 51.48904251139494 + ], + [ + -0.11445855667484217, + 51.48902295294885 + ], + [ + -0.11444101945639841, + 51.48900373264768 + ], + [ + -0.11450930816898133, + 51.48897957147366 + ], + [ + -0.11451272375999011, + 51.488983314450145 + ], + [ + -0.11454053808017527, + 51.489014852759226 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3218009838", + "osm_node_id": 3218009838, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11735011225784309, + 51.49025968561975 + ], + [ + -0.1173527003081973, + 51.49027760010596 + ], + [ + -0.11720535041227696, + 51.49027234177258 + ], + [ + -0.11721492850934678, + 51.49025537337269 + ], + [ + -0.11735011225784309, + 51.49025968561975 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4462219991", + "osm_node_id": 4462219991, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11541652380229897, + 51.48891544534719 + ], + [ + -0.11534912039935172, + 51.48889033808685 + ], + [ + -0.11533899927385935, + 51.488910953235816 + ], + [ + -0.1153602524820137, + 51.48887750386834 + ], + [ + -0.11536199277256998, + 51.488877932844744 + ], + [ + -0.11536992445367786, + 51.488870325483354 + ], + [ + -0.11543579842284993, + 51.48889695979177 + ], + [ + -0.11541652380229897, + 51.48891544534719 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4673133618", + "osm_node_id": 4673133618, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11494438802917017, + 51.48904077840222 + ], + [ + -0.11489261257984065, + 51.48902482083981 + ], + [ + -0.11495667549145458, + 51.488944220041006 + ], + [ + -0.11500845094078412, + 51.488960177603424 + ], + [ + -0.11494438802917017, + 51.48904077840222 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4673133620", + "osm_node_id": 4673133620, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11139334897881659, + 51.4888734713103 + ], + [ + -0.11138575380202372, + 51.48892215158834 + ], + [ + -0.1113499009281156, + 51.48891998242465 + ], + [ + -0.11135467409018071, + 51.48887116365108 + ], + [ + -0.11132159412736639, + 51.48886842521682 + ], + [ + -0.11139334897881659, + 51.4888734713103 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4839044022", + "osm_node_id": 4839044022, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1113958604852708, + 51.488859620858385 + ], + [ + -0.11132410563382063, + 51.48885457566423 + ], + [ + -0.11132766420305767, + 51.48880966354368 + ], + [ + -0.11134594664135788, + 51.48881022561968 + ], + [ + -0.11138198148755653, + 51.48881173378199 + ], + [ + -0.1113958604852708, + 51.488859620858385 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4839044023", + "osm_node_id": 4839044023, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11128174363996474, + 51.48880825160877 + ], + [ + -0.11127818218227864, + 51.488853163729324 + ], + [ + -0.1113498027208477, + 51.488853216789295 + ], + [ + -0.11113675938382128, + 51.4888509433043 + ], + [ + -0.11113152551413173, + 51.48884834966081 + ], + [ + -0.111135404701214, + 51.48880344833212 + ], + [ + -0.11134827039862347, + 51.48879758745328 + ], + [ + -0.11128174363996474, + 51.48880825160877 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4839044024", + "osm_node_id": 4839044024, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11236200481200526, + 51.48956402529101 + ], + [ + -0.11224825191128024, + 51.48956482029131 + ], + [ + -0.11224820136342176, + 51.48956201170996 + ], + [ + -0.11225838314634431, + 51.489491458132036 + ], + [ + -0.11230625774522367, + 51.489494137211075 + ], + [ + -0.1123588058546757, + 51.48949321630576 + ], + [ + -0.11236200481200526, + 51.48956402529101 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4849780710", + "osm_node_id": 4849780710, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11647963480806925, + 51.4906157414291 + ], + [ + -0.11643329253141413, + 51.49059520452112 + ], + [ + -0.11642432389709512, + 51.490573425650005 + ], + [ + -0.11642091697143353, + 51.4905393503547 + ], + [ + -0.1165489965794765, + 51.490568400240925 + ], + [ + -0.11647963480806925, + 51.4906157414291 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4957735651", + "osm_node_id": 4957735651, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1166785825137022, + 51.49034684876824 + ], + [ + -0.11655050290565923, + 51.490317800680664 + ], + [ + -0.11658642510234468, + 51.49027766215915 + ], + [ + -0.11669286156161074, + 51.490302665098184 + ], + [ + -0.1166785825137022, + 51.49034684876824 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4957735652", + "osm_node_id": 4957735652, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11657455646517341, + 51.48985168589428 + ], + [ + -0.11657724561124458, + 51.48985222099063 + ], + [ + -0.11653573570986021, + 51.489933071800834 + ], + [ + -0.11647443993244197, + 51.48990072410231 + ], + [ + -0.11650221237011579, + 51.48985497561268 + ], + [ + -0.11650939305446911, + 51.48985666543796 + ], + [ + -0.1165207619899537, + 51.489838576483365 + ], + [ + -0.11657455646517341, + 51.48985168589428 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4967069559", + "osm_node_id": 4967069559, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11646670755431895, + 51.48792581297622 + ], + [ + -0.11652289366535706, + 51.4879599871969 + ], + [ + -0.11642197992068615, + 51.48802432196598 + ], + [ + -0.11636579380964804, + 51.48799014774529 + ], + [ + -0.11646670755431895, + 51.48792581297622 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4967082877", + "osm_node_id": 4967082877, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11582349183204989, + 51.489078443789346 + ], + [ + -0.11578710315084188, + 51.489121787493026 + ], + [ + -0.11570971726795695, + 51.489116885291004 + ], + [ + -0.1157728992026088, + 51.489041671428566 + ], + [ + -0.11582349183204989, + 51.489078443789346 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4967088337", + "osm_node_id": 4967088337, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11512449871428415, + 51.48947722816641 + ], + [ + -0.11508994997512484, + 51.4895211510332 + ], + [ + -0.11501238356417391, + 51.48951751507599 + ], + [ + -0.11507237376261883, + 51.489441295772004 + ], + [ + -0.11512449871428415, + 51.48947722816641 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4967088341", + "osm_node_id": 4967088341, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11229021529916641, + 51.490132659142155 + ], + [ + -0.11229861490902138, + 51.490135277067324 + ], + [ + -0.11228568909949559, + 51.49015136233341 + ], + [ + -0.11227940239012511, + 51.490149402711644 + ], + [ + -0.11226817932131787, + 51.49016858254334 + ], + [ + -0.1122410394539873, + 51.49016242398905 + ], + [ + -0.11225340057172264, + 51.49014129982405 + ], + [ + -0.11226699216875584, + 51.49012047063655 + ], + [ + -0.11229375076081101, + 51.490127240729535 + ], + [ + -0.11229021529916641, + 51.490132659142155 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5021048663", + "osm_node_id": 5021048663, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11270596710249675, + 51.49031323932152 + ], + [ + -0.11261321900330727, + 51.490272223062135 + ], + [ + -0.11262903037344005, + 51.490258360019716 + ], + [ + -0.11264195618296582, + 51.49024227475363 + ], + [ + -0.11264577182416885, + 51.49024346455611 + ], + [ + -0.11265442995021432, + 51.49023571600123 + ], + [ + -0.11274781061974709, + 51.49027617288259 + ], + [ + -0.11270596710249675, + 51.49031323932152 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5021048664", + "osm_node_id": 5021048664, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.112451673824501, + 51.49053620812504 + ], + [ + -0.1123589257253115, + 51.49049519186565 + ], + [ + -0.11244254921393297, + 51.49042186927653 + ], + [ + -0.11253529731312245, + 51.490462885535926 + ], + [ + -0.112451673824501, + 51.49053620812504 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5021048671", + "osm_node_id": 5021048671, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1123417452303262, + 51.49000590965561 + ], + [ + -0.11236850382238135, + 51.49001267974859 + ], + [ + -0.11230729325421027, + 51.49010648708504 + ], + [ + -0.1122805346621551, + 51.490099716992056 + ], + [ + -0.1123417452303262, + 51.49000590965561 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5021048672", + "osm_node_id": 5021048672, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11264670046054037, + 51.48973160038077 + ], + [ + -0.11267153245707515, + 51.48974078964885 + ], + [ + -0.11255616346910328, + 51.48974009986918 + ], + [ + -0.11256229997912284, + 51.48972103515065 + ], + [ + -0.11264670046054037, + 51.48973160038077 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5023600724", + "osm_node_id": 5023600724, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1113603484483513, + 51.48877233540216 + ], + [ + -0.11132830688297263, + 51.48878269918424 + ], + [ + -0.11134762771870849, + 51.48878853218412 + ], + [ + -0.11113476057707448, + 51.488794390365 + ], + [ + -0.11113427965030667, + 51.48878762027202 + ], + [ + -0.11112897645783976, + 51.48878170543387 + ], + [ + -0.11131502434998844, + 51.48871703162056 + ], + [ + -0.1113603484483513, + 51.48877233540216 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5268321224", + "osm_node_id": 5268321224, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11094308598616465, + 51.488647755978626 + ], + [ + -0.11097491380631318, + 51.488603043507474 + ], + [ + -0.11110694625688934, + 51.488639486716544 + ], + [ + -0.11107511843674081, + 51.488684199187695 + ], + [ + -0.11094308598616465, + 51.488647755978626 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5268325548", + "osm_node_id": 5268325548, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11319415976392808, + 51.489023534809924 + ], + [ + -0.11316856521684249, + 51.48910690731788 + ], + [ + -0.11310328482395143, + 51.489080983473535 + ], + [ + -0.11311749310485811, + 51.4890328823586 + ], + [ + -0.11319415976392808, + 51.489023534809924 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5739257306", + "osm_node_id": 5739257306, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11509393459059766, + 51.489328887766966 + ], + [ + -0.11497337072699851, + 51.48928928344248 + ], + [ + -0.11503260559601526, + 51.489257906111966 + ], + [ + -0.11510207857271115, + 51.489280720102236 + ], + [ + -0.11509393459059766, + 51.489328887766966 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5739261533", + "osm_node_id": 5739261533, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1145663160437759, + 51.48997757832734 + ], + [ + -0.1145885975397942, + 51.4899860130646 + ], + [ + -0.11452950853745476, + 51.49004654460264 + ], + [ + -0.11449947011149646, + 51.490035174479694 + ], + [ + -0.11447912243212119, + 51.49002803116825 + ], + [ + -0.11453499659066124, + 51.489966326914846 + ], + [ + -0.11456721723988139, + 51.48997646766517 + ], + [ + -0.1145663160437759, + 51.48997757832734 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5739261534", + "osm_node_id": 5739261534, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11121600976057187, + 51.488392890036714 + ], + [ + -0.1113909891159378, + 51.48842871001592 + ], + [ + -0.11134588598392771, + 51.488514143768974 + ], + [ + -0.1111709066285618, + 51.48847832378977 + ], + [ + -0.11121600976057187, + 51.488392890036714 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6022905014", + "osm_node_id": 6022905014, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11126703565737137, + 51.48866350040182 + ], + [ + -0.11127142465571202, + 51.48866839540928 + ], + [ + -0.1110853738751143, + 51.48873306742395 + ], + [ + -0.11116074217633358, + 51.48872305257865 + ], + [ + -0.11109985944713036, + 51.48866321351824 + ], + [ + -0.11111187828365254, + 51.488694345333954 + ], + [ + -0.11114370610380106, + 51.488649632862796 + ], + [ + -0.11109205630200546, + 51.488627681321944 + ], + [ + -0.11126703565737137, + 51.48866350040182 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6022905020", + "osm_node_id": 6022905020, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11255580385719582, + 51.48896854938817 + ], + [ + -0.11259131444989079, + 51.48897261612043 + ], + [ + -0.11257710616898411, + 51.48902071723536 + ], + [ + -0.11257105197976265, + 51.48902002475773 + ], + [ + -0.11251397622641528, + 51.489014470547545 + ], + [ + -0.1125142145234624, + 51.48901352086394 + ], + [ + -0.1125060965373904, + 51.489012592764055 + ], + [ + -0.11252027882225556, + 51.488964488051835 + ], + [ + -0.11255580385719582, + 51.48896854938817 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6029529895", + "osm_node_id": 6029529895, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1130483551882527, + 51.48924587948425 + ], + [ + -0.11303844491954143, + 51.48928131994974 + ], + [ + -0.11289616425171442, + 51.48926589208775 + ], + [ + -0.1129060745204257, + 51.489230451622255 + ], + [ + -0.1130483551882527, + 51.48924587948425 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6029529898", + "osm_node_id": 6029529898, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11561393629725863, + 51.48872611746665 + ], + [ + -0.11559427462453416, + 51.48874497444189 + ], + [ + -0.1155284006553621, + 51.48871834013348 + ], + [ + -0.1155316949315105, + 51.488715179917385 + ], + [ + -0.11556171169410087, + 51.48868444470249 + ], + [ + -0.11554799589375828, + 51.488699546110745 + ], + [ + -0.11561393629725863, + 51.48872611746665 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6847224398", + "osm_node_id": 6847224398, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11453340938790495, + 51.48842444093629 + ], + [ + -0.11458458981672895, + 51.48840775852067 + ], + [ + -0.11465156572921589, + 51.488487435716195 + ], + [ + -0.1146003853003919, + 51.488504118131814 + ], + [ + -0.11453340938790495, + 51.48842444093629 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6847224406", + "osm_node_id": 6847224406, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11647164969065382, + 51.490680918862516 + ], + [ + -0.11635237985223178, + 51.49063982346283 + ], + [ + -0.11639880300546047, + 51.49062538485459 + ], + [ + -0.11643014845461663, + 51.49061422607221 + ], + [ + -0.1164184372379189, + 51.490608202416155 + ], + [ + -0.11646477951457404, + 51.490628739324144 + ], + [ + -0.11647164969065382, + 51.490680918862516 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7330281376", + "osm_node_id": 7330281376, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11222920258975566, + 51.48942560350946 + ], + [ + -0.11217199685620075, + 51.48942059608681 + ], + [ + -0.11219209901740629, + 51.489331538967036 ], [ - -0.11479520107965019, - 51.490064236057094 + -0.11224930475096118, + 51.48933654638969 ], [ - -0.11484539799157059, - 51.49008324052108 + -0.11222920258975566, + 51.48942560350946 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/21511934", - "osm_node_id": 21511934, + "osm_link": "https://www.openstreetmap.org/node/7926785716", + "osm_node_id": 7926785716, "type": "intersection" }, "type": "Feature" @@ -3720,46 +10409,34 @@ "coordinates": [ [ [ - -0.1135380570643158, - 51.48905010436718 - ], - [ - -0.113561569039632, - 51.48906129462581 - ], - [ - -0.11349248022666053, - 51.4891175723727 - ], - [ - -0.11347893340058769, - 51.489120279330706 + -0.11644457481342702, + 51.49067418744036 ], [ - -0.11343730507279204, - 51.48903945370151 + -0.1163776263412061, + 51.490648612532794 ], [ - -0.1134625169003777, - 51.48903441839989 + -0.11635146565810554, + 51.49064085228673 ], [ - -0.11354010064202297, - 51.489042038351776 + -0.11647073549652759, + 51.490681947686426 ], [ - -0.1135380570643158, - 51.48905010436718 + -0.11644457481342702, + 51.49067418744036 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25502648", - "osm_node_id": 25502648, + "osm_link": "https://www.openstreetmap.org/node/8013569055", + "osm_node_id": 8013569055, "type": "intersection" }, "type": "Feature" @@ -3769,24 +10446,40 @@ "coordinates": [ [ [ - -0.11461645085404161, - 51.489306866978346 + -0.11279005274296716, + 51.489891910750664 ], [ - -0.11456515488725535, - 51.489370093783215 + -0.11279862132709192, + 51.48989617713232 ], [ - -0.11449418569394845, - 51.48934747674438 + -0.11272757992255858, + 51.48995150339696 ], [ - -0.11454653016774202, - 51.48928458358782 + -0.11269937999442445, + 51.48993746318819 ], [ - -0.11461645085404161, - 51.489306866978346 + -0.11267119595276012, + 51.48992345265703 + ], + [ + -0.11274217092296518, + 51.489868092218174 + ], + [ + -0.11274481818652503, + 51.48986940882499 + ], + [ + -0.11279225085269881, + 51.48988994213569 + ], + [ + -0.11279005274296716, + 51.489891910750664 ] ] ], @@ -3795,8 +10488,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25502650", - "osm_node_id": 25502650, + "osm_link": "https://www.openstreetmap.org/node/9130071195", + "osm_node_id": 9130071195, "type": "intersection" }, "type": "Feature" @@ -3806,44 +10499,36 @@ "coordinates": [ [ [ - -0.11501384223094721, - 51.48942343164781 - ], - [ - -0.11495416254077583, - 51.489499746279876 - ], - [ - -0.11475648286427848, - 51.489743290662204 + -0.11444301248624708, + 51.4905334957711 ], [ - -0.11472425932660929, - 51.48973314811324 + -0.11434743081853363, + 51.49049508394706 ], [ - -0.11467369991433234, - 51.48971692255299 + -0.1143531860532778, + 51.4904895306362 ], [ - -0.11487902531548103, - 51.48946884019387 + -0.11435013007417649, + 51.49048813309044 ], [ - -0.11483520465485184, - 51.489455053593794 + -0.11438433508789814, + 51.49045914255944 ], [ - -0.11488650351008711, - 51.489391827688245 + -0.11438604504973932, + 51.49045745992873 ], [ - -0.11489327836734806, - 51.48938382732332 + -0.1144821697458753, + 51.490495342951675 ], [ - -0.11501384223094721, - 51.48942343164781 + -0.11444301248624708, + 51.4905334957711 ] ] ], @@ -3852,8 +10537,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25502651", - "osm_node_id": 25502651, + "osm_link": "https://www.openstreetmap.org/node/9130071196", + "osm_node_id": 9130071196, "type": "intersection" }, "type": "Feature" @@ -3863,32 +10548,32 @@ "coordinates": [ [ [ - -0.11690090354909663, - 51.48996387356553 + -0.11303344790267447, + 51.49001302508808 ], [ - -0.11687546353403555, - 51.490005022025194 + -0.1129985251093624, + 51.490051765164516 ], [ - -0.11676930147742981, - 51.489979571224 + -0.11290512133223721, + 51.49001132806823 ], [ - -0.11681081137881419, - 51.48989871951448 + -0.11288327888047542, + 51.49002902311997 ], [ - -0.11682001108905768, - 51.48990055143257 + -0.11295432028500876, + 51.48997369685533 ], [ - -0.11692503509673532, - 51.48992777299799 + -0.11300237541195411, + 51.48998269906451 ], [ - -0.11690090354909663, - 51.48996387356553 + -0.11303344790267447, + 51.49001302508808 ] ] ], @@ -3897,8 +10582,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25502684", - "osm_node_id": 25502684, + "osm_link": "https://www.openstreetmap.org/node/9130071201", + "osm_node_id": 9130071201, "type": "intersection" }, "type": "Feature" @@ -3908,28 +10593,28 @@ "coordinates": [ [ [ - -0.11644103790755791, - 51.49067777663286 + -0.1127180870347359, + 51.48985611954975 ], [ - -0.11636139181328663, - 51.490751465245864 + -0.11264711206453085, + 51.48991147998861 ], [ - -0.11630658493667276, - 51.49071839719075 + -0.11261852075154963, + 51.489897240130446 ], [ - -0.11636772473784199, - 51.49065865885435 + -0.11268957370987918, + 51.489841919261735 ], [ - -0.11637408943533699, - 51.49065220262461 + -0.11271428005888004, + 51.48985124073009 ], [ - -0.11644103790755791, - 51.49067777663286 + -0.1127180870347359, + 51.48985611954975 ] ] ], @@ -3938,8 +10623,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25502865", - "osm_node_id": 25502865, + "osm_link": "https://www.openstreetmap.org/node/9136343947", + "osm_node_id": 9136343947, "type": "intersection" }, "type": "Feature" @@ -3949,42 +10634,34 @@ "coordinates": [ [ [ - -0.1145321081416052, - 51.48996531248008 - ], - [ - -0.11447624264841232, - 51.49002702033077 - ], - [ - -0.11441116589117971, - 51.490003085785794 + -0.11206514012759705, + 51.49051555880185 ], [ - -0.11447103188631522, - 51.489942851023876 + -0.11203800026026649, + 51.49050940024756 ], [ - -0.11448291929840534, - 51.489947432168094 + -0.1120874447312078, + 51.49042490268828 ], [ - -0.11453347871068228, - 51.489963657728346 + -0.11211458459853835, + 51.490431061242575 ], [ - -0.1145321081416052, - 51.48996531248008 + -0.11206514012759705, + 51.49051555880185 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25502890", - "osm_node_id": 25502890, + "osm_link": "https://www.openstreetmap.org/node/9136343964", + "osm_node_id": 9136343964, "type": "intersection" }, "type": "Feature" @@ -3994,28 +10671,40 @@ "coordinates": [ [ [ - -0.11227811125339707, - 51.488937335734185 + -0.11343259978927975, + 51.49070750011096 ], [ - -0.11226706293575771, - 51.488985758806244 + -0.11341233731915161, + 51.49072610887344 ], [ - -0.11218204143779315, - 51.48897788614499 + -0.11338842962631476, + 51.49071601488784 ], [ - -0.11219412382019456, - 51.48892956019966 + -0.113403621424125, + 51.49069408852798 ], [ - -0.112194584527819, - 51.488927964803146 + -0.1134208510227443, + 51.49067965261771 ], [ - -0.11227811125339707, - 51.488937335734185 + -0.11342620909574326, + 51.490682132047354 + ], + [ + -0.11343008972705004, + 51.49067874969882 + ], + [ + -0.11345359014856998, + 51.490689207010355 + ], + [ + -0.11343259978927975, + 51.49070750011096 ] ] ], @@ -4024,8 +10713,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25503378", - "osm_node_id": 25503378, + "osm_link": "https://www.openstreetmap.org/node/9136343969", + "osm_node_id": 9136343969, "type": "intersection" }, "type": "Feature" @@ -4035,32 +10724,40 @@ "coordinates": [ [ [ - -0.1113493131287327, - 51.488870960404405 + -0.11298057339847911, + 51.49047588972621 ], [ - -0.11134454141089212, - 51.48891977917797 + -0.11298680811576658, + 51.49047877564922 ], [ - -0.11133419065369979, - 51.48891938797307 + -0.11296957851714728, + 51.490493211559496 ], [ - -0.11115000003429416, - 51.48891912177388 + -0.11294167609926595, + 51.49050858456287 ], [ - -0.11113629578774778, - 51.4888677831012 + -0.11291870715237229, + 51.49049767759054 ], [ - -0.11134933912477421, - 51.48887005838484 + -0.11294060015199256, + 51.49047979997652 ], [ - -0.1113493131287327, - 51.488870960404405 + -0.11296157895748658, + 51.490461501479984 + ], + [ + -0.1129850880443537, + 51.490471951596945 + ], + [ + -0.11298057339847911, + 51.49047588972621 ] ] ], @@ -4068,9 +10765,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/25503653", - "osm_node_id": 25503653, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9136343970", + "osm_node_id": 9136343970, "type": "intersection" }, "type": "Feature" @@ -4080,28 +10777,36 @@ "coordinates": [ [ [ - -0.11540910193244948, - 51.48892317231835 + -0.11328753610078723, + 51.49021587876544 ], [ - -0.11534591999779763, - 51.48899838618079 + -0.11327047692066226, + 51.49023039381602 ], [ - -0.11534220545231155, - 51.48899717569392 + -0.11326492676580108, + 51.49022786402436 ], [ - -0.11527273391984019, - 51.48897436080433 + -0.11326093059653206, + 51.490231348895556 ], [ - -0.11534169997372676, - 51.48889806415869 + -0.11323742150966493, + 51.490220898778595 ], [ - -0.11540910193244948, - 51.48892317231835 + -0.11325840031515895, + 51.49020260028207 + ], + [ + -0.11327634624914415, + 51.490188506114 + ], + [ + -0.11328753610078723, + 51.49021587876544 ] ] ], @@ -4110,8 +10815,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25504033", - "osm_node_id": 25504033, + "osm_link": "https://www.openstreetmap.org/node/9136343971", + "osm_node_id": 9136343971, "type": "intersection" }, "type": "Feature" @@ -4121,34 +10826,46 @@ "coordinates": [ [ [ - -0.11565849640084618, - 51.4912433581865 + -0.11373220994451572, + 51.49044639287716 + ], + [ + -0.11370870952299578, + 51.49043593556563 + ], + [ + -0.11371309563288737, + 51.49043211254952 ], [ - -0.11556750447868278, - 51.491200841858685 + -0.11370700533805272, + 51.49042933634375 ], [ - -0.1156541839464055, - 51.491128908721436 + -0.11372406451817768, + 51.49041482129318 ], [ - -0.11574517586856892, - 51.49117142504925 + -0.11375320030380598, + 51.49042809977656 ], [ - -0.11565849640084618, - 51.4912433581865 + -0.11377600749755248, + 51.49043913625119 + ], + [ + -0.11373220994451572, + 51.49044639287716 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25504973", - "osm_node_id": 25504973, + "osm_link": "https://www.openstreetmap.org/node/9136343972", + "osm_node_id": 9136343972, "type": "intersection" }, "type": "Feature" @@ -4158,24 +10875,24 @@ "coordinates": [ [ [ - -0.11497422426369455, - 51.490986370744935 + -0.11260035385121167, + 51.49056042415768 ], [ - -0.11490637459536815, - 51.49104322945358 + -0.11262569999167842, + 51.490551799663564 ], [ - -0.11479045391362658, - 51.490989589416934 + -0.11270907507368105, + 51.49061648336942 ], [ - -0.11485830358195298, - 51.49093273070829 + -0.11269342834514448, + 51.49063160276411 ], [ - -0.11497422426369455, - 51.490986370744935 + -0.11260035385121167, + 51.49056042415768 ] ] ], @@ -4184,8 +10901,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25504987", - "osm_node_id": 25504987, + "osm_link": "https://www.openstreetmap.org/node/9136343973", + "osm_node_id": 9136343973, "type": "intersection" }, "type": "Feature" @@ -4195,28 +10912,32 @@ "coordinates": [ [ [ - -0.11109370560641646, - 51.488749500727494 + -0.11283274835268903, + 51.490603336187 ], [ - -0.11107185160085845, - 51.48876260744044 + -0.11281219848187983, + 51.49062182264174 ], [ - -0.11099293628419835, - 51.488711585328964 + -0.11278844965374105, + 51.490611586563325 ], [ - -0.11105845786258559, - 51.488679547896396 + -0.11280899952455026, + 51.49059310010858 ], [ - -0.11111934059178882, - 51.48873938695681 + -0.11282961005278966, + 51.49057463973416 ], [ - -0.11109370560641646, - 51.488749500727494 + -0.1128533271079888, + 51.490584906389515 + ], + [ + -0.11283274835268903, + 51.490603336187 ] ] ], @@ -4225,8 +10946,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/102715106", - "osm_node_id": 102715106, + "osm_link": "https://www.openstreetmap.org/node/9136343976", + "osm_node_id": 9136343976, "type": "intersection" }, "type": "Feature" @@ -4236,42 +10957,42 @@ "coordinates": [ [ [ - -0.11105723027173678, - 51.48877137672533 + -0.11290614384320305, + 51.49053760027487 ], [ - -0.11101401040851122, - 51.48880739995122 + -0.1128859059248919, + 51.49055572610166 ], [ - -0.11100707379810312, - 51.48880417228601 + -0.11286218886969274, + 51.49054545944631 ], [ - -0.1110050100012526, - 51.488805701132726 + -0.11288279939793211, + 51.49052699997121 ], [ - -0.11091792615066201, - 51.48876012171555 + -0.11290469239755238, + 51.49050912145786 ], [ - -0.11097831495507665, - 51.48872035551318 + -0.11292766134444601, + 51.49052002843019 ], [ - -0.11105723027173678, - 51.48877137672533 + -0.11290614384320305, + 51.49053760027487 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/264803343", - "osm_node_id": 264803343, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9136343977", + "osm_node_id": 9136343977, "type": "intersection" }, "type": "Feature" @@ -4281,46 +11002,34 @@ "coordinates": [ [ [ - -0.11134561591394096, - 51.489025670698716 - ], - [ - -0.11113304050566161, - 51.48901658934923 - ], - [ - -0.11113493388401785, - 51.48899939701826 - ], - [ - -0.1111375594842098, - 51.488981484330694 + -0.1132603456855982, + 51.49018060557377 ], [ - -0.11114976462569609, - 51.48898217860697 + -0.11324239975161302, + 51.490194699741835 ], [ - -0.11114978773328854, - 51.488976083904504 + -0.11321388642675631, + 51.490180906846504 ], [ - -0.11133397835269418, - 51.4889763501037 + -0.11323160706171512, + 51.490166702961204 ], [ - -0.11134561591394096, - 51.489025670698716 + -0.1132603456855982, + 51.49018060557377 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/266138052", - "osm_node_id": 266138052, + "osm_link": "https://www.openstreetmap.org/node/9136343978", + "osm_node_id": 9136343978, "type": "intersection" }, "type": "Feature" @@ -4330,24 +11039,28 @@ "coordinates": [ [ [ - -0.11081490239395567, - 51.488946540290726 + -0.11319953372339683, + 51.49015118876434 ], [ - -0.11079562632918016, - 51.48895993568591 + -0.11318181308843803, + 51.49016539264964 ], [ - -0.11074058982086636, - 51.488891499111034 + -0.11315329976358132, + 51.490151599754306 ], [ - -0.11082767367145695, - 51.4889370785282 + -0.11312366572049087, + 51.49013875564326 ], [ - -0.11081490239395567, - 51.488946540290726 + -0.11314016742994802, + 51.49012399417857 + ], + [ + -0.11319953372339683, + 51.49015118876434 ] ] ], @@ -4356,8 +11069,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/266138058", - "osm_node_id": 266138058, + "osm_link": "https://www.openstreetmap.org/node/9136343979", + "osm_node_id": 9136343979, "type": "intersection" }, "type": "Feature" @@ -4367,32 +11080,36 @@ "coordinates": [ [ [ - -0.1128979204287405, - 51.48811028452014 + -0.11299038545992249, + 51.49005907305181 ], [ - -0.11291863494114589, - 51.48813265514486 + -0.11297388375046531, + 51.4900738345165 ], [ - -0.1128505946351818, - 51.488157086115365 + -0.11295327033377689, + 51.49009228409906 ], [ - -0.11284877635650101, - 51.48815770125133 + -0.11285988966424412, + 51.490051827217705 ], [ - -0.11280823119710136, - 51.48811126927729 + -0.1128805103020552, + 51.49003337133989 ], [ - -0.11287632205092395, - 51.48808689136676 + -0.11290111216494741, + 51.49001491816004 ], [ - -0.1128979204287405, - 51.48811028452014 + -0.1129945101651745, + 51.490055360652256 + ], + [ + -0.11299038545992249, + 51.49005907305181 ] ] ], @@ -4401,8 +11118,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/730856463", - "osm_node_id": 730856463, + "osm_link": "https://www.openstreetmap.org/node/9136343980", + "osm_node_id": 9136343980, "type": "intersection" }, "type": "Feature" @@ -4412,34 +11129,34 @@ "coordinates": [ [ [ - -0.11256135545628153, - 51.487843889275354 + -0.11379110686499294, + 51.49042703677843 ], [ - -0.11262944486587959, - 51.4878195104655 + -0.11376829967124644, + 51.49041600030379 ], [ - -0.11270143079325423, - 51.487897474453376 + -0.1137878891327445, + 51.490397114550255 ], [ - -0.11263334138365617, - 51.48792185326323 + -0.11381215210481524, + 51.49040687398823 ], [ - -0.11256135545628153, - 51.487843889275354 + -0.11379110686499294, + 51.49042703677843 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/730856502", - "osm_node_id": 730856502, + "osm_link": "https://www.openstreetmap.org/node/9136343985", + "osm_node_id": 9136343985, "type": "intersection" }, "type": "Feature" @@ -4449,34 +11166,42 @@ "coordinates": [ [ [ - -0.11318235611686056, - 51.48762428033732 + -0.11384513241613713, + 51.490375077573844 ], [ - -0.11325064482944348, - 51.4876001191633 + -0.11382587368205598, + 51.49039364496753 ], [ - -0.11332199096535223, - 51.48767831157886 + -0.11380161070998523, + 51.49038388552957 ], [ - -0.11325370225276932, - 51.48770247275288 + -0.1138212001714833, + 51.490364999776034 ], [ - -0.11318235611686056, - 51.48762428033732 + -0.11384205332944339, + 51.49034664552156 + ], + [ + -0.1138656346275369, + 51.490357032686006 + ], + [ + -0.11384513241613713, + 51.490375077573844 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/730856505", - "osm_node_id": 730856505, + "osm_link": "https://www.openstreetmap.org/node/9136343986", + "osm_node_id": 9136343986, "type": "intersection" }, "type": "Feature" @@ -4486,28 +11211,40 @@ "coordinates": [ [ [ - -0.11718749113176347, - 51.489522133991706 + -0.11393895790682451, + 51.490261449189404 ], [ - -0.11708168435439162, - 51.48949611661791 + -0.11396834932019426, + 51.490274317582134 ], [ - -0.11707800591451874, - 51.48949511927026 + -0.11393512349070262, + 51.490303745183425 ], [ - -0.1171093513636749, - 51.489450273699504 + -0.11392914728960567, + 51.490301128157576 ], [ - -0.11721640161836536, - 51.48947423972074 + -0.11392492870975932, + 51.49030484145645 ], [ - -0.11718749113176347, - 51.489522133991706 + -0.1139013474116658, + 51.490294454292005 + ], + [ + -0.11387602437879149, + 51.49027759201206 + ], + [ + -0.11390972680237738, + 51.49024837485202 + ], + [ + -0.11393895790682451, + 51.490261449189404 ] ] ], @@ -4516,8 +11253,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/730856862", - "osm_node_id": 730856862, + "osm_link": "https://www.openstreetmap.org/node/9136343987", + "osm_node_id": 9136343987, "type": "intersection" }, "type": "Feature" @@ -4527,24 +11264,24 @@ "coordinates": [ [ [ - -0.11381196579985113, - 51.49079515878565 + -0.1134646413546584, + 51.49078119142193 ], [ - -0.1137654328855583, - 51.49077384126652 + -0.11344157997739499, + 51.490770361791256 ], [ - -0.11385101907531334, - 51.49070140181121 + -0.11352968056205329, + 51.490717754175805 ], [ - -0.11389755198960616, - 51.49072271933034 + -0.11353395113398265, + 51.49069797359728 ], [ - -0.11381196579985113, - 51.49079515878565 + -0.1134646413546584, + 51.49078119142193 ] ] ], @@ -4553,8 +11290,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/844790970", - "osm_node_id": 844790970, + "osm_link": "https://www.openstreetmap.org/node/9136343993", + "osm_node_id": 9136343993, "type": "intersection" }, "type": "Feature" @@ -4564,40 +11301,36 @@ "coordinates": [ [ [ - -0.11427629987207955, - 51.49040971674379 - ], - [ - -0.11424209485835793, - 51.49043870727479 + -0.11325076470007932, + 51.48953821476118 ], [ - -0.11423626019126472, - 51.49043603808829 + -0.11321345171517339, + 51.4896051332812 ], [ - -0.1142319708444165, - 51.49043966864958 + -0.1131794561140083, + 51.489597783125795 ], [ - -0.11418543793012367, - 51.490418351130444 + -0.11317890153178954, + 51.48959878407073 ], [ - -0.11418947164923043, - 51.490414936406346 + -0.11315159413441372, + 51.48959292049392 ], [ - -0.11418393304816547, - 51.49041247406381 + -0.11314774527604655, + 51.48959224150612 ], [ - -0.11421749971464573, - 51.490383197548546 + -0.11317878166115372, + 51.4895240909155 ], [ - -0.11427629987207955, - 51.49040971674379 + -0.11325076470007932, + 51.48953821476118 ] ] ], @@ -4606,8 +11339,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1126026083", - "osm_node_id": 1126026083, + "osm_link": "https://www.openstreetmap.org/node/9136343996", + "osm_node_id": 9136343996, "type": "intersection" }, "type": "Feature" @@ -4617,40 +11350,44 @@ "coordinates": [ [ [ - -0.1145435550652143, - 51.490434943613906 + -0.11315579971623932, + 51.489640500002324 ], [ - -0.11452455484732366, - 51.490453639610585 + -0.11318617464651265, + 51.48965265523303 ], [ - -0.11442843015118766, - 51.49041575658764 + -0.11317055969091569, + 51.48966778721822 ], [ - -0.11443469375296568, - 51.49040959353673 + -0.11314139502079684, + 51.489656116721854 ], [ - -0.11443148035339085, - 51.490408088971705 + -0.11311050594659154, + 51.489646291633406 ], [ - -0.1144661966225954, - 51.49037933586161 + -0.11312364550134747, + 51.489630272917125 ], [ - -0.11446822575805726, - 51.490377423004574 + -0.11312982100542929, + 51.489632237035494 ], [ - -0.11456316041318218, - 51.49041645176323 + -0.11314026274876687, + 51.489613381858895 ], [ - -0.1145435550652143, - 51.490434943613906 + -0.11316757014614269, + 51.489619245435705 + ], + [ + -0.11315579971623932, + 51.489640500002324 ] ] ], @@ -4659,8 +11396,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1126026088", - "osm_node_id": 1126026088, + "osm_link": "https://www.openstreetmap.org/node/9136343997", + "osm_node_id": 9136343997, "type": "intersection" }, "type": "Feature" @@ -4670,32 +11407,32 @@ "coordinates": [ [ [ - -0.11233500359022938, - 51.48894330722958 + -0.11310591764526602, + 51.48951122432141 ], [ - -0.11232082130536422, - 51.488991411941804 + -0.11314065268938944, + 51.48951735859403 ], [ - -0.11231273364800731, - 51.4889904874392 + -0.11310961919273134, + 51.48958550918464 ], [ - -0.11225620092308247, - 51.48898308152585 + -0.11308820423142985, + 51.48958172753733 ], [ - -0.11228610792460872, - 51.488987443235594 + -0.11305933996001283, + 51.48958105304613 ], [ - -0.11229715335379903, - 51.488939020163535 + -0.1130748581525664, + 51.48957937041542 ], [ - -0.11233500359022938, - 51.48894330722958 + -0.11310591764526602, + 51.48951122432141 ] ] ], @@ -4704,8 +11441,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1126222500", - "osm_node_id": 1126222500, + "osm_link": "https://www.openstreetmap.org/node/9136343998", + "osm_node_id": 9136343998, "type": "intersection" }, "type": "Feature" @@ -4715,65 +11452,36 @@ "coordinates": [ [ [ - -0.117176541021392, - 51.48933390867944 - ], - [ - -0.11728358983185794, - 51.4893578756 - ], - [ - -0.11725552421660493, - 51.48940648303299 + -0.11393526791315542, + 51.48973354741202 ], [ - -0.11714847540613899, - 51.489382516112435 + -0.11387660351282722, + 51.489794239029315 ], [ - -0.117176541021392, - 51.48933390867944 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1691695883", - "osm_node_id": 1691695883, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -0.11636181352684881, - 51.49065631432295 + -0.11386626430943111, + 51.489790364751876 ], [ - -0.11630067950257769, - 51.490716052659344 + -0.113864376707973, + 51.489791980832784 ], [ - -0.11631020560756453, - 51.49072578781563 + -0.11384101493200774, + 51.48978140301216 ], [ - -0.11621869954146914, - 51.49068370316218 + -0.11381770803657454, + 51.4897743712166 ], [ - -0.11627944506934221, - 51.49062381014247 + -0.11386730848376489, + 51.48971062190588 ], [ - -0.11636181352684881, - 51.49065631432295 + -0.11393526791315542, + 51.48973354741202 ] ] ], @@ -4782,8 +11490,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2246184959", - "osm_node_id": 2246184959, + "osm_link": "https://www.openstreetmap.org/node/9136344004", + "osm_node_id": 9136344004, "type": "intersection" }, "type": "Feature" @@ -4793,34 +11501,38 @@ "coordinates": [ [ [ - -0.1149717734146705, - 51.48869902810151 + -0.11393168768055045, + 51.489815351503125 ], [ - -0.1150220266513475, - 51.48871677171662 + -0.11390070617597536, + 51.48980327271475 ], [ - -0.1149507902765029, - 51.48879500280301 + -0.11387635366198387, + 51.4897936014103 ], [ - -0.11490053703982589, - 51.4887772591879 + -0.11395937057630356, + 51.48974258109747 ], [ - -0.1149717734146705, - 51.48869902810151 + -0.11399209959255756, + 51.48975532718246 + ], + [ + -0.11393168768055045, + 51.489815351503125 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3218009836", - "osm_node_id": 3218009836, + "osm_link": "https://www.openstreetmap.org/node/9136344005", + "osm_node_id": 9136344005, "type": "intersection" }, "type": "Feature" @@ -4830,36 +11542,40 @@ "coordinates": [ [ [ - -0.11454053808017527, - 51.489014852759226 + -0.11467135160524977, + 51.49001733733514 ], [ - -0.11454459923954805, - 51.48901963085487 + -0.11470220168539283, + 51.49002901862336 ], [ - -0.11447518114338422, - 51.48904251139494 + -0.11464309824080812, + 51.490089544765475 ], [ - -0.11445855667484217, - 51.48902295294885 + -0.11463381765399105, + 51.49008603021667 ], [ - -0.11444101945639841, - 51.48900373264768 + -0.11463273881826862, + 51.490086988893495 ], [ - -0.11450930816898133, - 51.48897957147366 + -0.1146090853089487, + 51.490076666480206 + ], + [ + -0.11458140241319559, + 51.490066187584965 ], [ - -0.11451272375999011, - 51.488983314450145 + -0.11464049141553503, + 51.49000565604692 ], [ - -0.11454053808017527, - 51.489014852759226 + -0.11467135160524977, + 51.49001733733514 ] ] ], @@ -4868,8 +11584,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3218009838", - "osm_node_id": 3218009838, + "osm_link": "https://www.openstreetmap.org/node/9136344008", + "osm_node_id": 9136344008, "type": "intersection" }, "type": "Feature" @@ -4879,36 +11595,44 @@ "coordinates": [ [ [ - -0.11541652380229897, - 51.48891544534719 + -0.11429183106265389, + 51.490081519219544 ], [ - -0.11534912039935172, - 51.48889033808685 + -0.11429767872776785, + 51.49008393749532 ], [ - -0.11533899927385935, - 51.488910953235816 + -0.11428169982758983, + 51.490098921991766 ], [ - -0.1153602524820137, - 51.48887750386834 + -0.11425162096334474, + 51.49008648437408 ], [ - -0.11536199277256998, - 51.488877932844744 + -0.11422154209909965, + 51.49007404405843 ], [ - -0.11536992445367786, - 51.488870325483354 + -0.11423752388772673, + 51.490059061360625 ], [ - -0.11543579842284993, - 51.48889695979177 + -0.11426759986352276, + 51.49007149987764 ], [ - -0.11541652380229897, - 51.48891544534719 + -0.11429097030483519, + 51.49005436150596 + ], + [ + -0.1143129889519894, + 51.490066004123356 + ], + [ + -0.11429183106265389, + 51.490081519219544 ] ] ], @@ -4917,8 +11641,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4673133618", - "osm_node_id": 4673133618, + "osm_link": "https://www.openstreetmap.org/node/9136344009", + "osm_node_id": 9136344009, "type": "intersection" }, "type": "Feature" @@ -4928,34 +11652,42 @@ "coordinates": [ [ [ - -0.11494438802917017, - 51.48904077840222 + -0.11446482749774284, + 51.48993996779884 ], [ - -0.11489261257984065, - 51.48902482083981 + -0.11440349417048686, + 51.489999628793576 ], [ - -0.11495667549145458, - 51.488944220041006 + -0.11440091622970434, + 51.4900015245635 ], [ - -0.11500845094078412, - 51.488960177603424 + -0.11437889758255014, + 51.48998988194611 ], [ - -0.11494438802917017, - 51.48904077840222 + -0.11435529895376229, + 51.489980672892955 + ], + [ + -0.11441571086576938, + 51.489920648572294 + ], + [ + -0.11446482749774284, + 51.48993996779884 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4673133620", - "osm_node_id": 4673133620, + "osm_link": "https://www.openstreetmap.org/node/9136344010", + "osm_node_id": 9136344010, "type": "intersection" }, "type": "Feature" @@ -4965,28 +11697,44 @@ "coordinates": [ [ [ - -0.11139334897881659, - 51.4888734713103 + -0.11334753929725291, + 51.48969959532378 ], [ - -0.11138575380202372, - 51.48892215158834 + -0.11335854428815642, + 51.48970465130979 ], [ - -0.1113499009281156, - 51.48891998242465 + -0.11334139845455976, + 51.48971912499157 ], [ - -0.11135467409018071, - 51.48887116365108 + -0.11331665744417026, + 51.48971135035637 ], [ - -0.11132159412736639, - 51.48886842521682 + -0.11328094177159231, + 51.48970870814952 ], [ - -0.11139334897881659, - 51.4888734713103 + -0.11328434725302938, + 51.489690847622605 + ], + [ + -0.11332020012693748, + 51.489693499721994 + ], + [ + -0.11333582230365707, + 51.48967322991252 + ], + [ + -0.1133618616718973, + 51.48968101264162 + ], + [ + -0.11334753929725291, + 51.48969959532378 ] ] ], @@ -4995,8 +11743,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4839044022", - "osm_node_id": 4839044022, + "osm_link": "https://www.openstreetmap.org/node/9136360630", + "osm_node_id": 9136360630, "type": "intersection" }, "type": "Feature" @@ -5006,28 +11754,32 @@ "coordinates": [ [ [ - -0.1113958604852708, - 51.488859620858385 + -0.11344539273014895, + 51.48958332922909 ], [ - -0.11132410563382063, - 51.48885457566423 + -0.11339579228295862, + 51.489647078539804 ], [ - -0.11132766420305767, - 51.48880966354368 + -0.1133894824659957, + 51.489645174675985 ], [ - -0.11134594664135788, - 51.48881022561968 + -0.11336332900401777, + 51.48963753763699 ], [ - -0.11138198148755653, - 51.48881173378199 + -0.11333533559999115, + 51.489631485202636 ], [ - -0.1113958604852708, - 51.488859620858385 + -0.1133726485848971, + 51.48956456668261 + ], + [ + -0.11344539273014895, + 51.48958332922909 ] ] ], @@ -5036,8 +11788,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4839044023", - "osm_node_id": 4839044023, + "osm_link": "https://www.openstreetmap.org/node/9136360631", + "osm_node_id": 9136360631, "type": "intersection" }, "type": "Feature" @@ -5047,36 +11799,36 @@ "coordinates": [ [ [ - -0.11128174363996474, - 51.48880825160877 + -0.11591520153380372, + 51.491030254041576 ], [ - -0.11127818218227864, - 51.488853163729324 + -0.11589353672165889, + 51.4910482395742 ], [ - -0.1113498027208477, - 51.488853216789295 + -0.11580253324569925, + 51.4910057322396 ], [ - -0.11113675938382128, - 51.4888509433043 + -0.1158227090623557, + 51.49098898327418 ], [ - -0.11113152551413173, - 51.48884834966081 + -0.11583901724572612, + 51.490974137273255 ], [ - -0.111135404701214, - 51.48880344833212 + -0.11584589175447949, + 51.49096975487911 ], [ - -0.11134827039862347, - 51.48879758745328 + -0.1159368634574995, + 51.49101228559607 ], [ - -0.11128174363996474, - 51.48880825160877 + -0.11591520153380372, + 51.491030254041576 ] ] ], @@ -5085,8 +11837,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4839044024", - "osm_node_id": 4839044024, + "osm_link": "https://www.openstreetmap.org/node/9136383822", + "osm_node_id": 9136383822, "type": "intersection" }, "type": "Feature" @@ -5096,42 +11848,34 @@ "coordinates": [ [ [ - -0.11230625774522367, - 51.489494137211075 - ], - [ - -0.1123588058546757, - 51.48949321630576 - ], - [ - -0.1123620062562298, - 51.48956402529101 + -0.11481150059767342, + 51.49050339997386 ], [ - -0.11224825191128024, - 51.48956482029131 + -0.11482922412108129, + 51.49048919788721 ], [ - -0.11224820136342176, - 51.48956201170996 + -0.11494325864558927, + 51.490544383857674 ], [ - -0.11225838314634431, - 51.489491458132036 + -0.1149255351221814, + 51.490558585944335 ], [ - -0.11230625774522367, - 51.489494137211075 + -0.11481150059767342, + 51.49050339997386 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4849780710", - "osm_node_id": 4849780710, + "osm_link": "https://www.openstreetmap.org/node/9136383827", + "osm_node_id": 9136383827, "type": "intersection" }, "type": "Feature" @@ -5141,38 +11885,34 @@ "coordinates": [ [ [ - -0.11647963480806925, - 51.4906157414291 - ], - [ - -0.11643329253141413, - 51.49059520452112 + -0.11486161085612215, + 51.490461343199385 ], [ - -0.11642432389709512, - 51.490573425650005 + -0.11487719981567761, + 51.49044620042234 ], [ - -0.11642091697143353, - 51.4905393503547 + -0.1149987861902426, + 51.490494733211634 ], [ - -0.1165489965794765, - 51.490568400240925 + -0.11498319723068715, + 51.490509875988685 ], [ - -0.11647963480806925, - 51.4906157414291 + -0.11486161085612215, + 51.490461343199385 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4957735651", - "osm_node_id": 4957735651, + "osm_link": "https://www.openstreetmap.org/node/9136383828", + "osm_node_id": 9136383828, "type": "intersection" }, "type": "Feature" @@ -5182,34 +11922,46 @@ "coordinates": [ [ [ - -0.1166785825137022, - 51.49034684876824 + -0.11608518531652721, + 51.49088926559619 ], [ - -0.11655050290565923, - 51.490317800680664 + -0.11606350750636163, + 51.49090724573288 ], [ - -0.11658642510234468, - 51.49027766215915 + -0.1159725358033416, + 51.49086471501592 ], [ - -0.11669286156161074, - 51.490302665098184 + -0.11597624023925598, + 51.49086164203402 ], [ - -0.1166785825137022, - 51.49034684876824 + -0.11599315644115268, + 51.49084706223229 + ], + [ + -0.11601587120452941, + 51.49082876013848 + ], + [ + -0.11610686601514186, + 51.490871272869 + ], + [ + -0.11608518531652721, + 51.49088926559619 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4957735652", - "osm_node_id": 4957735652, + "osm_link": "https://www.openstreetmap.org/node/9136383834", + "osm_node_id": 9136383834, "type": "intersection" }, "type": "Feature" @@ -5219,36 +11971,40 @@ "coordinates": [ [ [ - -0.11657455646517341, - 51.48985168589428 + -0.11546395069157464, + 51.490814365597 ], [ - -0.11657724561124458, - 51.48985222099063 + -0.11546930876457359, + 51.49081664807521 ], [ - -0.11653573570986021, - 51.489933071800834 + -0.1154530005812032, + 51.490831494076126 ], [ - -0.11647443993244197, - 51.48990072410231 + -0.11542320045229201, + 51.490818800151786 ], [ - -0.11650221237011579, - 51.48985497561268 + -0.11539367761449021, + 51.49080585621604 ], [ - -0.11650939305446911, - 51.48985666543796 + -0.11541030641570585, + 51.49079114871065 ], [ - -0.1165207619899537, - 51.489838576483365 + -0.11544432223601432, + 51.49080056550709 ], [ - -0.11657455646517341, - 51.48985168589428 + -0.11546774755785881, + 51.490811087569774 + ], + [ + -0.11546395069157464, + 51.490814365597 ] ] ], @@ -5257,8 +12013,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4967069559", - "osm_node_id": 4967069559, + "osm_link": "https://www.openstreetmap.org/node/9136383835", + "osm_node_id": 9136383835, "type": "intersection" }, "type": "Feature" @@ -5268,34 +12024,46 @@ "coordinates": [ [ [ - -0.11646670755431895, - 51.48792581297622 + -0.1155969002247261, + 51.49066879960468 ], [ - -0.11652289366535706, - 51.4879599871969 + -0.11562616743478643, + 51.490681965672856 ], [ - -0.11642197992068615, - 51.48802432196598 + -0.11560925267711425, + 51.490696545474584 ], [ - -0.11636579380964804, - 51.48799014774529 + -0.11559913010739736, + 51.49069756080867 ], [ - -0.11646670755431895, - 51.48792581297622 + -0.11557573655849249, + 51.49068701176633 + ], + [ + -0.11555074280881056, + 51.490670511013676 + ], + [ + -0.11556741493676204, + 51.49065582329336 + ], + [ + -0.1155969002247261, + 51.49066879960468 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4967082877", - "osm_node_id": 4967082877, + "osm_link": "https://www.openstreetmap.org/node/9136383836", + "osm_node_id": 9136383836, "type": "intersection" }, "type": "Feature" @@ -5305,34 +12073,42 @@ "coordinates": [ [ [ - -0.11582349327627442, - 51.489078446487305 + -0.1155987964915314, + 51.49069784769226 ], [ - -0.1157870988181683, - 51.489121788392346 + -0.11557775558438266, + 51.49071605535731 ], [ - -0.11570971726795695, - 51.489116885291004 + -0.11555431004339478, + 51.49070554948241 ], [ - -0.1157728992026088, - 51.489041671428566 + -0.11554604907909449, + 51.49067420632612 + ], + [ + -0.11556287140639687, + 51.4906595851556 + ], + [ + -0.11557540294262653, + 51.490687298649924 ], [ - -0.11582349327627442, - 51.489078446487305 + -0.1155987964915314, + 51.49069784769226 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4967088337", - "osm_node_id": 4967088337, + "osm_link": "https://www.openstreetmap.org/node/9136383837", + "osm_node_id": 9136383837, "type": "intersection" }, "type": "Feature" @@ -5342,34 +12118,34 @@ "coordinates": [ [ [ - -0.11512449871428415, - 51.48947722816641 + -0.11542675613308, + 51.4907692682162 ], [ - -0.11508994997512484, - 51.4895211510332 + -0.11543739140250434, + 51.49073011355251 ], [ - -0.11501238356417391, - 51.48951751507599 + -0.11548179119716928, + 51.490692792605564 ], [ - -0.11507237376261883, - 51.489441295772004 + -0.11550499988533457, + 51.49070349992849 ], [ - -0.11512449871428415, - 51.48947722816641 + -0.11542675613308, + 51.4907692682162 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4967088341", - "osm_node_id": 4967088341, + "osm_link": "https://www.openstreetmap.org/node/9136383839", + "osm_node_id": 9136383839, "type": "intersection" }, "type": "Feature" @@ -5379,34 +12155,50 @@ "coordinates": [ [ [ - -0.11245183557764815, - 51.49053606513291 + -0.11555172632571414, + 51.49074627166364 + ], + [ + -0.11553454871917787, + 51.490760730956275 + ], + [ + -0.11552902456035818, + 51.49075818587616 + ], + [ + -0.1155250038392722, + 51.4907616563582 + ], + [ + -0.11550157851742768, + 51.490751134295515 ], [ - -0.11235876397216438, - 51.49049533485778 + -0.11552270030114999, + 51.490732899650816 ], [ - -0.11244180543830104, - 51.49042175596201 + -0.11554379031193268, + 51.49071465151629 ], [ - -0.11253487704378479, - 51.490462486237135 + -0.11556723585292056, + 51.49072515739119 ], [ - -0.11245183557764815, - 51.49053606513291 + -0.11555172632571414, + 51.49074627166364 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5021048671", - "osm_node_id": 5021048671, + "osm_link": "https://www.openstreetmap.org/node/9136383840", + "osm_node_id": 9136383840, "type": "intersection" }, "type": "Feature" @@ -5415,47 +12207,35 @@ "geometry": { "coordinates": [ [ - [ - -0.1113603484483513, - 51.48877233540216 - ], - [ - -0.11132830688297263, - 51.48878269918424 - ], - [ - -0.11134762771870849, - 51.48878853218412 - ], - [ - -0.11113476057707448, - 51.488794390365 + [ + -0.11591390173172851, + 51.49086889955931 ], [ - -0.11113427965030667, - 51.48878762027202 + -0.1159016922575686, + 51.490885200662575 ], [ - -0.11112897645783976, - 51.48878170543387 + -0.11576468156504437, + 51.49088245503374 ], [ - -0.11131502434998844, - 51.48871703162056 + -0.11577400259014821, + 51.49086543087591 ], [ - -0.1113603484483513, - 51.48877233540216 + -0.11591390173172851, + 51.49086889955931 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5268321224", - "osm_node_id": 5268321224, + "osm_link": "https://www.openstreetmap.org/node/9136383851", + "osm_node_id": 9136383851, "type": "intersection" }, "type": "Feature" @@ -5465,34 +12245,42 @@ "coordinates": [ [ [ - -0.11094308598616465, - 51.488647755978626 + -0.11677165989608407, + 51.490172915474794 ], [ - -0.11097491380631318, - 51.488603043507474 + -0.11675109558302958, + 51.49020653931066 ], [ - -0.11110694625688934, - 51.488639486716544 + -0.11674897401719792, + 51.49021003677235 ], [ - -0.11107511843674081, - 51.488684199187695 + -0.11664253755793186, + 51.49018503563195 ], [ - -0.11094308598616465, - 51.488647755978626 + -0.1166683819558608, + 51.490142797194515 + ], + [ + -0.11677454978936465, + 51.49016823720385 + ], + [ + -0.11677165989608407, + 51.490172915474794 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5268325548", - "osm_node_id": 5268325548, + "osm_link": "https://www.openstreetmap.org/node/9150217904", + "osm_node_id": 9150217904, "type": "intersection" }, "type": "Feature" @@ -5502,24 +12290,24 @@ "coordinates": [ [ [ - -0.11319415976392808, - 51.489023534809924 + -0.11693086687537949, + 51.49063374944476 ], [ - -0.11316856521684249, - 51.48910690731788 + -0.11691320400940178, + 51.49064798030971 ], [ - -0.11310328482395143, - 51.489080983473535 + -0.11688789108609918, + 51.49059264145457 ], [ - -0.11311749310485811, - 51.4890328823586 + -0.11694200040226599, + 51.49060524095014 ], [ - -0.11319415976392808, - 51.489023534809924 + -0.11693086687537949, + 51.49063374944476 ] ] ], @@ -5528,8 +12316,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5739257306", - "osm_node_id": 5739257306, + "osm_link": "https://www.openstreetmap.org/node/9150217908", + "osm_node_id": 9150217908, "type": "intersection" }, "type": "Feature" @@ -5539,34 +12327,34 @@ "coordinates": [ [ [ - -0.11509393459059766, - 51.489328887766966 + -0.11682449973889077, + 51.49089210025787 ], [ - -0.11497337072699851, - 51.48928928344248 + -0.11680064692658597, + 51.490881955910254 ], [ - -0.11503260559601526, - 51.489257906111966 + -0.11688209685729276, + 51.4908076908321 ], [ - -0.11510207857271115, - 51.489280720102236 + -0.11690594966959754, + 51.49081783517971 ], [ - -0.11509393459059766, - 51.489328887766966 + -0.11682449973889077, + 51.49089210025787 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5739261533", - "osm_node_id": 5739261533, + "osm_link": "https://www.openstreetmap.org/node/9150217910", + "osm_node_id": 9150217910, "type": "intersection" }, "type": "Feature" @@ -5576,36 +12364,40 @@ "coordinates": [ [ [ - -0.11456631459955138, - 51.48997757922666 + -0.11703860313672075, + 51.489756917183044 ], [ - -0.11458860042824326, - 51.48998601666189 + -0.11701992209245082, + 51.48979095830413 ], [ - -0.11452950276055665, - 51.49004654460264 + -0.11701691377275894, + 51.48979031798715 ], [ - -0.11449947299994552, - 51.49003517537901 + -0.11701273707542391, + 51.48979656647361 ], [ - -0.11447912243212119, - 51.49002803116825 + -0.11690771306774625, + 51.48976934580751 ], [ - -0.11453499659066124, - 51.489966326914846 + -0.11692139565092471, + 51.48974887634864 ], [ - -0.11456721723988139, - 51.48997646766517 + -0.11693445721755613, + 51.48972827918611 ], [ - -0.11456631459955138, - 51.48997757922666 + -0.11704026399492798, + 51.48975429655991 + ], + [ + -0.11703860313672075, + 51.489756917183044 ] ] ], @@ -5614,8 +12406,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5739261534", - "osm_node_id": 5739261534, + "osm_link": "https://www.openstreetmap.org/node/9150256917", + "osm_node_id": 9150256917, "type": "intersection" }, "type": "Feature" @@ -5625,24 +12417,24 @@ "coordinates": [ [ [ - -0.11121600976057187, - 51.488392890036714 + -0.1180310077980482, + 51.489906260326066 ], [ - -0.1113909891159378, - 51.48842871001592 + -0.1180115916434935, + 51.48994013956926 ], [ - -0.11134588598392771, - 51.488514143768974 + -0.11787557168899546, + 51.48990991247107 ], [ - -0.1111709066285618, - 51.48847832378977 + -0.11789498784355018, + 51.48987603322787 ], [ - -0.11121600976057187, - 51.488392890036714 + -0.1180310077980482, + 51.489906260326066 ] ] ], @@ -5651,8 +12443,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6022905014", - "osm_node_id": 6022905014, + "osm_link": "https://www.openstreetmap.org/node/9150256918", + "osm_node_id": 9150256918, "type": "intersection" }, "type": "Feature" @@ -5662,40 +12454,32 @@ "coordinates": [ [ [ - -0.11126703565737137, - 51.48866350040182 - ], - [ - -0.11127142465571202, - 51.48866839540928 - ], - [ - -0.1110853738751143, - 51.48873306742395 + -0.11688346742636985, + 51.48999198905661 ], [ - -0.11116074217633358, - 51.48872305257865 + -0.11687171577138533, + 51.49001100341314 ], [ - -0.11109985944713036, - 51.48866321351824 + -0.11676554793788149, + 51.4899855634038 ], [ - -0.11111187828365254, - 51.488694345333954 + -0.11677851562991859, + 51.4899645804323 ], [ - -0.11114370610380106, - 51.488649632862796 + -0.11688465746738091, + 51.48999006360907 ], [ - -0.11109205630200546, - 51.488627681321944 + -0.11689542560546186, + 51.48997561600762 ], [ - -0.11126703565737137, - 51.48866350040182 + -0.11688346742636985, + 51.48999198905661 ] ] ], @@ -5704,8 +12488,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6022905020", - "osm_node_id": 6022905020, + "osm_link": "https://www.openstreetmap.org/node/9150256922", + "osm_node_id": 9150256922, "type": "intersection" }, "type": "Feature" @@ -5715,40 +12499,44 @@ "coordinates": [ [ [ - -0.11255580385719582, - 51.48896854938817 + -0.11712125899490844, + 51.490306022265706 ], [ - -0.11259131444989079, - 51.48897261612043 + -0.11712988679223882, + 51.49030844413877 ], [ - -0.11257710616898411, - 51.48902071723536 + -0.1171180152666185, + 51.490324840570125 ], [ - -0.11257105197976265, - 51.48902002475773 + -0.11711148881597637, + 51.49032300865203 ], [ - -0.11251397622641528, - 51.489014470547545 + -0.11709950752929191, + 51.49034295830301 ], [ - -0.1125142145234624, - 51.48901352086394 + -0.1170453982131251, + 51.49033035880744 ], [ - -0.1125060965373904, - 51.489012592764055 + -0.11705797163186604, + 51.49030942439931 ], [ - -0.11252027882225556, - 51.488964488051835 + -0.11706709913088313, + 51.49030682176261 ], [ - -0.11255580385719582, - 51.48896854938817 + -0.11711147726218014, + 51.49028379013651 + ], + [ + -0.11712125899490844, + 51.490306022265706 ] ] ], @@ -5757,8 +12545,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6029529895", - "osm_node_id": 6029529895, + "osm_link": "https://www.openstreetmap.org/node/9150256934", + "osm_node_id": 9150256934, "type": "intersection" }, "type": "Feature" @@ -5768,34 +12556,38 @@ "coordinates": [ [ [ - -0.1130483551882527, - 51.48924587948425 + -0.11667853918696636, + 51.48945790174529 ], [ - -0.11303844491954143, - 51.48928131994974 + -0.11666515989093877, + 51.489478664383 ], [ - -0.11289616425171442, - 51.48926589208775 + -0.1166115473880096, + 51.489465268088495 ], [ - -0.1129060745204257, - 51.489230451622255 + -0.1166657072520349, + 51.489430351927496 ], [ - -0.1130483551882527, - 51.48924587948425 + -0.11669236185992404, + 51.489437280301075 + ], + [ + -0.11667853918696636, + 51.48945790174529 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6029529898", - "osm_node_id": 6029529898, + "osm_link": "https://www.openstreetmap.org/node/9150276535", + "osm_node_id": 9150276535, "type": "intersection" }, "type": "Feature" @@ -5805,40 +12597,32 @@ "coordinates": [ [ [ - -0.11561393629725863, - 51.48872611746665 - ], - [ - -0.11559427462453416, - 51.48874497444189 - ], - [ - -0.1155284006553621, - 51.48871834013348 + -0.11675628034908518, + 51.4893545526067 ], [ - -0.1155316949315105, - 51.488715179917385 + -0.11672492912303091, + 51.48939939637881 ], [ - -0.11556171169410087, - 51.48868444470249 + -0.11671885760311511, + 51.489397750620284 ], [ - -0.11556316458397606, - 51.48868499508731 + -0.11669220299522597, + 51.489390822246705 ], [ - -0.11556771533546387, - 51.48868062708232 + -0.11665858433666271, + 51.48938125436423 ], [ - -0.1156335979699831, - 51.4887072559948 + -0.11669039193766784, + 51.48933653649715 ], [ - -0.11561393629725863, - 51.48872611746665 + -0.11675628034908518, + 51.4893545526067 ] ] ], @@ -5847,8 +12631,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6847224398", - "osm_node_id": 6847224398, + "osm_link": "https://www.openstreetmap.org/node/9150276536", + "osm_node_id": 9150276536, "type": "intersection" }, "type": "Feature" @@ -5858,69 +12642,40 @@ "coordinates": [ [ [ - -0.11453340938790495, - 51.48842444093629 - ], - [ - -0.11458458981672895, - 51.48840775852067 - ], - [ - -0.11465156572921589, - 51.488487435716195 + -0.11671162492667878, + 51.48910117773999 ], [ - -0.1146003853003919, - 51.488504118131814 + -0.11671700033037208, + 51.489102560896605 ], [ - -0.11453340938790495, - 51.48842444093629 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6847224406", - "osm_node_id": 6847224406, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -0.11647164969065382, - 51.490680918862516 + -0.11669494124493109, + 51.489135808816044 ], [ - -0.11635237985223178, - 51.49063982346283 + -0.11663952923824, + 51.4891015779381 ], [ - -0.11639880300546047, - 51.49062538485459 + -0.11665112058430188, + 51.489085102366445 ], [ - -0.11643014845461663, - 51.49061422607221 + -0.11665842402774008, + 51.48908709436378 ], [ - -0.1164184372379189, - 51.490608202416155 + -0.11666181362270735, + 51.48908260225241 ], [ - -0.11646477951457404, - 51.490628739324144 + -0.11671409743907075, + 51.489097901511414 ], [ - -0.11647164969065382, - 51.490680918862516 + -0.11671162492667878, + 51.48910117773999 ] ] ], @@ -5929,8 +12684,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7330281376", - "osm_node_id": 7330281376, + "osm_link": "https://www.openstreetmap.org/node/9150276543", + "osm_node_id": 9150276543, "type": "intersection" }, "type": "Feature" @@ -5940,34 +12695,42 @@ "coordinates": [ [ [ - -0.11222920258975566, - 51.48942560350946 + -0.11623061150537625, + 51.48920972495741 + ], + [ + -0.11623721594414288, + 51.489211546083645 + ], + [ + -0.11620540834313776, + 51.48925626395073 ], [ - -0.11217199685620075, - 51.48942059608681 + -0.11613810892435653, + 51.48923605529513 ], [ - -0.11219209901740629, - 51.489331538967036 + -0.11617449760556453, + 51.48919271159144 ], [ - -0.11224930475096118, - 51.48933654638969 + -0.11620423418859649, + 51.489202392788435 ], [ - -0.11222920258975566, - 51.48942560350946 + -0.11623061150537625, + 51.48920972495741 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7926785716", - "osm_node_id": 7926785716, + "osm_link": "https://www.openstreetmap.org/node/9150276546", + "osm_node_id": 9150276546, "type": "intersection" }, "type": "Feature" @@ -5977,34 +12740,50 @@ "coordinates": [ [ [ - -0.11644457481342702, - 51.49067418744036 + -0.11637217872628641, + 51.48900900537021 ], [ - -0.1163776263412061, - 51.490648612532794 + -0.11637966269779061, + 51.48901104683023 ], [ - -0.11635146565810554, - 51.49064085228673 + -0.11636807135172872, + 51.489027522401884 ], [ - -0.11647073549652759, - 51.490681947686426 + -0.1163467935917574, + 51.489046340706295 ], [ - -0.11644457481342702, - 51.49067418744036 + -0.11632038161358896, + 51.48903905800001 + ], + [ + -0.11633500005426159, + 51.489018500407624 + ], + [ + -0.11634837501761558, + 51.4889976163615 + ], + [ + -0.11637520582089714, + 51.48900427853589 + ], + [ + -0.11637217872628641, + 51.48900900537021 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8013569055", - "osm_node_id": 8013569055, + "osm_link": "https://www.openstreetmap.org/node/9150276548", + "osm_node_id": 9150276548, "type": "intersection" }, "type": "Feature" @@ -6014,24 +12793,28 @@ "coordinates": [ [ [ - -0.11651315525936462, - 51.48965432167595 + -0.11564458563019228, + 51.48869662961081 ], [ - -0.11654724473512401, - 51.4896252789843 + -0.11562932884227828, + 51.48871190189017 ], [ - -0.11665592840775567, - 51.48969337201833 + -0.11556249590801959, + 51.48868554547213 ], [ - -0.11660291236955656, - 51.48970786638451 + -0.11558222257084783, + 51.488666625544376 ], [ - -0.11651315525936462, - 51.48965432167595 + -0.11564809942846896, + 51.48869325985279 + ], + [ + -0.11564458563019228, + 51.48869662961081 ] ] ], @@ -6040,8 +12823,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8655624472", - "osm_node_id": 8655624472, + "osm_link": "https://www.openstreetmap.org/node/9150276550", + "osm_node_id": 9150276550, "type": "intersection" }, "type": "Feature" @@ -6051,40 +12834,44 @@ "coordinates": [ [ [ - -0.11279005274296716, - 51.489891910750664 + -0.11638160662400532, + 51.48899428437498 ], [ - -0.11279862132709192, - 51.48989617713232 + -0.11635477582072376, + 51.4889876222006 ], [ - -0.11272757992255858, - 51.48995150339696 + -0.11633540010445584, + 51.488985399976926 ], [ - -0.11270015409877146, - 51.48993784899716 + -0.11630474210617503, + 51.48897352353592 ], [ - -0.11267196861288262, - 51.48992477825707 + -0.11631999889408903, + 51.48895825125656 ], [ - -0.11273991648847694, - 51.4898679645145 + -0.11632435611949007, + 51.4889599392832 ], [ - -0.1127442087237742, - 51.4898699547132 + -0.11635224120667709, + 51.488955248421746 ], [ - -0.11279164138994799, - 51.48989048892322 + -0.11636270605760712, + 51.488979373622904 ], [ - -0.11279005274296716, - 51.489891910750664 + -0.1163719563157091, + 51.48897733216288 + ], + [ + -0.11638160662400532, + 51.48899428437498 ] ] ], @@ -6093,8 +12880,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9130071195", - "osm_node_id": 9130071195, + "osm_link": "https://www.openstreetmap.org/node/9150276551", + "osm_node_id": 9150276551, "type": "intersection" }, "type": "Feature" @@ -6104,36 +12891,40 @@ "coordinates": [ [ [ - -0.11444301248624708, - 51.4905334957711 + -0.11671447438167257, + 51.48881566022009 ], [ - -0.11434743081853363, - 51.49049508394706 + -0.1166876637975344, + 51.48880896746876 ], [ - -0.1143531860532778, - 51.4904895306362 + -0.11670109941831858, + 51.48878809961043 ], [ - -0.11435013007417649, - 51.49048813309044 + -0.11669240374243536, + 51.4887662784712 ], [ - -0.11438433508789814, - 51.49045914255944 + -0.1167204390289733, + 51.48876194553975 ], [ - -0.11438604504973932, - 51.49045745992873 + -0.11672187314392962, + 51.48876554642342 ], [ - -0.1144821697458753, - 51.490495342951675 + -0.11672758649616247, + 51.48876449961308 ], [ - -0.11444301248624708, - 51.4905334957711 + -0.11673573769939861, + 51.488781753997245 + ], + [ + -0.11671447438167257, + 51.48881566022009 ] ] ], @@ -6142,8 +12933,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9130071196", - "osm_node_id": 9130071196, + "osm_link": "https://www.openstreetmap.org/node/9150276553", + "osm_node_id": 9150276553, "type": "intersection" }, "type": "Feature" @@ -6153,32 +12944,40 @@ "coordinates": [ [ [ - -0.11303344790267447, - 51.4900130259874 + -0.11666561337744058, + 51.48862437451643 ], [ - -0.11256790357029156, - 51.490433223211696 + -0.11666753130761379, + 51.48862918858494 ], [ - -0.11247483196480781, - 51.49039249293657 + -0.11663949602107586, + 51.48863352151639 ], [ - -0.11288327888047542, - 51.49002902311997 + -0.11660015390070805, + 51.4886332598138 ], [ - -0.11295432028500876, - 51.48997369685533 + -0.11659029562407978, + 51.48859781395239 ], [ - -0.11300237396772958, - 51.48998270086316 + -0.11662447608598443, + 51.488594127633164 ], [ - -0.11303344790267447, - 51.4900130259874 + -0.11665791566070623, + 51.488588378270194 + ], + [ + -0.11667329087503153, + 51.48862305431233 + ], + [ + -0.11666561337744058, + 51.48862437451643 ] ] ], @@ -6187,8 +12986,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9130071201", - "osm_node_id": 9130071201, + "osm_link": "https://www.openstreetmap.org/node/9150276554", + "osm_node_id": 9150276554, "type": "intersection" }, "type": "Feature" @@ -6198,32 +12997,44 @@ "coordinates": [ [ [ - -0.11677166422875766, - 51.490172916374114 + -0.1169336311211261, + 51.488834204231416 ], [ - -0.11675109558302958, - 51.49020653931066 + -0.11694095045103411, + 51.488833200588516 ], [ - -0.11674897401719792, - 51.49021003677235 + -0.11694172599960566, + 51.48886992888253 ], [ - -0.11664253755793186, - 51.49018503563195 + -0.11691811004012347, + 51.48887316554096 + ], + [ + -0.11688287962698694, + 51.48887801648165 + ], + [ + -0.11687041019241201, + 51.48884289077872 + ], + [ + -0.11690542252764481, + 51.488838071314284 ], [ - -0.11666839062120796, - 51.49014279269791 + -0.1169038035519489, + 51.488833690718785 ], [ - -0.1167745526778137, - 51.4901682434991 + -0.11693195148800002, + 51.4888296563621 ], [ - -0.11677166422875766, - 51.490172916374114 + -0.1169336311211261, + 51.488834204231416 ] ] ], @@ -6232,8 +13043,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9150217904", - "osm_node_id": 9150217904, + "osm_link": "https://www.openstreetmap.org/node/9150276555", + "osm_node_id": 9150276555, "type": "intersection" }, "type": "Feature" @@ -6243,34 +13054,34 @@ "coordinates": [ [ [ - -0.11692936199342127, - 51.490626286874146 + -0.11693044371759276, + 51.488825577039336 ], [ - -0.11687523823500919, - 51.49061371255958 + -0.11690229578154164, + 51.48882961139602 ], [ - -0.11692571965916161, - 51.490529453320526 + -0.11685666261912978, + 51.488790888406704 ], [ - -0.11697984341757371, - 51.490542027635094 + -0.11691229992484725, + 51.48878120631039 ], [ - -0.11692936199342127, - 51.490626286874146 + -0.11693044371759276, + 51.488825577039336 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9150217908", - "osm_node_id": 9150217908, + "osm_link": "https://www.openstreetmap.org/node/9150276556", + "osm_node_id": 9150276556, "type": "intersection" }, "type": "Feature" @@ -6280,40 +13091,36 @@ "coordinates": [ [ [ - -0.11703860313672075, - 51.489756917183044 - ], - [ - -0.11701992209245082, - 51.48979095830413 + -0.11620613189962631, + 51.488161928962164 ], [ - -0.11701691377275894, - 51.48979031798715 + -0.11620886003975973, + 51.488163534251214 ], [ - -0.11701273707542391, - 51.48979656647361 + -0.11616918430352596, + 51.48818968112732 ], [ - -0.11690771306774625, - 51.48976934580751 + -0.11616820078662238, + 51.48819053098623 ], [ - -0.11692139565092471, - 51.48974887634864 + -0.1161044353852612, + 51.48816197392824 ], [ - -0.11693445721755613, - 51.48972827918611 + -0.11615453553413824, + 51.48812482924833 ], [ - -0.11704026399492798, - 51.48975429655991 + -0.11621072164517635, + 51.48815900346901 ], [ - -0.11703860313672075, - 51.489756917183044 + -0.11620613189962631, + 51.488161928962164 ] ] ], @@ -6322,8 +13129,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9150256917", - "osm_node_id": 9150256917, + "osm_link": "https://www.openstreetmap.org/node/9150276559", + "osm_node_id": 9150276559, "type": "intersection" }, "type": "Feature" @@ -6333,34 +13140,50 @@ "coordinates": [ [ [ - -0.1180310077980482, - 51.489906260326066 + -0.11690893632592148, + 51.4887737113642 ], [ - -0.1180115916434935, - 51.48994013956926 + -0.11685329902020401, + 51.488783395259155 ], [ - -0.11787557168899546, - 51.48990991247107 + -0.11684368626174552, + 51.488761977016004 ], [ - -0.11789498784355018, - 51.48987603322787 + -0.11683676120513367, + 51.48876324595878 ], [ - -0.1180310077980482, - 51.489906260326066 + -0.11682861000189751, + 51.48874599157462 + ], + [ + -0.11683573869416781, + 51.48874468575966 + ], + [ + -0.11683369367223614, + 51.48874023681572 + ], + [ + -0.11688922988223664, + 51.48873033528494 + ], + [ + -0.11690893632592148, + 51.4887737113642 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9150256918", - "osm_node_id": 9150256918, + "osm_link": "https://www.openstreetmap.org/node/9150276560", + "osm_node_id": 9150276560, "type": "intersection" }, "type": "Feature" @@ -6370,36 +13193,44 @@ "coordinates": [ [ [ - -0.11620613189962631, - 51.488161928962164 + -0.1168197135788049, + 51.48857914583468 ], [ - -0.11620886003975973, - 51.488163534251214 + -0.11682960651682184, + 51.488600663902524 ], [ - -0.11616918430352596, - 51.48818968112732 + -0.11677407030682134, + 51.488610565433305 ], [ - -0.11616820078662238, - 51.48819053098623 + -0.11677200795419533, + 51.488606080516504 ], [ - -0.1161044353852612, - 51.48816197392824 + -0.1167647853873307, + 51.48860732247963 ], [ - -0.11615453553413824, - 51.48812482924833 + -0.11674941017300539, + 51.4885726464375 ], [ - -0.11621072164517635, - 51.48815900346901 + -0.11675643776955874, + 51.48857143774927 ], [ - -0.11620613189962631, - 51.488161928962164 + -0.11675451406248741, + 51.48856705895241 + ], + [ + -0.1168102351332275, + 51.48855756931093 + ], + [ + -0.1168197135788049, + 51.48857914583468 ] ] ], @@ -6408,8 +13239,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9150276559", - "osm_node_id": 9150276559, + "osm_link": "https://www.openstreetmap.org/node/9150276561", + "osm_node_id": 9150276561, "type": "intersection" }, "type": "Feature" @@ -6423,16 +13254,16 @@ 51.48838628901619 ], [ - -0.11644008616359394, - 51.48841968622301 + -0.11643989408173172, + 51.48841914663005 ], [ - -0.11638368053042757, - 51.48842745276432 + -0.11638348844856534, + 51.48842691317137 ], [ - -0.11633569617048409, - 51.48840742307372 + -0.11633581604111991, + 51.488406595697846 ], [ -0.11639412660643875, @@ -6513,31 +13344,35 @@ "coordinates": [ [ [ - -0.1160625933122354, - 51.48872571457058 + -0.11601756239145171, + 51.488733971242155 + ], + [ + -0.11599408796597327, + 51.48872349054827 ], [ - -0.11601460750806739, - 51.48870568487997 + -0.11601473026715226, + 51.48870556257223 ], [ - -0.11609502481823664, - 51.48863098453017 + -0.11603393556492587, + 51.48868705453377 ], [ - -0.11614301062240463, - 51.48865101422077 + -0.11608245573216926, + 51.488706577006994 ], [ - -0.1160625933122354, - 51.48872571457058 + -0.11601756239145171, + 51.488733971242155 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Connection", "control": "StopSign", "osm_link": "https://www.openstreetmap.org/node/9150276566", "osm_node_id": 9150276566, @@ -6545,6 +13380,112 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11593226649082682, + 51.488808051060055 + ], + [ + -0.1159613141787589, + 51.488819304271196 + ], + [ + -0.11594605739084488, + 51.48883457655056 + ], + [ + -0.11591539939256407, + 51.48882270010955 + ], + [ + -0.11588473995005871, + 51.48881082546718 + ], + [ + -0.11589999673797272, + 51.48879555318783 + ], + [ + -0.1159076857893599, + 51.488798530841635 + ], + [ + -0.1159129629857853, + 51.48879394789877 + ], + [ + -0.11593643741126373, + 51.488804428592665 + ], + [ + -0.11593226649082682, + 51.488808051060055 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9150276567", + "osm_node_id": 9150276567, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11619675888243944, + 51.488596815705414 + ], + [ + -0.11620342397863626, + 51.488612179715574 + ], + [ + -0.11617553889144924, + 51.488616870577026 + ], + [ + -0.11617006528048804, + 51.48862214509819 + ], + [ + -0.11612154511324467, + 51.48860262262497 + ], + [ + -0.11616195595976321, + 51.488564787266064 + ], + [ + -0.11620962981143318, + 51.48858510473958 + ], + [ + -0.11619675888243944, + 51.488596815705414 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9150276568", + "osm_node_id": 9150276568, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ diff --git a/tests/src/cycleway_rejoin_road/road_network.dot b/tests/src/cycleway_rejoin_road/road_network.dot index dadb876b..7eebf6ef 100644 --- a/tests/src/cycleway_rejoin_road/road_network.dot +++ b/tests/src/cycleway_rejoin_road/road_network.dot @@ -9,13 +9,13 @@ digraph { 7 [ label = "Unknown" ] 8 [ label = "Unknown" ] 9 [ label = "Unknown" ] - 10 [ label = "Lights RoadIntersection" ] - 11 [ label = "Unknown" ] + 10 [ label = "Unknown" ] + 11 [ label = "Lights RoadIntersection" ] 12 [ label = "Unknown" ] 13 [ label = "Unknown" ] 14 [ label = "Unknown" ] - 15 [ label = "Lights RoadIntersection" ] - 16 [ label = "Unknown" ] + 15 [ label = "Unknown" ] + 16 [ label = "Lights RoadIntersection" ] 17 [ label = "Unknown" ] 18 [ label = "Unknown" ] 19 [ label = "Unknown" ] @@ -68,147 +68,335 @@ digraph { 66 [ label = "Unknown" ] 67 [ label = "Unknown" ] 68 [ label = "Unknown" ] - 69 [ label = "Lights RoadIntersection" ] + 69 [ label = "Unknown" ] 70 [ label = "Unknown" ] 71 [ label = "Unknown" ] 72 [ label = "Unknown" ] 73 [ label = "Unknown" ] + 74 [ label = "Unknown" ] + 75 [ label = "Unknown" ] + 76 [ label = "Unknown" ] + 77 [ label = "Unknown" ] + 78 [ label = "Unknown" ] + 79 [ label = "Unknown" ] + 80 [ label = "Unknown" ] + 81 [ label = "Unknown" ] + 82 [ label = "Unknown" ] + 83 [ label = "Unknown" ] + 84 [ label = "Unknown" ] + 85 [ label = "Unknown" ] + 86 [ label = "Unknown" ] + 87 [ label = "Unknown" ] + 88 [ label = "Unknown" ] + 89 [ label = "Unknown" ] + 90 [ label = "Unknown" ] + 91 [ label = "Unknown" ] + 92 [ label = "Unknown" ] + 93 [ label = "Unknown" ] + 94 [ label = "Unknown" ] + 95 [ label = "Unknown" ] + 96 [ label = "Unknown" ] + 97 [ label = "Unknown" ] + 98 [ label = "Unknown" ] + 99 [ label = "Unknown" ] + 100 [ label = "Unknown" ] + 101 [ label = "Unknown" ] + 102 [ label = "Unknown" ] + 103 [ label = "Unknown" ] + 104 [ label = "Unknown" ] + 105 [ label = "Unknown" ] + 106 [ label = "Unknown" ] + 107 [ label = "Unknown" ] + 108 [ label = "Unknown" ] + 109 [ label = "Unknown" ] + 110 [ label = "Unknown" ] + 111 [ label = "Unknown" ] + 112 [ label = "Unknown" ] + 113 [ label = "Unknown" ] + 114 [ label = "Unknown" ] + 115 [ label = "Unknown" ] + 116 [ label = "Unknown" ] + 117 [ label = "Unknown" ] + 118 [ label = "Unknown" ] + 119 [ label = "Unknown" ] + 120 [ label = "Unknown" ] + 121 [ label = "Unknown" ] + 122 [ label = "Unknown" ] + 123 [ label = "Unknown" ] + 124 [ label = "Unknown" ] + 125 [ label = "Unknown" ] + 126 [ label = "Unknown" ] + 127 [ label = "Unknown" ] + 128 [ label = "Unknown" ] + 129 [ label = "Unknown" ] + 130 [ label = "Unknown" ] + 131 [ label = "Unknown" ] + 132 [ label = "Unknown" ] + 133 [ label = "Unknown" ] + 134 [ label = "Unknown" ] + 135 [ label = "Unknown" ] + 136 [ label = "Unknown" ] + 137 [ label = "Unknown" ] + 138 [ label = "Unknown" ] + 139 [ label = "Unknown" ] + 140 [ label = "Unknown" ] + 141 [ label = "Unknown" ] + 142 [ label = "Lights RoadIntersection" ] + 143 [ label = "Unknown" ] + 144 [ label = "Unknown" ] + 145 [ label = "Unknown" ] + 146 [ label = "Unknown" ] 8 -> 5 [ label = "2 lanes" ] - 1 -> 35 [ label = "2 lanes" ] - 35 -> 1 [ label = "2 lanes" ] - 35 -> 8 [ label = "2 lanes" ] - 8 -> 35 [ label = "2 lanes" ] - 6 -> 38 [ label = "5 lanes" ] - 11 -> 40 [ label = "5 lanes" ] - 27 -> 12 [ label = "2 lanes" ] - 12 -> 27 [ label = "2 lanes" ] - 2 -> 24 [ label = "2 lanes" ] - 24 -> 2 [ label = "2 lanes" ] - 24 -> 59 [ label = "2 lanes" ] - 59 -> 24 [ label = "2 lanes" ] - 3 -> 18 [ label = "3 lanes" ] - 18 -> 19 [ label = "3 lanes" ] - 49 -> 44 [ label = "3 lanes" ] - 16 -> 17 [ label = "1 lanes" ] - 10 -> 16 [ label = "3 lanes" ] - 16 -> 10 [ label = "3 lanes" ] + 1 -> 51 [ label = "2 lanes" ] + 51 -> 1 [ label = "2 lanes" ] + 9 -> 98 [ label = "2 lanes" ] + 98 -> 9 [ label = "2 lanes" ] + 51 -> 9 [ label = "2 lanes" ] + 9 -> 51 [ label = "2 lanes" ] + 96 -> 105 [ label = "2 lanes" ] + 105 -> 96 [ label = "2 lanes" ] + 98 -> 96 [ label = "2 lanes" ] + 96 -> 98 [ label = "2 lanes" ] + 99 -> 100 [ label = "2 lanes" ] + 100 -> 99 [ label = "2 lanes" ] + 100 -> 103 [ label = "2 lanes" ] + 103 -> 100 [ label = "2 lanes" ] + 103 -> 8 [ label = "2 lanes" ] + 8 -> 103 [ label = "2 lanes" ] + 105 -> 99 [ label = "2 lanes" ] + 99 -> 105 [ label = "2 lanes" ] + 6 -> 54 [ label = "5 lanes" ] + 12 -> 56 [ label = "5 lanes" ] + 41 -> 109 [ label = "2 lanes" ] + 109 -> 41 [ label = "2 lanes" ] + 106 -> 13 [ label = "2 lanes" ] + 13 -> 106 [ label = "2 lanes" ] + 109 -> 106 [ label = "2 lanes" ] + 106 -> 109 [ label = "2 lanes" ] + 2 -> 26 [ label = "2 lanes" ] + 26 -> 2 [ label = "2 lanes" ] + 26 -> 78 [ label = "2 lanes" ] + 78 -> 26 [ label = "2 lanes" ] + 3 -> 19 [ label = "3 lanes" ] + 19 -> 20 [ label = "3 lanes" ] + 69 -> 64 [ label = "3 lanes" ] + 17 -> 18 [ label = "1 lanes" ] + 11 -> 17 [ label = "3 lanes" ] + 17 -> 11 [ label = "3 lanes" ] 5 -> 4 [ label = "2 lanes" ] 4 -> 5 [ label = "2 lanes" ] - 21 -> 63 [ label = "2 lanes" ] - 63 -> 21 [ label = "2 lanes" ] - 26 -> 21 [ label = "2 lanes" ] - 21 -> 26 [ label = "2 lanes" ] - 63 -> 6 [ label = "2 lanes" ] - 6 -> 63 [ label = "2 lanes" ] - 18 -> 9 [ label = "1 lanes" ] - 9 -> 18 [ label = "1 lanes" ] - 22 -> 23 [ label = "1 lanes" ] - 23 -> 22 [ label = "1 lanes" ] - 58 -> 24 [ label = "1 lanes" ] - 24 -> 58 [ label = "1 lanes" ] - 55 -> 25 [ label = "1 lanes" ] - 25 -> 55 [ label = "1 lanes" ] - 5 -> 46 [ label = "5 lanes" ] - 10 -> 32 [ label = "3 lanes" ] - 34 -> 10 [ label = "4 lanes" ] - 10 -> 34 [ label = "3 lanes" ] - 43 -> 34 [ label = "4 lanes" ] - 34 -> 43 [ label = "3 lanes" ] - 49 -> 43 [ label = "4 lanes" ] - 43 -> 49 [ label = "3 lanes" ] - 69 -> 0 [ label = "2 lanes" ] - 0 -> 69 [ label = "2 lanes" ] - 28 -> 29 [ label = "1 lanes" ] - 29 -> 28 [ label = "1 lanes" ] - 49 -> 14 [ label = "2 lanes" ] - 14 -> 49 [ label = "2 lanes" ] + 22 -> 119 [ label = "2 lanes" ] + 119 -> 22 [ label = "2 lanes" ] + 40 -> 22 [ label = "2 lanes" ] + 22 -> 40 [ label = "2 lanes" ] + 119 -> 6 [ label = "2 lanes" ] + 6 -> 119 [ label = "2 lanes" ] + 19 -> 10 [ label = "1 lanes" ] + 10 -> 19 [ label = "1 lanes" ] + 23 -> 25 [ label = "1 lanes" ] + 25 -> 23 [ label = "1 lanes" ] + 77 -> 26 [ label = "1 lanes" ] + 26 -> 77 [ label = "1 lanes" ] 30 -> 31 [ label = "1 lanes" ] - 31 -> 30 [ label = "1 lanes" ] - 32 -> 33 [ label = "2 lanes" ] - 20 -> 29 [ label = "3 lanes" ] - 29 -> 4 [ label = "3 lanes" ] - 54 -> 36 [ label = "1 lanes" ] - 37 -> 36 [ label = "5 lanes" ] - 38 -> 41 [ label = "3 lanes" ] - 40 -> 21 [ label = "3 lanes" ] - 41 -> 5 [ label = "5 lanes" ] - 42 -> 60 [ label = "2 lanes" ] - 60 -> 42 [ label = "2 lanes" ] - 43 -> 33 [ label = "1 lanes" ] - 34 -> 15 [ label = "2 lanes" ] - 33 -> 34 [ label = "2 lanes" ] + 31 -> 32 [ label = "1 lanes" ] + 32 -> 33 [ label = "1 lanes" ] + 33 -> 34 [ label = "1 lanes" ] + 34 -> 31 [ label = "1 lanes" ] + 32 -> 28 [ label = "1 lanes" ] + 27 -> 33 [ label = "1 lanes" ] + 33 -> 29 [ label = "1 lanes" ] + 75 -> 35 [ label = "1 lanes" ] + 35 -> 75 [ label = "1 lanes" ] + 3 -> 38 [ label = "1 lanes" ] + 37 -> 38 [ label = "1 lanes" ] + 38 -> 36 [ label = "1 lanes" ] + 34 -> 39 [ label = "1 lanes" ] + 5 -> 66 [ label = "5 lanes" ] + 11 -> 48 [ label = "3 lanes" ] + 50 -> 11 [ label = "4 lanes" ] + 11 -> 50 [ label = "3 lanes" ] + 63 -> 50 [ label = "4 lanes" ] + 50 -> 63 [ label = "3 lanes" ] + 69 -> 63 [ label = "4 lanes" ] + 63 -> 69 [ label = "3 lanes" ] + 142 -> 0 [ label = "2 lanes" ] + 0 -> 142 [ label = "2 lanes" ] + 43 -> 44 [ label = "1 lanes" ] + 44 -> 43 [ label = "1 lanes" ] + 69 -> 15 [ label = "2 lanes" ] + 15 -> 69 [ label = "2 lanes" ] + 45 -> 121 [ label = "1 lanes" ] + 46 -> 47 [ label = "1 lanes" ] + 47 -> 46 [ label = "1 lanes" ] + 48 -> 49 [ label = "2 lanes" ] + 21 -> 44 [ label = "3 lanes" ] + 44 -> 4 [ label = "3 lanes" ] + 74 -> 52 [ label = "1 lanes" ] + 53 -> 52 [ label = "5 lanes" ] + 54 -> 57 [ label = "3 lanes" ] + 125 -> 132 [ label = "1 lanes" ] + 132 -> 125 [ label = "1 lanes" ] + 132 -> 125 [ label = "1 lanes" ] + 125 -> 132 [ label = "1 lanes" ] + 56 -> 126 [ label = "3 lanes" ] + 124 -> 22 [ label = "3 lanes" ] + 126 -> 124 [ label = "3 lanes" ] + 57 -> 5 [ label = "5 lanes" ] + 59 -> 58 [ label = "1 lanes" ] + 59 -> 91 [ label = "2 lanes" ] + 91 -> 59 [ label = "2 lanes" ] + 60 -> 59 [ label = "2 lanes" ] + 59 -> 60 [ label = "2 lanes" ] + 91 -> 79 [ label = "2 lanes" ] + 79 -> 91 [ label = "2 lanes" ] + 58 -> 61 [ label = "1 lanes" ] + 81 -> 58 [ label = "1 lanes" ] + 24 -> 62 [ label = "1 lanes" ] + 63 -> 49 [ label = "1 lanes" ] + 50 -> 16 [ label = "2 lanes" ] + 49 -> 50 [ label = "2 lanes" ] 4 -> 3 [ label = "2 lanes" ] 3 -> 4 [ label = "2 lanes" ] - 45 -> 3 [ label = "5 lanes" ] - 11 -> 30 [ label = "3 lanes" ] - 30 -> 52 [ label = "3 lanes" ] - 46 -> 11 [ label = "3 lanes" ] - 52 -> 65 [ label = "3 lanes" ] - 65 -> 39 [ label = "3 lanes" ] - 5 -> 47 [ label = "1 lanes" ] - 8 -> 47 [ label = "2 lanes" ] - 47 -> 8 [ label = "2 lanes" ] - 2 -> 27 [ label = "2 lanes" ] - 27 -> 2 [ label = "2 lanes" ] - 27 -> 7 [ label = "2 lanes" ] - 7 -> 27 [ label = "2 lanes" ] - 47 -> 2 [ label = "2 lanes" ] - 2 -> 47 [ label = "2 lanes" ] - 48 -> 49 [ label = "3 lanes" ] - 49 -> 48 [ label = "3 lanes" ] - 50 -> 51 [ label = "1 lanes" ] - 51 -> 50 [ label = "1 lanes" ] - 59 -> 13 [ label = "2 lanes" ] - 13 -> 59 [ label = "2 lanes" ] - 58 -> 35 [ label = "2 lanes" ] - 35 -> 58 [ label = "2 lanes" ] - 14 -> 15 [ label = "2 lanes" ] - 15 -> 14 [ label = "2 lanes" ] - 15 -> 17 [ label = "2 lanes" ] - 17 -> 15 [ label = "2 lanes" ] - 16 -> 73 [ label = "4 lanes" ] - 73 -> 16 [ label = "3 lanes" ] - 9 -> 25 [ label = "3 lanes" ] - 25 -> 50 [ label = "3 lanes" ] - 32 -> 9 [ label = "3 lanes" ] - 50 -> 45 [ label = "3 lanes" ] - 52 -> 53 [ label = "1 lanes" ] - 53 -> 52 [ label = "1 lanes" ] - 36 -> 54 [ label = "2 lanes" ] - 56 -> 7 [ label = "3 lanes" ] - 6 -> 61 [ label = "2 lanes" ] - 61 -> 6 [ label = "2 lanes" ] - 61 -> 37 [ label = "2 lanes" ] - 37 -> 61 [ label = "2 lanes" ] - 60 -> 58 [ label = "2 lanes" ] - 58 -> 60 [ label = "2 lanes" ] - 38 -> 57 [ label = "1 lanes" ] - 57 -> 38 [ label = "1 lanes" ] - 23 -> 60 [ label = "1 lanes" ] - 60 -> 23 [ label = "1 lanes" ] - 59 -> 23 [ label = "1 lanes" ] - 23 -> 59 [ label = "1 lanes" ] - 61 -> 62 [ label = "1 lanes" ] - 62 -> 61 [ label = "1 lanes" ] - 64 -> 63 [ label = "1 lanes" ] - 63 -> 64 [ label = "1 lanes" ] - 67 -> 65 [ label = "1 lanes" ] - 65 -> 67 [ label = "1 lanes" ] - 67 -> 66 [ label = "1 lanes" ] - 66 -> 67 [ label = "1 lanes" ] - 66 -> 68 [ label = "1 lanes" ] - 68 -> 66 [ label = "1 lanes" ] - 67 -> 66 [ label = "1 lanes" ] - 66 -> 67 [ label = "1 lanes" ] - 70 -> 69 [ label = "2 lanes" ] - 69 -> 70 [ label = "2 lanes" ] - 1 -> 71 [ label = "2 lanes" ] - 71 -> 1 [ label = "2 lanes" ] - 54 -> 56 [ label = "5 lanes" ] - 7 -> 72 [ label = "2 lanes" ] - 72 -> 7 [ label = "3 lanes" ] - 71 -> 70 [ label = "2 lanes" ] - 70 -> 71 [ label = "2 lanes" ] - 73 -> 1 [ label = "3 lanes" ] - 1 -> 73 [ label = "3 lanes" ] + 65 -> 3 [ label = "5 lanes" ] + 12 -> 46 [ label = "3 lanes" ] + 46 -> 72 [ label = "3 lanes" ] + 66 -> 12 [ label = "3 lanes" ] + 72 -> 128 [ label = "3 lanes" ] + 128 -> 134 [ label = "3 lanes" ] + 134 -> 55 [ label = "3 lanes" ] + 5 -> 67 [ label = "1 lanes" ] + 8 -> 67 [ label = "2 lanes" ] + 67 -> 8 [ label = "2 lanes" ] + 2 -> 41 [ label = "2 lanes" ] + 41 -> 2 [ label = "2 lanes" ] + 41 -> 7 [ label = "2 lanes" ] + 7 -> 41 [ label = "2 lanes" ] + 67 -> 101 [ label = "2 lanes" ] + 101 -> 67 [ label = "2 lanes" ] + 101 -> 2 [ label = "2 lanes" ] + 2 -> 101 [ label = "2 lanes" ] + 68 -> 69 [ label = "3 lanes" ] + 69 -> 68 [ label = "3 lanes" ] + 70 -> 71 [ label = "1 lanes" ] + 71 -> 70 [ label = "1 lanes" ] + 78 -> 14 [ label = "2 lanes" ] + 14 -> 78 [ label = "2 lanes" ] + 24 -> 51 [ label = "2 lanes" ] + 51 -> 24 [ label = "2 lanes" ] + 15 -> 16 [ label = "2 lanes" ] + 16 -> 15 [ label = "2 lanes" ] + 16 -> 18 [ label = "2 lanes" ] + 18 -> 16 [ label = "2 lanes" ] + 17 -> 146 [ label = "4 lanes" ] + 146 -> 17 [ label = "3 lanes" ] + 10 -> 35 [ label = "3 lanes" ] + 35 -> 70 [ label = "3 lanes" ] + 39 -> 10 [ label = "3 lanes" ] + 48 -> 39 [ label = "3 lanes" ] + 70 -> 65 [ label = "3 lanes" ] + 72 -> 73 [ label = "1 lanes" ] + 73 -> 72 [ label = "1 lanes" ] + 52 -> 74 [ label = "2 lanes" ] + 76 -> 7 [ label = "3 lanes" ] + 6 -> 121 [ label = "2 lanes" ] + 121 -> 6 [ label = "2 lanes" ] + 116 -> 53 [ label = "2 lanes" ] + 53 -> 116 [ label = "2 lanes" ] + 121 -> 116 [ label = "2 lanes" ] + 116 -> 121 [ label = "2 lanes" ] + 77 -> 80 [ label = "2 lanes" ] + 80 -> 77 [ label = "2 lanes" ] + 79 -> 77 [ label = "2 lanes" ] + 77 -> 79 [ label = "2 lanes" ] + 80 -> 24 [ label = "2 lanes" ] + 24 -> 80 [ label = "2 lanes" ] + 54 -> 123 [ label = "1 lanes" ] + 123 -> 54 [ label = "1 lanes" ] + 25 -> 94 [ label = "1 lanes" ] + 94 -> 25 [ label = "1 lanes" ] + 78 -> 25 [ label = "1 lanes" ] + 25 -> 78 [ label = "1 lanes" ] + 94 -> 79 [ label = "1 lanes" ] + 79 -> 94 [ label = "1 lanes" ] + 9 -> 80 [ label = "1 lanes" ] + 82 -> 83 [ label = "1 lanes" ] + 83 -> 84 [ label = "1 lanes" ] + 84 -> 85 [ label = "1 lanes" ] + 85 -> 82 [ label = "1 lanes" ] + 86 -> 87 [ label = "1 lanes" ] + 87 -> 88 [ label = "1 lanes" ] + 88 -> 83 [ label = "1 lanes" ] + 84 -> 89 [ label = "1 lanes" ] + 89 -> 90 [ label = "1 lanes" ] + 90 -> 91 [ label = "1 lanes" ] + 85 -> 92 [ label = "1 lanes" ] + 92 -> 93 [ label = "1 lanes" ] + 93 -> 94 [ label = "1 lanes" ] + 82 -> 95 [ label = "1 lanes" ] + 96 -> 97 [ label = "1 lanes" ] + 97 -> 104 [ label = "1 lanes" ] + 98 -> 97 [ label = "1 lanes" ] + 104 -> 99 [ label = "1 lanes" ] + 100 -> 102 [ label = "1 lanes" ] + 102 -> 101 [ label = "1 lanes" ] + 102 -> 103 [ label = "1 lanes" ] + 104 -> 105 [ label = "1 lanes" ] + 106 -> 110 [ label = "1 lanes" ] + 110 -> 107 [ label = "1 lanes" ] + 108 -> 111 [ label = "1 lanes" ] + 111 -> 109 [ label = "1 lanes" ] + 110 -> 114 [ label = "1 lanes" ] + 112 -> 111 [ label = "1 lanes" ] + 114 -> 112 [ label = "1 lanes" ] + 112 -> 113 [ label = "1 lanes" ] + 114 -> 115 [ label = "1 lanes" ] + 116 -> 122 [ label = "1 lanes" ] + 122 -> 116 [ label = "1 lanes" ] + 122 -> 117 [ label = "1 lanes" ] + 117 -> 122 [ label = "1 lanes" ] + 117 -> 118 [ label = "1 lanes" ] + 120 -> 119 [ label = "1 lanes" ] + 119 -> 120 [ label = "1 lanes" ] + 42 -> 122 [ label = "1 lanes" ] + 123 -> 124 [ label = "1 lanes" ] + 126 -> 127 [ label = "1 lanes" ] + 127 -> 129 [ label = "1 lanes" ] + 129 -> 140 [ label = "1 lanes" ] + 140 -> 128 [ label = "1 lanes" ] + 125 -> 127 [ label = "1 lanes" ] + 129 -> 130 [ label = "1 lanes" ] + 130 -> 131 [ label = "1 lanes" ] + 132 -> 133 [ label = "1 lanes" ] + 133 -> 135 [ label = "1 lanes" ] + 135 -> 133 [ label = "1 lanes" ] + 135 -> 136 [ label = "1 lanes" ] + 136 -> 135 [ label = "1 lanes" ] + 136 -> 138 [ label = "1 lanes" ] + 138 -> 136 [ label = "1 lanes" ] + 138 -> 134 [ label = "1 lanes" ] + 134 -> 138 [ label = "1 lanes" ] + 135 -> 130 [ label = "1 lanes" ] + 131 -> 137 [ label = "1 lanes" ] + 137 -> 131 [ label = "1 lanes" ] + 136 -> 131 [ label = "1 lanes" ] + 131 -> 136 [ label = "1 lanes" ] + 137 -> 141 [ label = "1 lanes" ] + 141 -> 137 [ label = "1 lanes" ] + 138 -> 137 [ label = "1 lanes" ] + 137 -> 138 [ label = "1 lanes" ] + 141 -> 139 [ label = "1 lanes" ] + 139 -> 141 [ label = "1 lanes" ] + 139 -> 140 [ label = "1 lanes" ] + 129 -> 141 [ label = "1 lanes" ] + 143 -> 142 [ label = "2 lanes" ] + 142 -> 143 [ label = "2 lanes" ] + 1 -> 144 [ label = "2 lanes" ] + 144 -> 1 [ label = "2 lanes" ] + 74 -> 76 [ label = "5 lanes" ] + 7 -> 145 [ label = "2 lanes" ] + 145 -> 7 [ label = "3 lanes" ] + 144 -> 143 [ label = "2 lanes" ] + 143 -> 144 [ label = "2 lanes" ] + 146 -> 1 [ label = "3 lanes" ] + 1 -> 146 [ label = "3 lanes" ] } diff --git a/tests/src/i5_exit_ramp/geometry.json b/tests/src/i5_exit_ramp/geometry.json index 67e68ecf..35828ea7 100644 --- a/tests/src/i5_exit_ramp/geometry.json +++ b/tests/src/i5_exit_ramp/geometry.json @@ -713,28 +713,92 @@ "coordinates": [ [ [ - -122.32126887204831, - 47.655668204549556 + -122.32186955460553, + 47.65533216946702 ], [ - -122.3209958350078, - 47.65569344041067 + -122.32185180438083, + 47.65535217217623 + ], + [ + -122.32187472279807, + 47.65536140101364 + ], + [ + -122.32189247302277, + 47.655341398304444 + ], + [ + -122.32186955460553, + 47.65533216946702 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2672451447, + "osm_way_id": 49668015, + "src_i": 32259207, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32088135774062, + 47.65573849551941 ], [ - -122.32091512255317, - 47.655713619386894 + -122.32083631395867, + 47.65577168228207 ], [ - -122.32087354470453, - 47.655744252076445 + -122.32093795552368, + 47.65583427685838 ], [ - -122.32097518359932, - 47.6558068484514 + -122.32098299930563, + 47.655801090095714 ], [ - -122.32099427827504, - 47.65579278126421 + -122.32088135774062, + 47.65573849551941 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": -2, + "osm_way_id": 50848121, + "src_i": 978142408, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32126887204831, + 47.655668204549556 + ], + [ + -122.3209958350078, + 47.65569344041067 + ], + [ + -122.32096203147721, + 47.6557018922343 + ], + [ + -122.32100995374614, + 47.65578886202103 ], [ -122.32102956510761, @@ -753,7 +817,7 @@ "type": "Polygon" }, "properties": { - "dst_i": -2, + "dst_i": 978142408, "osm_way_id": 50848121, "src_i": 4789275355, "type": "road" @@ -956,6 +1020,42 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3218405214061, + 47.65540709464066 + ], + [ + -122.32187190706104, + 47.65548539856524 + ], + [ + -122.3218976852738, + 47.65548070950285 + ], + [ + -122.32186629961886, + 47.655402405578265 + ], + [ + -122.3218405214061, + 47.65540709464066 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 631370102, + "osm_way_id": 261639788, + "src_i": 2672451447, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1149,49 +1249,281 @@ "coordinates": [ [ [ - -122.32211962917032, - 47.65543749260729 + -122.32211918458026, + 47.655438020509024 + ], + [ + -122.32192933127426, + 47.65547487020823 + ], + [ + -122.32194781447176, + 47.65551807900989 + ], + [ + -122.32213766777777, + 47.65548122931069 + ], + [ + -122.32211918458026, + 47.655438020509024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 631370102, + "osm_way_id": 337263523, + "src_i": 400020831, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32186596183722, + 47.655486410301954 + ], + [ + -122.32154838434944, + 47.65554047031705 + ], + [ + -122.321225104627, + 47.65557636044019 ], [ - -122.32154815738154, - 47.65554049549805 + -122.32123596170315, + 47.65562072756797 ], [ - -122.3211937269827, - 47.655579843512434 + -122.32156201577435, + 47.65558452987686 ], [ - -122.32100087236003, - 47.65558888079437 + -122.32188231687691, + 47.65553000581186 ], [ - -122.32100550517535, - 47.65563373895169 + -122.32186596183722, + 47.655486410301954 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3670717206, + "osm_way_id": 337263523, + "src_i": 631370102, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32116143746148, + 47.65558176356387 ], [ - -122.32120147326354, - 47.65562455597967 + -122.32096096606318, + 47.65559358874252 ], [ - -122.32156224274225, - 47.65558450469586 + -122.32096678979242, + 47.655638383947334 ], [ - -122.32213688407097, - 47.65548092983662 + -122.32116726119072, + 47.655626558768695 ], [ - -122.32211962917032, - 47.65543749260729 + -122.32116143746148, + 47.65558176356387 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9454517095, + "dst_i": 29937543, "osm_way_id": 337263523, - "src_i": 400020831, + "src_i": 3670717206, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32096096739829, + 47.65559358874252 + ], + [ + -122.32097238788886, + 47.65557969332574 + ], + [ + -122.3208115717876, + 47.65555516253269 + ], + [ + -122.32080922734274, + 47.655568011139216 + ], + [ + -122.32116067912169, + 47.65554662797148 + ], + [ + -122.32115827593219, + 47.655528715285485 + ], + [ + -122.32078535566032, + 47.65555140426807 + ], + [ + -122.32078212470553, + 47.65556911280808 + ], + [ + -122.32093179801812, + 47.65559194388346 + ], + [ + -122.32093760572609, + 47.65558487791429 + ], + [ + -122.32096096739829, + 47.65559358874252 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3670717205, + "osm_way_id": 337263524, + "src_i": 29937543, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32116287269967, + 47.655505257383005 + ], + [ + -122.32106453418513, + 47.65549420202358 + ], + [ + -122.32106013901854, + 47.65551194383849 + ], + [ + -122.32115847753309, + 47.65552299919791 + ], + [ + -122.32116287269967, + 47.655505257383005 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2672451455, + "osm_way_id": 337263524, + "src_i": 3670717205, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32116658162214, + 47.65555014162065 + ], + [ + -122.32116908360943, + 47.65558061243233 + ], + [ + -122.32119574566188, + 47.655579619581374 + ], + [ + -122.32119324367459, + 47.6555491487697 + ], + [ + -122.32116658162214, + 47.65555014162065 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3670717206, + "osm_way_id": 362821492, + "src_i": 3670717205, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32087808673269, + 47.65559536310387 + ], + [ + -122.32081146097387, + 47.655592575207166 + ], + [ + -122.3208073221475, + 47.655637454948206 + ], + [ + -122.3208739479063, + 47.65564024284491 + ], + [ + -122.32087808673269, + 47.65559536310387 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9454517095, + "osm_way_id": 409328788, + "src_i": 29937543, "type": "road" }, "type": "Feature" @@ -1437,33 +1769,33 @@ "coordinates": [ [ [ - -122.32273051994251, - 47.65789921888867 + -122.32242402783388, + 47.65545295464216 ], [ - -122.3227249058248, - 47.65770797277192 + -122.32239582774014, + 47.655461053931745 ], [ - -122.32259471169826, - 47.6577097066638 + -122.32240630030596, + 47.65547759964904 ], [ - -122.32260032581597, - 47.65790095278056 + -122.3224345003997, + 47.655469500359445 ], [ - -122.32273051994251, - 47.65789921888867 + -122.32242402783388, + 47.65545295464216 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1864943558, - "osm_way_id": 622519703, - "src_i": 29545423, + "dst_i": 5757451243, + "osm_way_id": 607520174, + "src_i": 5757451241, "type": "road" }, "type": "Feature" @@ -1473,33 +1805,177 @@ "coordinates": [ [ [ - -122.32136422259724, - 47.655947471759895 + -122.32268105829718, + 47.65541182956845 ], [ - -122.3213639328794, - 47.65597508992372 + -122.32265025875346, + 47.65541092934761 ], [ - -122.32141733709062, - 47.65597534353239 + -122.32264909988209, + 47.65542889959019 ], [ - -122.32141762680847, - 47.65594772536856 + -122.3226798994258, + 47.65542979981103 ], [ - -122.32136422259724, - 47.655947471759895 + -122.32268105829718, + 47.65541182956845 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8041342861, - "osm_way_id": 863212079, - "src_i": 59713406, + "dst_i": 5757451242, + "osm_way_id": 607520176, + "src_i": 5757451262, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32310545755846, + 47.6577502633663 + ], + [ + -122.32308535754846, + 47.657726263172954 + ], + [ + -122.32306210001447, + 47.65773509990619 + ], + [ + -122.32308220002447, + 47.65775910009954 + ], + [ + -122.32310545755846, + 47.6577502633663 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5766863607, + "osm_way_id": 608754116, + "src_i": 5766863608, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32273051994251, + 47.65789921888867 + ], + [ + -122.3227249058248, + 47.65770797277192 + ], + [ + -122.32259471169826, + 47.6577097066638 + ], + [ + -122.32260032581597, + 47.65790095278056 + ], + [ + -122.32273051994251, + 47.65789921888867 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1864943558, + "osm_way_id": 622519703, + "src_i": 29545423, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32136422259724, + 47.655947471759895 + ], + [ + -122.3213639328794, + 47.65597508992372 + ], + [ + -122.32141733709062, + 47.65597534353239 + ], + [ + -122.32141762680847, + 47.65594772536856 + ], + [ + -122.32136422259724, + 47.655947471759895 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8041342861, + "osm_way_id": 863212079, + "src_i": 59713406, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32120750259898, + 47.656028243422725 + ], + [ + -122.32120760273189, + 47.655999743024495 + ], + [ + -122.32118090062627, + 47.65599969985706 + ], + [ + -122.32118080049338, + 47.65602820025529 + ], + [ + -122.32120750259898, + 47.656028243422725 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8041342867, + "osm_way_id": 863212082, + "src_i": 8041342868, "type": "road" }, "type": "Feature" @@ -1513,12 +1989,12 @@ 47.65495202805995 ], [ - -122.32185937843307, - 47.655231557872185 + -122.321857614759, + 47.65529899619418 ], [ - -122.32196452598455, - 47.65523280613045 + -122.32196276231048, + 47.65530024445245 ], [ -122.32197183969129, @@ -1545,24 +2021,68 @@ "coordinates": [ [ [ - -122.32093551228101, - 47.65587020745099 + -122.32087394924142, + 47.65564024284491 + ], + [ + -122.32086309350038, + 47.65566912725343 + ], + [ + -122.320902591255, + 47.6557228518216 + ], + [ + -122.32092651901185, + 47.655714869443806 + ], + [ + -122.32089140040254, + 47.65566710018273 + ], + [ + -122.3208998342626, + 47.65564465671492 + ], + [ + -122.32087394924142, + 47.65564024284491 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 978142408, + "osm_way_id": 1025401762, + "src_i": 29937543, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32085912957281, + 47.655892353243374 ], [ - -122.32080448771899, - 47.65584163600636 + -122.3207574880078, + 47.65582975866707 ], [ - -122.32087354470453, - 47.655744252076445 + -122.32083631395867, + 47.65577168228207 ], [ - -122.32097518359932, - 47.6558068484514 + -122.32093795552368, + 47.65583427685838 ], [ - -122.32093551228101, - 47.65587020745099 + -122.32085912957281, + 47.655892353243374 ] ] ], @@ -1955,6 +2475,51 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3208998342626, + 47.65564465671492 + ], + [ + -122.32087394924142, + 47.65564024284491 + ], + [ + -122.32087808673269, + 47.65559536310387 + ], + [ + -122.32093179801812, + 47.65559194388346 + ], + [ + -122.32096096739829, + 47.65559358874252 + ], + [ + -122.32096678979242, + 47.655638383947334 + ], + [ + -122.3208998342626, + 47.65564465671492 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/29937543", + "osm_node_id": 29937543, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -2157,31 +2722,31 @@ "coordinates": [ [ [ - -122.32196217352906, - 47.655322723893114 + -122.32189247435788, + 47.655341398304444 ], [ - -122.32185702597758, - 47.65532147563485 + -122.32186955327042, + 47.65533216946702 ], [ - -122.32185937843307, - 47.655231557872185 + -122.321857614759, + 47.65529899619418 ], [ - -122.32196452598455, - 47.65523280613045 + -122.32196276231048, + 47.65530024445245 ], [ - -122.32196217352906, - 47.655322723893114 + -122.32189247435788, + 47.655341398304444 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Connection", "control": "StopSign", "osm_link": "https://www.openstreetmap.org/node/32259207", "osm_node_id": 32259207, @@ -2612,16 +3177,20 @@ "coordinates": [ [ [ - -122.32213688407097, - 47.65548092983662 + -122.32216974101192, + 47.65547500420713 ], [ - -122.32211962917032, - 47.65543749260729 + -122.32213766777777, + 47.65548122931069 ], [ - -122.32215146609084, - 47.655431754036684 + -122.32211918458026, + 47.655438020509024 + ], + [ + -122.32215119506446, + 47.655431807096654 ], [ -122.32218319887315, @@ -2632,8 +3201,8 @@ 47.655468690070755 ], [ - -122.32213688407097, - 47.65548092983662 + -122.32216974101192, + 47.65547500420713 ] ] ], @@ -2685,6 +3254,100 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32188231687691, + 47.65553000581186 + ], + [ + -122.32186596183722, + 47.655486410301954 + ], + [ + -122.32187190706104, + 47.65548539856524 + ], + [ + -122.3218976852738, + 47.65548070950285 + ], + [ + -122.32192933127426, + 47.65547487020823 + ], + [ + -122.32194781447176, + 47.65551807900989 + ], + [ + -122.32188231687691, + 47.65553000581186 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/631370102", + "osm_node_id": 631370102, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32099427827504, + 47.65579278126421 + ], + [ + -122.32098299930563, + 47.655801090095714 + ], + [ + -122.32088135774062, + 47.65573849551941 + ], + [ + -122.320902591255, + 47.6557228518216 + ], + [ + -122.32092651901185, + 47.655714869443806 + ], + [ + -122.32096203147721, + 47.6557018922343 + ], + [ + -122.32100995374614, + 47.65578886202103 + ], + [ + -122.32099427827504, + 47.65579278126421 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/978142408", + "osm_node_id": 978142408, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -2879,32 +3542,110 @@ "coordinates": [ [ [ - -122.32247320243157, - 47.65479005216065 + -122.32185760007285, + 47.6553806995541 ], [ - -122.32261092121148, - 47.65478994783935 + -122.32186629961886, + 47.655402405578265 ], [ - -122.32261107207837, - 47.654879879991164 + -122.3218405214061, + 47.65540709464066 ], [ - -122.32247335329846, - 47.65487998431246 + -122.32185180438083, + 47.65535217217623 ], [ - -122.32247320243157, - 47.65479005216065 + -122.32187472279807, + 47.65536140101364 + ], + [ + -122.32185760007285, + 47.6553806995541 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2672451447", + "osm_node_id": 2672451447, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32092840017518, + 47.655481900204535 + ], + [ + -122.32095510495101, + 47.655481899305215 + ], + [ + -122.32106453418513, + 47.65549420202358 + ], + [ + -122.32106013901854, + 47.65551194383849 + ], + [ + -122.32092840017518, + 47.655481900204535 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2672451455", + "osm_node_id": 2672451455, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32247320243157, + 47.65479005216065 + ], + [ + -122.32261092121148, + 47.65478994783935 + ], + [ + -122.32261107207837, + 47.654879879991164 + ], + [ + -122.32247335329846, + 47.65487998431246 + ], + [ + -122.32247320243157, + 47.65479005216065 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", "osm_link": "https://www.openstreetmap.org/node/3584131214", "osm_node_id": 3584131214, "type": "intersection" @@ -2956,6 +3697,104 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32119324367459, + 47.6555491487697 + ], + [ + -122.32116658162214, + 47.65555014162065 + ], + [ + -122.32116618910118, + 47.65554537072 + ], + [ + -122.32116067912169, + 47.65554662797148 + ], + [ + -122.32115827593219, + 47.655528715285485 + ], + [ + -122.32119151871856, + 47.65552669271139 + ], + [ + -122.32115847753309, + 47.65552299919791 + ], + [ + -122.32116287269967, + 47.655505257383005 + ], + [ + -122.32119324367459, + 47.6555491487697 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3670717205", + "osm_node_id": 3670717205, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32116726119072, + 47.655626558768695 + ], + [ + -122.32116143746148, + 47.65558176356387 + ], + [ + -122.32116914101896, + 47.65558130940651 + ], + [ + -122.32119574566188, + 47.655579619581374 + ], + [ + -122.321225104627, + 47.65557636044019 + ], + [ + -122.32123596170315, + 47.65562072756797 + ], + [ + -122.32116726119072, + 47.655626558768695 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3670717206", + "osm_node_id": 3670717206, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3079,6 +3918,154 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32256469452624, + 47.655412553522275 + ], + [ + -122.32257516709205, + 47.65542909923957 + ], + [ + -122.3224345003997, + 47.655469500359445 + ], + [ + -122.32242402783388, + 47.65545295464216 + ], + [ + -122.32256469452624, + 47.655412553522275 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5757451241", + "osm_node_id": 5757451241, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3224964960134, + 47.65542443895546 + ], + [ + -122.32249765488478, + 47.65540646871288 + ], + [ + -122.32265025875346, + 47.65541092934761 + ], + [ + -122.32264909988209, + 47.65542889959019 + ], + [ + -122.3224964960134, + 47.65542443895546 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5757451242", + "osm_node_id": 5757451242, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3222656336136, + 47.65551800076892 + ], + [ + -122.32225516104778, + 47.65550145505163 + ], + [ + -122.32239582774014, + 47.655461053931745 + ], + [ + -122.32240630030596, + 47.65547759964904 + ], + [ + -122.3222656336136, + 47.65551800076892 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5757451243", + "osm_node_id": 5757451243, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32283366216586, + 47.655416290203185 + ], + [ + -122.32283250329448, + 47.65543426044576 + ], + [ + -122.3226798994258, + 47.65542979981103 + ], + [ + -122.32268105829718, + 47.65541182956845 + ], + [ + -122.32283366216586, + 47.655416290203185 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5757451262", + "osm_node_id": 5757451262, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3169,6 +4156,80 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32299200164682, + 47.657651399153174 + ], + [ + -122.3230152591808, + 47.65764256241994 + ], + [ + -122.32308535754846, + 47.657726263172954 + ], + [ + -122.32306210001447, + 47.65773509990619 + ], + [ + -122.32299200164682, + 47.657651399153174 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5766863607", + "osm_node_id": 5766863607, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32317555592611, + 47.65783396411932 + ], + [ + -122.32315229839213, + 47.657842800852556 + ], + [ + -122.32308220002447, + 47.65775910009954 + ], + [ + -122.32310545755846, + 47.6577502633663 + ], + [ + -122.32317555592611, + 47.65783396411932 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5766863608", + "osm_node_id": 5766863608, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3214,6 +4275,80 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32118123440259, + 47.655904543546555 + ], + [ + -122.3212079365082, + 47.65590458671399 + ], + [ + -122.32120760273189, + 47.655999743024495 + ], + [ + -122.32118090062627, + 47.65599969985706 + ], + [ + -122.32118123440259, + 47.655904543546555 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8041342867", + "osm_node_id": 8041342867, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32120716882267, + 47.65612339973324 + ], + [ + -122.32118046671705, + 47.65612335656581 + ], + [ + -122.32118080049338, + 47.65602820025529 + ], + [ + -122.32120750259898, + 47.656028243422725 + ], + [ + -122.32120716882267, + 47.65612339973324 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8041342868", + "osm_node_id": 8041342868, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3256,24 +4391,24 @@ "coordinates": [ [ [ - -122.32087231640766, - 47.65563998024303 + -122.32069072339803, + 47.65563257612897 ], [ - -122.32086768359234, - 47.65559512208571 + -122.3206948622244, + 47.65558769638793 ], [ - -122.32100087236003, - 47.65558888079437 + -122.32081146097387, + 47.655592575207166 ], [ - -122.32100550517535, - 47.65563373895169 + -122.3208073221475, + 47.655637454948206 ], [ - -122.32087231640766, - 47.65563998024303 + -122.32069072339803, + 47.65563257612897 ] ] ], diff --git a/tests/src/i5_exit_ramp/road_network.dot b/tests/src/i5_exit_ramp/road_network.dot index ee7c3fa1..fc6bc6e1 100644 --- a/tests/src/i5_exit_ramp/road_network.dot +++ b/tests/src/i5_exit_ramp/road_network.dot @@ -11,26 +11,26 @@ digraph { 9 [ label = "Unknown" ] 10 [ label = "Unknown" ] 11 [ label = "Unknown" ] - 12 [ label = "MapEdge" ] - 13 [ label = "Unknown" ] + 12 [ label = "Unknown" ] + 13 [ label = "MapEdge" ] 14 [ label = "Unknown" ] - 15 [ label = "MapEdge" ] - 16 [ label = "Unknown" ] - 17 [ label = "MapEdge" ] - 18 [ label = "Unknown" ] - 19 [ label = "MapEdge" ] - 20 [ label = "Unknown" ] + 15 [ label = "Unknown" ] + 16 [ label = "MapEdge" ] + 17 [ label = "Unknown" ] + 18 [ label = "MapEdge" ] + 19 [ label = "Unknown" ] + 20 [ label = "MapEdge" ] 21 [ label = "Unknown" ] - 22 [ label = "MapEdge" ] + 22 [ label = "Unknown" ] 23 [ label = "MapEdge" ] 24 [ label = "MapEdge" ] - 25 [ label = "Unknown" ] + 25 [ label = "MapEdge" ] 26 [ label = "Unknown" ] 27 [ label = "Unknown" ] - 28 [ label = "MapEdge" ] - 29 [ label = "Unknown" ] - 30 [ label = "MapEdge" ] - 31 [ label = "MapEdge" ] + 28 [ label = "Unknown" ] + 29 [ label = "MapEdge" ] + 30 [ label = "Unknown" ] + 31 [ label = "Unknown" ] 32 [ label = "Unknown" ] 33 [ label = "MapEdge" ] 34 [ label = "MapEdge" ] @@ -43,63 +43,93 @@ digraph { 41 [ label = "Unknown" ] 42 [ label = "Unknown" ] 43 [ label = "MapEdge" ] + 44 [ label = "Unknown" ] + 45 [ label = "Unknown" ] + 46 [ label = "Unknown" ] + 47 [ label = "Unknown" ] + 48 [ label = "Unknown" ] + 49 [ label = "Unknown" ] + 50 [ label = "MapEdge" ] + 51 [ label = "Unknown" ] + 52 [ label = "Unknown" ] + 53 [ label = "Unknown" ] + 54 [ label = "Unknown" ] + 55 [ label = "Unknown" ] + 56 [ label = "Unknown" ] + 57 [ label = "Unknown" ] + 58 [ label = "MapEdge" ] 4 -> 6 [ label = "1 lanes" ] - 32 -> 3 [ label = "4 lanes" ] + 35 -> 3 [ label = "4 lanes" ] 9 -> 7 [ label = "2 lanes" ] 7 -> 9 [ label = "1 lanes" ] 2 -> 4 [ label = "4 lanes" ] - 10 -> 29 [ label = "1 lanes" ] - 35 -> 34 [ label = "3 lanes" ] - 34 -> 35 [ label = "2 lanes" ] - 30 -> 13 [ label = "3 lanes" ] + 10 -> 32 [ label = "1 lanes" ] + 40 -> 39 [ label = "3 lanes" ] + 39 -> 40 [ label = "2 lanes" ] + 33 -> 14 [ label = "3 lanes" ] 4 -> 5 [ label = "4 lanes" ] - 36 -> 14 [ label = "1 lanes" ] - 14 -> 36 [ label = "1 lanes" ] - 19 -> 18 [ label = "2 lanes" ] - 18 -> 19 [ label = "2 lanes" ] - 1 -> 20 [ label = "3 lanes" ] - 20 -> 22 [ label = "2 lanes" ] - 22 -> 20 [ label = "2 lanes" ] - 21 -> 37 [ label = "2 lanes" ] - 37 -> 21 [ label = "2 lanes" ] - 37 -> 20 [ label = "2 lanes" ] - 20 -> 37 [ label = "2 lanes" ] - 41 -> 42 [ label = "1 lanes" ] - 42 -> 41 [ label = "1 lanes" ] - 27 -> 26 [ label = "2 lanes" ] - 40 -> 17 [ label = "2 lanes" ] - 17 -> 40 [ label = "1 lanes" ] - 38 -> 0 [ label = "3 lanes" ] - 0 -> 38 [ label = "2 lanes" ] - 29 -> 9 [ label = "1 lanes" ] - 13 -> 10 [ label = "3 lanes" ] - 26 -> 39 [ label = "2 lanes" ] - 33 -> 32 [ label = "1 lanes" ] - 28 -> 40 [ label = "2 lanes" ] - 40 -> 28 [ label = "1 lanes" ] - 14 -> 15 [ label = "2 lanes" ] - 15 -> 14 [ label = "2 lanes" ] - 24 -> 18 [ label = "2 lanes" ] - 18 -> 24 [ label = "2 lanes" ] - 21 -> 25 [ label = "2 lanes" ] - 25 -> 21 [ label = "2 lanes" ] - 23 -> 21 [ label = "2 lanes" ] + 43 -> 15 [ label = "1 lanes" ] + 15 -> 43 [ label = "1 lanes" ] + 20 -> 19 [ label = "2 lanes" ] + 19 -> 20 [ label = "2 lanes" ] + 1 -> 21 [ label = "3 lanes" ] 21 -> 23 [ label = "2 lanes" ] - 25 -> 31 [ label = "2 lanes" ] - 31 -> 25 [ label = "2 lanes" ] - 43 -> 27 [ label = "2 lanes" ] - 40 -> 37 [ label = "1 lanes" ] - 37 -> 40 [ label = "1 lanes" ] - 18 -> 11 [ label = "2 lanes" ] - 11 -> 18 [ label = "2 lanes" ] - 12 -> 10 [ label = "4 lanes" ] - 11 -> 38 [ label = "2 lanes" ] - 38 -> 11 [ label = "2 lanes" ] - 11 -> 35 [ label = "2 lanes" ] - 35 -> 11 [ label = "3 lanes" ] - 8 -> 32 [ label = "4 lanes" ] - 25 -> 41 [ label = "1 lanes" ] - 41 -> 25 [ label = "1 lanes" ] - 14 -> 16 [ label = "2 lanes" ] - 16 -> 14 [ label = "2 lanes" ] + 23 -> 21 [ label = "2 lanes" ] + 22 -> 44 [ label = "2 lanes" ] + 44 -> 22 [ label = "2 lanes" ] + 44 -> 21 [ label = "2 lanes" ] + 21 -> 44 [ label = "2 lanes" ] + 54 -> 57 [ label = "1 lanes" ] + 57 -> 54 [ label = "1 lanes" ] + 28 -> 27 [ label = "2 lanes" ] + 51 -> 18 [ label = "2 lanes" ] + 18 -> 51 [ label = "1 lanes" ] + 37 -> 17 [ label = "1 lanes" ] + 31 -> 0 [ label = "3 lanes" ] + 0 -> 31 [ label = "2 lanes" ] + 45 -> 31 [ label = "3 lanes" ] + 31 -> 45 [ label = "2 lanes" ] + 32 -> 9 [ label = "1 lanes" ] + 14 -> 10 [ label = "3 lanes" ] + 27 -> 50 [ label = "2 lanes" ] + 36 -> 35 [ label = "1 lanes" ] + 29 -> 51 [ label = "2 lanes" ] + 51 -> 29 [ label = "1 lanes" ] + 30 -> 37 [ label = "1 lanes" ] + 15 -> 16 [ label = "2 lanes" ] + 16 -> 15 [ label = "2 lanes" ] + 25 -> 19 [ label = "2 lanes" ] + 19 -> 25 [ label = "2 lanes" ] + 22 -> 26 [ label = "2 lanes" ] + 26 -> 22 [ label = "2 lanes" ] + 24 -> 22 [ label = "2 lanes" ] + 22 -> 24 [ label = "2 lanes" ] + 26 -> 34 [ label = "2 lanes" ] + 34 -> 26 [ label = "2 lanes" ] + 30 -> 28 [ label = "2 lanes" ] + 42 -> 30 [ label = "2 lanes" ] + 11 -> 42 [ label = "2 lanes" ] + 41 -> 11 [ label = "1 lanes" ] + 38 -> 41 [ label = "1 lanes" ] + 42 -> 41 [ label = "1 lanes" ] + 58 -> 11 [ label = "2 lanes" ] + 51 -> 44 [ label = "1 lanes" ] + 44 -> 51 [ label = "1 lanes" ] + 19 -> 12 [ label = "2 lanes" ] + 12 -> 19 [ label = "2 lanes" ] + 13 -> 10 [ label = "4 lanes" ] + 12 -> 45 [ label = "2 lanes" ] + 45 -> 12 [ label = "2 lanes" ] + 12 -> 40 [ label = "2 lanes" ] + 40 -> 12 [ label = "3 lanes" ] + 48 -> 46 [ label = "1 lanes" ] + 47 -> 49 [ label = "1 lanes" ] + 52 -> 53 [ label = "1 lanes" ] + 8 -> 35 [ label = "4 lanes" ] + 26 -> 54 [ label = "1 lanes" ] + 54 -> 26 [ label = "1 lanes" ] + 55 -> 56 [ label = "1 lanes" ] + 15 -> 17 [ label = "2 lanes" ] + 17 -> 15 [ label = "2 lanes" ] + 31 -> 11 [ label = "1 lanes" ] } diff --git a/tests/src/kingsway_junction/geometry.json b/tests/src/kingsway_junction/geometry.json index 4f04e299..31d61638 100644 --- a/tests/src/kingsway_junction/geometry.json +++ b/tests/src/kingsway_junction/geometry.json @@ -329,31 +329,31 @@ "coordinates": [ [ [ - -2.3043555472875097, - 53.44676388304061 + -2.3043551456397724, + 53.44676366270683 ], [ - -2.3054568789724765, - 53.44556392008621 + -2.305399697018313, + 53.445615980911796 ], [ - -2.30539063427501, - 53.445542352556636 + -2.305333322464811, + 53.44559455187775 ], [ - -2.304289302590043, - 53.44674231551104 + -2.3042887710862705, + 53.44674223367277 ], [ - -2.3043555472875097, - 53.44676388304061 + -2.3043551456397724, + 53.44676366270683 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 955166067, + "dst_i": 929679768, "osm_way_id": 50147875, "src_i": 739096994, "type": "road" @@ -365,37 +365,73 @@ "coordinates": [ [ [ - -2.306415435456549, - 53.447059204052024 + -2.306597679342415, + 53.447136039387864 ], [ - -2.306281333430851, - 53.447002828281605 + -2.3065359765862774, + 53.44711012813517 ], [ - -2.3062127483048407, - 53.447060701422416 + -2.3064674397787917, + 53.4471680228597 ], [ - -2.3063468503305384, - 53.44711707719284 + -2.3065291425349295, + 53.44719393411239 ], [ - -2.306415435456549, - 53.447059204052024 + -2.306597679342415, + 53.447136039387864 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 743548122, + "dst_i": 2790145016, "osm_way_id": 59876766, "src_i": -1, "type": "road" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3065036228040787, + 53.447096499816304 + ], + [ + -2.3062813591000677, + 53.44700286695243 + ], + [ + -2.3062126773370077, + 53.447060700523096 + ], + [ + -2.3064349410410188, + 53.44715433338697 + ], + [ + -2.3065036228040787, + 53.447096499816304 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 743548122, + "osm_way_id": 59876766, + "src_i": 2790145016, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -509,31 +545,31 @@ "coordinates": [ [ [ - -2.306767123349078, - 53.44660153931184 + -2.30676634572282, + 53.4466015959691 ], [ - -2.3075813327702464, - 53.44694303149198 + -2.30681123514229, + 53.44662099163711 ], [ - -2.307628612446739, - 53.44690304225964 + -2.306859454010107, + 53.44658140350219 ], [ - -2.30681440302557, - 53.44656155007951 + -2.3068145645906375, + 53.446562007834174 ], [ - -2.306767123349078, - 53.44660153931184 + -2.30676634572282, + 53.4466015959691 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 743548133, + "dst_i": 2790145018, "osm_way_id": 59876786, "src_i": 743547964, "type": "road" @@ -545,8 +581,44 @@ "coordinates": [ [ [ - -2.307582339909497, - 53.44694345417311 + -2.30687322931953, + 53.44664733096687 + ], + [ + -2.30758139618831, + 53.44694314210853 + ], + [ + -2.3076285490286748, + 53.4469030989169 + ], + [ + -2.3069203821598947, + 53.44660728777524 + ], + [ + -2.30687322931953, + 53.44664733096687 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 743548133, + "osm_way_id": 59876786, + "src_i": 2790145018, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3075822764914333, + 53.446943509931046 ], [ -2.307466096108566, @@ -557,12 +629,12 @@ 53.44708540128897 ], [ - -2.3076808160828963, - 53.44698317900491 + -2.3076807526648326, + 53.44698323476285 ], [ - -2.307582339909497, - 53.44694345417311 + -2.3075822764914333, + 53.446943509931046 ] ] ], @@ -581,8 +653,8 @@ "coordinates": [ [ [ - -2.308024424212111, - 53.446560728998925 + -2.3080887150292315, + 53.44650520218805 ], [ -2.3077931249439665, @@ -593,12 +665,12 @@ 53.446800715654284 ], [ - -2.308122335662752, - 53.446600943061654 + -2.308186626479873, + 53.44654541625078 ], [ - -2.308024424212111, - 53.446560728998925 + -2.3080887150292315, + 53.44650520218805 ] ] ], @@ -621,12 +693,12 @@ 53.44682574737049 ], [ - -2.307628612446739, - 53.44690304405829 + -2.3076285475187213, + 53.446903100715545 ], [ - -2.307726665833046, - 53.44694313581328 + -2.3077266009050286, + 53.44694319247054 ], [ -2.3078157621728237, @@ -913,8 +985,8 @@ "coordinates": [ [ [ - -2.304975558517792, - 53.44675437811107 + -2.3049721732011497, + 53.44675277911735 ], [ -2.3048089245353354, @@ -925,12 +997,12 @@ 53.44673122237963 ], [ - -2.3049016764735026, - 53.446809891432125 + -2.3048982911568605, + 53.4468082924384 ], [ - -2.304975558517792, - 53.44675437811107 + -2.3049721732011497, + 53.44675277911735 ] ] ], @@ -1073,16 +1145,48 @@ "coordinates": [ [ [ - -2.307664849830366, - 53.445268049589316 + -2.307665631986486, + 53.44526731844089 + ], + [ + -2.307663874400147, + 53.445266694311734 + ], + [ + -2.3076029658797603, + 53.445327538810965 + ], + [ + -2.307604723466099, + 53.44532816294013 ], [ - -2.3076494271612393, - 53.44526283442361 + -2.307665631986486, + 53.44526731844089 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401919, + "osm_way_id": 60007839, + "src_i": 955166004, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307269669225724, + 53.445097977091095 ], [ - -2.3071337794146096, - 53.445042142712246 + -2.307133266030284, + 53.44504197633776 ], [ -2.3068817258301206, @@ -1093,29 +1197,61 @@ 53.44502275603745 ], [ - -2.3070704217489983, - 53.44510225696238 + -2.307070935133324, + 53.44510242333687 + ], + [ + -2.3072021682466133, + 53.44515630169133 + ], + [ + -2.307269669225724, + 53.445097977091095 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 745988105, + "osm_way_id": 60007839, + "src_i": 7796391487, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307605683796779, + 53.44524374092764 + ], + [ + -2.307332592024612, + 53.44512461049899 ], [ - -2.307585172583012, - 53.44532256556276 + -2.3072623157502345, + 53.44518175878663 ], [ - -2.3076061277232256, - 53.4453296513173 + -2.3075354075224017, + 53.44530088921528 ], [ - -2.307664849830366, - 53.445268049589316 + -2.307605683796779, + 53.44524374092764 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 745988105, + "dst_i": 7796391487, "osm_way_id": 60007839, - "src_i": 955166004, + "src_i": 9298401919, "type": "road" }, "type": "Feature" @@ -1221,24 +1357,24 @@ "coordinates": [ [ [ - -2.304904217725915, - 53.4468110920264 + -2.304896894449504, + 53.44680947234828 ], [ - -2.304616773841936, - 53.44705356710451 + -2.3046106056802578, + 53.44705097256182 ], [ - -2.304678449418904, - 53.44707950173956 + -2.30464761163042, + 53.447066534422035 ], [ - -2.3049658933028825, - 53.446837026661456 + -2.304933900399666, + 53.446825034208494 ], [ - -2.304904217725915, - 53.4468110920264 + -2.304896894449504, + 53.44680947234828 ] ] ], @@ -1489,20 +1625,12 @@ 53.44613871696254 ], [ - -2.307883238992672, - 53.44623650828928 - ], - [ - -2.308098048054283, - 53.44628457882513 - ], - [ - -2.308120292695126, - 53.44624931822553 + -2.30784772789687, + 53.44622678302597 ], [ - -2.307907582469435, - 53.446201717135544 + -2.307874146050291, + 53.44619256024345 ], [ -2.3075515549694, @@ -1521,13 +1649,85 @@ "type": "Polygon" }, "properties": { - "dst_i": 2918472522, + "dst_i": 32025949, "osm_way_id": 60577054, "src_i": 32025947, "type": "road" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307919823665696, + 53.446244694813416 + ], + [ + -2.308098048054283, + 53.44628457882513 + ], + [ + -2.308120292695126, + 53.44624931822553 + ], + [ + -2.3079420683065397, + 53.44620943421382 + ], + [ + -2.307919823665696, + 53.446244694813416 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2918472522, + "osm_way_id": 60577054, + "src_i": 32025949, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3054323316519367, + 53.44560131927246 + ], + [ + -2.305456815554413, + 53.44560018163069 + ], + [ + -2.3054544660661453, + 53.44558224915885 + ], + [ + -2.3054299821636697, + 53.44558338680062 + ], + [ + -2.3054323316519367, + 53.44560131927246 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 955166153, + "osm_way_id": 81981143, + "src_i": 929679768, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1621,16 +1821,44 @@ "coordinates": [ [ [ - -2.3054568789724765, - 53.44556392188485 + -2.3055062771142896, + 53.445503726695776 + ], + [ + -2.3054670168029556, + 53.44554856417062 ], [ - -2.3054528896742745, - 53.445588358250184 + -2.3055339590991237, + 53.44556935648502 ], [ - -2.3054865888253975, - 53.44561007057053 + -2.3055732194104572, + 53.44552451901016 + ], + [ + -2.3055062771142896, + 53.445503726695776 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 955166153, + "osm_way_id": 81981181, + "src_i": 955166067, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.305512486044723, + 53.44561432166353 ], [ -2.3059160484034598, @@ -1649,20 +1877,12 @@ 53.44563623723054 ], [ - -2.305527411939017, - 53.445570129901554 - ], - [ - -2.3055313106399846, - 53.44557264170666 - ], - [ - -2.305532023338225, - 53.44556827280254 + -2.3055325442723205, + 53.445570972565854 ], [ - -2.3054568789724765, - 53.44556392188485 + -2.305512486044723, + 53.44561432166353 ] ] ], @@ -1671,7 +1891,7 @@ "properties": { "dst_i": 4140571229, "osm_way_id": 81981181, - "src_i": 955166067, + "src_i": 955166153, "type": "road" }, "type": "Feature" @@ -1720,6 +1940,42 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3054359917801888, + 53.4455771113348 + ], + [ + -2.3055062771142896, + 53.445503726695776 + ], + [ + -2.3054406998164465, + 53.44548144690353 + ], + [ + -2.3053704144823453, + 53.44555483154255 + ], + [ + -2.3054359917801888, + 53.4455771113348 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 955166067, + "osm_way_id": 81981186, + "src_i": 929679768, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -2245,57 +2501,69 @@ "coordinates": [ [ [ - -2.306414056868639, - 53.44606110101559 - ], - [ - -2.3064500179307026, - 53.446084694716625 + -2.3065600694106934, + 53.44712097485247 ], [ - -2.306480052423712, - 53.446165288317246 + -2.3065991923162223, + 53.4470901461095 ], [ - -2.306471753717082, - 53.44619459720678 + -2.3065750994918064, + 53.447079300291534 ], [ - -2.306334942834089, - 53.44631396235835 + -2.3065359765862774, + 53.44711012903449 ], [ - -2.306397297890311, - 53.44633931423303 - ], + -2.3065600694106934, + 53.44712097485247 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 743572640, + "osm_way_id": 274251513, + "src_i": 2790145016, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -2.3065434463282166, - 53.4462118030268 + -2.3068180344646976, + 53.446624851525236 ], [ - -2.3065569483359836, - 53.44616411200465 + -2.3067846297545853, + 53.446654862784904 ], [ - -2.306519382192925, - 53.44606330525272 + -2.3068098006860853, + 53.446664800288104 ], [ - -2.306469955361988, - 53.44603087661671 + -2.3068432053961976, + 53.44663478902844 ], [ - -2.306414056868639, - 53.44606110101559 + -2.3068180344646976, + 53.446624851525236 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2918402993, - "osm_way_id": 288281501, - "src_i": 6480352139, + "dst_i": 2790145014, + "osm_way_id": 274251515, + "src_i": 2790145018, "type": "road" }, "type": "Feature" @@ -2305,33 +2573,33 @@ "coordinates": [ [ [ - -2.3062908989888027, - 53.44625993111923 + -2.3081757970905077, + 53.44642852423349 ], [ - -2.306414055358685, - 53.44606110011627 + -2.308143965752358, + 53.44647945461188 ], [ - -2.306357389808755, - 53.44604864990863 + -2.3081722683282453, + 53.446485730077704 ], [ - -2.306234233438873, - 53.446247480911595 + -2.3082040996663946, + 53.44643479969931 ], [ - -2.3062908989888027, - 53.44625993111923 + -2.3081757970905077, + 53.44642852423349 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6480352139, - "osm_way_id": 288281502, - "src_i": 2918402990, + "dst_i": 743548183, + "osm_way_id": 274251519, + "src_i": 2913621162, "type": "road" }, "type": "Feature" @@ -2341,33 +2609,33 @@ "coordinates": [ [ [ - -2.3064453476432925, - 53.4460056569423 + -2.3069876264468427, + 53.44633532574193 ], [ - -2.306453363988543, - 53.445989035681286 + -2.307011423320294, + 53.44633982774564 ], [ - -2.3063953123009338, - 53.44597910357402 + -2.3070205645812, + 53.446322684878126 ], [ - -2.306387295955683, - 53.44599572483503 + -2.3069967677077483, + 53.446318182874414 ], [ - -2.3064453476432925, - 53.4460056569423 + -2.3069876264468427, + 53.44633532574193 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2918402992, - "osm_way_id": 288281502, - "src_i": 6480352139, + "dst_i": 2790153427, + "osm_way_id": 274252960, + "src_i": 2790153421, "type": "road" }, "type": "Feature" @@ -2377,33 +2645,33 @@ "coordinates": [ [ [ - -2.3055807510605066, - 53.44703317408889 + -2.3070124229097755, + 53.446272625043 ], [ - -2.306342717586716, - 53.446386418897525 + -2.307005868199899, + 53.44628167941243 ], [ - -2.306280915173621, - 53.44636059038242 + -2.307033600013212, + 53.44628880024052 ], [ - -2.3055189486474115, - 53.44700734557378 + -2.3070401547230888, + 53.44627974587108 ], [ - -2.3055807510605066, - 53.44703317408889 + -2.3070124229097755, + 53.446272625043 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2918402993, - "osm_way_id": 288281503, - "src_i": 2918402991, + "dst_i": 2790153418, + "osm_way_id": 274252961, + "src_i": 2790153398, "type": "road" }, "type": "Feature" @@ -2413,33 +2681,33 @@ "coordinates": [ [ [ - -2.306334942834089, - 53.446313961459026 + -2.3073698003085967, + 53.44625668546773 ], [ - -2.306301501885083, - 53.446281993275655 + -2.3072539264463705, + 53.4462309145092 ], [ - -2.306237422461508, - 53.44630577133761 + -2.3072433628088915, + 53.446247764197885 ], [ - -2.3062708634105142, - 53.446337739520985 + -2.3073592366711178, + 53.446273535156415 ], [ - -2.306334942834089, - 53.446313961459026 + -2.3073698003085967, + 53.44625668546773 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2918402990, - "osm_way_id": 288281503, - "src_i": 2918402993, + "dst_i": 2790153452, + "osm_way_id": 274252961, + "src_i": 2790153430, "type": "road" }, "type": "Feature" @@ -2449,33 +2717,41 @@ "coordinates": [ [ [ - -2.3069822978195322, - 53.44593218327044 + -2.307175200469973, + 53.446218747587864 ], [ - -2.3070619992261485, - 53.44585614293486 + -2.307131842143757, + 53.44621483374045 ], [ - -2.306992734620884, - 53.445830389962765 + -2.3070745122141116, + 53.44623273203807 ], [ - -2.306913033214267, - 53.44590643029834 + -2.3070885336460196, + 53.44624866262012 ], [ - -2.3069822978195322, - 53.44593218327044 + -2.307137099803234, + 53.446233500058675 + ], + [ + -2.307170676648091, + 53.446236530772325 + ], + [ + -2.307175200469973, + 53.446218747587864 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2918379027, - "osm_way_id": 288283759, - "src_i": 21653579, + "dst_i": 2790153398, + "osm_way_id": 274252961, + "src_i": 2790153452, "type": "road" }, "type": "Feature" @@ -2485,49 +2761,49 @@ "coordinates": [ [ [ - -2.30817845460937, - 53.44625527892882 + -2.3074041774290204, + 53.44630114163024 ], [ - -2.3081886347185585, - 53.44624074679178 + -2.3073872463159484, + 53.44632872562102 ], [ - -2.308238857295201, - 53.44622738557141 + -2.307398800483185, + 53.44633119785598 ], [ - -2.3092186799699896, - 53.44623823498667 + -2.3074114433271835, + 53.44630838836334 ], [ - -2.30921924167284, - 53.44622025215283 + -2.3073827662827293, + 53.44630274961718 ], [ - -2.3082326846036607, - 53.4462093289932 + -2.307360900640315, + 53.44634220015591 ], [ - -2.308165378408603, - 53.44622723358607 + -2.3074052993247673, + 53.44635169968951 ], [ - -2.3081505838802983, - 53.44624835415283 + -2.307432540403063, + 53.44630731637205 ], [ - -2.30817845460937, - 53.44625527892882 + -2.3074041774290204, + 53.44630114163024 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": -4, - "osm_way_id": 288287364, - "src_i": 2918472522, + "dst_i": 2790153430, + "osm_way_id": 274252963, + "src_i": 2790153400, "type": "road" }, "type": "Feature" @@ -2537,57 +2813,85 @@ "coordinates": [ [ [ - -2.30921741009876, - 53.44643768292422 + -2.307184236034106, + 53.44626497361519 ], [ - -2.3091491632024232, - 53.44643924774373 + -2.307217142459432, + 53.4463857668894 ], [ - -2.3087423801120197, - 53.44642590091251 + -2.30724695196931, + 53.44638288546313 ], [ - -2.3085733830517112, - 53.4464081950697 + -2.3072140455439847, + 53.446262092188924 ], [ - -2.3082180003019905, - 53.446349715786155 + -2.307184236034106, + 53.44626497361519 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2790153455, + "osm_way_id": 274252964, + "src_i": 2790153452, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3070452961161156, + 53.44634803045756 ], [ - -2.3081963807820616, - 53.44639632402515 + -2.3071258430969155, + 53.44636753404416 ], [ - -2.308555496137821, - 53.446455416645996 + -2.30716515021682, + 53.44629899405036 ], [ - -2.308733084835816, - 53.44647402360901 + -2.307079553950181, + 53.44627986098424 ], [ - -2.3091484958028, - 53.446487652827194 + -2.3070689419941774, + 53.44629669988107 ], [ - -2.309220532683424, - 53.44648600167282 + -2.3071270993785595, + 53.44630969957417 ], [ - -2.30921741009876, - 53.44643768292422 + -2.307107599833905, + 53.44634370022426 + ], + [ + -2.3070566690888845, + 53.44633136782776 + ], + [ + -2.3070452961161156, + 53.44634803045756 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 32025957, - "osm_way_id": 300113828, - "src_i": 8691903642, + "dst_i": 2790153418, + "osm_way_id": 274252966, + "src_i": 2790153427, "type": "road" }, "type": "Feature" @@ -2597,33 +2901,41 @@ "coordinates": [ [ [ - -2.3061057001231555, - 53.445640299466014 + -2.3063878652083027, + 53.44613500905976 ], [ - -2.3060874930990387, - 53.44564620081407 + -2.306237798440029, + 53.446394830252046 ], [ - -2.3061235809972302, - 53.445685697218195 + -2.306417827223525, + 53.446261459965875 ], [ - -2.306141788021347, - 53.445679795870134 + -2.306394290062144, + 53.44625018966813 ], [ - -2.3061057001231555, - 53.445640299466014 + -2.3063226004709168, + 53.44630329910265 + ], + [ + -2.306416421456445, + 53.4461408600458 + ], + [ + -2.3063878652083027, + 53.44613500905976 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4140571229, - "osm_way_id": 412698692, - "src_i": 955166125, + "dst_i": 2913567879, + "osm_way_id": 287798313, + "src_i": 2913567877, "type": "road" }, "type": "Feature" @@ -2633,33 +2945,33 @@ "coordinates": [ [ [ - -2.304814097637394, - 53.44557001298975 + -2.3070303173734352, + 53.446234377796515 ], [ - -2.30480430256645, - 53.445581928101056 + -2.3064746347091214, + 53.44611062665371 ], [ - -2.3048721085562485, - 53.44560170238344 + -2.3064640589920113, + 53.44612747454376 ], [ - -2.3048819036271926, - 53.44558978727214 + -2.307019741656325, + 53.44625122568656 ], [ - -2.304814097637394, - 53.44557001298975 + -2.3070303173734352, + 53.446234377796515 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4145063897, - "osm_way_id": 413175085, - "src_i": 6439595293, + "dst_i": 2913567877, + "osm_way_id": 287798314, + "src_i": 2790153398, "type": "road" }, "type": "Feature" @@ -2669,33 +2981,49 @@ "coordinates": [ [ [ - -2.3093372702392805, - 53.44716199200934 + -2.3074265730652535, + 53.44634998738127 ], [ - -2.3093366209591037, - 53.44711702773015 + -2.307404271046162, + 53.44638371643625 ], [ - -2.3092762258230426, - 53.44711733709677 + -2.307355022389785, + 53.44640700077067 ], [ - -2.3092768751032193, - 53.44716230137596 + -2.30729780117682, + 53.44640584694112 ], [ - -2.3093372702392805, - 53.44716199200934 + -2.3072967804479845, + 53.44642382258039 + ], + [ + -2.3073650998221087, + 53.44642519944169 + ], + [ + -2.307429396679045, + 53.44639480147376 + ], + [ + -2.3074546702874104, + 53.446356577609635 + ], + [ + -2.3074265730652535, + 53.44634998738127 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4762076679, - "osm_way_id": 483470336, - "src_i": 1558341212, + "dst_i": 2790153455, + "osm_way_id": 287798653, + "src_i": 2790153411, "type": "road" }, "type": "Feature" @@ -2705,33 +3033,33 @@ "coordinates": [ [ [ - -2.309335939969895, - 53.44707204726318 + -2.3069691189419, + 53.446294369738915 ], [ - -2.309332861173895, - 53.446878942240566 + -2.306953418441256, + 53.44628946933575 ], [ - -2.3092724660378336, - 53.44687928398276 + -2.3069394000292553, + 53.44630539991781 ], [ - -2.309275544833834, - 53.44707238900537 + -2.3069551005298994, + 53.446310300320974 ], [ - -2.309335939969895, - 53.44707204726318 + -2.3069691189419, + 53.446294369738915 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4762076678, - "osm_way_id": 483470336, - "src_i": 4762076679, + "dst_i": 6480352136, + "osm_way_id": 287798653, + "src_i": 2790153421, "type": "road" }, "type": "Feature" @@ -2741,33 +3069,41 @@ "coordinates": [ [ [ - -2.309268351413458, - 53.44707671384273 + -2.307217142459432, + 53.4463857668894 ], [ - -2.308651748149127, - 53.44707671384273 + -2.3070061717006327, + 53.446328420751016 ], [ - -2.308651748149127, - 53.447112686705 + -2.3070025780103527, + 53.44632450960157 ], [ - -2.309268351413458, - 53.447112686705 + -2.306976087379145, + 53.44633314308851 ], [ - -2.309268351413458, - 53.44707671384273 + -2.306984500842271, + 53.44634230087992 + ], + [ + -2.3072046038022527, + 53.4464021291458 + ], + [ + -2.307217142459432, + 53.4463857668894 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4762076684, - "osm_way_id": 483470337, - "src_i": 4762076679, + "dst_i": 2790153421, + "osm_way_id": 287798653, + "src_i": 2790153455, "type": "road" }, "type": "Feature" @@ -2777,33 +3113,41 @@ "coordinates": [ [ [ - -2.3083040314353527, - 53.44707164526644 + -2.3061297068801996, + 53.445609792680166 ], [ - -2.3082913085637977, - 53.4468737954233 + -2.3060609103606433, + 53.44558752727707 ], [ - -2.308230955706446, - 53.44687517138528 + -2.3060952467123115, + 53.44555156880394 ], [ - -2.308243678578001, - 53.44707302122842 + -2.3060558701345277, + 53.44553823006662 ], [ - -2.3083040314353527, - 53.44707164526644 + -2.305998700259995, + 53.445598099701286 + ], + [ + -2.306108078300547, + 53.4456334987964 + ], + [ + -2.3061297068801996, + 53.445609792680166 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4762076681, - "osm_way_id": 483470337, - "src_i": 4762076680, + "dst_i": 2913629004, + "osm_way_id": 287801356, + "src_i": 955166125, "type": "road" }, "type": "Feature" @@ -2813,33 +3157,33 @@ "coordinates": [ [ [ - -2.308576235354627, - 53.44707672463459 + -2.3045265405068727, + 53.44578760743767 ], [ - -2.3083130337805, - 53.44707680287557 + -2.3043343490447183, + 53.44596455255123 ], [ - -2.3083130639795777, - 53.447112775737835 + -2.304359704190594, + 53.44597432278062 ], [ - -2.3085762655537048, - 53.447112697496856 + -2.3045518956527484, + 53.44579737766706 ], [ - -2.308576235354627, - 53.44707672463459 + -2.3045265405068727, + 53.44578760743767 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4762076680, - "osm_way_id": 483470337, - "src_i": 4762076684, + "dst_i": 2913662315, + "osm_way_id": 287803821, + "src_i": 2913662306, "type": "road" }, "type": "Feature" @@ -2849,33 +3193,33 @@ "coordinates": [ [ [ - -2.3082379754821236, - 53.44707650250217 + -2.304292909869908, + 53.44600149937874 ], [ - -2.30810645396764, - 53.4470754107258 + -2.3042251370990954, + 53.44606003981615 ], [ - -2.308105611413364, - 53.44711137999078 + -2.30425, + 53.446070250713106 ], [ - -2.308237132927848, - 53.44711247176715 + -2.304317772770813, + 53.4460117102757 ], [ - -2.3082379754821236, - 53.44707650250217 + -2.304292909869908, + 53.44600149937874 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4762076683, - "osm_way_id": 483470339, - "src_i": 4762076680, + "dst_i": 4040299167, + "osm_way_id": 287803821, + "src_i": 2913662315, "type": "road" }, "type": "Feature" @@ -2885,33 +3229,33 @@ "coordinates": [ [ [ - -2.3085847363950793, - 53.44711761948374 + -2.304316700703544, + 53.445967716364464 ], [ - -2.3085865921284214, - 53.44716257207175 + -2.30424751763579, + 53.44594971284622 ], [ - -2.3086469721649436, - 53.447161687139335 + -2.304235425924965, + 53.44596619561171 ], [ - -2.3086451164316015, - 53.44711673455133 + -2.3043046089927195, + 53.44598419912995 ], [ - -2.3085847363950793, - 53.44711761948374 + -2.304316700703544, + 53.445967716364464 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4762076685, - "osm_way_id": 483470341, - "src_i": 4762076684, + "dst_i": 7003946189, + "osm_way_id": 287803823, + "src_i": 2913662315, "type": "road" }, "type": "Feature" @@ -2921,33 +3265,33 @@ "coordinates": [ [ [ - -2.30846309903882, - 53.444850173532764 + -2.307961687137552, + 53.44559570031137 ], [ - -2.308419876608455, - 53.44488704121998 + -2.308623504461442, + 53.44502221644452 ], [ - -2.308523583262161, - 53.4449301708832 + -2.308598617401275, + 53.44501202892992 ], [ - -2.3085668056925264, - 53.44489330319598 + -2.307936800077385, + 53.44558551279678 ], [ - -2.30846309903882, - 53.444850173532764 + -2.307961687137552, + 53.44559570031137 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 306917570, - "osm_way_id": 560119116, - "src_i": 5401543778, + "dst_i": 8672774810, + "osm_way_id": 288279759, + "src_i": 9169444979, "type": "road" }, "type": "Feature" @@ -2957,33 +3301,57 @@ "coordinates": [ [ [ - -2.3083769380494226, - 53.44492279015118 + -2.306414056868639, + 53.44606110101559 ], [ - -2.3082841574221313, - 53.444998216250134 + -2.3064500179307026, + 53.446084694716625 ], [ - -2.308386191046917, - 53.44504273806312 + -2.306480052423712, + 53.446165288317246 ], [ - -2.3084789716742087, - 53.44496731196416 + -2.306471753717082, + 53.44619459720678 ], [ - -2.3083769380494226, - 53.44492279015118 + -2.306334942834089, + 53.44631396235835 + ], + [ + -2.306397297890311, + 53.44633931423303 + ], + [ + -2.3065434463282166, + 53.4462118030268 + ], + [ + -2.3065569483359836, + 53.44616411200465 + ], + [ + -2.306519382192925, + 53.44606330525272 + ], + [ + -2.306469955361988, + 53.44603087661671 + ], + [ + -2.306414056868639, + 53.44606110101559 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5405641445, - "osm_way_id": 560119117, - "src_i": 306917570, + "dst_i": 2918402993, + "osm_way_id": 288281501, + "src_i": 6480352139, "type": "road" }, "type": "Feature" @@ -2993,33 +3361,33 @@ "coordinates": [ [ [ - -2.3082230556276455, - 53.44504756382259 + -2.3062908989888027, + 53.44625993111923 ], [ - -2.3078321255432295, - 53.44536210513432 + -2.306414055358685, + 53.44606110011627 ], [ - -2.307933787719356, - 53.445406927320704 + -2.306357389808755, + 53.44604864990863 ], [ - -2.308324717803772, - 53.44509238600897 + -2.306234233438873, + 53.446247480911595 ], [ - -2.3082230556276455, - 53.44504756382259 + -2.3062908989888027, + 53.44625993111923 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6137128391, - "osm_way_id": 560119117, - "src_i": 5405641445, + "dst_i": 6480352139, + "osm_way_id": 288281502, + "src_i": 2918402990, "type": "road" }, "type": "Feature" @@ -3029,33 +3397,33 @@ "coordinates": [ [ [ - -2.3075293526072658, - 53.44562078958416 + -2.3064453476432925, + 53.4460056569423 ], [ - -2.307515323625588, - 53.44563283329845 + -2.306453363988543, + 53.445989035681286 ], [ - -2.3076192477126556, - 53.44567577590278 + -2.3063953123009338, + 53.44597910357402 ], [ - -2.3076332766943333, - 53.44566373218849 + -2.306387295955683, + 53.44599572483503 ], [ - -2.3075293526072658, - 53.44562078958416 + -2.3064453476432925, + 53.4460056569423 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8672774809, - "osm_way_id": 560119117, - "src_i": 6137128391, + "dst_i": 2918402992, + "osm_way_id": 288281502, + "src_i": 6480352139, "type": "road" }, "type": "Feature" @@ -3065,33 +3433,33 @@ "coordinates": [ [ [ - -2.3075022081660195, - 53.44568541842851 + -2.3055807510605066, + 53.44703317408889 ], [ - -2.307431148225568, - 53.44575473903342 + -2.306342717586716, + 53.446386418897525 ], [ - -2.3074851260575575, - 53.44577436762572 + -2.306280915173621, + 53.44636059038242 ], [ - -2.307556185998009, - 53.4457050470208 + -2.3055189486474115, + 53.44700734557378 ], [ - -2.3075022081660195, - 53.44568541842851 + -2.3055807510605066, + 53.44703317408889 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 32025961, - "osm_way_id": 560119117, - "src_i": 8672774809, + "dst_i": 2918402993, + "osm_way_id": 288281503, + "src_i": 2918402991, "type": "road" }, "type": "Feature" @@ -3101,33 +3469,33 @@ "coordinates": [ [ [ - -2.3084871012660018, - 53.444963186776185 + -2.306334942834089, + 53.446313961459026 ], [ - -2.3085924779287206, - 53.445004243503206 + -2.306301501885083, + 53.446281993275655 ], [ - -2.3086255428992057, - 53.44497413961342 + -2.306237422461508, + 53.44630577133761 ], [ - -2.308520166236487, - 53.44493308288639 + -2.3062708634105142, + 53.446337739520985 ], [ - -2.3084871012660018, - 53.444963186776185 + -2.306334942834089, + 53.446313961459026 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7796397127, - "osm_way_id": 560125966, - "src_i": 306917570, + "dst_i": 2918402990, + "osm_way_id": 288281503, + "src_i": 2918402993, "type": "road" }, "type": "Feature" @@ -3137,33 +3505,33 @@ "coordinates": [ [ [ - -2.308653289812058, - 53.44502928241399 + -2.3069822978195322, + 53.44593218327044 ], [ - -2.308715027297135, - 53.445056115471274 + -2.3070619992261485, + 53.44585614293486 ], [ - -2.308750632010079, - 53.44502705659313 + -2.306992734620884, + 53.445830389962765 ], [ - -2.3086888945250017, - 53.44500022353585 + -2.306913033214267, + 53.44590643029834 ], [ - -2.308653289812058, - 53.44502928241399 + -2.3069822978195322, + 53.44593218327044 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5401617887, - "osm_way_id": 560125967, - "src_i": 7796397127, + "dst_i": 2918379027, + "osm_way_id": 288283759, + "src_i": 21653579, "type": "road" }, "type": "Feature" @@ -3173,49 +3541,41 @@ "coordinates": [ [ [ - -2.3083247162938183, - 53.4450923869083 - ], - [ - -2.3083427224940665, - 53.44513268101064 - ], - [ - -2.307756333407258, - 53.44563861863402 + -2.307324068334851, + 53.44511927032759 ], [ - -2.307612504258542, - 53.44565824452835 + -2.3074636998117275, + 53.44498538922677 ], [ - -2.3076192477126556, - 53.44567577590278 + -2.307774991907591, + 53.44510087920176 ], [ - -2.307774522311928, - 53.445654588786226 + -2.3077909581601213, + 53.44508561231901 ], [ - -2.3083754884936796, - 53.445136071452914 + -2.307453999867879, + 53.444960600327384 ], [ - -2.3083539006827825, - 53.44508776079821 + -2.307298414218103, + 53.44510977888788 ], [ - -2.3083247162938183, - 53.4450923869083 + -2.307324068334851, + 53.44511927032759 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8672774809, - "osm_way_id": 560532687, - "src_i": 5405641445, + "dst_i": 9298401918, + "osm_way_id": 288284112, + "src_i": 7796391487, "type": "road" }, "type": "Feature" @@ -3225,49 +3585,33 @@ "coordinates": [ [ [ - -2.3060948541242974, - 53.446770217861655 - ], - [ - -2.3061306943900495, - 53.446752789009885 - ], - [ - -2.306266606850472, - 53.44665356416458 - ], - [ - -2.3069014911266614, - 53.44610831359867 - ], - [ - -2.3068770570526644, - 53.44609822141216 + -2.30780703614924, + 53.44511276823274 ], [ - -2.3062428250765596, - 53.446642912600055 + -2.3078251631458, + 53.44511949066137 ], [ - -2.3061095610752758, - 53.44674020210538 + -2.3078411263784226, + 53.44510422197998 ], [ - -2.306076049158437, - 53.44675649961063 + -2.3078229993818624, + 53.445097499551345 ], [ - -2.3060948541242974, - 53.446770217861655 + -2.30780703614924, + 53.44511276823274 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6137128386, - "osm_way_id": 654987749, - "src_i": 6137128080, + "dst_i": 2918434149, + "osm_way_id": 288284112, + "src_i": 9298401918, "type": "road" }, "type": "Feature" @@ -3277,33 +3621,33 @@ "coordinates": [ [ [ - -2.307149250402261, - 53.44582460552651 + -2.30817845460937, + 53.44625527892882 ], [ - -2.3071702508410916, - 53.4458086056967 + -2.3081800551605034, + 53.446252993752736 ], [ - -2.3070415937091546, - 53.44574870188781 + -2.3081521844314317, + 53.446246068976755 ], [ - -2.307020593270324, - 53.44576470171762 + -2.3081505838802983, + 53.44624835415283 ], [ - -2.307149250402261, - 53.44582460552651 + -2.30817845460937, + 53.44625527892882 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401798, - "osm_way_id": 654987750, - "src_i": 2918379027, + "dst_i": 2920872874, + "osm_way_id": 288287364, + "src_i": 2918472522, "type": "road" }, "type": "Feature" @@ -3313,33 +3657,41 @@ "coordinates": [ [ [ - -2.3077574990916685, - 53.445360044788636 + -2.3082162638550066, + 53.4462333966367 ], [ - -2.3077650760403348, - 53.44535428283542 + -2.308238857295201, + 53.44622738557141 ], [ - -2.3076365095056315, - 53.44529431067809 + -2.3092186799699896, + 53.44623823498667 ], [ - -2.307628932556965, - 53.445300072631305 + -2.30921924167284, + 53.44622025215283 ], [ - -2.3077574990916685, - 53.445360044788636 + -2.3082326846036607, + 53.4462093289932 + ], + [ + -2.3082039486710046, + 53.44621697322643 + ], + [ + -2.3082162638550066, + 53.4462333966367 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 955166004, - "osm_way_id": 654987750, - "src_i": 9298401795, + "dst_i": -4, + "osm_way_id": 288287364, + "src_i": 2920872874, "type": "road" }, "type": "Feature" @@ -3349,33 +3701,49 @@ "coordinates": [ [ [ - -2.3071935343302177, - 53.44579082161292 + -2.308204360888419, + 53.44625475552367 ], [ - -2.3077344088766414, - 53.445377682283 + -2.3085784670664897, + 53.44630451408607 ], [ - -2.307605627928485, - 53.445317873802196 + -2.3090403770638, + 53.446328580830254 ], [ - -2.3070647533820607, - 53.44573101313211 + -2.309218776607039, + 53.44632939921287 ], [ - -2.3071935343302177, - 53.44579082161292 + -2.3092190091399396, + 53.44631141278174 + ], + [ + -2.309041799440373, + 53.44631059979505 + ], + [ + -2.3085830996050527, + 53.446286700324684 + ], + [ + -2.308210941267512, + 53.44623720076688 + ], + [ + -2.308204360888419, + 53.44625475552367 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401795, - "osm_way_id": 654987750, - "src_i": 9298401798, + "dst_i": 2920872878, + "osm_way_id": 288531255, + "src_i": 2920872874, "type": "road" }, "type": "Feature" @@ -3385,41 +3753,33 @@ "coordinates": [ [ [ - -2.30749563684665, - 53.44560032192486 - ], - [ - -2.3074364602433857, - 53.44563490263735 - ], - [ - -2.3070453670839486, - 53.445946023829194 + -2.3079416077706, + 53.44618778754395 ], [ - -2.3070839071472724, - 53.4459632080655 + -2.308127140336059, + 53.446239137905515 ], [ - -2.3074727927541088, - 53.44565384234934 + -2.308139866227522, + 53.44622282601112 ], [ - -2.3075293541172197, - 53.44562079048348 + -2.307954333662063, + 53.44617147564956 ], [ - -2.30749563684665, - 53.44560032192486 + -2.3079416077706, + 53.44618778754395 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6480352153, - "osm_way_id": 654987755, - "src_i": 6137128391, + "dst_i": 2920872874, + "osm_way_id": 288531255, + "src_i": 2920872879, "type": "road" }, "type": "Feature" @@ -3429,33 +3789,57 @@ "coordinates": [ [ [ - -2.306718798784487, - 53.446185723600976 + -2.30921741009876, + 53.44643768292422 ], [ - -2.306821804819584, - 53.44608554997143 + -2.3091491632024232, + 53.44643924774373 ], [ - -2.3067521748054753, - 53.44606015133202 + -2.3087423801120197, + 53.44642590091251 ], [ - -2.3066491687703787, - 53.446160324961575 + -2.3085733830517112, + 53.4464081950697 ], [ - -2.306718798784487, - 53.446185723600976 + -2.3082180003019905, + 53.446349715786155 + ], + [ + -2.3081963807820616, + 53.44639632402515 + ], + [ + -2.308555496137821, + 53.446455416645996 + ], + [ + -2.308733084835816, + 53.44647402360901 + ], + [ + -2.3091484958028, + 53.446487652827194 + ], + [ + -2.309220532683424, + 53.44648600167282 + ], + [ + -2.30921741009876, + 53.44643768292422 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 31287523, - "osm_way_id": 654987756, - "src_i": 31287525, + "dst_i": 32025957, + "osm_way_id": 300113828, + "src_i": 8691903642, "type": "road" }, "type": "Feature" @@ -3465,33 +3849,33 @@ "coordinates": [ [ [ - -2.304396553105551, - 53.44551107145493 + -2.3061057001231555, + 53.445640299466014 ], [ - -2.30431742699137, - 53.44558247308992 + -2.3060874930990387, + 53.44564620081407 ], [ - -2.3043489306695233, - 53.4455948585464 + -2.3061235809972302, + 53.445685697218195 ], [ - -2.304428056783704, - 53.44552345691141 + -2.306141788021347, + 53.445679795870134 ], [ - -2.304396553105551, - 53.44551107145493 + -2.3061057001231555, + 53.445640299466014 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6439595306, - "osm_way_id": 686956436, - "src_i": 6439595307, + "dst_i": 4140571229, + "osm_way_id": 412698692, + "src_i": 955166125, "type": "road" }, "type": "Feature" @@ -3501,33 +3885,33 @@ "coordinates": [ [ [ - -2.3043204982376007, - 53.44555448260579 + -2.304814097637394, + 53.44557001298975 ], [ - -2.3043611673359226, - 53.4455165977859 + -2.30480430256645, + 53.445581928101056 ], [ - -2.304329364686897, - 53.44550448752181 + -2.3048721085562485, + 53.44560170238344 ], [ - -2.3042886955885753, - 53.445542372341706 + -2.3048819036271926, + 53.44558978727214 ], [ - -2.3043204982376007, - 53.44555448260579 + -2.304814097637394, + 53.44557001298975 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1278748166, - "osm_way_id": 686956439, - "src_i": 5824302619, + "dst_i": 4145063897, + "osm_way_id": 413175085, + "src_i": 6439595293, "type": "road" }, "type": "Feature" @@ -3537,41 +3921,33 @@ "coordinates": [ [ [ - -2.3049009109268757, - 53.44498738751927 - ], - [ - -2.3048985659684704, - 53.44499048927932 - ], - [ - -2.3044354344184557, - 53.44547340157288 + -2.3093372702392805, + 53.44716199200934 ], [ - -2.3044682124977, - 53.445484553160185 + -2.3093366209591037, + 53.44711702773015 ], [ - -2.304932234920515, - 53.44500071096813 + -2.3092762258230426, + 53.44711733709677 ], [ - -2.304935328816055, - 53.444996619954374 + -2.3092768751032193, + 53.44716230137596 ], [ - -2.3049009109268757, - 53.44498738751927 + -2.3093372702392805, + 53.44716199200934 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6439595307, - "osm_way_id": 686956443, - "src_i": 8093690662, + "dst_i": 4762076679, + "osm_way_id": 483470336, + "src_i": 1558341212, "type": "road" }, "type": "Feature" @@ -3581,41 +3957,33 @@ "coordinates": [ [ [ - -2.307802223926163, - 53.445320638316666 - ], - [ - -2.3079784174267552, - 53.44515736468941 - ], - [ - -2.3081454092682856, - 53.44501542836541 + -2.309335939969895, + 53.44707204726318 ], [ - -2.308011672651432, - 53.44495961287232 + -2.309332861173895, + 53.446878942240566 ], [ - -2.307842784307804, - 53.44510316078055 + -2.3092724660378336, + 53.44687928398276 ], [ - -2.307664848320412, - 53.445268049589316 + -2.309275544833834, + 53.44707238900537 ], [ - -2.307802223926163, - 53.445320638316666 + -2.309335939969895, + 53.44707204726318 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 308222735, - "osm_way_id": 690683794, - "src_i": 955166004, + "dst_i": 4762076678, + "osm_way_id": 483470336, + "src_i": 4762076679, "type": "road" }, "type": "Feature" @@ -3625,41 +3993,33 @@ "coordinates": [ [ [ - -2.3069977959863537, - 53.44604860584188 - ], - [ - -2.3070157901069708, - 53.44604233127538 - ], - [ - -2.3070268323998357, - 53.446040198983965 + -2.309268351413458, + 53.44707671384273 ], [ - -2.307021154973175, - 53.44602976865255 + -2.308651748149127, + 53.44707671384273 ], [ - -2.3070082101383966, - 53.44603226786716 + -2.308651748149127, + 53.447112686705 ], [ - -2.3069884946703345, - 53.44603914318046 + -2.309268351413458, + 53.447112686705 ], [ - -2.3069977959863537, - 53.44604860584188 + -2.309268351413458, + 53.44707671384273 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 21653578, - "osm_way_id": 690683796, - "src_i": 6137128386, + "dst_i": 4762076684, + "osm_way_id": 483470337, + "src_i": 4762076679, "type": "road" }, "type": "Feature" @@ -3669,33 +4029,33 @@ "coordinates": [ [ [ - -2.3069520005945443, - 53.446030094206954 + -2.3083040314353527, + 53.44707164526644 ], [ - -2.3069371954965625, - 53.44602580804042 + -2.3082913085637977, + 53.4468737954233 ], [ - -2.3068757041339705, - 53.44610115140179 + -2.308230955706446, + 53.44687517138528 ], [ - -2.3068905092319527, - 53.44610543756833 + -2.308243678578001, + 53.44707302122842 ], [ - -2.3069520005945443, - 53.446030094206954 + -2.3083040314353527, + 53.44707164526644 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 31287523, - "osm_way_id": 690683797, - "src_i": 6137128386, + "dst_i": 4762076681, + "osm_way_id": 483470337, + "src_i": 4762076680, "type": "road" }, "type": "Feature" @@ -3705,41 +4065,33 @@ "coordinates": [ [ [ - -2.3069674625224725, - 53.4460182060753 - ], - [ - -2.3069442983197046, - 53.44602576397366 - ], - [ - -2.306937187946793, - 53.4460258071411 + -2.308576235354627, + 53.44707672463459 ], [ - -2.30693756241536, - 53.44604773439929 + -2.3083130337805, + 53.44707680287557 ], [ - -2.3069539016265033, - 53.44604763547392 + -2.3083130639795777, + 53.447112775737835 ], [ - -2.3069851531423557, - 53.44603743896611 + -2.3085762655537048, + 53.447112697496856 ], [ - -2.3069674625224725, - 53.4460182060753 + -2.308576235354627, + 53.44707672463459 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 31287523, - "osm_way_id": 690683798, - "src_i": 6480352153, + "dst_i": 4762076680, + "osm_way_id": 483470337, + "src_i": 4762076684, "type": "road" }, "type": "Feature" @@ -3749,33 +4101,33 @@ "coordinates": [ [ [ - -2.307008427571758, - 53.44602717231122 + -2.3082379754821236, + 53.44707650250217 ], [ - -2.3070211579930824, - 53.44602976865255 + -2.30810645396764, + 53.4470754107258 ], [ - -2.307066725381853, - 53.44595051324241 + -2.308105611413364, + 53.44711137999078 ], [ - -2.307053994960529, - 53.445947916901076 + -2.308237132927848, + 53.44711247176715 ], [ - -2.307008427571758, - 53.44602717231122 + -2.3082379754821236, + 53.44707650250217 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 21653578, - "osm_way_id": 690683799, - "src_i": 6480352153, + "dst_i": 4762076683, + "osm_way_id": 483470339, + "src_i": 4762076680, "type": "road" }, "type": "Feature" @@ -3785,57 +4137,33 @@ "coordinates": [ [ [ - -2.308174638955867, - 53.446294899439316 - ], - [ - -2.3083660346723165, - 53.44632743239663 - ], - [ - -2.308770062096854, - 53.44637506676152 - ], - [ - -2.308945290736905, - 53.44638370474507 - ], - [ - -2.3092195527233432, - 53.44638464273745 - ], - [ - -2.309219827534953, - 53.44635596876894 - ], - [ - -2.3089474197719024, - 53.44635503797113 + -2.3085847363950793, + 53.44711761948374 ], [ - -2.3087767481727197, - 53.44634662301932 + -2.3085865921284214, + 53.44716257207175 ], [ - -2.308377320067759, - 53.44629953184465 + -2.3086469721649436, + 53.447161687139335 ], [ - -2.308187851052485, - 53.44626732624039 + -2.3086451164316015, + 53.44711673455133 ], [ - -2.308174638955867, - 53.446294899439316 + -2.3085847363950793, + 53.44711761948374 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 32026058, - "osm_way_id": 773118440, - "src_i": 2918472522, + "dst_i": 4762076685, + "osm_way_id": 483470341, + "src_i": 4762076684, "type": "road" }, "type": "Feature" @@ -3845,33 +4173,33 @@ "coordinates": [ [ [ - -2.3081522131205556, - 53.446335105408146 + -2.308463086959189, + 53.444850172633444 ], [ - -2.307122648034465, - 53.44608736120504 + -2.3084198690586852, + 53.444887043018625 ], [ - -2.307092062408282, - 53.446132451389246 + -2.308523581752207, + 53.44493016728591 ], [ - -2.308121627494373, - 53.446380195592354 + -2.3085667996527106, + 53.44489329690073 ], [ - -2.3081522131205556, - 53.446335105408146 + -2.308463086959189, + 53.444850172633444 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 31287524, - "osm_way_id": 773118441, - "src_i": 32025957, + "dst_i": 306917570, + "osm_way_id": 560119116, + "src_i": 7796397137, "type": "road" }, "type": "Feature" @@ -3881,33 +4209,33 @@ "coordinates": [ [ [ - -2.305902010362059, - 53.44585691994868 + -2.3083769380494226, + 53.44492279015118 ], [ - -2.3054873543720245, - 53.4458225397849 + -2.3082841574221313, + 53.444998216250134 ], [ - -2.3054740788573427, - 53.44587933913577 + -2.308386191046917, + 53.44504273806312 ], [ - -2.3058887348473767, - 53.44591371929956 + -2.3084789716742087, + 53.44496731196416 ], [ - -2.305902010362059, - 53.44585691994868 + -2.3083769380494226, + 53.44492279015118 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2265010779, - "osm_way_id": 773118442, - "src_i": 6480352128, + "dst_i": 5405641445, + "osm_way_id": 560119117, + "src_i": 306917570, "type": "road" }, "type": "Feature" @@ -3917,41 +4245,33 @@ "coordinates": [ [ [ - -2.3062063566699855, - 53.44698754970768 - ], - [ - -2.3061460355216656, - 53.44696297484682 - ], - [ - -2.306026272018195, - 53.4470551229308 + -2.3082230556276455, + 53.44504756382259 ], [ - -2.3060859725754623, - 53.44708264756636 + -2.3078321255432295, + 53.44536210513432 ], [ - -2.306162164849217, - 53.447024024391375 + -2.307933787719356, + 53.445406927320704 ], [ - -2.3061637306714107, - 53.447024662909676 + -2.308324717803772, + 53.44509238600897 ], [ - -2.3062063566699855, - 53.44698754970768 + -2.3082230556276455, + 53.44504756382259 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298526716, - "osm_way_id": 809948499, - "src_i": 743548122, + "dst_i": 6137128391, + "osm_way_id": 560119117, + "src_i": 5405641445, "type": "road" }, "type": "Feature" @@ -3961,41 +4281,33 @@ "coordinates": [ [ [ - -2.306850527162655, - 53.44489601824776 - ], - [ - -2.306815299938186, - 53.44492955664657 - ], - [ - -2.3068164052244406, - 53.44492893701402 + -2.3075293526072658, + 53.44562078958416 ], [ - -2.3068726902659877, - 53.44496455014766 + -2.307515323625588, + 53.44563283329845 ], [ - -2.306879300844159, - 53.44496084404353 + -2.3076192477126556, + 53.44567577590278 ], [ - -2.3069201450971324, - 53.44492195827874 + -2.3076332766943333, + 53.44566373218849 ], [ - -2.306850527162655, - 53.44489601824776 + -2.3075293526072658, + 53.44562078958416 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 745988105, - "osm_way_id": 835239296, - "src_i": 745988244, + "dst_i": 8672774809, + "osm_way_id": 560119117, + "src_i": 6137128391, "type": "road" }, "type": "Feature" @@ -4005,33 +4317,33 @@ "coordinates": [ [ [ - -2.304362986830371, - 53.44703244294046 + -2.3075022081660195, + 53.44568541842851 ], [ - -2.3047311921086036, - 53.446729403951444 + -2.307431148225568, + 53.44575473903342 ], [ - -2.3046822635624533, - 53.44670831486094 + -2.3074851260575575, + 53.44577436762572 ], [ - -2.3043140582842208, - 53.44701135384996 + -2.307556185998009, + 53.4457050470208 ], [ - -2.304362986830371, - 53.44703244294046 + -2.3075022081660195, + 53.44568541842851 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8778504602, - "osm_way_id": 948376835, - "src_i": 8778504599, + "dst_i": 32025961, + "osm_way_id": 560119117, + "src_i": 8672774809, "type": "road" }, "type": "Feature" @@ -4041,33 +4353,33 @@ "coordinates": [ [ [ - -2.3048113465013897, - 53.44571616263524 + -2.3084870816366014, + 53.444963186776185 ], [ - -2.3047838260816227, - 53.44571144569368 + -2.308571877627674, + 53.444996238642034 ], [ - -2.304757196534656, - 53.44576655611867 + -2.308604951657882, + 53.44496613834953 ], [ - -2.304784716954423, - 53.44577127306024 + -2.30852015566681, + 53.44493308648368 ], [ - -2.3048113465013897, - 53.44571616263524 + -2.3084870816366014, + 53.444963186776185 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 31287519, - "osm_way_id": 965055857, - "src_i": 1277766903, + "dst_i": 8672774810, + "osm_way_id": 560125966, + "src_i": 306917570, "type": "road" }, "type": "Feature" @@ -4077,33 +4389,33 @@ "coordinates": [ [ [ - -2.3054108706771674, - 53.44581469590228 + -2.3086035066320005, + 53.445008567441256 ], [ - -2.3053251354947695, - 53.44580389864767 + -2.3086234350035624, + 53.44501630610325 ], [ - -2.305305216182931, - 53.44586000552095 + -2.308656421456445, + 53.44498617163653 ], [ - -2.305390951365329, - 53.44587080277555 + -2.308636493084883, + 53.44497843297453 ], [ - -2.3054108706771674, - 53.44581469590228 + -2.3086035066320005, + 53.445008567441256 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1277766809, - "osm_way_id": 965055858, - "src_i": 2265010779, + "dst_i": 7796397127, + "osm_way_id": 560125966, + "src_i": 8672774810, "type": "road" }, "type": "Feature" @@ -4113,33 +4425,33 @@ "coordinates": [ [ [ - -2.3061512493924794, - 53.445590599359505 + -2.308653289812058, + 53.44502928241399 ], [ - -2.30612843700897, - 53.44561092582533 + -2.308715027297135, + 53.445056115471274 ], [ - -2.3062273178500146, - 53.445650290928505 + -2.308750632010079, + 53.44502705659313 ], [ - -2.306250130233524, - 53.44562996446268 + -2.3086888945250017, + 53.44500022353585 ], [ - -2.3061512493924794, - 53.445590599359505 + -2.308653289812058, + 53.44502928241399 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 955166125, - "osm_way_id": 965055862, - "src_i": 745988281, + "dst_i": 5401617887, + "osm_way_id": 560125967, + "src_i": 7796397127, "type": "road" }, "type": "Feature" @@ -4149,41 +4461,49 @@ "coordinates": [ [ [ - -2.3061972622176503, - 53.445861137766784 + -2.3083247162938183, + 53.4450923869083 ], [ - -2.306708697192901, - 53.44594416223357 + -2.3083427224940665, + 53.44513268101064 ], [ - -2.306810655319992, - 53.445964417652995 + -2.307756333407258, + 53.44563861863402 ], [ - -2.306830665229065, - 53.44592868580891 + -2.307612504258542, + 53.44565824452835 ], [ - -2.30672702501333, - 53.445908095841865 + -2.3076192477126556, + 53.44567577590278 ], [ - -2.3062138928498963, - 53.445824796182684 + -2.307774522311928, + 53.445654588786226 ], [ - -2.3061972622176503, - 53.445861137766784 + -2.3083754884936796, + 53.445136071452914 + ], + [ + -2.3083539006827825, + 53.44508776079821 + ], + [ + -2.3083247162938183, + 53.4450923869083 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 21653579, - "osm_way_id": 999493252, - "src_i": 7218399545, + "dst_i": 8672774809, + "osm_way_id": 560532687, + "src_i": 5405641445, "type": "road" }, "type": "Feature" @@ -4193,33 +4513,49 @@ "coordinates": [ [ [ - -2.3054500887097915, - 53.44576081305121 + -2.3060948541242974, + 53.446770217861655 ], [ - -2.305469154897677, - 53.44576409377625 + -2.3061306943900495, + 53.446752789009885 ], [ - -2.3055024252218925, - 53.44569550611841 + -2.306266606850472, + 53.44665356416458 ], [ - -2.305483359034007, - 53.44569222539337 + -2.3069014911266614, + 53.44610831359867 ], [ - -2.3054500887097915, - 53.44576081305121 + -2.3068770570526644, + 53.44609822141216 + ], + [ + -2.3062428250765596, + 53.446642912600055 + ], + [ + -2.3061095610752758, + 53.44674020210538 + ], + [ + -2.306076049158437, + 53.44675649961063 + ], + [ + -2.3060948541242974, + 53.446770217861655 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401799, - "osm_way_id": 999493253, - "src_i": 1277766621, + "dst_i": 6137128386, + "osm_way_id": 654987749, + "src_i": 6137128080, "type": "road" }, "type": "Feature" @@ -4229,41 +4565,33 @@ "coordinates": [ [ [ - -2.306770982791244, - 53.446002084837076 - ], - [ - -2.3065661046964285, - 53.445951197626115 - ], - [ - -2.3065325610705574, - 53.44594603192309 + -2.307149250402261, + 53.44582460552651 ], [ - -2.306516730713878, - 53.44598249941221 + -2.3071702508410916, + 53.4458086056967 ], [ - -2.3065458984933493, - 53.445986990624064 + -2.3070415937091546, + 53.44574870188781 ], [ - -2.306746639314481, - 53.44603685080981 + -2.307020593270324, + 53.44576470171762 ], [ - -2.306770982791244, - 53.446002084837076 + -2.307149250402261, + 53.44582460552651 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2918402992, - "osm_way_id": 999493421, - "src_i": 31287523, + "dst_i": 9298401798, + "osm_way_id": 654987750, + "src_i": 2918379027, "type": "road" }, "type": "Feature" @@ -4273,33 +4601,33 @@ "coordinates": [ [ [ - -2.306935404691238, - 53.446116723154546 + -2.3077574990916685, + 53.445360044788636 ], [ - -2.3065507590349505, - 53.44644974102765 + -2.3077650760403348, + 53.44535428283542 ], [ - -2.3066549669933516, - 53.44649243901652 + -2.3076365095056315, + 53.44529431067809 ], [ - -2.3070396126496386, - 53.44615942114341 + -2.307628932556965, + 53.445300072631305 ], [ - -2.306935404691238, - 53.446116723154546 + -2.3077574990916685, + 53.445360044788636 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 743548189, - "osm_way_id": 1003081552, - "src_i": 31287524, + "dst_i": 955166004, + "osm_way_id": 654987750, + "src_i": 9298401795, "type": "road" }, "type": "Feature" @@ -4309,33 +4637,33 @@ "coordinates": [ [ [ - -2.3065050029019427, - 53.44648846131727 + -2.3071935343302177, + 53.44579082161292 ], [ - -2.3059824984546564, - 53.4469212175483 + -2.3077344088766414, + 53.445377682283 ], [ - -2.3060851904193425, - 53.44696519976835 + -2.307605627928485, + 53.445317873802196 ], [ - -2.3066076948666288, - 53.44653244353732 + -2.3070647533820607, + 53.44573101313211 ], [ - -2.3065050029019427, - 53.44648846131727 + -2.3071935343302177, + 53.44579082161292 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 743547944, - "osm_way_id": 1003081553, - "src_i": 743548189, + "dst_i": 9298401795, + "osm_way_id": 654987750, + "src_i": 9298401798, "type": "road" }, "type": "Feature" @@ -4345,33 +4673,41 @@ "coordinates": [ [ [ - -2.3057127195213445, - 53.447089700046014 + -2.30749563684665, + 53.44560032192486 ], [ - -2.3059216654319648, - 53.446915264938916 + -2.3074364602433857, + 53.44563490263735 ], [ - -2.30578872607077, - 53.4468587767533 + -2.3070453670839486, + 53.445946023829194 ], [ - -2.3055797801601496, - 53.44703321186039 + -2.3070839071472724, + 53.4459632080655 ], [ - -2.3057127195213445, - 53.447089700046014 + -2.3074727927541088, + 53.44565384234934 + ], + [ + -2.3075293541172197, + 53.44562079048348 + ], + [ + -2.30749563684665, + 53.44560032192486 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6137128080, - "osm_way_id": 1003081554, - "src_i": 637467098, + "dst_i": 6480352153, + "osm_way_id": 654987755, + "src_i": 6137128391, "type": "road" }, "type": "Feature" @@ -4381,33 +4717,33 @@ "coordinates": [ [ [ - -2.3060948556342513, - 53.446770216962335 + -2.306718798784487, + 53.446185723600976 ], [ - -2.306630612946911, - 53.44632130891615 + -2.306821804819584, + 53.44608554997143 ], [ - -2.306497507490787, - 53.44626495742741 + -2.3067521748054753, + 53.44606015133202 ], [ - -2.3059617501781275, - 53.44671386547359 + -2.3066491687703787, + 53.446160324961575 ], [ - -2.3060948556342513, - 53.446770216962335 + -2.306718798784487, + 53.446185723600976 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 31287525, - "osm_way_id": 1003081554, - "src_i": 6137128080, + "dst_i": 31287523, + "osm_way_id": 654987756, + "src_i": 31287525, "type": "road" }, "type": "Feature" @@ -4417,33 +4753,41 @@ "coordinates": [ [ [ - -2.305610006417304, - 53.44718217728168 + -2.3048943607468613, + 53.445563729430035 ], [ - -2.3056506830653953, - 53.44714429515975 + -2.305175538322158, + 53.44521174036869 ], [ - -2.3055131081457296, - 53.447091891692644 + -2.305314384623007, + 53.445000306273435 ], [ - -2.3054724314976385, - 53.447129773814574 + -2.3052862602216804, + 53.44499375381657 ], [ - -2.305610006417304, - 53.44718217728168 + -2.3051478004690296, + 53.44520459975553 + ], + [ + -2.304867090979441, + 53.44555600245922 + ], + [ + -2.3048943607468613, + 53.445563729430035 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 637467098, - "osm_way_id": 1003081555, - "src_i": 2790133529, + "dst_i": 6439595305, + "osm_way_id": 686956434, + "src_i": 6439595293, "type": "road" }, "type": "Feature" @@ -4453,33 +4797,33 @@ "coordinates": [ [ [ - -2.3063625342216896, - 53.44575946047159 + -2.304396553105551, + 53.44551107145493 ], [ - -2.306362975128228, - 53.44575845053348 + -2.30431742699137, + 53.44558247308992 ], [ - -2.306289908459045, - 53.445747135269656 + -2.3043489306695233, + 53.4455948585464 ], [ - -2.3062894675525065, - 53.445748145207766 + -2.304428056783704, + 53.44552345691141 ], [ - -2.3063625342216896, - 53.44575946047159 + -2.304396553105551, + 53.44551107145493 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 955166095, - "osm_way_id": 1007914061, - "src_i": 955165980, + "dst_i": 6439595306, + "osm_way_id": 686956436, + "src_i": 6439595307, "type": "road" }, "type": "Feature" @@ -4489,33 +4833,33 @@ "coordinates": [ [ [ - -2.304390555568663, - 53.445547904967924 + -2.3043204982376007, + 53.44555448260579 ], [ - -2.304803535509869, - 53.445597496256525 + -2.3043611673359226, + 53.4455165977859 ], [ - -2.304818456874301, - 53.445553416909746 + -2.304329364686897, + 53.44550448752181 ], [ - -2.304405476933095, - 53.445503825621145 + -2.3042886955885753, + 53.445542372341706 ], [ - -2.304390555568663, - 53.445547904967924 + -2.3043204982376007, + 53.44555448260579 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6439595293, - "osm_way_id": 1007914062, - "src_i": 9298401785, + "dst_i": 1278748166, + "osm_way_id": 686956439, + "src_i": 5824302619, "type": "road" }, "type": "Feature" @@ -4525,65 +4869,41 @@ "coordinates": [ [ [ - -2.306346643466854, - 53.44580341571199 - ], - [ - -2.306536174390238, - 53.445827723474345 - ], - [ - -2.3067895401246656, - 53.44581892181427 - ], - [ - -2.306906178023565, - 53.44580149566047 - ], - [ - -2.307008415492127, - 53.445770683105295 - ], - [ - -2.3070737300579918, - 53.445735275016965 - ], - [ - -2.3070229110495597, - 53.44570202170309 + -2.3049009109268757, + 53.44498738751927 ], [ - -2.3069651855119924, - 53.445733316294614 + -2.3048985659684704, + 53.44499048927932 ], [ - -2.306879620954385, - 53.445759103440935 + -2.3044354344184557, + 53.44547340157288 ], [ - -2.3067780584352158, - 53.44577427769356 + -2.3044682124977, + 53.445484553160185 ], [ - -2.3065420269715515, - 53.44578247680819 + -2.304932234920515, + 53.44500071096813 ], [ - -2.3063625372415975, - 53.445759456874306 + -2.304935328816055, + 53.444996619954374 ], [ - -2.306346643466854, - 53.44580341571199 + -2.3049009109268757, + 53.44498738751927 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401793, - "osm_way_id": 1007914063, - "src_i": 955165980, + "dst_i": 6439595307, + "osm_way_id": 686956443, + "src_i": 8093690662, "type": "road" }, "type": "Feature" @@ -4593,41 +4913,33 @@ "coordinates": [ [ [ - -2.3071346657575487, - 53.445696078986245 - ], - [ - -2.307540628942985, - 53.44537529278563 - ], - [ - -2.3076296965936383, - 53.44535923539923 + -2.3078030106121448, + 53.4453199098662 ], [ - -2.307607823401454, - 53.445316197466816 + -2.307959003949473, + 53.445175354717826 ], [ - -2.307495170270895, - 53.44533650684553 + -2.307821628343722, + 53.44512276599048 ], [ - -2.3070743763182606, - 53.445669013004675 + -2.3076656350063938, + 53.44526732113886 ], [ - -2.3071346657575487, - 53.445696078986245 + -2.3078030106121448, + 53.4453199098662 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401795, - "osm_way_id": 1007914063, - "src_i": 9298401793, + "dst_i": 2918434149, + "osm_way_id": 690683794, + "src_i": 955166004, "type": "road" }, "type": "Feature" @@ -4637,33 +4949,33 @@ "coordinates": [ [ [ - -2.305051352163717, - 53.44563394126261 + -2.3079990071581253, + 53.44513986569056 ], [ - -2.30530939422537, - 53.44567313099808 + -2.3081454107782395, + 53.44501542836541 ], [ - -2.305328048195841, - 53.44562955886866 + -2.308011671141478, + 53.44495961287232 ], [ - -2.305070006134188, - 53.445590369133186 + -2.3078652675213633, + 53.445084050197465 ], [ - -2.305051352163717, - 53.44563394126261 + -2.3079990071581253, + 53.44513986569056 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401796, - "osm_way_id": 1007914064, - "src_i": 9298401797, + "dst_i": 308222735, + "osm_way_id": 690683794, + "src_i": 2918434149, "type": "road" }, "type": "Feature" @@ -4673,33 +4985,41 @@ "coordinates": [ [ [ - -2.307114895931146, - 53.44575054459768 + -2.3069977959863537, + 53.44604860584188 ], [ - -2.307111198054047, - 53.44573254557604 + -2.3070157901069708, + 53.44604233127538 ], [ - -2.3070737300579918, - 53.44573527591629 + -2.3070268323998357, + 53.446040198983965 ], [ - -2.307077427935091, - 53.44575327493792 + -2.307021154973175, + 53.44602976865255 ], [ - -2.307114895931146, - 53.44575054459768 + -2.3070082101383966, + 53.44603226786716 + ], + [ + -2.3069884946703345, + 53.44603914318046 + ], + [ + -2.3069977959863537, + 53.44604860584188 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401793, - "osm_way_id": 1007914065, - "src_i": 9298401798, + "dst_i": 21653578, + "osm_way_id": 690683796, + "src_i": 6137128386, "type": "road" }, "type": "Feature" @@ -4709,41 +5029,33 @@ "coordinates": [ [ [ - -2.3063799409702397, - 53.445994516146854 + -2.3069520005945443, + 53.446030094206954 ], [ - -2.3062454931650995, - 53.445971696761674 + -2.3069371954965625, + 53.44602580804042 ], [ - -2.3054637598323953, - 53.44588393466893 - ], - [ - -2.3054497746393805, - 53.44592812193429 - ], - [ - -2.3062281075559037, - 53.4460155027147 + -2.3068757041339705, + 53.44610115140179 ], [ - -2.3063592515819127, - 53.446037760923225 + -2.3068905092319527, + 53.44610543756833 ], [ - -2.3063799409702397, - 53.445994516146854 + -2.3069520005945443, + 53.446030094206954 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401802, - "osm_way_id": 1007914066, - "src_i": 6480352139, + "dst_i": 31287523, + "osm_way_id": 690683797, + "src_i": 6137128386, "type": "road" }, "type": "Feature" @@ -4753,33 +5065,41 @@ "coordinates": [ [ [ - -2.3047989573296466, - 53.44579481190266 + -2.3069674625224725, + 53.4460182060753 ], [ - -2.3046848667229756, - 53.445775898271 + -2.3069442983197046, + 53.44602576397366 ], [ - -2.304664621261095, - 53.44581921679175 + -2.306937187946793, + 53.4460258071411 ], [ - -2.304778711867766, - 53.445838130423404 + -2.30693756241536, + 53.44604773439929 ], [ - -2.3047989573296466, - 53.44579481190266 + -2.3069539016265033, + 53.44604763547392 + ], + [ + -2.3069851531423557, + 53.44603743896611 + ], + [ + -2.3069674625224725, + 53.4460182060753 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401807, - "osm_way_id": 1007914067, - "src_i": 9298401808, + "dst_i": 31287523, + "osm_way_id": 690683798, + "src_i": 6480352153, "type": "road" }, "type": "Feature" @@ -4789,33 +5109,33 @@ "coordinates": [ [ [ - -2.305136509033771, - 53.44584306320214 + -2.307008427571758, + 53.44602717231122 ], [ - -2.3048705955824413, - 53.44580576923651 + -2.3070211579930824, + 53.44602976865255 ], [ - -2.304853291510756, - 53.44584953741803 + -2.307066725381853, + 53.44595051324241 ], [ - -2.305119204962086, - 53.44588683138366 + -2.307053994960529, + 53.445947916901076 ], [ - -2.305136509033771, - 53.44584306320214 + -2.307008427571758, + 53.44602717231122 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401808, - "osm_way_id": 1007914068, - "src_i": 9298401809, + "dst_i": 21653578, + "osm_way_id": 690683799, + "src_i": 6480352153, "type": "road" }, "type": "Feature" @@ -4825,33 +5145,33 @@ "coordinates": [ [ [ - -2.305446685273703, - 53.447152379161224 + -2.3074347086968627, + 53.44625414938094 ], [ - -2.3055150137075504, - 53.44709068120583 + -2.3074316751994792, + 53.44625861091518 ], [ - -2.305451991251705, - 53.447065922883375 + -2.307459666724863, + 53.446265361222785 ], [ - -2.305383662817857, - 53.44712762083877 + -2.3074627002222465, + 53.44626089968854 ], [ - -2.305446685273703, - 53.447152379161224 + -2.3074347086968627, + 53.44625414938094 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2918402991, - "osm_way_id": 1007932140, - "src_i": 9298570017, + "dst_i": 2790153400, + "osm_way_id": 693079615, + "src_i": 2790153424, "type": "road" }, "type": "Feature" @@ -4861,49 +5181,57 @@ "coordinates": [ [ [ - -2.305549165844843, - 53.44570413241078 + -2.308174638955867, + 53.446294899439316 ], [ - -2.3058404812506192, - 53.4457108206652 + -2.3083660346723165, + 53.44632743239663 ], [ - -2.3060540929187883, - 53.44576056124117 + -2.308770062096854, + 53.44637506676152 ], [ - -2.306270304727571, - 53.44579284148913 + -2.308945290736905, + 53.44638370474507 ], [ - -2.306288662747078, - 53.44574922439363 + -2.3092195527233432, + 53.44638464273745 ], [ - -2.30607710763612, - 53.44571763842192 + -2.309219827534953, + 53.44635596876894 ], [ - -2.3058561183331996, - 53.44566618014177 + -2.3089474197719024, + 53.44635503797113 ], [ - -2.305552074016053, - 53.445659200507166 + -2.3087767481727197, + 53.44634662301932 ], [ - -2.305549165844843, - 53.44570413241078 + -2.308377320067759, + 53.44629953184465 + ], + [ + -2.308187851052485, + 53.44626732624039 + ], + [ + -2.308174638955867, + 53.446294899439316 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 955165980, - "osm_way_id": 1016864436, - "src_i": 9298401787, + "dst_i": 32026058, + "osm_way_id": 773118440, + "src_i": 2918472522, "type": "road" }, "type": "Feature" @@ -4913,33 +5241,33 @@ "coordinates": [ [ [ - -2.3053825665913266, - 53.445684235820664 + -2.3081522131205556, + 53.446335105408146 ], [ - -2.305464419682249, - 53.44569664915611 + -2.307122648034465, + 53.44608736120504 ], [ - -2.305483049493458, - 53.445653073429405 + -2.307092062408282, + 53.446132451389246 ], [ - -2.305401196402535, - 53.44564066009396 + -2.308121627494373, + 53.446380195592354 ], [ - -2.3053825665913266, - 53.445684235820664 + -2.3081522131205556, + 53.446335105408146 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401787, - "osm_way_id": 1016864436, - "src_i": 9298401796, + "dst_i": 31287524, + "osm_way_id": 773118441, + "src_i": 32025957, "type": "road" }, "type": "Feature" @@ -4949,33 +5277,33 @@ "coordinates": [ [ [ - -2.3048752703997133, - 53.44560723411034 + -2.305902010362059, + 53.44585691994868 ], [ - -2.304978206976931, - 53.445622840936636 + -2.3054873543720245, + 53.4458225397849 ], [ - -2.304996830748324, - 53.44557926520993 + -2.3054740788573427, + 53.44587933913577 ], [ - -2.3048938941711063, - 53.445563658383634 + -2.3058887348473767, + 53.44591371929956 ], [ - -2.3048752703997133, - 53.44560723411034 + -2.305902010362059, + 53.44585691994868 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401797, - "osm_way_id": 1016864437, - "src_i": 6439595293, + "dst_i": 2265010779, + "osm_way_id": 773118442, + "src_i": 6480352128, "type": "road" }, "type": "Feature" @@ -4985,33 +5313,41 @@ "coordinates": [ [ [ - -2.305389705653362, - 53.445875168981715 + -2.3062063566699855, + 53.44698754970768 ], [ - -2.305209276732082, - 53.445852695835335 + -2.3061460355216656, + 53.44696297484682 ], [ - -2.3051938238638776, - 53.44589671043096 + -2.306026272018195, + 53.4470551229308 ], [ - -2.3053742527851573, - 53.44591918357734 + -2.3060859725754623, + 53.44708264756636 ], [ - -2.305389705653362, - 53.445875168981715 + -2.306162164849217, + 53.447024024391375 + ], + [ + -2.3061637306714107, + 53.447024662909676 + ], + [ + -2.3062063566699855, + 53.44698754970768 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9298401809, - "osm_way_id": 1016864438, - "src_i": 9298401802, + "dst_i": 9298526716, + "osm_way_id": 809948499, + "src_i": 743548122, "type": "road" }, "type": "Feature" @@ -5021,35 +5357,2064 @@ "coordinates": [ [ [ - -2.3093702113935457, - 53.4462219239916 + -2.306850527162655, + 53.44489601824776 ], [ - -2.3093696496906952, - 53.44623990682545 + -2.306815299938186, + 53.44492955664657 ], [ - -2.3092186799699896, - 53.44623823498667 + -2.3068164052244406, + 53.44492893701402 ], [ - -2.30921924167284, - 53.44622025215283 + -2.3068726902659877, + 53.44496455014766 ], [ - -2.3093702113935457, - 53.4462219239916 + -2.306879300844159, + 53.44496084404353 + ], + [ + -2.3069201450971324, + 53.44492195827874 + ], + [ + -2.306850527162655, + 53.44489601824776 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-4", - "osm_node_id": -4, - "type": "intersection" + "dst_i": 745988105, + "osm_way_id": 835239296, + "src_i": 745988244, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.304362986830371, + 53.44703244294046 + ], + [ + -2.3047311921086036, + 53.446729403052124 + ], + [ + -2.3046822635624533, + 53.44670831396162 + ], + [ + -2.3043140582842208, + 53.44701135384996 + ], + [ + -2.304362986830371, + 53.44703244294046 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8778504602, + "osm_way_id": 948376835, + "src_i": 8778504599, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3048113465013897, + 53.44571616263524 + ], + [ + -2.3047838260816227, + 53.44571144569368 + ], + [ + -2.304757196534656, + 53.44576655611867 + ], + [ + -2.304784716954423, + 53.44577127306024 + ], + [ + -2.3048113465013897, + 53.44571616263524 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 31287519, + "osm_way_id": 965055857, + "src_i": 1277766903, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3054108706771674, + 53.44581469590228 + ], + [ + -2.3053251354947695, + 53.44580389864767 + ], + [ + -2.305305216182931, + 53.44586000552095 + ], + [ + -2.305390951365329, + 53.44587080277555 + ], + [ + -2.3054108706771674, + 53.44581469590228 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1277766809, + "osm_way_id": 965055858, + "src_i": 2265010779, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3061512493924794, + 53.445590598460186 + ], + [ + -2.306129708390153, + 53.445609791780846 + ], + [ + -2.3062285892311976, + 53.44564915868267 + ], + [ + -2.306250130233524, + 53.445629965362 + ], + [ + -2.3061512493924794, + 53.445590598460186 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 955166125, + "osm_way_id": 965055862, + "src_i": 745988281, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307936002821726, + 53.44619851105419 + ], + [ + -2.3079403182699703, + 53.446188153567824 + ], + [ + -2.3079110070448787, + 53.44618382243521 + ], + [ + -2.3079066915966346, + 53.44619417992158 + ], + [ + -2.307936002821726, + 53.44619851105419 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2920872879, + "osm_way_id": 992440493, + "src_i": 32025949, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3061972622176503, + 53.445861137766784 + ], + [ + -2.306708697192901, + 53.44594416223357 + ], + [ + -2.306810655319992, + 53.445964417652995 + ], + [ + -2.306830665229065, + 53.44592868580891 + ], + [ + -2.30672702501333, + 53.445908095841865 + ], + [ + -2.3062138928498963, + 53.445824796182684 + ], + [ + -2.3061972622176503, + 53.445861137766784 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 21653579, + "osm_way_id": 999493252, + "src_i": 7218399545, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3054500887097915, + 53.44576081305121 + ], + [ + -2.305469154897677, + 53.44576409377625 + ], + [ + -2.3055024252218925, + 53.44569550611841 + ], + [ + -2.305483359034007, + 53.44569222539337 + ], + [ + -2.3054500887097915, + 53.44576081305121 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401799, + "osm_way_id": 999493253, + "src_i": 1277766621, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.306770982791244, + 53.446002084837076 + ], + [ + -2.3065661046964285, + 53.445951197626115 + ], + [ + -2.3065325610705574, + 53.44594603192309 + ], + [ + -2.306516730713878, + 53.44598249941221 + ], + [ + -2.3065458984933493, + 53.445986990624064 + ], + [ + -2.306746639314481, + 53.44603685080981 + ], + [ + -2.306770982791244, + 53.446002084837076 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2918402992, + "osm_way_id": 999493421, + "src_i": 31287523, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.306935404691238, + 53.446116723154546 + ], + [ + -2.3065507590349505, + 53.44644974102765 + ], + [ + -2.3066549669933516, + 53.44649243901652 + ], + [ + -2.3070396126496386, + 53.44615942114341 + ], + [ + -2.306935404691238, + 53.446116723154546 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 743548189, + "osm_way_id": 1003081552, + "src_i": 31287524, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3065050029019427, + 53.44648846131727 + ], + [ + -2.3059824984546564, + 53.4469212175483 + ], + [ + -2.3060851904193425, + 53.44696519976835 + ], + [ + -2.3066076948666288, + 53.44653244353732 + ], + [ + -2.3065050029019427, + 53.44648846131727 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 743547944, + "osm_way_id": 1003081553, + "src_i": 743548189, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3057127195213445, + 53.447089700046014 + ], + [ + -2.3059216654319648, + 53.446915264938916 + ], + [ + -2.30578872607077, + 53.4468587767533 + ], + [ + -2.3055797801601496, + 53.44703321186039 + ], + [ + -2.3057127195213445, + 53.447089700046014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6137128080, + "osm_way_id": 1003081554, + "src_i": 637467098, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3060948556342513, + 53.446770216962335 + ], + [ + -2.306630612946911, + 53.44632130891615 + ], + [ + -2.306497507490787, + 53.44626495742741 + ], + [ + -2.3059617501781275, + 53.44671386547359 + ], + [ + -2.3060948556342513, + 53.446770216962335 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 31287525, + "osm_way_id": 1003081554, + "src_i": 6137128080, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.305610006417304, + 53.44718217728168 + ], + [ + -2.3056506830653953, + 53.44714429515975 + ], + [ + -2.3055131081457296, + 53.447091891692644 + ], + [ + -2.3054724314976385, + 53.447129773814574 + ], + [ + -2.305610006417304, + 53.44718217728168 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 637467098, + "osm_way_id": 1003081555, + "src_i": 2790133529, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3063625342216896, + 53.44575946047159 + ], + [ + -2.306362975128228, + 53.44575845053348 + ], + [ + -2.306289908459045, + 53.445747135269656 + ], + [ + -2.3062894675525065, + 53.445748145207766 + ], + [ + -2.3063625342216896, + 53.44575946047159 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 955166095, + "osm_way_id": 1007914061, + "src_i": 955165980, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.304390555568663, + 53.445547904967924 + ], + [ + -2.304803535509869, + 53.445597496256525 + ], + [ + -2.304818456874301, + 53.445553416909746 + ], + [ + -2.304405476933095, + 53.445503825621145 + ], + [ + -2.304390555568663, + 53.445547904967924 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6439595293, + "osm_way_id": 1007914062, + "src_i": 9298401785, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.306346643466854, + 53.44580341571199 + ], + [ + -2.306536174390238, + 53.445827723474345 + ], + [ + -2.3067895401246656, + 53.44581892181427 + ], + [ + -2.306906178023565, + 53.44580149566047 + ], + [ + -2.307008415492127, + 53.445770683105295 + ], + [ + -2.3070737300579918, + 53.445735275016965 + ], + [ + -2.3070229110495597, + 53.44570202170309 + ], + [ + -2.3069651855119924, + 53.445733316294614 + ], + [ + -2.306879620954385, + 53.445759103440935 + ], + [ + -2.3067780584352158, + 53.44577427769356 + ], + [ + -2.3065420269715515, + 53.44578247680819 + ], + [ + -2.3063625372415975, + 53.445759456874306 + ], + [ + -2.306346643466854, + 53.44580341571199 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401793, + "osm_way_id": 1007914063, + "src_i": 955165980, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3071346657575487, + 53.445696078986245 + ], + [ + -2.3075253225403087, + 53.44538738686192 + ], + [ + -2.3074650331010207, + 53.44536032088035 + ], + [ + -2.3070743763182606, + 53.445669013004675 + ], + [ + -2.3071346657575487, + 53.445696078986245 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401794, + "osm_way_id": 1007914063, + "src_i": 9298401793, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3076219943187986, + 53.445360623052395 + ], + [ + -2.3076296935737304, + 53.44535923539923 + ], + [ + -2.307607826421362, + 53.445316197466816 + ], + [ + -2.30760012716643, + 53.44531758511998 + ], + [ + -2.3076219943187986, + 53.445360623052395 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401795, + "osm_way_id": 1007914063, + "src_i": 9298401794, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.305051352163717, + 53.44563394126261 + ], + [ + -2.30530939422537, + 53.44567313099808 + ], + [ + -2.305328048195841, + 53.44562955886866 + ], + [ + -2.305070006134188, + 53.445590369133186 + ], + [ + -2.305051352163717, + 53.44563394126261 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401796, + "osm_way_id": 1007914064, + "src_i": 9298401797, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307114895931146, + 53.44575054459768 + ], + [ + -2.307111198054047, + 53.44573254557604 + ], + [ + -2.3070737300579918, + 53.44573527591629 + ], + [ + -2.307077427935091, + 53.44575327493792 + ], + [ + -2.307114895931146, + 53.44575054459768 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401793, + "osm_way_id": 1007914065, + "src_i": 9298401798, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3063799409702397, + 53.445994516146854 + ], + [ + -2.3062454931650995, + 53.445971696761674 + ], + [ + -2.3054637598323953, + 53.44588393466893 + ], + [ + -2.3054497746393805, + 53.44592812193429 + ], + [ + -2.3062281075559037, + 53.4460155027147 + ], + [ + -2.3063592515819127, + 53.446037760923225 + ], + [ + -2.3063799409702397, + 53.445994516146854 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401802, + "osm_way_id": 1007914066, + "src_i": 6480352139, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3047989573296466, + 53.44579481190266 + ], + [ + -2.3046848667229756, + 53.445775898271 + ], + [ + -2.304664621261095, + 53.44581921679175 + ], + [ + -2.304778711867766, + 53.445838130423404 + ], + [ + -2.3047989573296466, + 53.44579481190266 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401807, + "osm_way_id": 1007914067, + "src_i": 9298401808, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.305136509033771, + 53.44584306320214 + ], + [ + -2.3048705955824413, + 53.44580576923651 + ], + [ + -2.304853291510756, + 53.44584953741803 + ], + [ + -2.305119204962086, + 53.44588683138366 + ], + [ + -2.305136509033771, + 53.44584306320214 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401808, + "osm_way_id": 1007914068, + "src_i": 9298401809, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3045498572149845, + 53.44575303032246 + ], + [ + -2.304400767386883, + 53.44571433791181 + ], + [ + -2.3043887028552286, + 53.44573082607322 + ], + [ + -2.30453779268333, + 53.44576951848388 + ], + [ + -2.3045498572149845, + 53.44575303032246 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9280845971, + "osm_way_id": 1007914070, + "src_i": 2913662306, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3046225373359697, + 53.445769467222554 + ], + [ + -2.3046177432323396, + 53.44576851843831 + ], + [ + -2.304608221463051, + 53.44578558756145 + ], + [ + -2.304613015566681, + 53.44578653634569 + ], + [ + -2.3046225373359697, + 53.445769467222554 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2913662306, + "osm_way_id": 1007914070, + "src_i": 9298401807, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3076001226365683, + 53.44531758511998 + ], + [ + -2.30760396093938, + 53.44531433856916 + ], + [ + -2.30757927017322, + 53.445303983780754 + ], + [ + -2.3075754318704083, + 53.44530723033157 + ], + [ + -2.3076001226365683, + 53.44531758511998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401919, + "osm_way_id": 1007914071, + "src_i": 9298401794, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3076613044586107, + 53.44526578150035 + ], + [ + -2.3078259966403527, + 53.44512623737169 + ], + [ + -2.3078012907746537, + 53.445115893375146 + ], + [ + -2.3076365985929117, + 53.4452554375038 + ], + [ + -2.3076613044586107, + 53.44526578150035 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401918, + "osm_way_id": 1007914071, + "src_i": 9298401919, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.305446685273703, + 53.447152379161224 + ], + [ + -2.3055150137075504, + 53.44709068120583 + ], + [ + -2.305451991251705, + 53.447065922883375 + ], + [ + -2.305383662817857, + 53.44712762083877 + ], + [ + -2.305446685273703, + 53.447152379161224 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2918402991, + "osm_way_id": 1007932140, + "src_i": 9298570017, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.305549165844843, + 53.44570413241078 + ], + [ + -2.3058404812506192, + 53.4457108206652 + ], + [ + -2.3060540929187883, + 53.44576056124117 + ], + [ + -2.306270304727571, + 53.44579284148913 + ], + [ + -2.306288662747078, + 53.44574922439363 + ], + [ + -2.30607710763612, + 53.44571763842192 + ], + [ + -2.3058561183331996, + 53.44566618014177 + ], + [ + -2.305552074016053, + 53.445659200507166 + ], + [ + -2.305549165844843, + 53.44570413241078 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 955165980, + "osm_way_id": 1016864436, + "src_i": 9298401787, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3053825665913266, + 53.445684235820664 + ], + [ + -2.305464419682249, + 53.44569664915611 + ], + [ + -2.305483049493458, + 53.445653073429405 + ], + [ + -2.305401196402535, + 53.44564066009396 + ], + [ + -2.3053825665913266, + 53.445684235820664 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401787, + "osm_way_id": 1016864436, + "src_i": 9298401796, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3048757354655143, + 53.44560730515674 + ], + [ + -2.304978205466977, + 53.445622841835956 + ], + [ + -2.304996832258278, + 53.44557926610925 + ], + [ + -2.3048943622568148, + 53.445563729430035 + ], + [ + -2.3048757354655143, + 53.44560730515674 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401797, + "osm_way_id": 1016864437, + "src_i": 6439595293, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.305389705653362, + 53.445875168981715 + ], + [ + -2.305209276732082, + 53.445852695835335 + ], + [ + -2.3051938238638776, + 53.44589671043096 + ], + [ + -2.3053742527851573, + 53.44591918357734 + ], + [ + -2.305389705653362, + 53.445875168981715 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9298401809, + "osm_way_id": 1016864438, + "src_i": 9298401802, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3093702113935457, + 53.4462219239916 + ], + [ + -2.3093696496906952, + 53.44623990682545 + ], + [ + -2.3092186799699896, + 53.44623823498667 + ], + [ + -2.30921924167284, + 53.44622025215283 + ], + [ + -2.3093702113935457, + 53.4462219239916 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-4", + "osm_node_id": -4, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.305124439972255, + 53.44715037817076 + ], + [ + -2.3050107253441046, + 53.447129621829234 + ], + [ + -2.3050549669933518, + 53.4470436376952 + ], + [ + -2.3051686846414094, + 53.44706439223808 + ], + [ + -2.305124439972255, + 53.44715037817076 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-3", + "osm_node_id": -3, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3058065465466884, + 53.44712868743414 + ], + [ + -2.3057378678035363, + 53.4471865210048 + ], + [ + -2.3056299997168836, + 53.447141082783155 + ], + [ + -2.3056986784600357, + 53.44708324741384 + ], + [ + -2.3058065465466884, + 53.44712868743414 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-2", + "osm_node_id": -2, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3067056591656563, + 53.44718138408007 + ], + [ + -2.3066371223581705, + 53.4472392788046 + ], + [ + -2.3065291425349295, + 53.44719393411239 + ], + [ + -2.306597679342415, + 53.447136039387864 + ], + [ + -2.3067056591656563, + 53.44718138408007 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-1", + "osm_node_id": -1, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307212189810642, + 53.446011884744074 + ], + [ + -2.307185912082934, + 53.446046147096745 + ], + [ + -2.307173766013769, + 53.44604284209002 + ], + [ + -2.3071407554016243, + 53.446071592500864 + ], + [ + -2.307055044378489, + 53.446036680838034 + ], + [ + -2.307057887621681, + 53.44603420410647 + ], + [ + -2.3070268323998357, + 53.446040198983965 + ], + [ + -2.307021154973175, + 53.44602976865255 + ], + [ + -2.307066723871899, + 53.44595051234309 + ], + [ + -2.3071183658052066, + 53.44596104609648 + ], + [ + -2.30721803635214, + 53.44600742860577 + ], + [ + -2.307212189810642, + 53.446011884744074 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/21653578", + "osm_node_id": 21653578, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3069822978195322, + 53.44593218327044 + ], + [ + -2.3069336727741154, + 53.446010792068385 + ], + [ + -2.3069289451084574, + 53.446009755150634 + ], + [ + -2.3068097931363156, + 53.44596523693493 + ], + [ + -2.306810655319992, + 53.445964418552315 + ], + [ + -2.306830665229065, + 53.44592868580891 + ], + [ + -2.3068795303571514, + 53.44593839398511 + ], + [ + -2.306913033214267, + 53.44590643029834 + ], + [ + -2.3069822978195322, + 53.44593218327044 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/21653579", + "osm_node_id": 21653579, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.304234820433451, + 53.44557984437301 + ], + [ + -2.3042603537538873, + 53.44551009119443 + ], + [ + -2.304407885309564, + 53.44552924854223 + ], + [ + -2.3043823489692206, + 53.44559900172081 + ], + [ + -2.304234820433451, + 53.44557984437301 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/31287502", + "osm_node_id": 31287502, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.304930951459701, + 53.44561062185464 + ], + [ + -2.3049673337989027, + 53.44561593234843 + ], + [ + -2.3049388017100227, + 53.445685271839096 + ], + [ + -2.3048649423150427, + 53.44567428302899 + ], + [ + -2.3048945072123894, + 53.445605096423 + ], + [ + -2.304930951459701, + 53.44561062185464 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/31287503", + "osm_node_id": 31287503, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3047838260816227, + 53.44571144569368 + ], + [ + -2.304757196534656, + 53.44576655611867 + ], + [ + -2.3047011651653637, + 53.44575695496173 + ], + [ + -2.304695751980635, + 53.44576324661534 + ], + [ + -2.3046419976218226, + 53.445746842990154 + ], + [ + -2.3046370857417884, + 53.44574600482246 + ], + [ + -2.3046636005322587, + 53.445690874612396 + ], + [ + -2.304685295549883, + 53.44567176672728 + ], + [ + -2.3047838260816227, + 53.44571144569368 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/31287519", + "osm_node_id": 31287519, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3041969296503044, + 53.44567165161412 + ], + [ + -2.304222991454605, + 53.4456164440624 + ], + [ + -2.3043501809113516, + 53.44563774449347 + ], + [ + -2.304324119107051, + 53.44569295204519 + ], + [ + -2.3041969296503044, + 53.44567165161412 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/31287522", + "osm_node_id": 31287522, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.30693756241536, + 53.44604773439929 + ], + [ + -2.3068757041339705, + 53.44610115140179 + ], + [ + -2.306821804819584, + 53.44608554997143 + ], + [ + -2.3067521748054753, + 53.44606015133202 + ], + [ + -2.3067701341971527, + 53.44604268650739 + ], + [ + -2.306746639314481, + 53.44603685080981 + ], + [ + -2.306770982791244, + 53.446002084837076 + ], + [ + -2.306798764433036, + 53.44597570863514 + ], + [ + -2.3069179118753156, + 53.44602022864948 + ], + [ + -2.3069371954965625, + 53.44602580804042 + ], + [ + -2.30693756241536, + 53.44604773439929 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/31287523", + "osm_node_id": 31287523, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307122648034465, + 53.44608736120504 + ], + [ + -2.307092062408282, + 53.446132451389246 + ], + [ + -2.3070753955371424, + 53.44612844131443 + ], + [ + -2.3070396126496386, + 53.44615942114341 + ], + [ + -2.306935404691238, + 53.446116723154546 + ], + [ + -2.3069894701005533, + 53.44603938599728 + ], + [ + -2.307038093636016, + 53.44605144320139 + ], + [ + -2.3071238046591516, + 53.44608635486422 + ], + [ + -2.307122648034465, + 53.44608736120504 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/31287524", + "osm_node_id": 31287524, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.306630612946911, + 53.44632130891615 + ], + [ + -2.306497507490787, + 53.44626495742741 + ], + [ + -2.3065897520844443, + 53.44615884827558 + ], + [ + -2.3066491687703787, + 53.446160324961575 + ], + [ + -2.306718798784487, + 53.446185723600976 + ], + [ + -2.306630612946911, + 53.44632130891615 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/31287525", + "osm_node_id": 31287525, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307521511416667, + 53.44609604505399 + ], + [ + -2.307495232179005, + 53.446130307406655 + ], + [ + -2.3074265609856224, + 53.446111623102 + ], + [ + -2.3074528402232843, + 53.44607736074933 + ], + [ + -2.3075040472898687, + 53.44605935273448 + ], + [ + -2.307521511416667, + 53.44609604505399 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/32025947", + "osm_node_id": 32025947, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3079323577930135, + 53.44620726145294 + ], + [ + -2.3079420683065397, + 53.44620943421382 + ], + [ + -2.307919823665696, + 53.446244694813416 + ], + [ + -2.30784772789687, + 53.44622678302597 + ], + [ + -2.307874146050291, + 53.44619256024345 + ], + [ + -2.307903963109939, + 53.446200726083184 + ], + [ + -2.3079066915966346, + 53.44619417902226 + ], + [ + -2.307936002821726, + 53.44619851195351 + ], + [ + -2.3079323577930135, + 53.44620726145294 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/32025949", + "osm_node_id": 32025949, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3082180003019905, + 53.446349715786155 + ], + [ + -2.3081963807820616, + 53.44639632402515 + ], + [ + -2.308121627494373, + 53.446380195592354 + ], + [ + -2.3081522131205556, + 53.446335105408146 + ], + [ + -2.3082180003019905, + 53.446349715786155 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/32025957", + "osm_node_id": 32025957, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307453759785209, + 53.44587489558796 + ], + [ + -2.3073943763182605, + 53.445873016005905 + ], + [ + -2.307294707281281, + 53.445826631697976 + ], + [ + -2.307431148225568, + 53.44575473903342 + ], + [ + -2.3074851260575575, + 53.44577436762572 + ], + [ + -2.307453759785209, + 53.44587489558796 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/32025961", + "osm_node_id": 32025961, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3093683450905265, + 53.44635407929435 + ], + [ + -2.3093726726184016, + 53.44638263635106 + ], + [ + -2.3092195527233432, + 53.44638464273745 + ], + [ + -2.309219827534953, + 53.44635596876894 + ], + [ + -2.3093683450905265, + 53.44635407929435 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/32026058", + "osm_node_id": 32026058, + "type": "intersection" }, "type": "Feature" }, @@ -5058,34 +7423,50 @@ "coordinates": [ [ [ - -2.305124439972255, - 53.44715037817076 + -2.30852015566681, + 53.44493308648368 ], [ - -2.3050107253441046, - 53.447129621829234 + -2.3084870816366014, + 53.444963186776185 ], [ - -2.3050549669933518, - 53.4470436376952 + -2.308485029609252, + 53.44496238727932 ], [ - -2.3051686846414094, - 53.44706439223808 + -2.3084789716742087, + 53.44496731196416 ], [ - -2.305124439972255, - 53.44715037817076 + -2.3083769380494226, + 53.44492279015118 + ], + [ + -2.308398749333497, + 53.444905058228045 + ], + [ + -2.3084198690586852, + 53.444887043018625 + ], + [ + -2.308523581752207, + 53.44493016728591 + ], + [ + -2.30852015566681, + 53.44493308648368 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-3", - "osm_node_id": -3, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/306917570", + "osm_node_id": 306917570, "type": "intersection" }, "type": "Feature" @@ -5095,24 +7476,24 @@ "coordinates": [ [ [ - -2.3058065465466884, - 53.44712868743414 + -2.3080983213559385, + 53.444885962933434 ], [ - -2.3057378678035363, - 53.4471865210048 + -2.3082320609927005, + 53.444941778426525 ], [ - -2.3056299997168836, - 53.447141082783155 + -2.3081454107782395, + 53.44501542836541 ], [ - -2.3056986784600357, - 53.44708324741384 + -2.308011671141478, + 53.44495961287232 ], [ - -2.3058065465466884, - 53.44712868743414 + -2.3080983213559385, + 53.444885962933434 ] ] ], @@ -5121,8 +7502,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-2", - "osm_node_id": -2, + "osm_link": "https://www.openstreetmap.org/node/308222735", + "osm_node_id": 308222735, "type": "intersection" }, "type": "Feature" @@ -5132,24 +7513,24 @@ "coordinates": [ [ [ - -2.306538797180161, - 53.44711106342959 + -2.305913570569111, + 53.44490151310247 ], [ - -2.3064702120541507, - 53.44716893657041 + -2.305983484454553, + 53.44491848689753 ], [ - -2.3063468503305384, - 53.44711707719284 + -2.3059264897346727, + 53.44500176587232 ], [ - -2.306415435456549, - 53.447059204052024 + -2.3058565758492313, + 53.44498479207726 ], [ - -2.306538797180161, - 53.44711106342959 + -2.305913570569111, + 53.44490151310247 ] ] ], @@ -5158,8 +7539,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-1", - "osm_node_id": -1, + "osm_link": "https://www.openstreetmap.org/node/637466928", + "osm_node_id": 637466928, "type": "intersection" }, "type": "Feature" @@ -5169,62 +7550,87 @@ "coordinates": [ [ [ - -2.307212189810642, - 53.446011884744074 + -2.3056797602476324, + 53.44711721568836 ], [ - -2.307185912082934, - 53.446046147096745 + -2.3056506830653953, + 53.44714429515975 ], [ - -2.307173766013769, - 53.44604284209002 + -2.3055131081457296, + 53.447091891692644 ], [ - -2.3071407554016243, - 53.446071592500864 + -2.305637039121962, + 53.44705728310118 ], [ - -2.307055044378489, - 53.446036680838034 + -2.30556836037881, + 53.447115116671846 ], [ - -2.307057887621681, - 53.44603420410647 + -2.305511193524185, + 53.44709108500121 ], [ - -2.3070268323998357, - 53.446040198983965 + -2.3055797786501957, + 53.44703321186039 ], [ - -2.307021154973175, - 53.44602976865255 + -2.3057127195213445, + 53.447089700046014 ], [ - -2.307066723871899, - 53.44595051234309 + -2.3056797602476324, + 53.44711721568836 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/637467098", + "osm_node_id": 637467098, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3058557725537567, + 53.44715787131797 ], [ - -2.3071183658052066, - 53.44596104609648 + -2.305752549085298, + 53.44711433336277 ], [ - -2.30721803635214, - 53.44600742860577 + -2.305839812341042, + 53.447040941529174 ], [ - -2.307212189810642, - 53.446011884744074 + -2.3059430358095003, + 53.447084477685735 + ], + [ + -2.3058557725537567, + 53.44715787131797 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/21653578", - "osm_node_id": 21653578, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/637467100", + "osm_node_id": 637467100, "type": "intersection" }, "type": "Feature" @@ -5234,50 +7640,153 @@ "coordinates": [ [ [ - -2.3069822978195322, - 53.44593218327044 + -2.3042831872767513, + 53.44684272566216 ], [ - -2.3069336727741154, - 53.446010792068385 + -2.304216812723249, + 53.44682129662811 ], [ - -2.3069289451084574, - 53.446009755150634 + -2.3042887710862705, + 53.44674223367277 ], [ - -2.3068097931363156, - 53.44596523693493 + -2.3043551456397724, + 53.44676366270683 + ], + [ + -2.3042831872767513, + 53.44684272566216 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/739096994", + "osm_node_id": 739096994, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.309546528710358, + 53.44680614575784 + ], + [ + -2.30954834971476, + 53.446876974525 + ], + [ + -2.3094162453580713, + 53.446878180515206 + ], + [ + -2.309414421333761, + 53.44680735174805 + ], + [ + -2.309546528710358, + 53.44680614575784 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/743547865", + "osm_node_id": 743547865, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.306063175291492, + 53.44698343351291 + ], + [ + -2.306041552751655, + 53.44700161869411 + ], + [ + -2.3059383292831965, + 53.446958082537556 + ], + [ + -2.3059824984546564, + 53.4469212175483 + ], + [ + -2.3060851904193425, + 53.44696519976835 + ], + [ + -2.306063175291492, + 53.44698343351291 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/743547944", + "osm_node_id": 743547944, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3067841239200293, + 53.44654885525641 ], [ - -2.306810655319992, - 53.445964418552315 + -2.3068145645906375, + 53.446562007834174 ], [ - -2.306830665229065, - 53.44592868580891 + -2.30676634572282, + 53.4466015959691 ], [ - -2.3068795303571514, - 53.44593839398511 + -2.3067051774903624, + 53.44657502281574 ], [ - -2.306913033214267, - 53.44590643029834 + -2.306753740627669, + 53.4465355839682 ], [ - -2.3069822978195322, - 53.44593218327044 + -2.3067841239200293, + 53.44654885525641 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/21653579", - "osm_node_id": 21653579, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/743547964", + "osm_node_id": 743547964, "type": "intersection" }, "type": "Feature" @@ -5287,24 +7796,24 @@ "coordinates": [ [ [ - -2.304234820433451, - 53.44557984437301 + -2.3074798985971583, + 53.447159862415894 ], [ - -2.3042603537538873, - 53.44551009119443 + -2.307381422423759, + 53.4471201375841 ], [ - -2.304407885309564, - 53.44552924854223 + -2.307466096108566, + 53.44704567645717 ], [ - -2.3043823489692206, - 53.44559900172081 + -2.307564572281965, + 53.44708540128897 ], [ - -2.304234820433451, - 53.44557984437301 + -2.3074798985971583, + 53.447159862415894 ] ] ], @@ -5313,8 +7822,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/31287502", - "osm_node_id": 31287502, + "osm_link": "https://www.openstreetmap.org/node/743548069", + "osm_node_id": 743548069, "type": "intersection" }, "type": "Feature" @@ -5324,28 +7833,24 @@ "coordinates": [ [ [ - -2.304930951459701, - 53.44561062185464 - ], - [ - -2.3049673337989027, - 53.44561593234843 + -2.3062813591000677, + 53.44700286695243 ], [ - -2.3049388017100227, - 53.445685271839096 + -2.3062126773370077, + 53.447060700523096 ], [ - -2.3048649423150427, - 53.44567428302899 + -2.3061637306714107, + 53.447024662909676 ], [ - -2.3048945072123894, - 53.445605096423 + -2.3062063566699855, + 53.44698754970768 ], [ - -2.304930951459701, - 53.44561062185464 + -2.3062813591000677, + 53.44700286695243 ] ] ], @@ -5354,8 +7859,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/31287503", - "osm_node_id": 31287503, + "osm_link": "https://www.openstreetmap.org/node/743548122", + "osm_node_id": 743548122, "type": "intersection" }, "type": "Feature" @@ -5365,50 +7870,75 @@ "coordinates": [ [ [ - -2.3047838260816227, - 53.44571144569368 + -2.30770323134853, + 53.44696346677571 ], [ - -2.304757196534656, - 53.44576655611867 + -2.3076807526648326, + 53.44698323476285 ], [ - -2.3047011651653637, - 53.44575695496173 + -2.3075822764914333, + 53.446943509931046 ], [ - -2.304695751980635, - 53.44576324661534 + -2.3076285490286748, + 53.4469030989169 ], [ - -2.3046419976218226, - 53.445746842990154 + -2.3077266009050286, + 53.44694319336986 ], [ - -2.3046370857417884, - 53.44574600482246 + -2.30770323134853, + 53.44696346677571 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/743548133", + "osm_node_id": 743548133, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.308186626479873, + 53.44654541625078 ], [ - -2.3046636005322587, - 53.445690874612396 + -2.3080887150292315, + 53.44650520218805 ], [ - -2.304685295549883, - 53.44567176672728 + -2.308143965752358, + 53.44647945461188 ], [ - -2.3047838260816227, - 53.44571144569368 + -2.3081722683282453, + 53.446485730077704 + ], + [ + -2.308186626479873, + 53.44654541625078 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/31287519", - "osm_node_id": 31287519, + "osm_link": "https://www.openstreetmap.org/node/743548183", + "osm_node_id": 743548183, "type": "intersection" }, "type": "Feature" @@ -5418,34 +7948,42 @@ "coordinates": [ [ [ - -2.3041969296503044, - 53.44567165161412 + -2.3066549669933516, + 53.44649243901652 ], [ - -2.304222991454605, - 53.4456164440624 + -2.3066562595138893, + 53.44649300379046 ], [ - -2.3043501809113516, - 53.44563774449347 + -2.3066076963765827, + 53.446532442638 ], [ - -2.304324119107051, - 53.44569295204519 + -2.3065050029019427, + 53.44648846131727 ], [ - -2.3041969296503044, - 53.44567165161412 + -2.3065288163848874, + 53.44646873829622 + ], + [ + -2.3065507590349505, + 53.44644974102765 + ], + [ + -2.3066549669933516, + 53.44649243901652 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/31287522", - "osm_node_id": 31287522, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/743548189", + "osm_node_id": 743548189, "type": "intersection" }, "type": "Feature" @@ -5455,58 +7993,79 @@ "coordinates": [ [ [ - -2.30693756241536, - 53.44604773439929 + -2.3078910348846535, + 53.446800716553604 ], [ - -2.3068757041339705, - 53.44610115140179 + -2.3078899160088144, + 53.44687155161601 ], [ - -2.306821804819584, - 53.44608554997143 + -2.3078157621728237, + 53.44686584092413 ], [ - -2.3067521748054753, - 53.44606015133202 + -2.307717708786516, + 53.44682574737049 ], [ - -2.3067701341971527, - 53.44604268650739 + -2.3077461729274704, + 53.446801052899865 ], [ - -2.306746639314481, - 53.44603685080981 + -2.3077931249439665, + 53.446760501591555 ], [ - -2.306770982791244, - 53.446002084837076 + -2.3078910348846535, + 53.446800716553604 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/743548194", + "osm_node_id": 743548194, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3066252888494625, + 53.447039750827436 ], [ - -2.306798764433036, - 53.44597570863514 + -2.3066493816738785, + 53.447050596645404 ], [ - -2.3069179118753156, - 53.44602022864948 + -2.3065991923162223, + 53.4470901461095 ], [ - -2.3069371954965625, - 53.44602580804042 + -2.3065750994918064, + 53.447079300291534 ], [ - -2.30693756241536, - 53.44604773439929 + -2.3066252888494625, + 53.447039750827436 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/31287523", - "osm_node_id": 31287523, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/743572640", + "osm_node_id": 743572640, "type": "intersection" }, "type": "Feature" @@ -5516,40 +8075,40 @@ "coordinates": [ [ [ - -2.307122648034465, - 53.44608736120504 + -2.3068817258301206, + 53.44496052118709 ], [ - -2.307092062408282, - 53.446132451389246 + -2.3068249153246163, + 53.44502275603745 ], [ - -2.3070753955371424, - 53.44612844131443 + -2.306716458355943, + 53.44499367827356 ], [ - -2.3070396126496386, - 53.44615942114341 + -2.3067205880798576, + 53.44498821309646 ], [ - -2.306935404691238, - 53.446116723154546 + -2.306779529130314, + 53.44492668601216 ], [ - -2.3069894701005533, - 53.44603938599728 + -2.3068049884630084, + 53.44493533748554 ], [ - -2.307038093636016, - 53.44605144320139 + -2.30681530144814, + 53.44492955574725 ], [ - -2.3071238046591516, - 53.44608635486422 + -2.3068726902659877, + 53.44496455014766 ], [ - -2.307122648034465, - 53.44608736120504 + -2.3068817258301206, + 53.44496052118709 ] ] ], @@ -5557,9 +8116,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/31287524", - "osm_node_id": 31287524, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/745988105", + "osm_node_id": 745988105, "type": "intersection" }, "type": "Feature" @@ -5569,28 +8128,32 @@ "coordinates": [ [ [ - -2.306630612946911, - 53.44632130891615 + -2.305090053792108, + 53.446807790616965 ], [ - -2.306497507490787, - 53.44626495742741 + -2.305013665224346, + 53.44686208715595 ], [ - -2.3065897520844443, - 53.44615884827558 + -2.3049720267356215, + 53.44684130653274 ], [ - -2.3066491687703787, - 53.446160324961575 + -2.3049431790663766, + 53.446828994820635 ], [ - -2.306718798784487, - 53.446185723600976 + -2.3050124527313653, + 53.44677141306 ], [ - -2.306630612946911, - 53.44632130891615 + -2.304995192448343, + 53.44676506205117 + ], + [ + -2.305090053792108, + 53.446807790616965 ] ] ], @@ -5599,8 +8162,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/31287525", - "osm_node_id": 31287525, + "osm_link": "https://www.openstreetmap.org/node/745988110", + "osm_node_id": 745988110, "type": "intersection" }, "type": "Feature" @@ -5610,28 +8173,24 @@ "coordinates": [ [ [ - -2.307521511416667, - 53.44609604505399 - ], - [ - -2.307495232179005, - 53.446130307406655 + -2.3053813691978844, + 53.44646093578239 ], [ - -2.3074265609856224, - 53.446111623102 + -2.305476230541649, + 53.44650366434819 ], [ - -2.3074528402232843, - 53.44607736074933 + -2.305385150122448, + 53.44657539423555 ], [ - -2.3075040472898687, - 53.44605935273448 + -2.3052902887786835, + 53.4465326638711 ], [ - -2.307521511416667, - 53.44609604505399 + -2.3053813691978844, + 53.44646093578239 ] ] ], @@ -5639,9 +8198,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/32025947", - "osm_node_id": 32025947, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/745988141", + "osm_node_id": 745988141, "type": "intersection" }, "type": "Feature" @@ -5651,24 +8210,24 @@ "coordinates": [ [ [ - -2.3082180003019905, - 53.446349715786155 + -2.3047017208283984, + 53.44662510603324 ], [ - -2.3081963807820616, - 53.44639632402515 + -2.3046278478438333, + 53.44668062295157 ], [ - -2.308121627494373, - 53.446380195592354 + -2.304589709428247, + 53.44664864397634 ], [ - -2.3081522131205556, - 53.446335105408146 + -2.304609254271518, + 53.44661460645406 ], [ - -2.3082180003019905, - 53.446349715786155 + -2.3047017208283984, + 53.44662510603324 ] ] ], @@ -5676,9 +8235,9 @@ }, "properties": { "complexity": "Connection", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/32025957", - "osm_node_id": 32025957, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/745988145", + "osm_node_id": 745988145, "type": "intersection" }, "type": "Feature" @@ -5688,28 +8247,32 @@ "coordinates": [ [ [ - -2.307453759785209, - 53.44587489558796 + -2.30530954522076, + 53.44691732888189 ], [ - -2.3073943763182605, - 53.445873016005905 + -2.3053538291487166, + 53.4469363657206 ], [ - -2.307294707281281, - 53.445826631697976 + -2.30528422329387, + 53.44699380538842 ], [ - -2.307431148225568, - 53.44575473903342 + -2.3052640518197305, + 53.44700402887588 ], [ - -2.3074851260575575, - 53.44577436762572 + -2.3051884786270747, + 53.44694932854152 ], [ - -2.307453759785209, - 53.44587489558796 + -2.3052648626649743, + 53.44689503020389 + ], + [ + -2.30530954522076, + 53.44691732888189 ] ] ], @@ -5718,8 +8281,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/32025961", - "osm_node_id": 32025961, + "osm_link": "https://www.openstreetmap.org/node/745988174", + "osm_node_id": 745988174, "type": "intersection" }, "type": "Feature" @@ -5729,24 +8292,24 @@ "coordinates": [ [ [ - -2.3093683450905265, - 53.44635407929435 + -2.3042769481472396, + 53.44694887798142 ], [ - -2.3093726726184016, - 53.44638263635106 + -2.3042230518527607, + 53.446932641630035 ], [ - -2.3092195527233432, - 53.44638464273745 + -2.304291200602094, + 53.44685238977161 ], [ - -2.309219827534953, - 53.44635596876894 + -2.304345096896573, + 53.44686862612299 ], [ - -2.3093683450905265, - 53.44635407929435 + -2.3042769481472396, + 53.44694887798142 ] ] ], @@ -5755,8 +8318,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/32026058", - "osm_node_id": 32026058, + "osm_link": "https://www.openstreetmap.org/node/745988188", + "osm_node_id": 745988188, "type": "intersection" }, "type": "Feature" @@ -5766,50 +8329,34 @@ "coordinates": [ [ [ - -2.308520166236487, - 53.44493308288639 - ], - [ - -2.3084871012660018, - 53.444963186776185 - ], - [ - -2.308485035649068, - 53.444962381883386 - ], - [ - -2.3084789716742087, - 53.44496731196416 - ], - [ - -2.3083769380494226, - 53.44492279015118 + -2.3065402573055818, + 53.44492693332559 ], [ - -2.3083987568832662, - 53.44490505193279 + -2.3065991968460837, + 53.44486540534197 ], [ - -2.308419876608455, - 53.44488704121998 + -2.3067139548523783, + 53.44490440262263 ], [ - -2.308523583262161, - 53.4449301708832 + -2.3066550153118763, + 53.44496593060625 ], [ - -2.308520166236487, - 53.44493308288639 + -2.3065402573055818, + 53.44492693332559 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/306917570", - "osm_node_id": 306917570, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/745988236", + "osm_node_id": 745988236, "type": "intersection" }, "type": "Feature" @@ -5819,24 +8366,24 @@ "coordinates": [ [ [ - -2.3080983213559385, - 53.444885962933434 + -2.304560520509421, + 53.44714 ], [ - -2.3082320609927005, - 53.444941778426525 + -2.304523514559259, + 53.44712443813978 ], [ - -2.3081454092682856, - 53.44501542836541 + -2.3046106056802578, + 53.44705097256182 ], [ - -2.308011672651432, - 53.44495961287232 + -2.30464761163042, + 53.447066534422035 ], [ - -2.3080983213559385, - 53.444885962933434 + -2.304560520509421, + 53.44714 ] ] ], @@ -5845,8 +8392,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/308222735", - "osm_node_id": 308222735, + "osm_link": "https://www.openstreetmap.org/node/745988242", + "osm_node_id": 745988242, "type": "intersection" }, "type": "Feature" @@ -5856,24 +8403,24 @@ "coordinates": [ [ [ - -2.305913570569111, - 53.44490151310247 + -2.306924673448876, + 53.44482448621114 ], [ - -2.305983484454553, - 53.44491848689753 + -2.3069845989892745, + 53.44486059487097 ], [ - -2.3059264897346727, - 53.44500176587232 + -2.3069201450971324, + 53.44492195827874 ], [ - -2.3058565758492313, - 53.44498479207726 + -2.306850527162655, + 53.44489601824776 ], [ - -2.305913570569111, - 53.44490151310247 + -2.306924673448876, + 53.44482448621114 ] ] ], @@ -5882,8 +8429,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/637466928", - "osm_node_id": 637466928, + "osm_link": "https://www.openstreetmap.org/node/745988244", + "osm_node_id": 745988244, "type": "intersection" }, "type": "Feature" @@ -5893,40 +8440,32 @@ "coordinates": [ [ [ - -2.3056797602476324, - 53.44711721568836 - ], - [ - -2.3056506830653953, - 53.44714429515975 - ], - [ - -2.3055131081457296, - 53.447091891692644 + -2.3063123373142638, + 53.44556918291595 ], [ - -2.305637039121962, - 53.44705728310118 + -2.3062607150103576, + 53.44563300057226 ], [ - -2.30556836037881, - 53.447115116671846 + -2.306250130233524, + 53.445629965362 ], [ - -2.305511193524185, - 53.44709108500121 + -2.3061512493924794, + 53.445590598460186 ], [ - -2.3055797786501957, - 53.44703321186039 + -2.3061787003543675, + 53.445566139611806 ], [ - -2.3057127195213445, - 53.447089700046014 + -2.306208715217976, + 53.445534409748646 ], [ - -2.3056797602476324, - 53.44711721568836 + -2.3063123373142638, + 53.44556918291595 ] ] ], @@ -5935,8 +8474,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/637467098", - "osm_node_id": 637467098, + "osm_link": "https://www.openstreetmap.org/node/745988281", + "osm_node_id": 745988281, "type": "intersection" }, "type": "Feature" @@ -5946,34 +8485,46 @@ "coordinates": [ [ [ - -2.3058557725537567, - 53.44715787131797 + -2.3054299821636697, + 53.44558338680062 + ], + [ + -2.3054323316519367, + 53.44560131927246 + ], + [ + -2.3054121888669212, + 53.4456022554662 + ], + [ + -2.305399697018313, + 53.445615980911796 ], [ - -2.305752549085298, - 53.44711433336277 + -2.305333322464811, + 53.44559455187775 ], [ - -2.305839812341042, - 53.447040941529174 + -2.3053704144823453, + 53.44555483154255 ], [ - -2.3059430358095003, - 53.447084477685735 + -2.3054359917801888, + 53.4455771113348 ], [ - -2.3058557725537567, - 53.44715787131797 + -2.3054299821636697, + 53.44558338680062 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/637467100", - "osm_node_id": 637467100, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/929679768", + "osm_node_id": 929679768, "type": "intersection" }, "type": "Feature" @@ -5983,34 +8534,38 @@ "coordinates": [ [ [ - -2.3042831223487332, - 53.44684279490992 + -2.3063625372415975, + 53.445759456874306 + ], + [ + -2.306346643466854, + 53.44580341571199 ], [ - -2.304216877651267, - 53.44682122738035 + -2.306270304727571, + 53.44579284148913 ], [ - -2.304289302590043, - 53.44674231551104 + -2.306288662747078, + 53.44574922439363 ], [ - -2.3043555472875097, - 53.44676388304061 + -2.3062894645325986, + 53.44574814880505 ], [ - -2.3042831223487332, - 53.44684279490992 + -2.3063625372415975, + 53.445759456874306 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/739096994", - "osm_node_id": 739096994, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/955165980", + "osm_node_id": 955165980, "type": "intersection" }, "type": "Feature" @@ -6020,34 +8575,34 @@ "coordinates": [ [ [ - -2.309546528710358, - 53.44680614575784 + -2.306374437188277, + 53.445617568214345 ], [ - -2.30954834971476, - 53.446876974525 + -2.3063115747875447, + 53.44564247222689 ], [ - -2.3094162453580713, - 53.446878180515206 + -2.3062622853624126, + 53.44563345113236 ], [ - -2.309414421333761, - 53.44680735174805 + -2.3063139016265035, + 53.44556963167741 ], [ - -2.309546528710358, - 53.44680614575784 + -2.306374437188277, + 53.445617568214345 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/743547865", - "osm_node_id": 743547865, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/955165990", + "osm_node_id": 955165990, "type": "intersection" }, "type": "Feature" @@ -6057,38 +8612,38 @@ "coordinates": [ [ [ - -2.306063175291492, - 53.44698343351291 + -2.3077650760403348, + 53.44535428283542 ], [ - -2.306041552751655, - 53.44700161869411 + -2.3076365095056315, + 53.44529431067809 ], [ - -2.3059383292831965, - 53.446958082537556 + -2.3076047159163298, + 53.44532816024216 ], [ - -2.3059824984546564, - 53.4469212175483 + -2.3076656395362556, + 53.44526732113886 ], [ - -2.3060851904193425, - 53.44696519976835 + -2.3078030106121448, + 53.4453199098662 ], [ - -2.306063175291492, - 53.44698343351291 + -2.3077650760403348, + 53.44535428283542 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/743547944", - "osm_node_id": 743547944, + "osm_link": "https://www.openstreetmap.org/node/955166004", + "osm_node_id": 955166004, "type": "intersection" }, "type": "Feature" @@ -6098,38 +8653,46 @@ "coordinates": [ [ [ - -2.3067838340088804, - 53.44654872845207 + -2.3056555345472733, + 53.445345329190005 ], [ - -2.30681440302557, - 53.44656155007951 + -2.3055732194104572, + 53.44552451901016 ], [ - -2.306767123349078, - 53.44660153931184 + -2.3055062771142896, + 53.445503726695776 ], [ - -2.3067051774903624, - 53.44657502281574 + -2.3054406998164465, + 53.44548144690353 ], [ - -2.306753740627669, - 53.4465355839682 + -2.305579734861533, + 53.44533628111582 + ], + [ + -2.3055941519013623, + 53.445316765838044 + ], + [ + -2.305663256451514, + 53.44533487637555 ], [ - -2.3067838340088804, - 53.44654872845207 + -2.3056555345472733, + 53.445345329190005 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/743547964", - "osm_node_id": 743547964, + "osm_link": "https://www.openstreetmap.org/node/955166067", + "osm_node_id": 955166067, "type": "intersection" }, "type": "Feature" @@ -6139,34 +8702,38 @@ "coordinates": [ [ [ - -2.3074798985971583, - 53.447159862415894 + -2.3063629811680437, + 53.445758441540264 ], [ - -2.307381422423759, - 53.4471201375841 + -2.306289908459045, + 53.445747135269656 ], [ - -2.307466096108566, - 53.44704567645717 + -2.306257589405786, + 53.44574484559697 ], [ - -2.307564572281965, - 53.44708540128897 + -2.3063087496637995, + 53.44571177754334 ], [ - -2.3074798985971583, - 53.447159862415894 + -2.306380667258065, + 53.44572545712354 + ], + [ + -2.3063629811680437, + 53.445758441540264 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/743548069", - "osm_node_id": 743548069, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/955166095", + "osm_node_id": 955166095, "type": "intersection" }, "type": "Feature" @@ -6176,34 +8743,42 @@ "coordinates": [ [ [ - -2.306281333430851, - 53.447002828281605 + -2.306141788021347, + 53.445679795870134 ], [ - -2.3062127483048407, - 53.447060701422416 + -2.3061057001231555, + 53.445640299466014 ], [ - -2.3061637306714107, - 53.447024662909676 + -2.306117385656382, + 53.44563651152362 ], [ - -2.3062063566699855, - 53.44698754970768 + -2.306108078300547, + 53.4456334987964 + ], + [ + -2.3061297068801996, + 53.445609792680166 + ], + [ + -2.3062285892311976, + 53.44564915868267 ], [ - -2.306281333430851, - 53.447002828281605 + -2.306141788021347, + 53.445679795870134 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/743548122", - "osm_node_id": 743548122, + "osm_link": "https://www.openstreetmap.org/node/955166125", + "osm_node_id": 955166125, "type": "intersection" }, "type": "Feature" @@ -6213,28 +8788,36 @@ "coordinates": [ [ [ - -2.30770323134853, - 53.44696346677571 + -2.3055325442723205, + 53.445570972565854 ], [ - -2.3076808160828963, - 53.44698317900491 + -2.305512486044723, + 53.44561432166353 ], [ - -2.307582339909497, - 53.44694345417311 + -2.3054702692436546, + 53.445599555702884 ], [ - -2.307628612446739, - 53.44690304225964 + -2.305456815554413, + 53.44560018163069 ], [ - -2.307726665833046, - 53.446943136712605 + -2.3054544660661453, + 53.44558224915885 ], [ - -2.30770323134853, - 53.44696346677571 + -2.3054670168029556, + 53.44554856417062 + ], + [ + -2.3055339590991237, + 53.44556935648502 + ], + [ + -2.3055325442723205, + 53.445570972565854 ] ] ], @@ -6243,8 +8826,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/743548133", - "osm_node_id": 743548133, + "osm_link": "https://www.openstreetmap.org/node/955166153", + "osm_node_id": 955166153, "type": "intersection" }, "type": "Feature" @@ -6254,34 +8837,38 @@ "coordinates": [ [ [ - -2.3081101442949694, - 53.446486693251096 + -2.3054833560140993, + 53.44569222539337 + ], + [ + -2.3054500917296994, + 53.44576081305121 ], [ - -2.3082080557456104, - 53.446526907313824 + -2.305415219344397, + 53.445754813677105 ], [ - -2.308122335662752, - 53.446600943061654 + -2.3053799755104354, + 53.44574966865848 ], [ - -2.308024424212111, - 53.446560728998925 + -2.305408507599315, + 53.44568032916782 ], [ - -2.3081101442949694, - 53.446486693251096 + -2.3054833560140993, + 53.44569222539337 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/743548183", - "osm_node_id": 743548183, + "complexity": "Connection", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/1277766621", + "osm_node_id": 1277766621, "type": "intersection" }, "type": "Feature" @@ -6291,42 +8878,34 @@ "coordinates": [ [ [ - -2.3066549669933516, - 53.44649243901652 - ], - [ - -2.3066562595138893, - 53.44649300379046 - ], - [ - -2.3066076963765827, - 53.446532442638 + -2.3042752373694717, + 53.446152595292794 ], [ - -2.3065050029019427, - 53.44648846131727 + -2.3042247626305286, + 53.446132840795485 ], [ - -2.3065288163848874, - 53.44646873829622 + -2.304307683258858, + 53.44605768269435 ], [ - -2.3065507590349505, - 53.44644974102765 + -2.304358157997801, + 53.44607743719166 ], [ - -2.3066549669933516, - 53.44649243901652 + -2.3042752373694717, + 53.446152595292794 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/743548189", - "osm_node_id": 743548189, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1277766668", + "osm_node_id": 1277766668, "type": "intersection" }, "type": "Feature" @@ -6336,42 +8915,38 @@ "coordinates": [ [ [ - -2.3078910348846535, - 53.446800716553604 - ], - [ - -2.3078899160088144, - 53.44687155161601 + -2.3045847371500563, + 53.445553727175685 ], [ - -2.3078157621728237, - 53.44686584092413 + -2.3045518533740394, + 53.44562237958468 ], [ - -2.307717708786516, - 53.44682574737049 + -2.304517740495548, + 53.445616583457245 ], [ - -2.3077461729274704, - 53.446801052899865 + -2.3044830387350363, + 53.44561207695692 ], - [ - -2.3077931249439665, - 53.446760501591555 + [ + -2.304508572055472, + 53.44554232377834 ], [ - -2.3078910348846535, - 53.446800716553604 + -2.3045847371500563, + 53.445553727175685 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/743548194", - "osm_node_id": 743548194, + "osm_link": "https://www.openstreetmap.org/node/1277766687", + "osm_node_id": 1277766687, "type": "intersection" }, "type": "Feature" @@ -6381,50 +8956,38 @@ "coordinates": [ [ [ - -2.3068817258301206, - 53.44496052118709 - ], - [ - -2.3068249153246163, - 53.44502275603745 - ], - [ - -2.306716458355943, - 53.44499367827356 - ], - [ - -2.3067205880798576, - 53.44498821309646 + -2.3052904186347187, + 53.44579952614626 ], [ - -2.306779529130314, - 53.44492668601216 + -2.3053251354947695, + 53.44580389864767 ], [ - -2.3068049884630084, - 53.44493533748554 + -2.305305216182931, + 53.44586000552095 ], [ - -2.30681530144814, - 53.44492955574725 + -2.305229339489541, + 53.445848644391724 ], [ - -2.3068726902659877, - 53.44496455014766 + -2.305256343505075, + 53.44579359691924 ], [ - -2.3068817258301206, - 53.44496052118709 + -2.3052904186347187, + 53.44579952614626 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/745988105", - "osm_node_id": 745988105, + "osm_link": "https://www.openstreetmap.org/node/1277766809", + "osm_node_id": 1277766809, "type": "intersection" }, "type": "Feature" @@ -6434,42 +8997,34 @@ "coordinates": [ [ [ - -2.305090053792108, - 53.446807790616965 - ], - [ - -2.305013665224346, - 53.44686208715595 - ], - [ - -2.3049720267356215, - 53.44684130653274 + -2.3044957661364527, + 53.44566224201267 ], [ - -2.3049431790663766, - 53.446828994820635 + -2.3044692513459824, + 53.44571737222274 ], [ - -2.3050124527313653, - 53.44677141306 + -2.3043967977180824, + 53.445705123463135 ], [ - -2.304995192448343, - 53.44676506205117 + -2.304422859522383, + 53.44564991591142 ], [ - -2.305090053792108, - 53.446807790616965 + -2.3044957661364527, + 53.44566224201267 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/745988110", - "osm_node_id": 745988110, + "osm_link": "https://www.openstreetmap.org/node/1277766833", + "osm_node_id": 1277766833, "type": "intersection" }, "type": "Feature" @@ -6479,34 +9034,34 @@ "coordinates": [ [ [ - -2.3053813691978844, - 53.44646093578239 + -2.304847811888056, + 53.445722507348826 ], [ - -2.305476230541649, - 53.44650366434819 + -2.304820807872522, + 53.44577755482131 ], [ - -2.305385150122448, - 53.44657539423555 + -2.304784573508803, + 53.445771249677875 ], [ - -2.3052902887786835, - 53.4465326638711 + -2.3048113465013897, + 53.44571616263524 ], [ - -2.3053813691978844, - 53.44646093578239 + -2.304847811888056, + 53.445722507348826 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/745988141", - "osm_node_id": 745988141, + "osm_link": "https://www.openstreetmap.org/node/1277766903", + "osm_node_id": 1277766903, "type": "intersection" }, "type": "Feature" @@ -6516,24 +9071,28 @@ "coordinates": [ [ [ - -2.3047017208283984, - 53.44662510603324 + -2.3043611673359226, + 53.44551659868522 ], [ - -2.3046278478438333, - 53.44668062295157 + -2.304329364686897, + 53.44550448662249 ], [ - -2.304589709428247, - 53.44664864397634 + -2.3043496025990082, + 53.445485634144696 ], [ - -2.304609254271518, - 53.44661460645406 + -2.3043691519721414, + 53.44546655233991 ], [ - -2.3047017208283984, - 53.44662510603324 + -2.304401374388351, + 53.44547826330522 + ], + [ + -2.3043611673359226, + 53.44551659868522 ] ] ], @@ -6542,8 +9101,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/745988145", - "osm_node_id": 745988145, + "osm_link": "https://www.openstreetmap.org/node/1278748166", + "osm_node_id": 1278748166, "type": "intersection" }, "type": "Feature" @@ -6553,42 +9112,34 @@ "coordinates": [ [ [ - -2.30530954522076, - 53.44691732888189 - ], - [ - -2.3053538291487166, - 53.4469363657206 - ], - [ - -2.30528422329387, - 53.44699380538842 + -2.3093384072345664, + 53.44724067994758 ], [ - -2.3052640518197305, - 53.44700402887588 + -2.3092780120985057, + 53.4472409893142 ], [ - -2.3051884786270747, - 53.44694932854152 + -2.3092768751032193, + 53.44716230137596 ], [ - -2.3052648626649743, - 53.44689503020389 + -2.3093372702392805, + 53.44716199200934 ], [ - -2.30530954522076, - 53.44691732888189 + -2.3093384072345664, + 53.44724067994758 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/745988174", - "osm_node_id": 745988174, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1558341212", + "osm_node_id": 1558341212, "type": "intersection" }, "type": "Feature" @@ -6598,34 +9149,50 @@ "coordinates": [ [ [ - -2.3042769481472396, - 53.44694887798142 + -2.3054873558819784, + 53.4458225397849 ], [ - -2.3042230518527607, - 53.446932641630035 + -2.3054740788573427, + 53.44587933913577 ], [ - -2.304291200602094, - 53.44685238977161 + -2.3054655778168898, + 53.44587863406767 ], [ - -2.304345096896573, - 53.44686862612299 + -2.305464927026759, + 53.44588052893819 ], [ - -2.3042769481472396, - 53.44694887798142 + -2.305390957405144, + 53.445871526729405 + ], + [ + -2.3054108706771674, + 53.44581469590228 + ], + [ + -2.3054127505697717, + 53.44581493242385 + ], + [ + -2.3054140415803555, + 53.44581180638212 + ], + [ + -2.3054873558819784, + 53.4458225397849 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/745988188", - "osm_node_id": 745988188, + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2265010779", + "osm_node_id": 2265010779, "type": "intersection" }, "type": "Feature" @@ -6635,24 +9202,24 @@ "coordinates": [ [ [ - -2.3065402573055818, - 53.44492693332559 + -2.305538824170587, + 53.447248469870914 ], [ - -2.3065991968460837, - 53.44486540534197 + -2.3054012492509215, + 53.447196066403805 ], [ - -2.3067139548523783, - 53.44490440262263 + -2.3054724314976385, + 53.447129773814574 ], [ - -2.3066550153118763, - 53.44496593060625 + -2.305610006417304, + 53.44718217728168 ], [ - -2.3065402573055818, - 53.44492693332559 + -2.305538824170587, + 53.447248469870914 ] ] ], @@ -6661,8 +9228,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/745988236", - "osm_node_id": 745988236, + "osm_link": "https://www.openstreetmap.org/node/2790133529", + "osm_node_id": 2790133529, "type": "intersection" }, "type": "Feature" @@ -6672,34 +9239,34 @@ "coordinates": [ [ [ - -2.3045913582979045, - 53.44715296731752 + -2.3067511812558097, + 53.44671746455846 ], [ - -2.304529682720937, - 53.447127032682474 + -2.3067260103243097, + 53.44670752705526 ], [ - -2.304616773841936, - 53.44705356710451 + -2.3067846297545853, + 53.446654862784904 ], [ - -2.304678449418904, - 53.44707950173956 + -2.3068098006860853, + 53.446664800288104 ], [ - -2.3045913582979045, - 53.44715296731752 + -2.3067511812558097, + 53.44671746455846 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/745988242", - "osm_node_id": 745988242, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2790145014", + "osm_node_id": 2790145014, "type": "intersection" }, "type": "Feature" @@ -6709,34 +9276,42 @@ "coordinates": [ [ [ - -2.306924673448876, - 53.44482448621114 + -2.3064674397787917, + 53.4471680228597 + ], + [ + -2.3064349410410188, + 53.44715433338697 + ], + [ + -2.3065036228040787, + 53.447096499816304 ], [ - -2.3069845989892745, - 53.44486059487097 + -2.306534440963162, + 53.44710948332162 ], [ - -2.3069201450971324, - 53.44492195827874 + -2.3065359765862774, + 53.44711012903449 ], [ - -2.306850527162655, - 53.44489601824776 + -2.3065600694106934, + 53.44712097485247 ], [ - -2.306924673448876, - 53.44482448621114 + -2.3064674397787917, + 53.4471680228597 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/745988244", - "osm_node_id": 745988244, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2790145016", + "osm_node_id": 2790145016, "type": "intersection" }, "type": "Feature" @@ -6746,32 +9321,36 @@ "coordinates": [ [ [ - -2.3063123373142638, - 53.44556918291595 + -2.3068896696975845, + 53.44659445895323 ], [ - -2.3062607150103576, - 53.44563300057226 + -2.3069203821598947, + 53.44660728777524 ], [ - -2.306250130233524, - 53.445629965362 + -2.30687322931953, + 53.44664733096687 ], [ - -2.3061512493924794, - 53.445590598460186 + -2.306843203886244, + 53.44663478902844 ], [ - -2.3061787003543675, - 53.445566139611806 + -2.3068180344646976, + 53.446624851525236 ], [ - -2.306208715217976, - 53.445534409748646 + -2.30681123514229, + 53.44662099163711 ], [ - -2.3063123373142638, - 53.44556918291595 + -2.306859454010107, + 53.44658140350219 + ], + [ + -2.3068896696975845, + 53.44659445895323 ] ] ], @@ -6780,8 +9359,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/745988281", - "osm_node_id": 745988281, + "osm_link": "https://www.openstreetmap.org/node/2790145018", + "osm_node_id": 2790145018, "type": "intersection" }, "type": "Feature" @@ -6791,28 +9370,44 @@ "coordinates": [ [ [ - -2.3063625372415975, - 53.445759456874306 + -2.307055100246783, + 53.44625910014611 ], [ - -2.306346643466854, - 53.44580341571199 + -2.3070401547230888, + 53.44627974587108 ], [ - -2.306270304727571, - 53.44579284148913 + -2.3070124229097755, + 53.446272625043 ], [ - -2.306288662747078, - 53.44574922439363 + -2.307026779551449, + 53.44625279320403 ], [ - -2.3062894645325986, - 53.44574814880505 + -2.307019741656325, + 53.44625122568656 ], [ - -2.3063625372415975, - 53.445759456874306 + -2.3070303173734352, + 53.446234377796515 + ], + [ + -2.307053034629849, + 53.446239437379596 + ], + [ + -2.3070745122141116, + 53.44623273203807 + ], + [ + -2.3070885336460196, + 53.44624866262012 + ], + [ + -2.307055100246783, + 53.44625910014611 ] ] ], @@ -6821,8 +9416,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/955165980", - "osm_node_id": 955165980, + "osm_link": "https://www.openstreetmap.org/node/2790153398", + "osm_node_id": 2790153398, "type": "intersection" }, "type": "Feature" @@ -6832,24 +9427,28 @@ "coordinates": [ [ [ - -2.306374437188277, - 53.445617568214345 + -2.3074455003373804, + 53.4462862003019 ], [ - -2.3063115747875447, - 53.44564247222689 + -2.307432540403063, + 53.44630731637205 ], [ - -2.3062622853624126, - 53.44563345113236 + -2.3074041774290204, + 53.44630114163024 ], [ - -2.3063139016265035, - 53.44556963167741 + -2.3074316751994792, + 53.44625861091518 ], [ - -2.306374437188277, - 53.445617568214345 + -2.307459666724863, + 53.446265361222785 + ], + [ + -2.3074455003373804, + 53.4462862003019 ] ] ], @@ -6858,8 +9457,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/955165990", - "osm_node_id": 955165990, + "osm_link": "https://www.openstreetmap.org/node/2790153400", + "osm_node_id": 2790153400, "type": "intersection" }, "type": "Feature" @@ -6869,38 +9468,34 @@ "coordinates": [ [ [ - -2.3077650760403348, - 53.44535428283542 - ], - [ - -2.3076365095056315, - 53.44529431067809 + -2.307481900796029, + 53.446266310007026 ], [ - -2.3076061277232256, - 53.4453296513173 + -2.3075099980181855, + 53.44627290023539 ], [ - -2.307664849830366, - 53.445268049589316 + -2.3074546702874104, + 53.446356577609635 ], [ - -2.307802223926163, - 53.445320638316666 + -2.3074265730652535, + 53.44634998738127 ], [ - -2.3077650760403348, - 53.44535428283542 + -2.307481900796029, + 53.446266310007026 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/955166004", - "osm_node_id": 955166004, + "osm_link": "https://www.openstreetmap.org/node/2790153411", + "osm_node_id": 2790153411, "type": "intersection" }, "type": "Feature" @@ -6910,46 +9505,34 @@ "coordinates": [ [ [ - -2.3056555345472733, - 53.445345329190005 - ], - [ - -2.305532023338225, - 53.44556827280254 - ], - [ - -2.3054568789724765, - 53.44556392188485 - ], - [ - -2.30539063427501, - 53.445542352556636 + -2.307079553950181, + 53.44627986098424 ], [ - -2.30557959443582, - 53.44533647087267 + -2.3070689419941774, + 53.44629669988107 ], [ - -2.3055941519013623, - 53.445316765838044 + -2.307005868199899, + 53.44628167941243 ], [ - -2.305663256451514, - 53.44533487637555 + -2.307033600013212, + 53.44628880024052 ], [ - -2.3056555345472733, - 53.445345329190005 + -2.307079553950181, + 53.44627986098424 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/955166067", - "osm_node_id": 955166067, + "osm_link": "https://www.openstreetmap.org/node/2790153418", + "osm_node_id": 2790153418, "type": "intersection" }, "type": "Feature" @@ -6959,28 +9542,32 @@ "coordinates": [ [ [ - -2.3063629811680437, - 53.445758441540264 + -2.3070025780103527, + 53.44632450960157 ], [ - -2.306289908459045, - 53.445747135269656 + -2.3069876264468427, + 53.44633532574193 ], [ - -2.306257589405786, - 53.44574484559697 + -2.306976087379145, + 53.44633314308851 ], [ - -2.3063087496637995, - 53.44571177754334 + -2.3069551005298994, + 53.446310300320974 ], [ - -2.306380667258065, - 53.44572545712354 + -2.3069691189419, + 53.446294369738915 ], [ - -2.3063629811680437, - 53.445758441540264 + -2.3069967677077483, + 53.446318182874414 + ], + [ + -2.3070025780103527, + 53.44632450960157 ] ] ], @@ -6989,8 +9576,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/955166095", - "osm_node_id": 955166095, + "osm_link": "https://www.openstreetmap.org/node/2790153421", + "osm_node_id": 2790153421, "type": "intersection" }, "type": "Feature" @@ -7000,34 +9587,34 @@ "coordinates": [ [ [ - -2.306141788021347, - 53.445679795870134 + -2.307509605430172, + 53.44614399508075 ], [ - -2.3061057001231555, - 53.445640299466014 + -2.3075375969555556, + 53.44615074538835 ], [ - -2.30612843700897, - 53.44561092582533 + -2.3074627002222465, + 53.446260900587866 ], [ - -2.3062273178500146, - 53.445650290928505 + -2.3074347086968627, + 53.446254148481614 ], [ - -2.306141788021347, - 53.445679795870134 + -2.307509605430172, + 53.44614399508075 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/955166125", - "osm_node_id": 955166125, + "osm_link": "https://www.openstreetmap.org/node/2790153424", + "osm_node_id": 2790153424, "type": "intersection" }, "type": "Feature" @@ -7037,28 +9624,24 @@ "coordinates": [ [ [ - -2.3054833560140993, - 53.44569222539337 - ], - [ - -2.3054500917296994, - 53.44576081305121 + -2.3070217000665325, + 53.44632289981598 ], [ - -2.305415219344397, - 53.445754813677105 + -2.3070566690888845, + 53.44633136782776 ], [ - -2.3053799755104354, - 53.44574966865848 + -2.3070452961161156, + 53.44634803045756 ], [ - -2.305408507599315, - 53.44568032916782 + -2.307011423320294, + 53.44633982774564 ], [ - -2.3054833560140993, - 53.44569222539337 + -2.3070217000665325, + 53.44632289981598 ] ] ], @@ -7066,9 +9649,9 @@ }, "properties": { "complexity": "Connection", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/1277766621", - "osm_node_id": 1277766621, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2790153427", + "osm_node_id": 2790153427, "type": "intersection" }, "type": "Feature" @@ -7078,34 +9661,38 @@ "coordinates": [ [ [ - -2.3042752373694717, - 53.446152595292794 + -2.3074114433271835, + 53.44630838836334 ], [ - -2.3042247626305286, - 53.446132840795485 + -2.3073827662827293, + 53.44630274961718 ], [ - -2.304307683258858, - 53.44605768269435 + -2.307394599791438, + 53.446281399723425 ], [ - -2.304358157997801, - 53.44607743719166 + -2.3073592366711178, + 53.446273535156415 ], [ - -2.3042752373694717, - 53.446152595292794 + -2.3073698003085967, + 53.44625668546773 + ], + [ + -2.3074114433271835, + 53.44630838836334 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1277766668", - "osm_node_id": 1277766668, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2790153430", + "osm_node_id": 2790153430, "type": "intersection" }, "type": "Feature" @@ -7115,38 +9702,46 @@ "coordinates": [ [ [ - -2.3045847371500563, - 53.445553727175685 + -2.3072539264463705, + 53.4462309145092 ], [ - -2.3045518533740394, - 53.44562237958468 + -2.3072433628088915, + 53.446247764197885 ], [ - -2.304517740495548, - 53.445616583457245 + -2.307207999688572, + 53.446239899630875 ], [ - -2.3044830387350363, - 53.44561207695692 + -2.3072140455439847, + 53.446262092188924 ], [ - -2.304508572055472, - 53.44554232377834 + -2.307184236034106, + 53.44626497361519 ], [ - -2.3045847371500563, - 53.445553727175685 + -2.307170676648091, + 53.446236530772325 + ], + [ + -2.307175200469973, + 53.446218747587864 + ], + [ + -2.3072539264463705, + 53.4462309145092 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1277766687", - "osm_node_id": 1277766687, + "osm_link": "https://www.openstreetmap.org/node/2790153452", + "osm_node_id": 2790153452, "type": "intersection" }, "type": "Feature" @@ -7156,38 +9751,42 @@ "coordinates": [ [ [ - -2.3052904186347187, - 53.44579952614626 + -2.307255999613074, + 53.446416100106184 ], [ - -2.3053251354947695, - 53.44580389864767 + -2.3072046038022527, + 53.4464021291458 ], [ - -2.305305216182931, - 53.44586000552095 + -2.307217142459432, + 53.4463857668894 ], [ - -2.305229339489541, - 53.445848644391724 + -2.30724695196931, + 53.44638288546313 ], [ - -2.305256343505075, - 53.44579359691924 + -2.30729780117682, + 53.44640584694112 ], [ - -2.3052904186347187, - 53.44579952614626 + -2.3072967804479845, + 53.44642382258039 + ], + [ + -2.307255999613074, + 53.446416100106184 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1277766809", - "osm_node_id": 1277766809, + "osm_link": "https://www.openstreetmap.org/node/2790153455", + "osm_node_id": 2790153455, "type": "intersection" }, "type": "Feature" @@ -7197,24 +9796,28 @@ "coordinates": [ [ [ - -2.3044957661364527, - 53.44566224201267 + -2.3064746347091214, + 53.44611062665371 ], [ - -2.3044692513459824, - 53.44571737222274 + -2.3064640589920113, + 53.44612747454376 ], [ - -2.3043967977180824, - 53.445705123463135 + -2.3064287004015536, + 53.4461196000842 ], [ - -2.304422859522383, - 53.44564991591142 + -2.306416421456445, + 53.4461408600458 ], [ - -2.3044957661364527, - 53.44566224201267 + -2.3063878652083027, + 53.44613500905976 + ], + [ + -2.3064746347091214, + 53.44611062665371 ] ] ], @@ -7223,8 +9826,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1277766833", - "osm_node_id": 1277766833, + "osm_link": "https://www.openstreetmap.org/node/2913567877", + "osm_node_id": 2913567877, "type": "intersection" }, "type": "Feature" @@ -7234,34 +9837,34 @@ "coordinates": [ [ [ - -2.304847811888056, - 53.445722507348826 + -2.3064889007535614, + 53.44618010014329 ], [ - -2.304820807872522, - 53.44577755482131 + -2.3065124379149426, + 53.446191370441035 ], [ - -2.304784573508803, - 53.445771249677875 + -2.306417827223525, + 53.446261459965875 ], [ - -2.3048113465013897, - 53.44571616263524 + -2.306394290062144, + 53.44625018966813 ], [ - -2.304847811888056, - 53.445722507348826 + -2.3064889007535614, + 53.44618010014329 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1277766903", - "osm_node_id": 1277766903, + "osm_link": "https://www.openstreetmap.org/node/2913567879", + "osm_node_id": 2913567879, "type": "intersection" }, "type": "Feature" @@ -7271,38 +9874,34 @@ "coordinates": [ [ [ - -2.3043611673359226, - 53.44551659868522 - ], - [ - -2.304329364686897, - 53.44550448662249 + -2.3082163952209958, + 53.44636356623745 ], [ - -2.3043496025990082, - 53.445485634144696 + -2.3082446977968827, + 53.44636984170327 ], [ - -2.3043691519721414, - 53.44546655233991 + -2.3082040996663946, + 53.44643479969931 ], [ - -2.304401374388351, - 53.44547826330522 + -2.3081757970905077, + 53.44642852423349 ], [ - -2.3043611673359226, - 53.44551659868522 + -2.3082163952209958, + 53.44636356623745 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1278748166", - "osm_node_id": 1278748166, + "osm_link": "https://www.openstreetmap.org/node/2913621162", + "osm_node_id": 2913621162, "type": "intersection" }, "type": "Feature" @@ -7312,34 +9911,34 @@ "coordinates": [ [ [ - -2.3093384072345664, - 53.44724067994758 + -2.306072600423731, + 53.44549279993886 ], [ - -2.3092780120985057, - 53.4472409893142 + -2.306090547735777, + 53.4454680290259 ], [ - -2.3092768751032193, - 53.44716230137596 + -2.3060952467123115, + 53.44555156880394 ], - [ - -2.3093372702392805, - 53.44716199200934 + [ + -2.3060558701345277, + 53.44553823006662 ], [ - -2.3093384072345664, - 53.44724067994758 + -2.306072600423731, + 53.44549279993886 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1558341212", - "osm_node_id": 1558341212, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2913629004", + "osm_node_id": 2913629004, "type": "intersection" }, "type": "Feature" @@ -7349,40 +9948,44 @@ "coordinates": [ [ [ - -2.3054873558819784, - 53.4458225397849 + -2.3045832105866646, + 53.44576168629244 ], [ - -2.3054740788573427, - 53.44587933913577 + -2.3046177417223856, + 53.44576851843831 ], [ - -2.3054655778168898, - 53.44587863406767 + -2.304608222973005, + 53.44578558756145 ], [ - -2.305464927026759, - 53.44588052893819 + -2.304572399316746, + 53.44577850000827 ], [ - -2.305390957405144, - 53.445871526729405 + -2.3045518956527484, + 53.44579737766706 ], [ - -2.3054108706771674, - 53.44581469590228 + -2.3045265405068727, + 53.44578760743767 ], [ - -2.3054127505697717, - 53.44581493242385 + -2.304544341353391, + 53.44577121820162 ], [ - -2.3054140415803555, - 53.44581180638212 + -2.30453779268333, + 53.44576951848388 ], [ - -2.3054873558819784, - 53.4458225397849 + -2.3045498572149845, + 53.44575303032246 + ], + [ + -2.3045832105866646, + 53.44576168629244 ] ] ], @@ -7390,9 +9993,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2265010779", - "osm_node_id": 2265010779, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2913662306", + "osm_node_id": 2913662306, "type": "intersection" }, "type": "Feature" @@ -7402,34 +10005,54 @@ "coordinates": [ [ [ - -2.305538824170587, - 53.447248469870914 + -2.3043392005265964, + 53.44599320043942 ], [ - -2.3054012492509215, - 53.447196066403805 + -2.304317772770813, + 53.4460117102757 ], [ - -2.3054724314976385, - 53.447129773814574 + -2.304292909869908, + 53.44600149937874 ], [ - -2.305610006417304, - 53.44718217728168 + -2.3043110096872983, + 53.44598586467348 ], [ - -2.305538824170587, - 53.447248469870914 + -2.3043046089927195, + 53.44598419823063 + ], + [ + -2.304316700703544, + 53.445967717263784 + ], + [ + -2.3043277822552106, + 53.44597059958937 + ], + [ + -2.3043343490447183, + 53.44596455255123 + ], + [ + -2.304359704190594, + 53.44597432278062 + ], + [ + -2.3043392005265964, + 53.44599320043942 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/2790133529", - "osm_node_id": 2790133529, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2913662315", + "osm_node_id": 2913662315, "type": "intersection" }, "type": "Feature" @@ -7590,30 +10213,271 @@ 53.44597910357402 ], [ - -2.3063999629589436, - 53.445969460148966 + -2.3063999629589436, + 53.445969460148966 + ], + [ + -2.306394022800304, + 53.445968602196196 + ], + [ + -2.306412468397137, + 53.44592325300738 + ], + [ + -2.3065325610705574, + 53.44594603192309 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2918402992", + "osm_node_id": 2918402992, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.306342717586716, + 53.446386418897525 + ], + [ + -2.306280915173621, + 53.44636059038242 + ], + [ + -2.3062882520396175, + 53.44635436258064 + ], + [ + -2.3062708634105142, + 53.446337739520985 + ], + [ + -2.306334942834089, + 53.446313961459026 + ], + [ + -2.306397297890311, + 53.44633931423303 + ], + [ + -2.306342717586716, + 53.446386418897525 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2918402993", + "osm_node_id": 2918402993, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3079784008172624, + 53.4451573808772 + ], + [ + -2.307959003949473, + 53.445175354717826 + ], + [ + -2.307821628343722, + 53.44512276599048 + ], + [ + -2.3078251631458, + 53.44511949066137 + ], + [ + -2.3078411263784226, + 53.44510422197998 + ], + [ + -2.3078652675213633, + 53.445084050197465 + ], + [ + -2.3079990071581253, + 53.44513986569056 + ], + [ + -2.3079784008172624, + 53.4451573808772 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2918434149", + "osm_node_id": 2918434149, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.308171911979125, + 53.446264616584536 + ], + [ + -2.308187851052485, + 53.44626732624039 + ], + [ + -2.308174638955867, + 53.446294899439316 + ], + [ + -2.308098048054283, + 53.44628457882513 + ], + [ + -2.308120292695126, + 53.44624931822553 + ], + [ + -2.3081458939634873, + 53.44625504690385 + ], + [ + -2.3081505838802983, + 53.44624835415283 + ], + [ + -2.30817845460937, + 53.44625527892882 + ], + [ + -2.308171911979125, + 53.446264616584536 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2918472522", + "osm_node_id": 2918472522, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3082049558102553, + 53.44623640486731 + ], + [ + -2.308210941267512, + 53.44623720076688 + ], + [ + -2.308204360888419, + 53.44625475552367 + ], + [ + -2.3081800551605034, + 53.446252993752736 + ], + [ + -2.3081521844314317, + 53.446246068976755 + ], + [ + -2.308127140336059, + 53.446239137905515 + ], + [ + -2.308139866227522, + 53.44622282601112 + ], + [ + -2.3082039486710046, + 53.44621697322643 + ], + [ + -2.3082162638550066, + 53.4462333966367 + ], + [ + -2.3082049558102553, + 53.44623640486731 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2920872874", + "osm_node_id": 2920872874, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.30937, + 53.44631210525934 + ], + [ + -2.3093697674670994, + 53.44633009169047 ], [ - -2.306394022800304, - 53.445968602196196 + -2.309218776607039, + 53.44632939921287 ], [ - -2.306412468397137, - 53.44592325300738 + -2.3092190091399396, + 53.44631141278174 ], [ - -2.3065325610705574, - 53.44594603192309 + -2.30937, + 53.44631210525934 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2918402992", - "osm_node_id": 2918402992, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/2920872878", + "osm_node_id": 2920872878, "type": "intersection" }, "type": "Feature" @@ -7623,42 +10487,34 @@ "coordinates": [ [ [ - -2.306342717586716, - 53.446386418897525 - ], - [ - -2.306280915173621, - 53.44636059038242 - ], - [ - -2.3062882520396175, - 53.44635436258064 + -2.3079200999872596, + 53.446162000397635 ], [ - -2.3062708634105142, - 53.446337739520985 + -2.307954333662063, + 53.44617147564956 ], [ - -2.306334942834089, - 53.446313961459026 + -2.3079416077706, + 53.44618778754395 ], [ - -2.306397297890311, - 53.44633931423303 + -2.3079110070448787, + 53.44618382243521 ], [ - -2.306342717586716, - 53.446386418897525 + -2.3079200999872596, + 53.446162000397635 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2918402993", - "osm_node_id": 2918402993, + "osm_link": "https://www.openstreetmap.org/node/2920872879", + "osm_node_id": 2920872879, "type": "intersection" }, "type": "Feature" @@ -7668,50 +10524,34 @@ "coordinates": [ [ [ - -2.308171913489079, - 53.446264616584536 - ], - [ - -2.308187851052485, - 53.44626732624039 - ], - [ - -2.308174638955867, - 53.446294899439316 - ], - [ - -2.308098048054283, - 53.44628457882513 - ], - [ - -2.308120292695126, - 53.44624931822553 + -2.304199914829163, + 53.44611351257659 ], [ - -2.3081458939634873, - 53.44625504690385 + -2.3041750519282584, + 53.446103301679635 ], [ - -2.3081505838802983, - 53.44624835415283 + -2.3042251370990954, + 53.44606003981615 ], [ - -2.30817845460937, - 53.44625527892882 + -2.30425, + 53.446070250713106 ], [ - -2.308171913489079, - 53.446264616584536 + -2.304199914829163, + 53.44611351257659 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2918472522", - "osm_node_id": 2918472522, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/4040299167", + "osm_node_id": 4040299167, "type": "intersection" }, "type": "Feature" @@ -8153,43 +10993,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - [ - [ - -2.3085387386694474, - 53.44478565440565 - ], - [ - -2.3086424453231538, - 53.44482878406886 - ], - [ - -2.3085668056925264, - 53.44489330319598 - ], - [ - -2.30846309903882, - 53.444850173532764 - ], - [ - -2.3085387386694474, - 53.44478565440565 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/5401543778", - "osm_node_id": 5401543778, - "type": "intersection" - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -8453,12 +11256,12 @@ "coordinates": [ [ [ - -2.3048938956810603, - 53.445563658383634 + -2.3048943607468613, + 53.445563729430035 ], [ - -2.3048752688897594, - 53.44560723411034 + -2.304875736975468, + 53.44560730515674 ], [ -2.3048819036271926, @@ -8477,8 +11280,12 @@ 53.445553416909746 ], [ - -2.3048938956810603, - 53.445563658383634 + -2.304867090979441, + 53.44555600245922 + ], + [ + -2.3048943607468613, + 53.445563729430035 ] ] ], @@ -8493,6 +11300,43 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3053412602924594, + 53.44491 + ], + [ + -2.305369384693786, + 53.44491655245686 + ], + [ + -2.305314384623007, + 53.445000306273435 + ], + [ + -2.3052862602216804, + 53.44499375381657 + ], + [ + -2.3053412602924594, + 53.44491 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/6439595305", + "osm_node_id": 6439595305, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -8608,6 +11452,43 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3067712032445136, + 53.44625290292126 + ], + [ + -2.3067852216565137, + 53.44623697233921 + ], + [ + -2.306953418441256, + 53.44628946933575 + ], + [ + -2.3069394000292553, + 53.44630539991781 + ], + [ + -2.3067712032445136, + 53.44625290292126 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6480352136", + "osm_node_id": 6480352136, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -8649,8 +11530,135 @@ 53.4460056569423 ], [ - -2.306442022724806, - 53.44601255024203 + -2.306442022724806, + 53.44601255024203 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6480352139", + "osm_node_id": 6480352139, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307053994960529, + 53.445947916901076 + ], + [ + -2.307008427571758, + 53.44602717231122 + ], + [ + -2.3069851531423557, + 53.44603743896611 + ], + [ + -2.3069674625224725, + 53.4460182060753 + ], + [ + -2.307016089077843, + 53.445939599076 + ], + [ + -2.3070453685939025, + 53.445946023829194 + ], + [ + -2.3070839071472724, + 53.4459632080655 + ], + [ + -2.307053994960529, + 53.445947916901076 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/6480352153", + "osm_node_id": 6480352153, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3041143563113713, + 53.44593468967962 + ], + [ + -2.3041264480221963, + 53.44591820691413 + ], + [ + -2.30424751763579, + 53.44594971374554 + ], + [ + -2.304235425924965, + 53.44596619471239 + ], + [ + -2.3041143563113713, + 53.44593468967962 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/7003946189", + "osm_node_id": 7003946189, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.306228177013783, + 53.44579041332093 + ], + [ + -2.306213895869804, + 53.445824796182684 + ], + [ + -2.3061972622176503, + 53.445861137766784 + ], + [ + -2.305490553964337, + 53.44576750939952 + ], + [ + -2.305521459700746, + 53.44569853143613 + ], + [ + -2.306228177013783, + 53.44579041332093 ] ] ], @@ -8659,8 +11667,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6480352139", - "osm_node_id": 6480352139, + "osm_link": "https://www.openstreetmap.org/node/7218399545", + "osm_node_id": 7218399545, "type": "intersection" }, "type": "Feature" @@ -8670,36 +11678,40 @@ "coordinates": [ [ [ - -2.307053994960529, - 53.445947916901076 + -2.3073229056703486, + 53.44512038548632 ], [ - -2.307008427571758, - 53.44602717231122 + -2.307332592024612, + 53.44512461049899 ], [ - -2.3069851531423557, - 53.44603743896611 + -2.3072623157502345, + 53.44518175878663 ], [ - -2.3069674625224725, - 53.4460182060753 + -2.3072325802280975, + 53.44516878787182 ], [ - -2.307016089077843, - 53.445939599076 + -2.3072021682466133, + 53.44515630169133 ], [ - -2.3070453685939025, - 53.445946023829194 + -2.307269669225724, + 53.445097977091095 ], [ - -2.3070839071472724, - 53.4459632080655 + -2.307298414218103, + 53.44510977888788 ], [ - -2.307053994960529, - 53.445947916901076 + -2.307324068334851, + 53.44511927032759 + ], + [ + -2.3073229056703486, + 53.44512038548632 ] ] ], @@ -8707,9 +11719,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/6480352153", - "osm_node_id": 6480352153, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7796391487", + "osm_node_id": 7796391487, "type": "intersection" }, "type": "Feature" @@ -8719,38 +11731,34 @@ "coordinates": [ [ [ - -2.306228177013783, - 53.44579041332093 - ], - [ - -2.306213895869804, - 53.445824796182684 + -2.3086888945250017, + 53.44500022353585 ], [ - -2.3061972622176503, - 53.445861137766784 + -2.308653289812058, + 53.44502928241399 ], [ - -2.305490553964337, - 53.44576750939952 + -2.3086234334936084, + 53.44501630520393 ], [ - -2.305521459700746, - 53.44569853143613 + -2.308656421456445, + 53.44498617163653 ], [ - -2.306228177013783, - 53.44579041332093 + -2.3086888945250017, + 53.44500022353585 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7218399545", - "osm_node_id": 7218399545, + "osm_link": "https://www.openstreetmap.org/node/7796397127", + "osm_node_id": 7796397127, "type": "intersection" }, "type": "Feature" @@ -8760,38 +11768,34 @@ "coordinates": [ [ [ - -2.3086888945250017, - 53.44500022353585 - ], - [ - -2.308653289812058, - 53.44502928241399 + -2.308538716020139, + 53.44478565080836 ], [ - -2.308623413864208, - 53.44501629711003 + -2.308642428713661, + 53.44482877507565 ], [ - -2.3085924779287206, - 53.445004243503206 + -2.3085667996527106, + 53.44489329690073 ], [ - -2.3086255428992057, - 53.44497413961342 + -2.308463086959189, + 53.444850172633444 ], [ - -2.3086888945250017, - 53.44500022353585 + -2.308538716020139, + 53.44478565080836 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7796397127", - "osm_node_id": 7796397127, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/7796397137", + "osm_node_id": 7796397137, "type": "intersection" }, "type": "Feature" @@ -8874,6 +11878,51 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.308623504461442, + 53.44502221644452 + ], + [ + -2.3086035066320005, + 53.445008567441256 + ], + [ + -2.308598617401275, + 53.44501202892992 + ], + [ + -2.308571877627674, + 53.444996238642034 + ], + [ + -2.308604951657882, + 53.44496613834953 + ], + [ + -2.308636493084883, + 53.44497843297453 + ], + [ + -2.308623504461442, + 53.44502221644452 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8672774810", + "osm_node_id": 8672774810, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -8924,20 +11973,16 @@ 53.446825387641866 ], [ - -2.3049658933028825, - 53.446837026661456 - ], - [ - -2.304904217725915, - 53.4468110920264 + -2.304896894449504, + 53.44680947234828 ], [ - -2.3049016764735026, - 53.446809891432125 + -2.3048982926668145, + 53.4468082924384 ], [ - -2.304975558517792, - 53.44675437811107 + -2.3049721716911957, + 53.44675277911735 ], [ -2.305004001519391, @@ -8998,7 +12043,7 @@ "coordinates": [ [ [ - -2.304779341518542, + -2.304779340008588, 53.44666174349413 ], [ @@ -9010,12 +12055,12 @@ 53.44673122237963 ], [ - -2.3047311905986496, - 53.44672940485077 + -2.3047311921086036, + 53.446729403951444 ], [ -2.3046822635624533, - 53.44670831486094 + 53.44670831396162 ], [ -2.3046838127751537, @@ -9030,7 +12075,7 @@ 53.44664777613104 ], [ - -2.304779341518542, + -2.304779340008588, 53.44666174349413 ] ] @@ -9046,6 +12091,80 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3078853287688683, + 53.44567187104858 + ], + [ + -2.3078585995649443, + 53.44566350016353 + ], + [ + -2.307936800077385, + 53.44558551279678 + ], + [ + -2.307961687137552, + 53.44559570031137 + ], + [ + -2.3078853287688683, + 53.44567187104858 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9169444979", + "osm_node_id": 9169444979, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.30425, + 53.44570000992076 + ], + [ + -2.304257332336135, + 53.445682561283924 + ], + [ + -2.304400767386883, + 53.44571433791181 + ], + [ + -2.3043887028552286, + 53.44573082607322 + ], + [ + -2.30425, + 53.44570000992076 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/9280845971", + "osm_node_id": 9280845971, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -9177,6 +12296,51 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307540628942985, + 53.44537529278563 + ], + [ + -2.3075253225403087, + 53.44538738686192 + ], + [ + -2.3074650331010207, + 53.44536032088035 + ], + [ + -2.3075754303604543, + 53.44530723033157 + ], + [ + -2.3076001241465223, + 53.44531758511998 + ], + [ + -2.3076219973387064, + 53.445360623052395 + ], + [ + -2.307540628942985, + 53.44537529278563 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9298401794", + "osm_node_id": 9298401794, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -9190,11 +12354,11 @@ 53.445317873802196 ], [ - -2.3076296965936383, + -2.3076296935737304, 53.44535923539923 ], [ - -2.307607823401454, + -2.307607826421362, 53.445316197466816 ], [ @@ -9288,12 +12452,12 @@ 53.44562838615335 ], [ - -2.304978206976931, - 53.445622840936636 + -2.304978205466977, + 53.445622841835956 ], [ - -2.304996830748324, - 53.44557926520993 + -2.304996832258278, + 53.44557926610925 ], [ -2.3050334275009794, @@ -9468,8 +12632,12 @@ 53.4458003121533 ], [ - -2.304611461824119, - 53.445782339211995 + -2.304613015566681, + 53.44578653634569 + ], + [ + -2.3046225373359697, + 53.445769467222554 ], [ -2.3046311138741173, @@ -9574,6 +12742,112 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.3078229993818624, + 53.445097499551345 + ], + [ + -2.30780703614924, + 53.44511276823274 + ], + [ + -2.3078259966403527, + 53.44512623737169 + ], + [ + -2.3078012907746537, + 53.445115893375146 + ], + [ + -2.3078056062228973, + 53.4451122367337 + ], + [ + -2.307774991907591, + 53.44510087920176 + ], + [ + -2.3077909581601213, + 53.44508561231901 + ], + [ + -2.3078229993818624, + 53.445097499551345 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9298401918", + "osm_node_id": 9298401918, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.307663874400147, + 53.445266694311734 + ], + [ + -2.3076029658797603, + 53.445327538810965 + ], + [ + -2.30760396093938, + 53.44531433856916 + ], + [ + -2.30757927017322, + 53.445303983780754 + ], + [ + -2.3075354075224017, + 53.44530088921528 + ], + [ + -2.307605683796779, + 53.44524374092764 + ], + [ + -2.3076352033955088, + 53.44525661831301 + ], + [ + -2.3076365985929117, + 53.4452554375038 + ], + [ + -2.3076613044586107, + 53.44526578150035 + ], + [ + -2.307663874400147, + 53.445266694311734 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9298401919", + "osm_node_id": 9298401919, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ diff --git a/tests/src/kingsway_junction/road_network.dot b/tests/src/kingsway_junction/road_network.dot index 8772c977..eee0f805 100644 --- a/tests/src/kingsway_junction/road_network.dot +++ b/tests/src/kingsway_junction/road_network.dot @@ -13,22 +13,22 @@ digraph { 11 [ label = "Lights RoadIntersection" ] 12 [ label = "Unknown" ] 13 [ label = "Lights RoadIntersection" ] - 14 [ label = "Lights RoadIntersection" ] - 15 [ label = "Unknown" ] - 16 [ label = "MapEdge" ] - 17 [ label = "Lights RoadIntersection" ] - 18 [ label = "Unknown" ] + 14 [ label = "Unknown" ] + 15 [ label = "Lights RoadIntersection" ] + 16 [ label = "Unknown" ] + 17 [ label = "MapEdge" ] + 18 [ label = "Lights RoadIntersection" ] 19 [ label = "Unknown" ] - 20 [ label = "MapEdge" ] + 20 [ label = "Unknown" ] 21 [ label = "MapEdge" ] - 22 [ label = "Unknown" ] - 23 [ label = "MapEdge" ] + 22 [ label = "MapEdge" ] + 23 [ label = "Unknown" ] 24 [ label = "MapEdge" ] 25 [ label = "MapEdge" ] - 26 [ label = "Unknown" ] + 26 [ label = "MapEdge" ] 27 [ label = "Unknown" ] - 28 [ label = "MapEdge" ] - 29 [ label = "Unknown" ] + 28 [ label = "Unknown" ] + 29 [ label = "MapEdge" ] 30 [ label = "Unknown" ] 31 [ label = "Unknown" ] 32 [ label = "Unknown" ] @@ -39,32 +39,32 @@ digraph { 37 [ label = "Unknown" ] 38 [ label = "Unknown" ] 39 [ label = "Unknown" ] - 40 [ label = "MapEdge" ] + 40 [ label = "Unknown" ] 41 [ label = "Unknown" ] 42 [ label = "MapEdge" ] - 43 [ label = "MapEdge" ] + 43 [ label = "Unknown" ] 44 [ label = "MapEdge" ] - 45 [ label = "Unknown" ] - 46 [ label = "Unknown" ] + 45 [ label = "MapEdge" ] + 46 [ label = "MapEdge" ] 47 [ label = "Unknown" ] 48 [ label = "Unknown" ] 49 [ label = "Unknown" ] 50 [ label = "Unknown" ] 51 [ label = "Unknown" ] - 52 [ label = "Lights RoadIntersection" ] - 53 [ label = "MapEdge" ] + 52 [ label = "Unknown" ] + 53 [ label = "Unknown" ] 54 [ label = "Unknown" ] 55 [ label = "Unknown" ] - 56 [ label = "Unknown" ] - 57 [ label = "Unknown" ] + 56 [ label = "Lights RoadIntersection" ] + 57 [ label = "MapEdge" ] 58 [ label = "Unknown" ] - 59 [ label = "MapEdge" ] - 60 [ label = "Lights RoadIntersection" ] - 61 [ label = "MapEdge" ] - 62 [ label = "Lights RoadIntersection" ] - 63 [ label = "Unknown" ] - 64 [ label = "Unknown" ] - 65 [ label = "Lights RoadIntersection" ] + 59 [ label = "Unknown" ] + 60 [ label = "Unknown" ] + 61 [ label = "Unknown" ] + 62 [ label = "Unknown" ] + 63 [ label = "MapEdge" ] + 64 [ label = "Lights RoadIntersection" ] + 65 [ label = "MapEdge" ] 66 [ label = "Unknown" ] 67 [ label = "Unknown" ] 68 [ label = "Unknown" ] @@ -73,206 +73,293 @@ digraph { 71 [ label = "Unknown" ] 72 [ label = "Unknown" ] 73 [ label = "Unknown" ] - 74 [ label = "MapEdge" ] + 74 [ label = "Unknown" ] 75 [ label = "Unknown" ] - 76 [ label = "MapEdge" ] - 77 [ label = "MapEdge" ] + 76 [ label = "Unknown" ] + 77 [ label = "Unknown" ] 78 [ label = "Unknown" ] 79 [ label = "Unknown" ] - 80 [ label = "MapEdge" ] + 80 [ label = "Unknown" ] 81 [ label = "Unknown" ] - 82 [ label = "Lights RoadIntersection" ] + 82 [ label = "Unknown" ] 83 [ label = "Unknown" ] 84 [ label = "Unknown" ] - 85 [ label = "MapEdge" ] + 85 [ label = "Lights RoadIntersection" ] 86 [ label = "Unknown" ] 87 [ label = "Unknown" ] - 88 [ label = "Unknown" ] - 89 [ label = "Lights RoadIntersection" ] + 88 [ label = "Lights RoadIntersection" ] + 89 [ label = "Unknown" ] 90 [ label = "Unknown" ] 91 [ label = "Unknown" ] - 92 [ label = "MapEdge" ] - 93 [ label = "Unknown" ] - 94 [ label = "MapEdge" ] - 95 [ label = "Unknown" ] - 96 [ label = "MapEdge" ] + 92 [ label = "Unknown" ] + 93 [ label = "MapEdge" ] + 94 [ label = "Unknown" ] + 95 [ label = "MapEdge" ] + 96 [ label = "Unknown" ] 97 [ label = "Unknown" ] - 98 [ label = "MapEdge" ] + 98 [ label = "Unknown" ] 99 [ label = "Unknown" ] 100 [ label = "Unknown" ] 101 [ label = "Unknown" ] - 102 [ label = "Unknown" ] + 102 [ label = "MapEdge" ] 103 [ label = "Unknown" ] - 104 [ label = "Unknown" ] + 104 [ label = "MapEdge" ] 105 [ label = "Unknown" ] 106 [ label = "Unknown" ] 107 [ label = "Unknown" ] - 108 [ label = "Unknown" ] + 108 [ label = "MapEdge" ] 109 [ label = "Unknown" ] - 110 [ label = "MapEdge" ] - 111 [ label = "MapEdge" ] - 112 [ label = "MapEdge" ] - 105 -> 90 [ label = "4 lanes" ] - 90 -> 62 [ label = "2 lanes" ] - 11 -> 82 [ label = "4 lanes" ] - 12 -> 65 [ label = "2 lanes" ] - 15 -> 13 [ label = "2 lanes" ] + 110 [ label = "Lights RoadIntersection" ] + 111 [ label = "Unknown" ] + 112 [ label = "Unknown" ] + 113 [ label = "MapEdge" ] + 114 [ label = "MapEdge" ] + 115 [ label = "Unknown" ] + 116 [ label = "Unknown" ] + 117 [ label = "Unknown" ] + 118 [ label = "Unknown" ] + 119 [ label = "Lights RoadIntersection" ] + 120 [ label = "MapEdge" ] + 121 [ label = "Unknown" ] + 122 [ label = "Unknown" ] + 123 [ label = "Unknown" ] + 124 [ label = "MapEdge" ] + 125 [ label = "Unknown" ] + 126 [ label = "MapEdge" ] + 127 [ label = "Unknown" ] + 128 [ label = "Unknown" ] + 129 [ label = "MapEdge" ] + 130 [ label = "Unknown" ] + 131 [ label = "MapEdge" ] + 132 [ label = "Unknown" ] + 133 [ label = "Unknown" ] + 134 [ label = "MapEdge" ] + 135 [ label = "MapEdge" ] + 136 [ label = "Unknown" ] + 137 [ label = "Unknown" ] + 138 [ label = "Unknown" ] + 139 [ label = "Unknown" ] + 140 [ label = "Unknown" ] + 141 [ label = "Unknown" ] + 142 [ label = "Unknown" ] + 143 [ label = "Unknown" ] + 144 [ label = "Unknown" ] + 145 [ label = "Unknown" ] + 146 [ label = "Unknown" ] + 147 [ label = "Unknown" ] + 148 [ label = "Unknown" ] + 149 [ label = "Unknown" ] + 150 [ label = "MapEdge" ] + 151 [ label = "MapEdge" ] + 152 [ label = "MapEdge" ] + 143 -> 121 [ label = "4 lanes" ] + 121 -> 85 [ label = "2 lanes" ] + 11 -> 110 [ label = "4 lanes" ] + 12 -> 88 [ label = "2 lanes" ] + 16 -> 13 [ label = "2 lanes" ] 4 -> 13 [ label = "4 lanes" ] - 58 -> 112 [ label = "1 lanes" ] - 24 -> 49 [ label = "2 lanes" ] - 3 -> 29 [ label = "2 lanes" ] - 29 -> 3 [ label = "2 lanes" ] - 25 -> 70 [ label = "2 lanes" ] - 70 -> 25 [ label = "2 lanes" ] - 70 -> 73 [ label = "2 lanes" ] - 73 -> 70 [ label = "2 lanes" ] - 73 -> 33 [ label = "2 lanes" ] - 33 -> 73 [ label = "2 lanes" ] - 27 -> 30 [ label = "3 lanes" ] - 30 -> 28 [ label = "2 lanes" ] - 28 -> 30 [ label = "2 lanes" ] - 31 -> 33 [ label = "2 lanes" ] - 33 -> 31 [ label = "2 lanes" ] - 33 -> 30 [ label = "2 lanes" ] - 30 -> 33 [ label = "2 lanes" ] - 32 -> 27 [ label = "3 lanes" ] - 35 -> 45 [ label = "2 lanes" ] - 45 -> 35 [ label = "2 lanes" ] - 2 -> 22 [ label = "2 lanes" ] - 22 -> 2 [ label = "2 lanes" ] - 22 -> 64 [ label = "2 lanes" ] - 64 -> 22 [ label = "2 lanes" ] - 36 -> 95 [ label = "2 lanes" ] - 95 -> 36 [ label = "2 lanes" ] - 39 -> 36 [ label = "2 lanes" ] - 36 -> 39 [ label = "2 lanes" ] - 64 -> 39 [ label = "2 lanes" ] - 39 -> 64 [ label = "2 lanes" ] - 95 -> 97 [ label = "2 lanes" ] - 97 -> 95 [ label = "2 lanes" ] - 97 -> 38 [ label = "2 lanes" ] - 38 -> 97 [ label = "2 lanes" ] - 39 -> 1 [ label = "2 lanes" ] - 1 -> 39 [ label = "2 lanes" ] - 35 -> 42 [ label = "2 lanes" ] - 42 -> 35 [ label = "2 lanes" ] - 48 -> 35 [ label = "2 lanes" ] - 35 -> 48 [ label = "2 lanes" ] - 37 -> 36 [ label = "2 lanes" ] - 36 -> 37 [ label = "2 lanes" ] - 38 -> 40 [ label = "1 lanes" ] - 40 -> 38 [ label = "1 lanes" ] - 95 -> 43 [ label = "2 lanes" ] - 65 -> 87 [ label = "5 lanes" ] + 62 -> 152 [ label = "1 lanes" ] + 25 -> 48 [ label = "2 lanes" ] + 3 -> 67 [ label = "2 lanes" ] + 67 -> 3 [ label = "2 lanes" ] + 67 -> 30 [ label = "2 lanes" ] + 30 -> 67 [ label = "2 lanes" ] + 26 -> 98 [ label = "2 lanes" ] + 98 -> 26 [ label = "2 lanes" ] + 98 -> 101 [ label = "2 lanes" ] + 101 -> 98 [ label = "2 lanes" ] + 101 -> 34 [ label = "2 lanes" ] + 34 -> 101 [ label = "2 lanes" ] + 28 -> 68 [ label = "3 lanes" ] + 68 -> 31 [ label = "3 lanes" ] + 31 -> 29 [ label = "2 lanes" ] + 29 -> 31 [ label = "2 lanes" ] + 32 -> 34 [ label = "2 lanes" ] + 34 -> 32 [ label = "2 lanes" ] + 34 -> 31 [ label = "2 lanes" ] + 31 -> 34 [ label = "2 lanes" ] + 33 -> 28 [ label = "3 lanes" ] + 37 -> 47 [ label = "2 lanes" ] + 47 -> 37 [ label = "2 lanes" ] + 2 -> 23 [ label = "2 lanes" ] + 23 -> 2 [ label = "2 lanes" ] + 23 -> 87 [ label = "2 lanes" ] + 87 -> 23 [ label = "2 lanes" ] + 38 -> 130 [ label = "2 lanes" ] + 130 -> 38 [ label = "2 lanes" ] + 41 -> 38 [ label = "2 lanes" ] + 38 -> 41 [ label = "2 lanes" ] + 87 -> 41 [ label = "2 lanes" ] + 41 -> 87 [ label = "2 lanes" ] + 130 -> 132 [ label = "2 lanes" ] + 132 -> 130 [ label = "2 lanes" ] + 132 -> 40 [ label = "2 lanes" ] + 40 -> 132 [ label = "2 lanes" ] + 41 -> 1 [ label = "2 lanes" ] + 1 -> 41 [ label = "2 lanes" ] + 37 -> 44 [ label = "2 lanes" ] + 44 -> 37 [ label = "2 lanes" ] + 51 -> 149 [ label = "2 lanes" ] + 149 -> 51 [ label = "2 lanes" ] + 122 -> 37 [ label = "2 lanes" ] + 37 -> 122 [ label = "2 lanes" ] + 149 -> 122 [ label = "2 lanes" ] + 122 -> 149 [ label = "2 lanes" ] + 39 -> 38 [ label = "2 lanes" ] + 38 -> 39 [ label = "2 lanes" ] + 40 -> 42 [ label = "1 lanes" ] + 42 -> 40 [ label = "1 lanes" ] + 130 -> 45 [ label = "1 lanes" ] + 88 -> 116 [ label = "5 lanes" ] 10 -> 5 [ label = "4 lanes" ] - 5 -> 89 [ label = "4 lanes" ] - 26 -> 23 [ label = "4 lanes" ] + 5 -> 119 [ label = "4 lanes" ] + 27 -> 24 [ label = "4 lanes" ] 4 -> 11 [ label = "3 lanes" ] - 15 -> 4 [ label = "4 lanes" ] - 13 -> 67 [ label = "4 lanes" ] - 45 -> 47 [ label = "2 lanes" ] - 47 -> 45 [ label = "2 lanes" ] + 16 -> 4 [ label = "4 lanes" ] + 13 -> 14 [ label = "4 lanes" ] + 14 -> 91 [ label = "4 lanes" ] + 48 -> 55 [ label = "1 lanes" ] + 47 -> 50 [ label = "2 lanes" ] 50 -> 47 [ label = "2 lanes" ] - 49 -> 68 [ label = "2 lanes" ] - 68 -> 50 [ label = "2 lanes" ] - 49 -> 21 [ label = "2 lanes" ] - 8 -> 56 [ label = "3 lanes" ] - 56 -> 9 [ label = "3 lanes" ] - 69 -> 8 [ label = "2 lanes" ] - 8 -> 69 [ label = "2 lanes" ] - 7 -> 52 [ label = "4 lanes" ] - 55 -> 57 [ label = "3 lanes" ] - 54 -> 69 [ label = "4 lanes" ] - 69 -> 7 [ label = "4 lanes" ] - 8 -> 107 [ label = "1 lanes" ] - 107 -> 8 [ label = "1 lanes" ] - 107 -> 53 [ label = "1 lanes" ] - 53 -> 107 [ label = "1 lanes" ] - 6 -> 54 [ label = "4 lanes" ] - 60 -> 105 [ label = "2 lanes" ] - 105 -> 99 [ label = "2 lanes" ] - 106 -> 60 [ label = "2 lanes" ] - 88 -> 66 [ label = "2 lanes" ] - 63 -> 88 [ label = "1 lanes" ] - 88 -> 63 [ label = "1 lanes" ] - 88 -> 65 [ label = "1 lanes" ] - 65 -> 88 [ label = "1 lanes" ] - 64 -> 66 [ label = "2 lanes" ] - 66 -> 63 [ label = "2 lanes" ] - 5 -> 62 [ label = "5 lanes" ] - 67 -> 0 [ label = "1 lanes" ] - 94 -> 14 [ label = "2 lanes" ] - 51 -> 68 [ label = "2 lanes" ] - 84 -> 69 [ label = "2 lanes" ] - 59 -> 71 [ label = "1 lanes" ] - 71 -> 59 [ label = "1 lanes" ] - 71 -> 70 [ label = "1 lanes" ] - 70 -> 71 [ label = "1 lanes" ] - 71 -> 75 [ label = "1 lanes" ] - 75 -> 71 [ label = "1 lanes" ] - 72 -> 73 [ label = "1 lanes" ] - 73 -> 72 [ label = "1 lanes" ] + 53 -> 50 [ label = "2 lanes" ] + 52 -> 55 [ label = "2 lanes" ] + 55 -> 96 [ label = "2 lanes" ] + 96 -> 53 [ label = "2 lanes" ] + 48 -> 52 [ label = "2 lanes" ] + 52 -> 22 [ label = "2 lanes" ] + 8 -> 60 [ label = "3 lanes" ] + 60 -> 9 [ label = "3 lanes" ] + 97 -> 8 [ label = "2 lanes" ] + 8 -> 97 [ label = "2 lanes" ] + 7 -> 56 [ label = "4 lanes" ] + 59 -> 61 [ label = "3 lanes" ] + 58 -> 97 [ label = "4 lanes" ] + 97 -> 7 [ label = "4 lanes" ] + 8 -> 145 [ label = "1 lanes" ] + 145 -> 8 [ label = "1 lanes" ] + 145 -> 57 [ label = "1 lanes" ] + 57 -> 145 [ label = "1 lanes" ] + 6 -> 58 [ label = "4 lanes" ] + 64 -> 143 [ label = "2 lanes" ] + 143 -> 136 [ label = "2 lanes" ] + 144 -> 64 [ label = "2 lanes" ] + 67 -> 36 [ label = "1 lanes" ] + 68 -> 66 [ label = "1 lanes" ] + 81 -> 32 [ label = "1 lanes" ] + 73 -> 75 [ label = "1 lanes" ] + 69 -> 72 [ label = "1 lanes" ] + 76 -> 77 [ label = "1 lanes" ] + 77 -> 69 [ label = "1 lanes" ] + 70 -> 76 [ label = "1 lanes" ] + 77 -> 78 [ label = "1 lanes" ] 75 -> 72 [ label = "1 lanes" ] - 72 -> 75 [ label = "1 lanes" ] - 72 -> 74 [ label = "1 lanes" ] - 74 -> 72 [ label = "1 lanes" ] - 75 -> 76 [ label = "1 lanes" ] - 76 -> 75 [ label = "1 lanes" ] - 77 -> 18 [ label = "4 lanes" ] - 18 -> 79 [ label = "4 lanes" ] - 79 -> 83 [ label = "4 lanes" ] - 83 -> 93 [ label = "4 lanes" ] - 93 -> 15 [ label = "4 lanes" ] - 18 -> 91 [ label = "1 lanes" ] - 91 -> 18 [ label = "1 lanes" ] - 91 -> 78 [ label = "1 lanes" ] - 78 -> 91 [ label = "1 lanes" ] - 79 -> 93 [ label = "1 lanes" ] - 81 -> 82 [ label = "2 lanes" ] - 62 -> 104 [ label = "5 lanes" ] - 101 -> 48 [ label = "5 lanes" ] - 104 -> 101 [ label = "5 lanes" ] - 83 -> 89 [ label = "3 lanes" ] + 79 -> 80 [ label = "1 lanes" ] + 69 -> 79 [ label = "1 lanes" ] + 71 -> 78 [ label = "1 lanes" ] + 73 -> 117 [ label = "1 lanes" ] + 78 -> 73 [ label = "1 lanes" ] + 54 -> 82 [ label = "1 lanes" ] + 83 -> 84 [ label = "1 lanes" ] + 84 -> 95 [ label = "1 lanes" ] + 84 -> 120 [ label = "1 lanes" ] + 133 -> 128 [ label = "1 lanes" ] + 118 -> 89 [ label = "2 lanes" ] + 86 -> 118 [ label = "1 lanes" ] + 118 -> 86 [ label = "1 lanes" ] + 118 -> 88 [ label = "1 lanes" ] + 88 -> 118 [ label = "1 lanes" ] + 87 -> 89 [ label = "2 lanes" ] + 89 -> 86 [ label = "2 lanes" ] + 5 -> 85 [ label = "5 lanes" ] + 122 -> 148 [ label = "1 lanes" ] + 148 -> 90 [ label = "1 lanes" ] + 91 -> 92 [ label = "1 lanes" ] + 92 -> 0 [ label = "1 lanes" ] + 92 -> 93 [ label = "1 lanes" ] + 94 -> 92 [ label = "1 lanes" ] + 129 -> 15 [ label = "2 lanes" ] + 54 -> 96 [ label = "2 lanes" ] + 112 -> 97 [ label = "2 lanes" ] + 63 -> 99 [ label = "1 lanes" ] + 99 -> 63 [ label = "1 lanes" ] + 99 -> 98 [ label = "1 lanes" ] + 98 -> 99 [ label = "1 lanes" ] + 99 -> 103 [ label = "1 lanes" ] + 103 -> 99 [ label = "1 lanes" ] + 100 -> 101 [ label = "1 lanes" ] + 101 -> 100 [ label = "1 lanes" ] + 103 -> 100 [ label = "1 lanes" ] + 100 -> 103 [ label = "1 lanes" ] + 100 -> 102 [ label = "1 lanes" ] + 102 -> 100 [ label = "1 lanes" ] + 103 -> 104 [ label = "1 lanes" ] + 104 -> 103 [ label = "1 lanes" ] + 124 -> 19 [ label = "4 lanes" ] + 19 -> 107 [ label = "4 lanes" ] + 107 -> 111 [ label = "4 lanes" ] + 111 -> 127 [ label = "4 lanes" ] + 127 -> 16 [ label = "4 lanes" ] + 19 -> 128 [ label = "1 lanes" ] + 128 -> 19 [ label = "1 lanes" ] + 128 -> 123 [ label = "1 lanes" ] + 123 -> 128 [ label = "1 lanes" ] + 123 -> 106 [ label = "1 lanes" ] + 106 -> 123 [ label = "1 lanes" ] + 107 -> 127 [ label = "1 lanes" ] + 109 -> 110 [ label = "2 lanes" ] + 85 -> 142 [ label = "5 lanes" ] + 139 -> 51 [ label = "5 lanes" ] + 142 -> 139 [ label = "5 lanes" ] + 111 -> 119 [ label = "3 lanes" ] 12 -> 10 [ label = "5 lanes" ] - 86 -> 85 [ label = "1 lanes" ] - 80 -> 58 [ label = "1 lanes" ] - 92 -> 86 [ label = "1 lanes" ] - 48 -> 20 [ label = "5 lanes" ] - 82 -> 4 [ label = "1 lanes" ] - 82 -> 10 [ label = "4 lanes" ] - 89 -> 10 [ label = "2 lanes" ] - 89 -> 4 [ label = "4 lanes" ] - 67 -> 16 [ label = "3 lanes" ] - 14 -> 11 [ label = "5 lanes" ] - 87 -> 60 [ label = "3 lanes" ] - 29 -> 110 [ label = "2 lanes" ] - 44 -> 35 [ label = "3 lanes" ] - 96 -> 97 [ label = "1 lanes" ] - 97 -> 96 [ label = "1 lanes" ] - 57 -> 8 [ label = "3 lanes" ] - 60 -> 55 [ label = "3 lanes" ] - 45 -> 51 [ label = "2 lanes" ] - 51 -> 45 [ label = "2 lanes" ] - 90 -> 5 [ label = "4 lanes" ] - 52 -> 105 [ label = "4 lanes" ] - 10 -> 65 [ label = "4 lanes" ] - 11 -> 32 [ label = "4 lanes" ] - 32 -> 26 [ label = "4 lanes" ] - 22 -> 81 [ label = "5 lanes" ] - 81 -> 12 [ label = "5 lanes" ] - 61 -> 22 [ label = "5 lanes" ] - 46 -> 50 [ label = "2 lanes" ] - 98 -> 84 [ label = "2 lanes" ] - 46 -> 100 [ label = "2 lanes" ] - 100 -> 101 [ label = "2 lanes" ] - 103 -> 102 [ label = "2 lanes" ] - 104 -> 100 [ label = "1 lanes" ] - 88 -> 106 [ label = "2 lanes" ] - 108 -> 107 [ label = "2 lanes" ] - 109 -> 108 [ label = "2 lanes" ] - 111 -> 64 [ label = "2 lanes" ] - 99 -> 46 [ label = "2 lanes" ] - 102 -> 99 [ label = "2 lanes" ] - 84 -> 103 [ label = "2 lanes" ] - 106 -> 109 [ label = "2 lanes" ] + 112 -> 113 [ label = "1 lanes" ] + 115 -> 114 [ label = "1 lanes" ] + 108 -> 62 [ label = "1 lanes" ] + 126 -> 115 [ label = "1 lanes" ] + 51 -> 90 [ label = "5 lanes" ] + 90 -> 21 [ label = "5 lanes" ] + 110 -> 4 [ label = "1 lanes" ] + 110 -> 10 [ label = "4 lanes" ] + 119 -> 10 [ label = "2 lanes" ] + 119 -> 4 [ label = "4 lanes" ] + 74 -> 70 [ label = "1 lanes" ] + 91 -> 17 [ label = "3 lanes" ] + 15 -> 11 [ label = "5 lanes" ] + 116 -> 64 [ label = "3 lanes" ] + 30 -> 150 [ label = "2 lanes" ] + 46 -> 37 [ label = "3 lanes" ] + 131 -> 132 [ label = "1 lanes" ] + 132 -> 131 [ label = "1 lanes" ] + 61 -> 8 [ label = "3 lanes" ] + 64 -> 59 [ label = "3 lanes" ] + 47 -> 54 [ label = "2 lanes" ] + 54 -> 47 [ label = "2 lanes" ] + 14 -> 94 [ label = "1 lanes" ] + 121 -> 5 [ label = "4 lanes" ] + 56 -> 143 [ label = "4 lanes" ] + 10 -> 88 [ label = "4 lanes" ] + 11 -> 33 [ label = "4 lanes" ] + 33 -> 27 [ label = "4 lanes" ] + 23 -> 109 [ label = "5 lanes" ] + 109 -> 12 [ label = "5 lanes" ] + 65 -> 23 [ label = "5 lanes" ] + 49 -> 53 [ label = "2 lanes" ] + 135 -> 112 [ label = "2 lanes" ] + 49 -> 137 [ label = "2 lanes" ] + 137 -> 138 [ label = "2 lanes" ] + 138 -> 139 [ label = "2 lanes" ] + 141 -> 140 [ label = "2 lanes" ] + 142 -> 137 [ label = "1 lanes" ] + 118 -> 144 [ label = "2 lanes" ] + 146 -> 145 [ label = "2 lanes" ] + 147 -> 146 [ label = "2 lanes" ] + 83 -> 134 [ label = "1 lanes" ] + 145 -> 83 [ label = "1 lanes" ] + 138 -> 149 [ label = "1 lanes" ] + 149 -> 148 [ label = "1 lanes" ] + 151 -> 87 [ label = "2 lanes" ] + 136 -> 49 [ label = "2 lanes" ] + 140 -> 136 [ label = "2 lanes" ] + 112 -> 141 [ label = "2 lanes" ] + 144 -> 147 [ label = "2 lanes" ] } diff --git a/tests/src/leeds_cycleway/geometry.json b/tests/src/leeds_cycleway/geometry.json index e8f2b34b..a8f3631b 100644 --- a/tests/src/leeds_cycleway/geometry.json +++ b/tests/src/leeds_cycleway/geometry.json @@ -1,65 +1,173 @@ { "features": [ + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390381393839818, + 53.79882194231722 + ], + [ + -1.5391139346582587, + 53.798826133156176 + ], + [ + -1.539119522393918, + 53.79879086895505 + ], + [ + -1.5390437271196413, + 53.798786678116095 + ], + [ + -1.5390381393839818, + 53.79882194231722 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7275677007, + "osm_way_id": 4049157, + "src_i": 26109193, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ [ [ -1.5363840532533102, - 53.798542141763555 + 53.798542140864235 ], [ - -1.5365219195922633, - 53.7985928239353 + -1.5365216881656092, + 53.79859273849974 ], [ - -1.5368910405377825, - 53.79865685024191 + -1.536799194607015, + 53.79864316616346 ], [ - -1.5377810663404343, - 53.79873354439349 + -1.5368918413958088, + 53.79865691859035 ], [ - -1.53889406867914, - 53.79881233936048 + -1.5377428581043655, + 53.79873025197688 ], [ - -1.5389012033192762, - 53.798777172286094 + -1.5377515152882781, + 53.79869520361295 ], [ - -1.5377890140189472, - 53.798698434875696 + -1.536903497990961, + 53.79862212923107 ], [ - -1.5369038664465549, - 53.79862216160665 + -1.5368153000750817, + 53.79860903690627 ], [ - -1.5365466578835423, - 53.79856020194123 + -1.536546761416519, + 53.798560238813415 ], [ -1.536415737389297, - 53.79851207204437 + 53.79851207114505 ], [ -1.5363840532533102, - 53.798542141763555 + 53.798542140864235 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7275677007, + "dst_i": 4457095870, "osm_way_id": 4049157, "src_i": 26298423, "type": "road" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5379678367854854, + 53.79874636872043 + ], + [ + -1.538961357501338, + 53.79881708867819 + ], + [ + -1.5389685317276123, + 53.79878192340245 + ], + [ + -1.5379750110117598, + 53.79871120344469 + ], + [ + -1.5379678367854854, + 53.79874636872043 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26109193, + "osm_way_id": 4049157, + "src_i": 342529365, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5378195775627146, + 53.79873616591614 + ], + [ + -1.5378924495529407, + 53.798741122077836 + ], + [ + -1.5378993101351972, + 53.79870593521838 + ], + [ + -1.537826438144971, + 53.79870097905668 + ], + [ + -1.5378195775627146, + 53.79873616591614 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 342529365, + "osm_way_id": 4049157, + "src_i": 4457095870, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -181,8 +289,8 @@ "coordinates": [ [ [ - -1.5342726215176168, - 53.79655922112942 + -1.5342723170088615, + 53.79655852865174 ], [ -1.5342889705926877, @@ -193,12 +301,12 @@ 53.796582122355616 ], [ - -1.5343666081449339, - 53.796544840976 + -1.5343663036361788, + 53.79654414849831 ], [ - -1.5342726215176168, - 53.79655922112942 + -1.5342723170088615, + 53.79655852865174 ] ] ], @@ -248,6 +356,186 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5357441585549645, + 53.796417894528425 + ], + [ + -1.5357459049126758, + 53.796402107835924 + ], + [ + -1.5357155179839865, + 53.79640093512047 + ], + [ + -1.535713771626275, + 53.796416721812975 + ], + [ + -1.5357441585549645, + 53.796417894528425 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8740550411, + "osm_way_id": 4372149, + "src_i": 301689309, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358430416830664, + 53.79551470488107 + ], + [ + -1.5358441927261615, + 53.79550051808181 + ], + [ + -1.5358137753465966, + 53.79549965653165 + ], + [ + -1.5358126243035015, + 53.795513843330916 + ], + [ + -1.5358430416830664, + 53.79551470488107 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6264671916, + "osm_way_id": 4372149, + "src_i": 320943573, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358310531733712, + 53.795629630095945 + ], + [ + -1.535838720703829, + 53.795559902089984 + ], + [ + -1.5358083337751396, + 53.795558736569106 + ], + [ + -1.5358006662446817, + 53.79562846457507 + ], + [ + -1.5358310531733712, + 53.795629630095945 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320943573, + "osm_way_id": 4372149, + "src_i": 4365671272, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358460441393935, + 53.795477599768496 + ], + [ + -1.5358462100966652, + 53.79547319848827 + ], + [ + -1.5358157653113123, + 53.79547279739081 + ], + [ + -1.5358155993540406, + 53.79547719867104 + ], + [ + -1.5358460441393935, + 53.795477599768496 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26660637, + "osm_way_id": 4372149, + "src_i": 6264671916, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5357508592701243, + 53.796357233483484 + ], + [ + -1.5358261140413605, + 53.79567450444838 + ], + [ + -1.535795727112671, + 53.795673335330214 + ], + [ + -1.5357204723414348, + 53.79635606436532 + ], + [ + -1.5357508592701243, + 53.796357233483484 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4365671272, + "osm_way_id": 4372149, + "src_i": 8740550411, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -284,6 +572,42 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5329398338946125, + 53.79725493277208 + ], + [ + -1.5332436240092302, + 53.79722297177943 + ], + [ + -1.5332331093219105, + 53.7971881014812 + ], + [ + -1.5329293192072926, + 53.79722006247385 + ], + [ + -1.5329398338946125, + 53.79725493277208 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5506378793, + "osm_way_id": 4372312, + "src_i": 26661452, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -433,37 +757,73 @@ "coordinates": [ [ [ - -1.5375082660818413, - 53.79903931465887 + -1.5375082234506157, + 53.79903927778668 ], [ - -1.5373140519202675, - 53.79986732101504 + -1.5374166713707969, + 53.79942574508437 ], [ - -1.5373734493980724, - 53.79987218094932 + -1.5374760566682517, + 53.79943065358202 ], [ - -1.5375676635596465, - 53.79904417459315 + -1.5375676087480705, + 53.79904418628433 ], [ - -1.5375082660818413, - 53.79903931465887 + -1.5375082234506157, + 53.79903927778668 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298424, + "dst_i": 9258530380, "osm_way_id": 5949167, "src_i": 26298429, "type": "road" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5374062084499656, + 53.79947034964031 + ], + [ + -1.5373139773156224, + 53.79986731471979 + ], + [ + -1.53737338392869, + 53.799872129687984 + ], + [ + -1.537465615063033, + 53.7994751646085 + ], + [ + -1.5374062084499656, + 53.79947034964031 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26298424, + "osm_way_id": 5949167, + "src_i": 9258530380, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -505,8 +865,8 @@ "coordinates": [ [ [ - -1.5327612653928848, - 53.800206901278415 + -1.5327603138030246, + 53.80020753260222 ], [ -1.5327485217014765, @@ -517,12 +877,12 @@ 53.800262457773584 ], [ - -1.532850839688338, - 53.80025400235129 + -1.5328498880984778, + 53.800254633675095 ], [ - -1.5327612653928848, - 53.800206901278415 + -1.5327603138030246, + 53.80020753260222 ] ] ], @@ -601,7 +961,7 @@ "type": "Polygon" }, "properties": { - "dst_i": -7, + "dst_i": -9, "osm_way_id": 6072858, "src_i": 26298441, "type": "road" @@ -889,45 +1249,109 @@ "coordinates": [ [ [ - -1.5389015854777641, - 53.79649781994275 + -1.5386833608008363, + 53.79669858271257 ], [ - -1.537977276556899, - 53.79645359220259 + -1.5388964682081316, + 53.796703144072055 ], [ - -1.5377267998351558, - 53.79644661526512 + -1.538899224012367, + 53.796658206767106 ], [ - -1.5377239739939068, - 53.79648199457941 + -1.5386861166050716, + 53.79665364540762 ], [ - -1.5379734032055319, - 53.79648894273859 + -1.5386833608008363, + 53.79669858271257 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 250093012, + "osm_way_id": 23150504, + "src_i": 9319419244, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5389014240881238, + 53.79649858256752 + ], + [ + -1.5386100655434403, + 53.796485167386244 + ], + [ + -1.5386054065594845, + 53.79652047835209 ], [ - -1.538896743788555, - 53.79653312371403 + -1.5388967651041678, + 53.79653389353337 ], [ - -1.5389015854777641, - 53.79649781994275 + -1.5389014240881238, + 53.79649858256752 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419230, + "dst_i": 320959868, "osm_way_id": 23161684, "src_i": -2, "type": "road" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5385339292193576, + 53.796481784138145 + ], + [ + -1.5377266780316536, + 53.79644721781063 + ], + [ + -1.5377223418269785, + 53.796482543165624 + ], + [ + -1.5385295930146825, + 53.79651710949314 + ], + [ + -1.5385339292193576, + 53.796481784138145 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9319419230, + "osm_way_id": 23161684, + "src_i": 320959868, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -969,12 +1393,8 @@ "coordinates": [ [ [ - -1.5356053467163262, - 53.79546176271398 - ], - [ - -1.5358136215696752, - 53.79547267508306 + -1.5358535259195107, + 53.79547331540009 ], [ -1.5363634943446973, @@ -993,23 +1413,55 @@ 53.795424192652106 ], [ - -1.5358192306209473, - 53.79541539728623 + -1.5358561568751565, + 53.79541598903988 + ], + [ + -1.5358535259195107, + 53.79547331540009 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320943570, + "osm_way_id": 23162897, + "src_i": 26660637, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5356053467163262, + 53.795461763613304 + ], + [ + -1.5357738877447424, + 53.79547059405273 + ], + [ + -1.5357824657563786, + 53.795413470939216 ], [ -1.5356139247279623, - 53.79540463960047 + 53.79540464049979 ], [ -1.5356053467163262, - 53.79546176271398 + 53.795461763613304 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943570, + "dst_i": 26660637, "osm_way_id": 23162897, "src_i": 320943572, "type": "road" @@ -1021,37 +1473,73 @@ "coordinates": [ [ [ - -1.5367812133650156, - 53.795470240619316 + -1.5367826186729212, + 53.79546978196527 ], [ - -1.536912377466265, - 53.79543171457851 + -1.5368130939091498, + 53.795460226672574 ], [ - -1.536858978810939, - 53.79536828542149 + -1.5367568633223996, + 53.79539765726707 ], [ - -1.5367278147096897, - 53.79540681146229 + -1.5367263880861712, + 53.79540721255975 ], [ - -1.5367812133650156, - 53.795470240619316 + -1.5367826186729212, + 53.79546978196527 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320951154, + "dst_i": 7924241274, "osm_way_id": 23162898, "src_i": 320943570, "type": "road" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368802152515324, + 53.79543926708185 + ], + [ + -1.5369475756332878, + 53.79541831918232 + ], + [ + -1.536891704366869, + 53.795355638260915 + ], + [ + -1.5368243439851135, + 53.79537658616046 + ], + [ + -1.5368802152515324, + 53.79543926708185 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320951154, + "osm_way_id": 23162898, + "src_i": 7924241274, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1165,24 +1653,60 @@ "coordinates": [ [ [ - -1.537726798312612, - 53.79644661526512 + -1.5390396467023204, + 53.79878645148703 + ], + [ + -1.5390590987216077, + 53.79874297827775 + ], + [ + -1.5390296588151473, + 53.79873838274405 + ], + [ + -1.53901020679586, + 53.79878185595333 + ], + [ + -1.5390396467023204, + 53.79878645148703 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26109188, + "osm_way_id": 27478661, + "src_i": 26109193, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53772667650911, + 53.79644721870995 ], [ -1.5377325215546676, - 53.796418072594115 + 53.796418073493435 ], [ -1.5376569242110816, - 53.79641278458273 + 53.7964127836834 ], [ - -1.5376512009690262, - 53.796441327253724 + -1.537651079165524, + 53.79644192889992 ], [ - -1.537726798312612, - 53.79644661526512 + -1.53772667650911, + 53.79644721870995 ] ] ], @@ -1201,12 +1725,44 @@ "coordinates": [ [ [ - -1.5347458509614789, - 53.796526576652305 + -1.5347493939208465, + 53.79652502532243 ], [ - -1.5346010920668498, - 53.796590024695085 + -1.5346365962651718, + 53.79657446463164 + ], + [ + -1.5346723273225165, + 53.79660290837725 + ], + [ + -1.534785124978191, + 53.79655346906805 + ], + [ + -1.5347493939208465, + 53.79652502532243 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 301689312, + "osm_way_id": 27478791, + "src_i": 643911, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534571002034197, + 53.79661400780524 ], [ -1.5345263701859355, @@ -1233,16 +1789,12 @@ 53.796665973309004 ], [ - -1.534643969944681, - 53.7966153388013 - ], - [ - -1.5347815850639108, - 53.79655502039792 + -1.5346191783643697, + 53.796635096898285 ], [ - -1.5347458509614789, - 53.796526576652305 + -1.534571002034197, + 53.79661400780524 ] ] ], @@ -1251,7 +1803,7 @@ "properties": { "dst_i": 301689321, "osm_way_id": 27478791, - "src_i": 643911, + "src_i": 301689312, "type": "road" }, "type": "Feature" @@ -1261,33 +1813,33 @@ "coordinates": [ [ [ - -1.5363414920645846, - 53.799880735296995 + -1.5376052977967114, + 53.79775671289228 ], [ - -1.5368611286427514, - 53.79990187475205 + -1.5376142229483287, + 53.79764500545032 ], [ - -1.5368693686496693, - 53.79983120425698 + -1.5375838055687638, + 53.797644158289316 ], [ - -1.5363497320715025, - 53.799810064801925 + -1.5375748804171465, + 53.797755865731276 ], [ - -1.5363414920645846, - 53.799880735296995 + -1.5376052977967114, + 53.79775671289228 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298425, - "osm_way_id": 27767549, - "src_i": 9791722, + "dst_i": 8481640857, + "osm_way_id": 27478792, + "src_i": 301689323, "type": "road" }, "type": "Feature" @@ -1297,33 +1849,33 @@ "coordinates": [ [ [ - -1.5373702840295613, - 53.799945492752116 + -1.537631537316154, + 53.79742334874026 ], [ - -1.5385681986346769, - 53.80011013786456 + -1.5376393159923076, + 53.79730757906234 ], [ - -1.5385953790861733, - 53.80004114370507 + -1.53760888947748, + 53.79730686500094 ], [ - -1.5373974644810577, - 53.79987649859263 + -1.5376011108013263, + 53.79742263467886 ], [ - -1.5373702840295613, - 53.799945492752116 + -1.537631537316154, + 53.79742334874026 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298426, - "osm_way_id": 27767549, - "src_i": 26298424, + "dst_i": 6001482094, + "osm_way_id": 27478792, + "src_i": 5071469699, "type": "road" }, "type": "Feature" @@ -1333,33 +1885,33 @@ "coordinates": [ [ [ - -1.53693270342568, - 53.79990636866241 + -1.5376791975039865, + 53.796731554542774 ], [ - -1.5372969141675203, - 53.79993743213203 + -1.5376806698038183, + 53.7967184217485 ], [ - -1.5373140519202675, - 53.79986732101504 + -1.5376502859202166, + 53.79671723284526 ], [ - -1.536949841178427, - 53.799836257545415 + -1.5376488136203847, + 53.79673036563953 ], [ - -1.53693270342568, - 53.79990636866241 + -1.5376791975039865, + 53.796731554542774 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298424, - "osm_way_id": 27767549, - "src_i": 26298425, + "dst_i": 4457813299, + "osm_way_id": 27478792, + "src_i": 5071469703, "type": "road" }, "type": "Feature" @@ -1369,41 +1921,33 @@ "coordinates": [ [ [ - -1.5348198953104126, - 53.797200269303325 - ], - [ - -1.5348283545636343, - 53.79713453878216 - ], - [ - -1.5348226130510536, - 53.79679575531778 + -1.5376486628885508, + 53.79716916176694 ], [ - -1.5347669275349756, - 53.79679608446951 + -1.5376527905047288, + 53.797108792102215 ], [ - -1.534772644686856, - 53.79713346139481 + -1.5376223639899012, + 53.79710806545031 ], [ - -1.5347643681388874, - 53.79719777638367 + -1.5376182363737234, + 53.79716843511503 ], [ - -1.5348198953104126, - 53.797200269303325 + -1.5376486628885508, + 53.79716916176694 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579517, - "osm_way_id": 29053005, - "src_i": 319558919, + "dst_i": 6001482097, + "osm_way_id": 27478792, + "src_i": 6001482092, "type": "road" }, "type": "Feature" @@ -1413,49 +1957,33 @@ "coordinates": [ [ [ - -1.535028323940683, - 53.797639979141536 + -1.537642356512229, + 53.797262665139755 ], [ - -1.5350056182453455, - 53.79755408942594 + -1.5376423960983672, + 53.79726209496982 ], [ - -1.5349042076945747, - 53.797459445713244 + -1.5376119695835397, + 53.797261357526054 ], [ - -1.5347907005335002, - 53.797332495668385 + -1.5376119299974014, + 53.79726192769599 ], [ - -1.534741458422684, - 53.797347856082425 - ], - [ - -1.5348559917782636, - 53.797475953661724 - ], - [ - -1.53495238097966, - 53.797565910109896 - ], - [ - -1.5349733022536916, - 53.79764505311437 - ], - [ - -1.535028323940683, - 53.797639979141536 + -1.537642356512229, + 53.797262665139755 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 319558919, - "osm_way_id": 29053005, - "src_i": 5452444899, + "dst_i": 8481640864, + "osm_way_id": 27478792, + "src_i": 6001482094, "type": "road" }, "type": "Feature" @@ -1465,33 +1993,33 @@ "coordinates": [ [ [ - -1.5350283224181394, - 53.7976399773429 + -1.5376558645206133, + 53.79706386109252 ], [ - -1.5348462977420392, - 53.797459852206636 + -1.5376561263981428, + 53.797060025485614 ], [ - -1.5347629293350187, - 53.79748924563593 + -1.5376256998833153, + 53.797059300632355 ], [ - -1.5349449540111186, - 53.79766937077219 + -1.5376254380057857, + 53.79706313623925 ], [ - -1.5350283224181394, - 53.7976399773429 + -1.5376558645206133, + 53.79706386109252 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444905, - "osm_way_id": 29053006, - "src_i": 5452444899, + "dst_i": 6979945558, + "osm_way_id": 27478792, + "src_i": 6001482097, "type": "road" }, "type": "Feature" @@ -1501,33 +2029,33 @@ "coordinates": [ [ [ - -1.5348099774602533, - 53.797422088790604 + -1.5376576291488502, + 53.797037544242635 ], [ - -1.5345021145410336, - 53.79708531171287 + -1.53766042301668, + 53.796995775247915 ], [ - -1.5344166846097398, - 53.79711255936067 + -1.5376299965018523, + 53.79699506478379 ], [ - -1.5347245475289593, - 53.79744933643841 + -1.5376272026340225, + 53.79703683377852 ], [ - -1.5348099774602533, - 53.797422088790604 + -1.5376576291488502, + 53.797037544242635 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661432, - "osm_way_id": 29053006, - "src_i": 5452444905, + "dst_i": 9319419240, + "osm_way_id": 27478792, + "src_i": 6979945558, "type": "road" }, "type": "Feature" @@ -1537,33 +2065,33 @@ "coordinates": [ [ [ - -1.5342160270429042, - 53.79536351541938 + -1.5376177978811156, + 53.79760008343384 ], [ - -1.5341512686884624, - 53.79538715498866 + -1.5376282379637904, + 53.79746840025906 ], [ - -1.534191290274169, - 53.79542540493771 + -1.5375978205842256, + 53.797467558493985 ], [ - -1.5342560486286105, - 53.79540176536843 + -1.5375873805015507, + 53.79759924166876 ], [ - -1.5342160270429042, - 53.79536351541938 + -1.5376177978811156, + 53.79760008343384 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943620, - "osm_way_id": 29184666, - "src_i": -4, + "dst_i": 5071469699, + "osm_way_id": 27478792, + "src_i": 8481640857, "type": "road" }, "type": "Feature" @@ -1573,49 +2101,33 @@ "coordinates": [ [ [ - -1.5340598049161827, - 53.79540927830162 - ], - [ - -1.533965991858856, - 53.79542678179918 - ], - [ - -1.53383033777601, - 53.79542136788276 + -1.5376454244379385, + 53.79721714147708 ], [ - -1.5335323089670423, - 53.79548046680596 + -1.5376456284588045, + 53.79721407389088 ], [ - -1.5335565387286998, - 53.79552309465288 + -1.537615201943977, + 53.79721336702405 ], [ - -1.5338402617163447, - 53.79546683219021 + -1.5376149979231108, + 53.79721643461025 ], [ - -1.5339752093388783, - 53.79547221732833 - ], - [ - -1.5340827344254553, - 53.79545215615995 - ], - [ - -1.5340598049161827, - 53.79540927830162 + -1.5376454244379385, + 53.79721714147708 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342626328, - "osm_way_id": 29184666, - "src_i": 320943620, + "dst_i": 6001482092, + "osm_way_id": 27478792, + "src_i": 8481640864, "type": "road" }, "type": "Feature" @@ -1625,33 +2137,33 @@ "coordinates": [ [ [ - -1.5333278678789222, - 53.79552187876999 + -1.537663439175901, + 53.796950848734824 ], [ - -1.5331895158485045, - 53.795552638268894 + -1.5376752130069238, + 53.796775979234376 ], [ - -1.533216333934582, - 53.79559472112688 + -1.5376447864920961, + 53.79677526517297 ], [ - -1.5333546859649998, - 53.79556396162798 + -1.5376330126610733, + 53.796950134673416 ], [ - -1.5333278678789222, - 53.79552187876999 + -1.537663439175901, + 53.796950848734824 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6309354609, - "osm_way_id": 29184666, - "src_i": 342626328, + "dst_i": 5071469703, + "osm_way_id": 27478792, + "src_i": 9319419240, "type": "road" }, "type": "Feature" @@ -1661,41 +2173,33 @@ "coordinates": [ [ [ - -1.5375996065280753, - 53.795725603905375 - ], - [ - -1.5376161306956806, - 53.79572280341771 - ], - [ - -1.5378071399026052, - 53.79549154824752 + -1.5363414920645846, + 53.799880735296995 ], [ - -1.5377532479430958, - 53.79547601876101 + -1.5368611286427514, + 53.79990187475205 ], [ - -1.5375739410076366, - 53.795693106017694 + -1.5368693686496693, + 53.79983120425698 ], [ - -1.537583068657576, - 53.795691559184434 + -1.5363497320715025, + 53.799810064801925 ], [ - -1.5375996065280753, - 53.795725603905375 + -1.5363414920645846, + 53.799880735296995 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320951155, - "osm_way_id": 29185651, - "src_i": 320951161, + "dst_i": 26298425, + "osm_way_id": 27767549, + "src_i": 9791722, "type": "road" }, "type": "Feature" @@ -1705,33 +2209,33 @@ "coordinates": [ [ [ - -1.5384503141602452, - 53.79629375486377 + -1.5374314963795477, + 53.79995390590629 ], [ - -1.5378808051381387, - 53.7961776425443 + -1.5385681986346769, + 53.80011013786456 ], [ - -1.5378609328967692, - 53.79621164589645 + -1.5385953790861733, + 53.80004114370507 ], [ - -1.5384304419188757, - 53.796327758215924 + -1.537458676831044, + 53.79988491174681 ], [ - -1.5384503141602452, - 53.79629375486377 + -1.5374314963795477, + 53.79995390590629 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320959867, - "osm_way_id": 29186594, - "src_i": 320959866, + "dst_i": 26298426, + "osm_way_id": 27767549, + "src_i": 26298424, "type": "road" }, "type": "Feature" @@ -1741,33 +2245,33 @@ "coordinates": [ [ [ - -1.5340827344254553, - 53.795452154361314 + -1.53693270342568, + 53.79990636866241 ], [ - -1.5340835352834818, - 53.79545908273542 + -1.5372968395628752, + 53.79993742493746 ], [ - -1.5341803995185364, - 53.79545517608211 + -1.5373139773156224, + 53.79986731382047 ], [ - -1.53417959866051, - 53.795448247708 + -1.536949841178427, + 53.799836257545415 ], [ - -1.5340827344254553, - 53.795452154361314 + -1.53693270342568, + 53.79990636866241 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 682264890, - "osm_way_id": 29186597, - "src_i": 320943620, + "dst_i": 26298424, + "osm_way_id": 27767549, + "src_i": 26298425, "type": "road" }, "type": "Feature" @@ -1777,41 +2281,41 @@ "coordinates": [ [ [ - -1.5370675596955872, - 53.796136263855175 + -1.5348198953104126, + 53.797200269303325 ], [ - -1.536423540426151, - 53.7960500225048 + -1.5348283545636343, + 53.79713453878216 ], [ - -1.5363968654591886, - 53.79611634567894 + -1.53482277291815, + 53.79680521798034 ], [ - -1.536456116772791, - 53.79612466080705 + -1.534767087402072, + 53.796805547132074 ], [ - -1.5364688604641994, - 53.7960929777048 + -1.534772644686856, + 53.79713346139481 ], [ - -1.5370540943184285, - 53.79617134639332 + -1.5347643681388874, + 53.79719777638367 ], [ - -1.5370675596955872, - 53.796136263855175 + -1.5348198953104126, + 53.797200269303325 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320998081, - "osm_way_id": 29190374, - "src_i": 320998072, + "dst_i": 342579517, + "osm_way_id": 29053005, + "src_i": 319558919, "type": "road" }, "type": "Feature" @@ -1821,49 +2325,49 @@ "coordinates": [ [ [ - -1.5389361928978016, - 53.79595735550113 + -1.535028323940683, + 53.797639979141536 ], [ - -1.5387148074199941, - 53.79587704967374 + -1.5350056182453455, + 53.79755408942594 ], [ - -1.5388242981105864, - 53.79575642096087 + -1.5349042076945747, + 53.797459445713244 ], [ - -1.5387541195003007, - 53.79572827489072 + -1.5347907005335002, + 53.797332495668385 ], [ - -1.538719907941645, - 53.79575803524325 + -1.534741458422684, + 53.797347856082425 ], [ - -1.5387447025670438, - 53.79576797904291 + -1.5348559917782636, + 53.797475953661724 ], [ - -1.5386339938414302, - 53.79588994954371 + -1.53495238097966, + 53.797565910109896 ], [ - -1.538904323011474, - 53.7959880097794 + -1.5349733022536916, + 53.79764505311437 ], [ - -1.5389361928978016, - 53.79595735550113 + -1.535028323940683, + 53.797639979141536 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6665254444, - "osm_way_id": 29190376, - "src_i": 2142487689, + "dst_i": 319558919, + "osm_way_id": 29053005, + "src_i": 5452444899, "type": "road" }, "type": "Feature" @@ -1873,41 +2377,33 @@ "coordinates": [ [ [ - -1.5329285092140037, - 53.79721383377199 - ], - [ - -1.532940177989506, - 53.79712828939591 - ], - [ - -1.5328981770968901, - 53.796888800036555 + -1.5350283224181394, + 53.7976399773429 ], [ - -1.5328375981251148, - 53.796892507040454 + -1.5348462977420392, + 53.797459852206636 ], [ - -1.532879023496183, - 53.79712871027845 + -1.5347629293350187, + 53.79748924563593 ], [ - -1.5328678053936384, - 53.79721094515081 + -1.5349449540111186, + 53.79766937077219 ], [ - -1.5329285092140037, - 53.79721383377199 + -1.5350283224181394, + 53.7976399773429 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342529328, - "osm_way_id": 30831325, - "src_i": 26661452, + "dst_i": 5452444905, + "osm_way_id": 29053006, + "src_i": 5452444899, "type": "road" }, "type": "Feature" @@ -1917,57 +2413,77 @@ "coordinates": [ [ [ - -1.5345075835182784, - 53.796836600709156 + -1.5348099774602533, + 53.797422088790604 ], [ - -1.534560140206896, - 53.79684588800399 + -1.5345021145410336, + 53.79708531171287 ], [ - -1.534675550547691, - 53.79683984186444 + -1.5344166846097398, + 53.79711255936067 ], [ - -1.5347524709818186, - 53.79680933867221 + -1.5347245475289593, + 53.79744933643841 ], [ - -1.5347669260124317, - 53.79679608446951 + -1.5348099774602533, + 53.797422088790604 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26661432, + "osm_way_id": 29053006, + "src_i": 5452444905, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5357725905374449, + 53.79551842087819 ], [ - -1.534734928232427, - 53.79678390945281 + -1.5356942647954117, + 53.79551864211132 ], [ - -1.5347247302342126, - 53.796793260599486 + -1.5355958643136867, + 53.79556343012887 ], [ - -1.534662450581039, - 53.79681795777105 + -1.535614451528109, + 53.795577677182685 ], [ - -1.5345640592345766, - 53.79682311178351 + -1.5357047003104551, + 53.79553659976632 ], [ - -1.5345184940669803, - 53.79681506015664 + -1.5357727367016474, + 53.79553640731149 ], [ - -1.5345075835182784, - 53.796836600709156 + -1.5357725905374449, + 53.79551842087819 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579517, - "osm_way_id": 30831662, - "src_i": 301689321, + "dst_i": 320943575, + "osm_way_id": 29184659, + "src_i": 320943573, "type": "road" }, "type": "Feature" @@ -1977,49 +2493,65 @@ "coordinates": [ [ [ - -1.5356282092336726, - 53.797792673168374 + -1.5355477199569332, + 53.7956104295784 ], [ - -1.5358045898399935, - 53.79781050222038 + -1.5355401118056824, + 53.79563599639401 ], [ - -1.5358901689805775, - 53.79781258864664 + -1.5354398477303752, + 53.795686308045234 ], [ - -1.53589377436424, - 53.797814167855485 + -1.53532155064658, + 53.79572625321562 ], [ - -1.5359164389508955, - 53.79779610587917 + -1.5350331367015604, + 53.79578521364329 ], [ - -1.53590343033687, - 53.797790411374386 + -1.5349053754856512, + 53.79579792735367 ], [ - -1.5358086093555632, - 53.79778809831907 + -1.5349104333760764, + 53.79581566377554 ], [ - -1.5356346282782338, - 53.79777051208391 + -1.5350407006990414, + 53.79580270005374 ], [ - -1.5356282092336726, - 53.797792673168374 + -1.5353341999402745, + 53.79574270001023 + ], + [ + -1.5354573996150296, + 53.795701100087975 + ], + [ + -1.5355681996932695, + 53.795645500425366 + ], + [ + -1.5355777110242408, + 53.79561354303 + ], + [ + -1.5355477199569332, + 53.7956104295784 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579667, - "osm_way_id": 30831663, - "src_i": 1601683577, + "dst_i": 320943615, + "osm_way_id": 29184659, + "src_i": 320943575, "type": "road" }, "type": "Feature" @@ -2029,33 +2561,49 @@ "coordinates": [ [ [ - -1.5352519932341553, - 53.79771517322458 + -1.5347853366117759, + 53.79582391595114 + ], + [ + -1.534619967042046, + 53.79587000708578 + ], + [ + -1.5342496798279939, + 53.79592047971558 + ], + [ + -1.5341657663503014, + 53.795943018515146 + ], + [ + -1.53417837301277, + 53.795959391565376 ], [ - -1.5352598480374977, - 53.79771758880258 + -1.5342595032804394, + 53.795937599202794 ], [ - -1.53527742732794, - 53.79769764724398 + -1.5346300006055325, + 53.79588709959335 ], [ - -1.5352695725245975, - 53.79769523166598 + -1.5347983300003638, + 53.79584018288141 ], [ - -1.5352519932341553, - 53.79771517322458 + -1.5347853366117759, + 53.79582391595114 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6309354662, - "osm_way_id": 30831663, - "src_i": 5452444896, + "dst_i": 26661442, + "osm_way_id": 29184659, + "src_i": 320943615, "type": "road" }, "type": "Feature" @@ -2065,33 +2613,49 @@ "coordinates": [ [ [ - -1.535332112532757, - 53.79773599521909 + -1.53555013775645, + 53.795570862123114 + ], + [ + -1.5350206274818934, + 53.79553332173885 ], [ - -1.535506810728205, - 53.79777183408676 + -1.5346753845904193, + 53.795550819840486 ], [ - -1.535519298632259, - 53.79775059570632 + -1.5346036697334633, + 53.7955751123173 ], [ - -1.535344600436811, - 53.79771475683865 + -1.5346188190440386, + 53.79559071554819 ], [ - -1.535332112532757, - 53.79773599521909 + -1.5346846995132435, + 53.79556839978039 + ], + [ + -1.5350201006817468, + 53.79555139990296 + ], + [ + -1.5355465080120871, + 53.795588720852734 + ], + [ + -1.53555013775645, + 53.795570862123114 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1601683577, - "osm_way_id": 30831663, - "src_i": 6309354662, + "dst_i": 320943606, + "osm_way_id": 29184662, + "src_i": 320943575, "type": "road" }, "type": "Feature" @@ -2101,33 +2665,65 @@ "coordinates": [ [ [ - -1.5325796259203603, - 53.79634712780594 + -1.5345370812814025, + 53.79560283031033 ], [ - -1.5326517503415922, - 53.796533093137086 + -1.5344734100232171, + 53.795634966670704 ], [ - -1.5327686512527443, - 53.79651727586764 + -1.5344412462859407, + 53.795716698822254 ], [ - -1.5326965268315123, - 53.796331310536495 + -1.5345066212706118, + 53.7957661399301 ], [ - -1.5325796259203603, - 53.79634712780594 + -1.5346365049125452, + 53.7957999004654 + ], + [ + -1.5347853366117759, + 53.79582391685046 + ], + [ + -1.5347933604174775, + 53.79580656533826 + ], + [ + -1.534646699865672, + 53.795782899688646 + ], + [ + -1.5345258997199085, + 53.795751498973395 + ], + [ + -1.534474200223437, + 53.795712400064694 + ], + [ + -1.5345008005857546, + 53.79564479985379 + ], + [ + -1.5345568621701455, + 53.79561650539557 + ], + [ + -1.5345370812814025, + 53.79560283031033 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7241259895, - "osm_way_id": 30831665, - "src_i": 342579565, + "dst_i": 320943615, + "osm_way_id": 29184662, + "src_i": 320943606, "type": "road" }, "type": "Feature" @@ -2137,33 +2733,33 @@ "coordinates": [ [ [ - -1.5370034057910247, - 53.79916861642988 + -1.5345862183366983, + 53.79557310862863 ], [ - -1.536472146113669, - 53.79912460542624 + -1.5344783643806656, + 53.795492060860866 ], [ - -1.536463817799212, - 53.79915968076982 + -1.5344544239023254, + 53.79550317647665 ], [ - -1.5369950774765677, - 53.79920369177346 + -1.534562277858358, + 53.79558422424441 ], [ - -1.5370034057910247, - 53.79916861642988 + -1.5345862183366983, + 53.79557310862863 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579578, - "osm_way_id": 30831666, - "src_i": 342579576, + "dst_i": 6665254450, + "osm_way_id": 29184665, + "src_i": 320943606, "type": "road" }, "type": "Feature" @@ -2173,41 +2769,33 @@ "coordinates": [ [ [ - -1.5362904076757988, - 53.799568050147336 - ], - [ - -1.5360472863630394, - 53.79954814995754 - ], - [ - -1.535776471501531, - 53.79960347712568 + -1.534215054137431, + 53.79535858353937 ], [ - -1.5358156739586857, - 53.79967042442905 + -1.5341502957829893, + 53.79538222310865 ], [ - -1.536059314458873, - 53.79962064967287 + -1.5341743093434308, + 53.79540517379754 ], [ - -1.5362739459324883, - 53.79963821702227 + -1.5342390676978723, + 53.795381534228255 ], [ - -1.5362904076757988, - 53.799568050147336 + -1.534215054137431, + 53.79535858353937 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579586, - "osm_way_id": 30831667, - "src_i": 342579580, + "dst_i": 320943620, + "osm_way_id": 29184666, + "src_i": -4, "type": "road" }, "type": "Feature" @@ -2217,65 +2805,49 @@ "coordinates": [ [ [ - -1.5357153352787334, - 53.799602155122834 - ], - [ - -1.5356880284561036, - 53.799598577621246 - ], - [ - -1.5356207183182926, - 53.79953370505295 - ], - [ - -1.535525142155273, - 53.7994743093536 - ], - [ - -1.5354301491265194, - 53.79946496630082 + -1.5340663077006518, + 53.7954033499732 ], [ - -1.535182050618155, - 53.79958216859815 + -1.5339650737649588, + 53.79542223752681 ], [ - -1.5352569567268664, - 53.799637489471046 + -1.5338293466000117, + 53.79541682181174 ], [ - -1.535463252273306, - 53.79954003447883 + -1.5333984469182211, + 53.79550226816176 ], [ - -1.5354658573457074, - 53.79954029078551 + -1.533412984166198, + 53.795527844869916 ], [ - -1.535525081253522, - 53.79957709552464 + -1.5338352997461773, + 53.795444100036484 ], [ - -1.5356123702107667, - 53.79966122256978 + -1.5339706005988671, + 53.79544949956376 ], [ - -1.5356893637269955, - 53.79967131116022 + -1.5340800654062152, + 53.79542907596875 ], [ - -1.5357153352787334, - 53.799602155122834 + -1.5340663077006518, + 53.7954033499732 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579596, - "osm_way_id": 30831667, - "src_i": 342579586, + "dst_i": 342626328, + "osm_way_id": 29184666, + "src_i": 320943620, "type": "road" }, "type": "Feature" @@ -2285,49 +2857,33 @@ "coordinates": [ [ [ - -1.5356893622044516, - 53.79967131205954 - ], - [ - -1.5356381986433896, - 53.79981686457303 - ], - [ - -1.535576905598583, - 53.7998807272031 - ], - [ - -1.535504590859379, - 53.7999279083156 - ], - [ - -1.5355934982806583, - 53.799975450056095 + -1.533325186679332, + 53.79551767084392 ], [ - -1.5356746955402536, - 53.79992247191614 + -1.5331868346489141, + 53.795548430342826 ], [ - -1.5357518017247218, - 53.79984213551182 + -1.5332029248915433, + 53.79557367969789 ], [ - -1.5358067868706629, - 53.79968571199804 + -1.533341276921961, + 53.79554292019898 ], [ - -1.5356893622044516, - 53.79967131205954 + -1.533325186679332, + 53.79551767084392 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579609, - "osm_way_id": 30831668, - "src_i": 342579586, + "dst_i": 6309354609, + "osm_way_id": 29184666, + "src_i": 342626328, "type": "road" }, "type": "Feature" @@ -2337,33 +2893,41 @@ "coordinates": [ [ [ - -1.5389064393473233, - 53.79983079056902 + -1.5385326578953042, + 53.7954501947394 ], [ - -1.5387628756495588, - 53.79981417919854 + -1.538934740391039, + 53.79553213193629 ], [ - -1.5387511672879184, - 53.79984948117118 + -1.538947304422282, + 53.795546716235734 ], [ - -1.5388947309856826, - 53.79986609254165 + -1.5389744422425524, + 53.79553855938823 ], [ - -1.5389064393473233, - 53.79983079056902 + -1.5389562996109127, + 53.7955174999728 + ], + [ + -1.538542587925814, + 53.795433192164005 + ], + [ + -1.5385326578953042, + 53.7954501947394 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579616, - "osm_way_id": 30831669, - "src_i": 1675168086, + "dst_i": 26299406, + "osm_way_id": 29185648, + "src_i": 317087692, "type": "road" }, "type": "Feature" @@ -2373,33 +2937,41 @@ "coordinates": [ [ [ - -1.5370226111582201, - 53.795609442123215 + -1.5375996065280753, + 53.795725603905375 ], [ - -1.5370225411212064, - 53.79560952576013 + -1.5376161306956806, + 53.79572280341771 ], [ - -1.5370771304057655, - 53.795625474330535 + -1.5378071399026052, + 53.79549154824752 ], [ - -1.5370772004427793, - 53.795625390693615 + -1.5377532479430958, + 53.79547601876101 ], [ - -1.5370226111582201, - 53.795609442123215 + -1.5375739410076366, + 53.795693106017694 + ], + [ + -1.537583068657576, + 53.795691559184434 + ], + [ + -1.5375996065280753, + 53.795725603905375 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6047609624, - "osm_way_id": 30831670, - "src_i": 342579620, + "dst_i": 320951155, + "osm_way_id": 29185651, + "src_i": 320951161, "type": "road" }, "type": "Feature" @@ -2409,49 +2981,33 @@ "coordinates": [ [ [ - -1.53700637931902, - 53.79563132711593 - ], - [ - -1.5369292563865702, - 53.795735883152005 - ], - [ - -1.5367696587802966, - 53.7957583320194 - ], - [ - -1.5363132762833203, - 53.7957996846282 - ], - [ - -1.536322512033868, - 53.79583524200819 + -1.5384503141602452, + 53.79629375486377 ], [ - -1.5367813397361492, - 53.79579366816626 + -1.5378808051381387, + 53.7961776425443 ], [ - -1.5369729442576903, - 53.79576671729461 + -1.5378609328967692, + 53.79621164589645 ], [ - -1.5370622109993006, - 53.795645696477486 + -1.5384304419188757, + 53.796327758215924 ], [ - -1.53700637931902, - 53.79563132711593 + -1.5384503141602452, + 53.79629375486377 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579626, - "osm_way_id": 30831670, - "src_i": 6047609624, + "dst_i": 320959867, + "osm_way_id": 29186594, + "src_i": 320959866, "type": "road" }, "type": "Feature" @@ -2461,49 +3017,33 @@ "coordinates": [ [ [ - -1.5367728606898583, - 53.79775619668165 - ], - [ - -1.536530065201467, - 53.79775565888729 - ], - [ - -1.5364534660240763, - 53.79777076209533 - ], - [ - -1.5364146472479532, - 53.797769893350605 + -1.5385366926363118, + 53.796529412213516 ], [ - -1.536410971827277, - 53.797827199925734 - ], - [ - -1.5364674490661188, - 53.797828464371996 + -1.5385270732047325, + 53.79665009668433 ], [ - -1.536545665185, - 53.79781304280409 + -1.5385574905842974, + 53.796650942046696 ], [ - -1.5367724983244395, - 53.797813544625576 + -1.5385671100158766, + 53.79653025757588 ], [ - -1.5367728606898583, - 53.79775619668165 + -1.5385366926363118, + 53.796529412213516 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579538, - "osm_way_id": 30831673, - "src_i": 26109191, + "dst_i": 320959869, + "osm_way_id": 29186596, + "src_i": 320959868, "type": "road" }, "type": "Feature" @@ -2513,33 +3053,33 @@ "coordinates": [ [ [ - -1.5363199693857614, - 53.79877209741394 + -1.5385252705129013, + 53.79667272361742 ], [ - -1.5363284377742457, - 53.79879941880612 + -1.5385241697137508, + 53.79669002386829 ], [ - -1.5363874211201436, - 53.798793040816875 + -1.538554599273666, + 53.79669070015818 ], [ - -1.5363789527316591, - 53.79876571942469 + -1.5385557000728163, + 53.79667339990731 ], [ - -1.5363199693857614, - 53.79877209741394 + -1.5385252705129013, + 53.79667272361742 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304911, - "osm_way_id": 30831675, - "src_i": 643946, + "dst_i": 5071469689, + "osm_way_id": 29186596, + "src_i": 320959869, "type": "road" }, "type": "Feature" @@ -2549,33 +3089,33 @@ "coordinates": [ [ [ - -1.536401227547108, - 53.79905942528994 + -1.5340816686448118, + 53.795442944408144 ], [ - -1.5363914025721188, - 53.79911945411175 + -1.5340835352834818, + 53.79545908363474 ], [ - -1.5364510893332413, - 53.799122862540855 + -1.5341803995185364, + 53.79545517518278 ], [ - -1.5364609143082304, - 53.79906283371905 + -1.5341785328798665, + 53.795439035956186 ], [ - -1.536401227547108, - 53.79905942528994 + -1.5340816686448118, + 53.795442944408144 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579578, - "osm_way_id": 30831675, - "src_i": 9791699, + "dst_i": 682264890, + "osm_way_id": 29186597, + "src_i": 320943620, "type": "road" }, "type": "Feature" @@ -2585,33 +3125,33 @@ "coordinates": [ [ [ - -1.536383052942049, - 53.79916510367946 + -1.536755057585481, + 53.7953877917084 ], [ - -1.5363795373884692, - 53.799182378749315 + -1.5367919670917083, + 53.79542711994413 ], [ - -1.5364390718952141, - 53.79918660556114 + -1.536818599427445, + 53.795418400121264 ], [ - -1.536442587448794, - 53.79916933049128 + -1.5367816899212177, + 53.795379071885534 ], [ - -1.536383052942049, - 53.79916510367946 + -1.536755057585481, + 53.7953877917084 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 800488938, - "osm_way_id": 30831675, - "src_i": 342579578, + "dst_i": 7924241274, + "osm_way_id": 29190372, + "src_i": 7924269285, "type": "road" }, "type": "Feature" @@ -2621,33 +3161,41 @@ "coordinates": [ [ [ - -1.536276767206106, - 53.79963844904726 + -1.5370675596955872, + 53.796136263855175 ], [ - -1.5362508839619071, - 53.79980523994119 + -1.536423540426151, + 53.7960500225048 ], [ - -1.5363105981288177, - 53.79980847210326 + -1.5363968654591886, + 53.79611634567894 ], [ - -1.5363364813730165, - 53.79964168120932 + -1.536456116772791, + 53.79612466080705 ], [ - -1.536276767206106, - 53.79963844904726 + -1.5364688604641994, + 53.7960929777048 + ], + [ + -1.5370540943184285, + 53.79617134639332 + ], + [ + -1.5370675596955872, + 53.796136263855175 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9791722, - "osm_way_id": 30831675, - "src_i": 342579580, + "dst_i": 320998081, + "osm_way_id": 29190374, + "src_i": 320998072, "type": "road" }, "type": "Feature" @@ -2657,33 +3205,49 @@ "coordinates": [ [ [ - -1.5363744353442745, - 53.79920447238466 + -1.5389361928978016, + 53.79595735550113 ], [ - -1.53633019326722, - 53.79939606027486 + -1.5387148074199941, + 53.79587704967374 ], [ - -1.5363896059704627, - 53.799400846464756 + -1.5388242981105864, + 53.79575642096087 ], [ - -1.5364338480475173, - 53.79920925857456 + -1.5387541195003007, + 53.79572827489072 ], [ - -1.5363744353442745, - 53.79920447238466 + -1.538719907941645, + 53.79575803524325 + ], + [ + -1.5387447025670438, + 53.79576797904291 + ], + [ + -1.5386339938414302, + 53.79588994954371 + ], + [ + -1.538904323011474, + 53.7959880097794 + ], + [ + -1.5389361928978016, + 53.79595735550113 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419287, - "osm_way_id": 30831675, - "src_i": 800488938, + "dst_i": 6665254444, + "osm_way_id": 29190376, + "src_i": 2142487689, "type": "road" }, "type": "Feature" @@ -2693,33 +3257,41 @@ "coordinates": [ [ [ - -1.536359132256778, - 53.7989115255469 + -1.5329285092140037, + 53.79721383377199 ], [ - -1.5363641216327333, - 53.79893177107622 + -1.532940177989506, + 53.79712828939591 ], [ - -1.5364234612538747, - 53.798926668325095 + -1.5328981770968901, + 53.796888800036555 ], [ - -1.5364184718779195, - 53.798906422795774 + -1.5328375981251148, + 53.796892507040454 ], [ - -1.536359132256778, - 53.7989115255469 + -1.532879023496183, + 53.79712871027845 + ], + [ + -1.5328678053936384, + 53.79721094515081 + ], + [ + -1.5329285092140037, + 53.79721383377199 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304920, - "osm_way_id": 30831675, - "src_i": 1675168064, + "dst_i": 342529328, + "osm_way_id": 30831325, + "src_i": 26661452, "type": "road" }, "type": "Feature" @@ -2729,33 +3301,57 @@ "coordinates": [ [ [ - -1.5363352937888708, - 53.79882153942111 + -1.5345096815836023, + 53.79684240493118 ], [ - -1.5363397685450297, - 53.79883792865913 + -1.5345592358158928, + 53.796851160726916 ], [ - -1.5363989680921437, - 53.79883228991229 + -1.5346785864999812, + 53.7968449086427 ], [ - -1.536394493335985, - 53.79881590067427 + -1.5347588915489236, + 53.79681306276322 ], [ - -1.5363352937888708, - 53.79882153942111 + -1.534767087402072, + 53.796805548031394 + ], + [ + -1.5347202722260351, + 53.7967877360665 + ], + [ + -1.5347183096671075, + 53.79678953650847 + ], + [ + -1.5346594146287487, + 53.79681289099278 + ], + [ + -1.5345649636255796, + 53.79681783906059 + ], + [ + -1.5345256408874666, + 53.796810890901405 + ], + [ + -1.5345096815836023, + 53.79684240493118 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1675168064, - "osm_way_id": 30831675, - "src_i": 2014304911, + "dst_i": 342579517, + "osm_way_id": 30831662, + "src_i": 301689321, "type": "road" }, "type": "Feature" @@ -2765,33 +3361,33 @@ "coordinates": [ [ [ - -1.5363805011586797, - 53.79898182911873 + -1.535627049055315, + 53.797797614940926 ], [ - -1.536384435411798, - 53.79899165240927 + -1.5356999910825548, + 53.79780455950282 ], [ - -1.5364427884245724, - 53.79898349915906 + -1.5357088522873334, + 53.797772084997504 ], [ - -1.5364388541714542, - 53.79897367586852 + -1.5356359102600936, + 53.79776514043561 ], [ - -1.5363805011586797, - 53.79898182911873 + -1.535627049055315, + 53.797797614940926 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9791699, - "osm_way_id": 30831675, - "src_i": 2014304920, + "dst_i": 8174077588, + "osm_way_id": 30831663, + "src_i": 1601683577, "type": "road" }, "type": "Feature" @@ -2801,33 +3397,33 @@ "coordinates": [ [ [ - -1.536313967518195, - 53.79946624693487 + -1.5352459061041372, + 53.797719170709385 ], [ - -1.5362904107208863, - 53.799568049248016 + -1.5352507584511526, + 53.79772066268402 ], [ - -1.536349823424129, - 53.79957284622977 + -1.5352764711704485, + 53.79769148509193 ], [ - -1.5363733802214377, - 53.79947104391663 + -1.535271618823433, + 53.79768999311729 ], [ - -1.536313967518195, - 53.79946624693487 + -1.5352459061041372, + 53.797719170709385 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579580, - "osm_way_id": 30831675, - "src_i": 9319419287, + "dst_i": 6309354662, + "osm_way_id": 30831663, + "src_i": 5452444896, "type": "road" }, "type": "Feature" @@ -2837,33 +3433,33 @@ "coordinates": [ [ [ - -1.5389089682925359, - 53.80009094903819 + -1.5353292212221257, + 53.797740912709955 ], [ - -1.5387198348595437, - 53.800068364373224 + -1.535475549859388, + 53.797770931167804 ], [ - -1.5387079529279126, - 53.80010308178677 + -1.5354938203847048, + 53.79773985780564 ], [ - -1.5388970863609048, - 53.80012566645175 + -1.5353474917474423, + 53.79770983934779 ], [ - -1.5389089682925359, - 53.80009094903819 + -1.5353292212221257, + 53.797740912709955 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298426, - "osm_way_id": 30831676, - "src_i": 30822588, + "dst_i": 1601683577, + "osm_way_id": 30831663, + "src_i": 6309354662, "type": "road" }, "type": "Feature" @@ -2873,33 +3469,33 @@ "coordinates": [ [ [ - -1.5387405627705157, - 53.799804905393536 + -1.5357769465351891, + 53.79781060384373 ], [ - -1.5388495814725374, - 53.79919412299094 + -1.5358823842142486, + 53.79781714281155 ], [ - -1.5387899495229909, - 53.79919040879246 + -1.5358882003314747, + 53.797784429086676 ], [ - -1.5386809308209692, - 53.79980119119506 + -1.535782762652415, + 53.797777890118844 ], [ - -1.5387405627705157, - 53.799804905393536 + -1.5357769465351891, + 53.79781060384373 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298428, - "osm_way_id": 30831677, - "src_i": 342579616, + "dst_i": 342579667, + "osm_way_id": 30831663, + "src_i": 8174077588, "type": "road" }, "type": "Feature" @@ -2909,33 +3505,33 @@ "coordinates": [ [ [ - -1.5386316841425214, - 53.79984323628153 + -1.5325796259203603, + 53.79634712780594 ], [ - -1.5385953760410855, - 53.800041141906426 + -1.5326517503415922, + 53.796533093137086 ], [ - -1.5387146064442156, - 53.800048773550074 + -1.5327686512527443, + 53.79651727586764 ], [ - -1.5387509145456515, - 53.79985086792518 + -1.5326965268315123, + 53.796331310536495 ], [ - -1.5386316841425214, - 53.79984323628153 + -1.5325796259203603, + 53.79634712780594 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298426, - "osm_way_id": 30831678, - "src_i": 342579616, + "dst_i": 7241259895, + "osm_way_id": 30831665, + "src_i": 342579565, "type": "road" }, "type": "Feature" @@ -2945,33 +3541,33 @@ "coordinates": [ [ [ - -1.5334280573495844, - 53.79612419945504 + -1.5370034057910247, + 53.79916861642988 ], [ - -1.5333504959245272, - 53.7961358249862 + -1.536472146113669, + 53.79912460542624 ], [ - -1.533379993687651, - 53.796204486396675 + -1.536463817799212, + 53.79915968076982 ], [ - -1.5334575551127085, - 53.79619286086551 + -1.5369950774765677, + 53.79920369177346 ], [ - -1.5334280573495844, - 53.79612419945504 + -1.5370034057910247, + 53.79916861642988 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579559, - "osm_way_id": 30831800, - "src_i": 342579557, + "dst_i": 342579578, + "osm_way_id": 30831666, + "src_i": 342579576, "type": "road" }, "type": "Feature" @@ -2981,33 +3577,41 @@ "coordinates": [ [ [ - -1.533234781074977, - 53.79615494816208 + -1.5362904076757988, + 53.799568050147336 ], [ - -1.5326596934524737, - 53.796260147213154 + -1.5360472863630394, + 53.79954814995754 ], [ - -1.5326951717675514, - 53.79632781397386 + -1.535776471501531, + 53.79960347712568 ], [ - -1.5332702593900547, - 53.79622261492279 + -1.5358156739586857, + 53.79967042442905 ], [ - -1.533234781074977, - 53.79615494816208 + -1.536059314458873, + 53.79962064967287 + ], + [ + -1.5362739459324883, + 53.79963821702227 + ], + [ + -1.5362904076757988, + 53.799568050147336 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579565, - "osm_way_id": 30831800, - "src_i": 342579559, + "dst_i": 342579586, + "osm_way_id": 30831667, + "src_i": 342579580, "type": "road" }, "type": "Feature" @@ -3017,69 +3621,65 @@ "coordinates": [ [ [ - -1.5325495374102511, - 53.79627855452899 + -1.5357153352787334, + 53.799602155122834 ], [ - -1.5321923425501323, - 53.79633323148757 + -1.5356880284561036, + 53.799598577621246 ], [ - -1.532222428015154, - 53.79640180476452 + -1.5356207183182926, + 53.79953370505295 ], [ - -1.5325796228752726, - 53.79634712780594 + -1.535525142155273, + 53.7994743093536 ], [ - -1.5325495374102511, - 53.79627855452899 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 9823016, - "osm_way_id": 30831800, - "src_i": 342579565, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5354301491265194, + 53.79946496630082 + ], + [ + -1.535182050618155, + 53.79958216859815 + ], + [ + -1.5352569567268664, + 53.799637489471046 + ], + [ + -1.535463252273306, + 53.79954003447883 + ], [ - -1.5340224660526103, - 53.79563797130439 + -1.5354658573457074, + 53.79954029078551 ], [ - -1.5340364460495652, - 53.795644445521056 + -1.535525081253522, + 53.79957709552464 ], [ - -1.5340834165250672, - 53.795609059012186 + -1.5356123702107667, + 53.79966122256978 ], [ - -1.5340694365281122, - 53.79560258479552 + -1.5356893637269955, + 53.79967131116022 ], [ - -1.5340224660526103, - 53.79563797130439 + -1.5357153352787334, + 53.799602155122834 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661443, - "osm_way_id": 30831980, - "src_i": 26661426, + "dst_i": 342579596, + "osm_way_id": 30831667, + "src_i": 342579586, "type": "road" }, "type": "Feature" @@ -3089,41 +3689,49 @@ "coordinates": [ [ [ - -1.5335489092618364, - 53.79556783320774 + -1.5356893622044516, + 53.79967131205954 + ], + [ + -1.5356381986433896, + 53.79981686457303 + ], + [ + -1.5355769040760392, + 53.7998807272031 ], [ - -1.53386904236135, - 53.795586886236535 + -1.5355294920628422, + 53.79991166206973 ], [ - -1.5339326755559408, - 53.79560445898187 + -1.5356183994841213, + 53.79995920381022 ], [ - -1.53396491694295, - 53.795563725106376 + -1.5356746970627975, + 53.79992247191614 ], [ - -1.5338895571161932, - 53.79554291300441 + -1.5357518017247218, + 53.79984213551182 ], [ - -1.5335565402512437, - 53.79552309375356 + -1.5358067868706629, + 53.79968571199804 ], [ - -1.5335489092618364, - 53.79556783320774 + -1.5356893622044516, + 53.79967131205954 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661426, - "osm_way_id": 30831980, - "src_i": 342626328, + "dst_i": 342579601, + "osm_way_id": 30831668, + "src_i": 342579586, "type": "road" }, "type": "Feature" @@ -3133,33 +3741,33 @@ "coordinates": [ [ [ - -1.5341756400466913, - 53.796481725682234 + -1.5354893562863523, + 53.79992878155694 ], [ - -1.5341780304404202, - 53.79646595068091 + -1.5353857761107002, + 53.799955798978395 ], [ - -1.534081327595006, - 53.79646083893657 + -1.535434223453665, + 53.80002060050028 ], [ - -1.534078937201277, - 53.79647661393789 + -1.5355378036293175, + 53.79999358307882 ], [ - -1.5341756400466913, - 53.796481725682234 + -1.5354893562863523, + 53.79992878155694 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993836, - "osm_way_id": 30832035, - "src_i": 342628235, + "dst_i": 342579609, + "osm_way_id": 30831668, + "src_i": 342579601, "type": "road" }, "type": "Feature" @@ -3169,33 +3777,33 @@ "coordinates": [ [ [ - -1.5359521669631524, - 53.800228438233646 + -1.5389064393473233, + 53.79983079056902 ], [ - -1.5363263549343595, - 53.80029590984155 + -1.5387628756495588, + 53.79981417919854 ], [ - -1.536348032912648, - 53.800253961881815 + -1.5387511672879184, + 53.79984948117118 ], [ - -1.5359738449414408, - 53.80018649027391 + -1.5388947309856826, + 53.79986609254165 ], [ - -1.5359521669631524, - 53.800228438233646 + -1.5389064393473233, + 53.79983079056902 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 358163080, - "osm_way_id": 31969782, - "src_i": 50021952, + "dst_i": 342579616, + "osm_way_id": 30831669, + "src_i": 1675168086, "type": "road" }, "type": "Feature" @@ -3205,33 +3813,33 @@ "coordinates": [ [ [ - -1.5362745336343862, - 53.80033063444967 + -1.5370226111582201, + 53.795609442123215 ], [ - -1.5359413949659344, - 53.800262707785 + -1.5370225411212064, + 53.79560952576013 ], [ - -1.535917165204277, - 53.800304164715115 + -1.5370771304057655, + 53.795625474330535 ], [ - -1.5362503038727284, - 53.800372091379785 + -1.5370772004427793, + 53.795625390693615 ], [ - -1.5362745336343862, - 53.80033063444967 + -1.5370226111582201, + 53.795609442123215 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 21099344, - "osm_way_id": 31969785, - "src_i": 358163085, + "dst_i": 6047609624, + "osm_way_id": 30831670, + "src_i": 342579620, "type": "road" }, "type": "Feature" @@ -3241,41 +3849,49 @@ "coordinates": [ [ [ - -1.5334463522356017, - 53.79985006573026 + -1.53700637931902, + 53.79563132711593 ], [ - -1.53332759686613, - 53.79984170113946 + -1.5369292563865702, + 53.795735883152005 ], [ - -1.5330010508122303, - 53.799799978909455 + -1.5367696587802966, + 53.7957583320194 ], [ - -1.532984954479426, - 53.799843928759216 + -1.5363132762833203, + 53.7957996846282 ], [ - -1.5333150023840116, - 53.7998860988514 + -1.536322512033868, + 53.79583524200819 ], [ - -1.5334373387764455, - 53.79989471525228 + -1.5367813397361492, + 53.79579366816626 ], [ - -1.5334463522356017, - 53.79985006573026 + -1.5369729442576903, + 53.79576671729461 + ], + [ + -1.5370622109993006, + 53.795645696477486 + ], + [ + -1.53700637931902, + 53.79563132711593 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 358204012, - "osm_way_id": 31972740, - "src_i": 358204009, + "dst_i": 342579626, + "osm_way_id": 30831670, + "src_i": 6047609624, "type": "road" }, "type": "Feature" @@ -3285,41 +3901,33 @@ "coordinates": [ [ [ - -1.5336699362666224, - 53.79996093500443 - ], - [ - -1.5336014370221223, - 53.79994789753825 - ], - [ - -1.5335968541653553, - 53.799945430698926 + -1.5367728606898583, + 53.79775619668165 ], [ - -1.533545574890966, - 53.79997866603037 + -1.5365779872668293, + 53.79775576590657 ], [ - -1.5335623624586445, - 53.79998770331378 + -1.5365776249014105, + 53.797813113850495 ], [ - -1.533646589580355, - 53.800003733722455 + -1.5367724983244395, + 53.797813544625576 ], [ - -1.5336699362666224, - 53.79996093500443 + -1.5367728606898583, + 53.79775619668165 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3381506667, - "osm_way_id": 32855413, - "src_i": 3381506666, + "dst_i": 342579512, + "osm_way_id": 30831673, + "src_i": 26109191, "type": "road" }, "type": "Feature" @@ -3329,41 +3937,41 @@ "coordinates": [ [ [ - -1.534312562408503, - 53.79991273496047 + -1.5364846081344787, + 53.79776462242633 ], [ - -1.534742015673706, - 53.799991974192366 + -1.5364534660240763, + 53.79777076209533 ], [ - -1.5352595892050558, - 53.800093352925 + -1.5364261652916216, + 53.79777015145592 ], [ - -1.5352829602520235, - 53.80005172332514 + -1.5364224898709453, + 53.79782745803105 ], [ - -1.5347647837933382, - 53.79995022588204 + -1.5364674490661188, + 53.797828464371996 ], [ - -1.5343347032400996, - 53.799870871536974 + -1.5365153482933243, + 53.79781902059519 ], [ - -1.534312562408503, - 53.79991273496047 + -1.5364846081344787, + 53.79776462242633 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 370191920, - "osm_way_id": 32863858, - "src_i": 9823112, + "dst_i": 342579538, + "osm_way_id": 30831673, + "src_i": 342579512, "type": "road" }, "type": "Feature" @@ -3373,33 +3981,33 @@ "coordinates": [ [ [ - -1.5356092139775182, - 53.79816067559364 + -1.5358524129400102, + 53.79652703890364 ], [ - -1.5357612993527991, - 53.79826101650908 + -1.5358521906486189, + 53.79656245059352 ], [ - -1.5358336354076159, - 53.798222764761384 + -1.5358826415241469, + 53.79656251714332 ], [ - -1.535681550032335, - 53.798122423845946 + -1.5358828638155382, + 53.79652710545344 ], [ - -1.5356092139775182, - 53.79816067559364 + -1.5358524129400102, + 53.79652703890364 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304856, - "osm_way_id": 38732418, - "src_i": 26300437, + "dst_i": 6500031459, + "osm_way_id": 30831674, + "src_i": 342579666, "type": "road" }, "type": "Feature" @@ -3409,41 +4017,33 @@ "coordinates": [ [ [ - -1.5352588416360615, - 53.79779774714121 - ], - [ - -1.535460446225126, - 53.79802783499188 - ], - [ - -1.5355063722355975, - 53.79807142241501 + -1.5358523824891348, + 53.79660763970853 ], [ - -1.5355888027556517, - 53.79804112067084 + -1.5358527159262219, + 53.79663017491081 ], [ - -1.5355448925931403, - 53.79799944700421 + -1.5358831668017499, + 53.79663001842884 ], [ - -1.5353450663352066, - 53.79777138802321 + -1.5358828333646628, + 53.796607483226566 ], [ - -1.5352588416360615, - 53.79779774714121 + -1.5358523824891348, + 53.79660763970853 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26300437, - "osm_way_id": 38732418, - "src_i": 26660391, + "dst_i": 1877939950, + "osm_way_id": 30831674, + "src_i": 6500031459, "type": "road" }, "type": "Feature" @@ -3453,33 +4053,33 @@ "coordinates": [ [ [ - -1.5358209541405023, - 53.79830003088154 + -1.5363199693857614, + 53.79877209741394 ], [ - -1.5358968803535438, - 53.79834924176305 + -1.5363284377742457, + 53.79879941880612 ], [ - -1.5359686408868132, - 53.798310614098895 + -1.5363874211201436, + 53.798793040816875 ], [ - -1.5358927146737715, - 53.798261403217396 + -1.5363789527316591, + 53.79876571942469 ], [ - -1.5358209541405023, - 53.79830003088154 + -1.5363199693857614, + 53.79877209741394 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643907, - "osm_way_id": 38732418, - "src_i": 2014304856, + "dst_i": 2014304911, + "osm_way_id": 30831675, + "src_i": 643946, "type": "road" }, "type": "Feature" @@ -3489,41 +4089,33 @@ "coordinates": [ [ [ - -1.534830209021954, - 53.79673729131567 - ], - [ - -1.5348483029321929, - 53.79672001264852 - ], - [ - -1.534904667502795, - 53.79669497283541 + -1.536401227547108, + 53.79905942528994 ], [ - -1.5348817897600109, - 53.79667700438854 + -1.5363914025721188, + 53.79911945411175 ], [ - -1.5348196973797217, - 53.796704587483326 + -1.5364510893332413, + 53.799122862540855 ], [ - -1.5347978366961803, - 53.79672546523578 + -1.5364609143082304, + 53.79906283371905 ], [ - -1.534830209021954, - 53.79673729131567 + -1.536401227547108, + 53.79905942528994 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579521, - "osm_way_id": 38732606, - "src_i": 342579517, + "dst_i": 342579578, + "osm_way_id": 30831675, + "src_i": 9791699, "type": "road" }, "type": "Feature" @@ -3533,49 +4125,33 @@ "coordinates": [ [ [ - -1.5344126346432945, - 53.79684857517713 - ], - [ - -1.5344514412390675, - 53.7969559245063 - ], - [ - -1.5346064940521686, - 53.79715529332754 - ], - [ - -1.5346815661181517, - 53.797227721097144 - ], - [ - -1.5347643681388874, - 53.79719777728299 + -1.536383052942049, + 53.79916510367946 ], [ - -1.5346923167997568, - 53.79712826331558 + -1.5363795373884692, + 53.799182378749315 ], [ - -1.5345441489296126, - 53.796937747416806 + -1.5364390718952141, + 53.79918660556114 ], [ - -1.5345075835182784, - 53.796836599809836 + -1.536442587448794, + 53.79916933049128 ], [ - -1.5344126346432945, - 53.79684857517713 + -1.536383052942049, + 53.79916510367946 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 319558919, - "osm_way_id": 38732625, - "src_i": 301689321, + "dst_i": 800488938, + "osm_way_id": 30831675, + "src_i": 342579578, "type": "road" }, "type": "Feature" @@ -3585,41 +4161,33 @@ "coordinates": [ [ [ - -1.5347907005335002, - 53.79733249656771 - ], - [ - -1.5350672142763637, - 53.79759678292333 - ], - [ - -1.5351541408681897, - 53.79769134299911 + -1.536276767206106, + 53.79963844904726 ], [ - -1.5352394642214193, - 53.79766397843949 + -1.5362508839619071, + 53.79980523994119 ], [ - -1.5351512221517705, - 53.79756798844227 + -1.5363105981288177, + 53.79980847210326 ], [ - -1.534873292443195, - 53.79730234770822 + -1.5363364813730165, + 53.79964168120932 ], [ - -1.5347907005335002, - 53.79733249656771 + -1.536276767206106, + 53.79963844904726 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444896, - "osm_way_id": 38732625, - "src_i": 319558919, + "dst_i": 9791722, + "osm_way_id": 30831675, + "src_i": 342579580, "type": "road" }, "type": "Feature" @@ -3629,41 +4197,33 @@ "coordinates": [ [ [ - -1.5375510708775713, - 53.796447912086954 - ], - [ - -1.5374467020242426, - 53.796457519540304 - ], - [ - -1.5374310030753642, - 53.79645560668312 + -1.5363744353442745, + 53.79920447238466 ], [ - -1.5374127386402225, - 53.79650791123115 + -1.53633019326722, + 53.79939606027486 ], [ - -1.5374444577947162, - 53.796511775616345 + -1.5363896059704627, + 53.799400846464756 ], [ - -1.5375649930178625, - 53.796500680684964 + -1.5364338480475173, + 53.79920925857456 ], [ - -1.5375510708775713, - 53.796447912086954 + -1.5363744353442745, + 53.79920447238466 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419235, - "osm_way_id": 38732655, - "src_i": 5728993691, + "dst_i": 9319419287, + "osm_way_id": 30831675, + "src_i": 800488938, "type": "road" }, "type": "Feature" @@ -3673,33 +4233,33 @@ "coordinates": [ [ [ - -1.53764198196646, - 53.79645667058065 + -1.536359132256778, + 53.7989115255469 ], [ - -1.5376308780546988, - 53.796457647243976 + -1.5363641216327333, + 53.79893177107622 ], [ - -1.5376375376611768, - 53.79648405852263 + -1.5364234612538747, + 53.798926668325095 ], [ - -1.537648641572938, - 53.79648308185931 + -1.5364184718779195, + 53.798906422795774 ], [ - -1.53764198196646, - 53.79645667058065 + -1.536359132256778, + 53.7989115255469 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993691, - "osm_way_id": 38732655, - "src_i": 9319419230, + "dst_i": 2014304920, + "osm_way_id": 30831675, + "src_i": 1675168064, "type": "road" }, "type": "Feature" @@ -3709,41 +4269,33 @@ "coordinates": [ [ [ - -1.5381694428970938, - 53.79601471693488 - ], - [ - -1.5382995351275246, - 53.796059381745366 - ], - [ - -1.5389119387754435, - 53.79629425668526 + -1.5363352937888708, + 53.79882153942111 ], [ - -1.5389326666864154, - 53.79627539970859 + -1.5363397685450297, + 53.79883792865913 ], [ - -1.5383194652255576, - 53.79604021899933 + -1.5363989680921437, + 53.79883228991229 ], [ - -1.5381885721371005, - 53.795995278996415 + -1.536394493335985, + 53.79881590067427 ], [ - -1.5381694428970938, - 53.79601471693488 + -1.5363352937888708, + 53.79882153942111 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 301688528, - "osm_way_id": 39070659, - "src_i": 10440056, + "dst_i": 1675168064, + "osm_way_id": 30831675, + "src_i": 2014304911, "type": "road" }, "type": "Feature" @@ -3753,33 +4305,33 @@ "coordinates": [ [ [ - -1.5353552201796514, - 53.80006587774882 + -1.5363805011586797, + 53.79898182911873 ], [ - -1.5359249012492047, - 53.80014493172045 + -1.536384435411798, + 53.79899165240927 ], [ - -1.535933390953302, - 53.80012358362277 + -1.5364427884245724, + 53.79898349915906 ], [ - -1.5353637098837487, - 53.80004452965114 + -1.5364388541714542, + 53.79897367586852 ], [ - -1.5353552201796514, - 53.80006587774882 + -1.5363805011586797, + 53.79898182911873 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1152092921, - "osm_way_id": 39173305, - "src_i": 370191920, + "dst_i": 9791699, + "osm_way_id": 30831675, + "src_i": 2014304920, "type": "road" }, "type": "Feature" @@ -3789,33 +4341,33 @@ "coordinates": [ [ [ - -1.5322148777205669, - 53.79676418373142 + -1.536313967518195, + 53.79946624693487 ], [ - -1.532421088004555, - 53.796732233530626 + -1.5362904107208863, + 53.799568049248016 ], [ - -1.532408770625404, - 53.79670449845048 + -1.536349823424129, + 53.79957284622977 ], [ - -1.5322025603414158, - 53.796736448651274 + -1.5363733802214377, + 53.79947104391663 ], [ - -1.5322148777205669, - 53.79676418373142 + -1.536313967518195, + 53.79946624693487 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993713, - "osm_way_id": 39597033, - "src_i": 474665273, + "dst_i": 342579580, + "osm_way_id": 30831675, + "src_i": 9319419287, "type": "road" }, "type": "Feature" @@ -3825,33 +4377,33 @@ "coordinates": [ [ [ - -1.5321988757854768, - 53.7994380334156 + -1.5389089682925359, + 53.80009094903819 ], [ - -1.5333121795878502, - 53.799627089715315 + -1.5387198348595437, + 53.800068364373224 ], [ - -1.533328747909225, - 53.7995930503903 + -1.5387079529279126, + 53.80010308178677 ], [ - -1.5322154441068516, - 53.79940399409058 + -1.5388970863609048, + 53.80012566645175 ], [ - -1.5321988757854768, - 53.7994380334156 + -1.5389089682925359, + 53.80009094903819 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1152092910, - "osm_way_id": 48477918, - "src_i": 9823073, + "dst_i": 26298426, + "osm_way_id": 30831676, + "src_i": 30822588, "type": "road" }, "type": "Feature" @@ -3861,33 +4413,33 @@ "coordinates": [ [ [ - -1.5345449513101828, - 53.799485085025786 + -1.5387405612479719, + 53.79980490359489 ], [ - -1.5348132357039348, - 53.799354065550396 + -1.5387976870904625, + 53.799484620975804 ], [ - -1.5347607718904874, - 53.79931658542069 + -1.5387380520958283, + 53.79948091037462 ], [ - -1.5344924874967354, - 53.79944760489608 + -1.5386809262533379, + 53.799801192993705 ], [ - -1.5345449513101828, - 53.799485085025786 + -1.5387405612479719, + 53.79980490359489 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 659971029, - "osm_way_id": 51704587, - "src_i": 643951, + "dst_i": 8481692879, + "osm_way_id": 30831677, + "src_i": 342579616, "type": "road" }, "type": "Feature" @@ -3897,41 +4449,33 @@ "coordinates": [ [ [ - -1.5330695424440117, - 53.79544904810428 - ], - [ - -1.533068321363903, - 53.79543509602797 - ], - [ - -1.5330789532870936, - 53.795404993933204 + -1.5388056682649383, + 53.79943990670263 ], [ - -1.5330202531343382, - 53.795397761588376 + -1.538849576904906, + 53.79919412478958 ], [ - -1.5330080377656201, - 53.79543235129825 + -1.5387899449553595, + 53.79919040879246 ], [ - -1.5330096577521983, - 53.7954508755259 + -1.5387460363153918, + 53.79943619070551 ], [ - -1.5330695424440117, - 53.79544904810428 + -1.5388056682649383, + 53.79943990670263 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1606819521, - "osm_way_id": 51706165, - "src_i": 659985459, + "dst_i": 26298428, + "osm_way_id": 30831677, + "src_i": 8481692879, "type": "road" }, "type": "Feature" @@ -3941,33 +4485,33 @@ "coordinates": [ [ [ - -1.5336615714111148, - 53.80037059400921 + -1.5386316841425214, + 53.79984323628153 ], [ - -1.5336779631174116, - 53.800326681930954 + -1.5385953760410855, + 53.800041141906426 ], [ - -1.5335831512713676, - 53.8003143342445 + -1.5387146064442156, + 53.800048773550074 ], [ - -1.5335667595650708, - 53.80035824632275 + -1.5387509145456515, + 53.79985086792518 ], [ - -1.5336615714111148, - 53.80037059400921 + -1.5386316841425214, + 53.79984323628153 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591373207, - "osm_way_id": 53014870, - "src_i": 26298445, + "dst_i": 26298426, + "osm_way_id": 30831678, + "src_i": 342579616, "type": "road" }, "type": "Feature" @@ -3977,49 +4521,33 @@ "coordinates": [ [ [ - -1.5340789463365396, - 53.79568481876856 - ], - [ - -1.5340616106531015, - 53.79588230800752 - ], - [ - -1.5340906227247608, - 53.79609563609964 - ], - [ - -1.5342235149131964, - 53.79641093917467 - ], - [ - -1.5343177299220803, - 53.7963970842251 + -1.5388512806313916, + 53.799148502201525 ], [ - -1.534186762228978, - 53.79608634970413 + -1.5388649698224854, + 53.79911172084475 ], [ - -1.5341589012004135, - 53.79588148422887 + -1.5388352284523572, + 53.79910785915752 ], [ - -1.5341759049693084, - 53.79568778832869 + -1.5388215392612636, + 53.79914464051429 ], [ - -1.5340789463365396, - 53.79568481876856 + -1.5388512806313916, + 53.799148502201525 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993833, - "osm_way_id": 54108084, - "src_i": 26661443, + "dst_i": 342605802, + "osm_way_id": 30831798, + "src_i": 26298428, "type": "road" }, "type": "Feature" @@ -4029,33 +4557,33 @@ "coordinates": [ [ [ - -1.5340841580038862, - 53.79559332358101 + -1.538880851476617, + 53.79906747062155 ], [ - -1.5340834150025233, - 53.795609059911506 + -1.5389466192775825, + 53.79887722811657 ], [ - -1.5341804680330062, - 53.795610658905424 + -1.5389167835097401, + 53.79887362903126 ], [ - -1.534181211034369, - 53.795594922574935 + -1.5388510157087747, + 53.79906387153625 ], [ - -1.5340841580038862, - 53.79559332358101 + -1.538880851476617, + 53.79906747062155 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661443, - "osm_way_id": 54108084, - "src_i": 682264890, + "dst_i": 342605804, + "osm_way_id": 30831799, + "src_i": 342605802, "type": "road" }, "type": "Feature" @@ -4065,33 +4593,33 @@ "coordinates": [ [ [ - -1.5344137323973575, - 53.795443556846195 + -1.5334280573495844, + 53.79612419945504 ], [ - -1.5344860593169114, - 53.7954295265289 + -1.5333504959245272, + 53.7961358249862 ], [ - -1.5344557667859362, - 53.79537504202516 + -1.533379993687651, + 53.796204486396675 ], [ - -1.534383439866382, - 53.79538907234245 + -1.5334575551127085, + 53.79619286086551 ], [ - -1.5344137323973575, - 53.795443556846195 + -1.5334280573495844, + 53.79612419945504 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661423, - "osm_way_id": 54108085, - "src_i": 320943617, + "dst_i": 342579559, + "osm_way_id": 30831800, + "src_i": 342579557, "type": "road" }, "type": "Feature" @@ -4101,41 +4629,33 @@ "coordinates": [ [ [ - -1.5342447026323889, - 53.79549814027532 - ], - [ - -1.5342670885935332, - 53.79548645089233 - ], - [ - -1.534340173739888, - 53.795461805881416 + -1.533234781074977, + 53.79615494816208 ], [ - -1.5342920369958535, - 53.79541200324626 + -1.5326596934524737, + 53.796260147213154 ], [ - -1.5342102763950607, - 53.79543957464986 + -1.5326951717675514, + 53.79632781397386 ], [ - -1.5341803995185364, - 53.79545517428346 + -1.5332702593900547, + 53.79622261492279 ], [ - -1.5342447026323889, - 53.79549814027532 + -1.533234781074977, + 53.79615494816208 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943617, - "osm_way_id": 54108085, - "src_i": 682264890, + "dst_i": 342579565, + "osm_way_id": 30831800, + "src_i": 342579559, "type": "road" }, "type": "Feature" @@ -4145,33 +4665,33 @@ "coordinates": [ [ [ - -1.5330650372369772, - 53.795420019799586 + -1.5325495374102511, + 53.79627855452899 ], [ - -1.533009659274742, - 53.79545087462658 + -1.5321923425501323, + 53.79633323148757 ], [ - -1.533101754902689, - 53.795508542729024 + -1.532222428015154, + 53.79640180476452 ], [ - -1.5331571328649243, - 53.79547768790202 + -1.5325796228752726, + 53.79634712780594 ], [ - -1.5330650372369772, - 53.795420019799586 + -1.5325495374102511, + 53.79627855452899 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 659985459, - "osm_way_id": 80868672, - "src_i": 26661419, + "dst_i": -10, + "osm_way_id": 30831800, + "src_i": 342579565, "type": "road" }, "type": "Feature" @@ -4181,33 +4701,33 @@ "coordinates": [ [ [ - -1.5329441929374443, - 53.79548248128649 + -1.5340150969407325, + 53.79564027176921 ], [ - -1.5328227883418017, - 53.79553467162067 + -1.534053912671768, + 53.79565824741064 ], [ - -1.5329017657325712, - 53.79559876987302 + -1.5340820949570693, + 53.79563701622478 ], [ - -1.5330231703282138, - 53.795546579538836 + -1.5340432792260337, + 53.79561904058334 ], [ - -1.5329441929374443, - 53.79548248128649 + -1.5340150969407325, + 53.79564027176921 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1020737603, - "osm_way_id": 80868672, - "src_i": 659985459, + "dst_i": 26661443, + "osm_way_id": 30831980, + "src_i": 26661426, "type": "road" }, "type": "Feature" @@ -4217,33 +4737,41 @@ "coordinates": [ [ [ - -1.5327588856569623, - 53.79556276912745 + -1.5334101918209122, + 53.79556409652623 ], [ - -1.532707880440453, - 53.7955857099238 + -1.5338669884497955, + 53.79559128212083 ], [ - -1.5327891903682878, - 53.79564878294944 + -1.5339271289289633, + 53.79560789079334 ], [ - -1.5328401955847972, - 53.79562584215309 + -1.5339464743701863, + 53.79558345082778 ], [ - -1.5327588856569623, - 53.79556276912745 + -1.5338792997387716, + 53.79556489962047 + ], + [ + -1.5334147716325917, + 53.79553725357317 + ], + [ + -1.5334101918209122, + 53.79556409652623 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643851, - "osm_way_id": 80868672, - "src_i": 1020737603, + "dst_i": 26661426, + "osm_way_id": 30831980, + "src_i": 342626328, "type": "road" }, "type": "Feature" @@ -4253,33 +4781,33 @@ "coordinates": [ [ [ - -1.53292029509033, - 53.79561414737416 + -1.5341756400466913, + 53.796481725682234 ], [ - -1.5329013348526825, - 53.79559905046138 + -1.5341780304404202, + 53.79646595068091 ], [ - -1.5328401925397097, - 53.795625841253774 + -1.534081327595006, + 53.79646083893657 ], [ - -1.5328591527773572, - 53.79564093816656 + -1.534078937201277, + 53.79647661393789 ], [ - -1.53292029509033, - 53.79561414737416 + -1.5341756400466913, + 53.796481725682234 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1020737603, - "osm_way_id": 87797760, - "src_i": 342529324, + "dst_i": 5728993836, + "osm_way_id": 30832035, + "src_i": 342628235, "type": "road" }, "type": "Feature" @@ -4289,41 +4817,33 @@ "coordinates": [ [ [ - -1.5328227883418017, - 53.79553467162067 - ], - [ - -1.532805735851506, - 53.79552040208382 - ], - [ - -1.532806498645938, - 53.79552366032621 + -1.5359521669631524, + 53.800228438233646 ], [ - -1.5327310900977804, - 53.7955298242769 + -1.5363263549343595, + 53.80029590984155 ], [ - -1.5327328638612798, - 53.79553739746464 + -1.536348032912648, + 53.800253961881815 ], [ - -1.5327605954736232, - 53.79556060266156 + -1.5359738449414408, + 53.80018649027391 ], [ - -1.5328227883418017, - 53.79553467162067 + -1.5359521669631524, + 53.800228438233646 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6665254467, - "osm_way_id": 87797760, - "src_i": 1020737603, + "dst_i": 358163080, + "osm_way_id": 31969782, + "src_i": 50021952, "type": "road" }, "type": "Feature" @@ -4333,33 +4853,33 @@ "coordinates": [ [ [ - -1.5326087247770148, - 53.79563122099597 + -1.5362745336343862, + 53.80033063444967 ], [ - -1.5325923970175568, - 53.79563892908196 + -1.5359413949659344, + 53.800262707785 ], [ - -1.5326761917368348, - 53.7957008563718 + -1.535917165204277, + 53.800304164715115 ], [ - -1.5326925194962928, - 53.795693148285814 + -1.5362503038727284, + 53.800372091379785 ], [ - -1.5326087247770148, - 53.79563122099597 + -1.5362745336343862, + 53.80033063444967 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1020737601, - "osm_way_id": 87797769, - "src_i": 643851, + "dst_i": 21099344, + "osm_way_id": 31969785, + "src_i": 358163085, "type": "road" }, "type": "Feature" @@ -4369,33 +4889,41 @@ "coordinates": [ [ [ - -1.532503806285383, - 53.79576127190193 + -1.5334463522356017, + 53.79985006573026 ], [ - -1.5324889827991761, - 53.795772612348124 + -1.53332759686613, + 53.79984170113946 ], [ - -1.532554522218575, - 53.795802502202974 + -1.5330010508122303, + 53.799799978909455 ], [ - -1.532569345704782, - 53.79579116175678 + -1.532984954479426, + 53.799843928759216 ], [ - -1.532503806285383, - 53.79576127190193 + -1.5333150023840116, + 53.7998860988514 + ], + [ + -1.5334373387764455, + 53.79989471525228 + ], + [ + -1.5334463522356017, + 53.79985006573026 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1606819527, - "osm_way_id": 113039474, - "src_i": 1020737601, + "dst_i": 358204012, + "osm_way_id": 31972740, + "src_i": 358204009, "type": "road" }, "type": "Feature" @@ -4405,33 +4933,41 @@ "coordinates": [ [ [ - -1.5324657746643924, - 53.795813392988336 + -1.5336699362666224, + 53.79996093500443 ], [ - -1.5324489368527692, - 53.79587298114253 + -1.5336014370221223, + 53.79994789753825 ], [ - -1.532530609146023, - 53.79588103366872 + -1.5335968541653553, + 53.799945430698926 ], [ - -1.532547446957646, - 53.79582144551453 + -1.533545574890966, + 53.79997866603037 ], [ - -1.5324657746643924, - 53.795813392988336 + -1.5335623624586445, + 53.79998770331378 + ], + [ + -1.533646589580355, + 53.800003733722455 + ], + [ + -1.5336699362666224, + 53.79996093500443 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 478743247, - "osm_way_id": 113039474, - "src_i": 1606819527, + "dst_i": 3381506667, + "osm_way_id": 32855413, + "src_i": 3381506666, "type": "road" }, "type": "Feature" @@ -4441,41 +4977,41 @@ "coordinates": [ [ [ - -1.5336917193004314, - 53.799597786218186 + -1.534312562408503, + 53.79991273496047 ], [ - -1.533686982666743, - 53.79954150397043 + -1.534742015673706, + 53.799991974192366 ], [ - -1.5336906459070692, - 53.799520812377565 + -1.5352595892050558, + 53.800093352925 ], [ - -1.5336527893786127, - 53.79951847414124 + -1.5352829602520235, + 53.80005172332514 ], [ - -1.5336488185844437, - 53.79954089602899 + -1.5347647837933382, + 53.79995022588204 ], [ - -1.5336537013823346, - 53.79959890317569 + -1.5343347032400996, + 53.799870871536974 ], [ - -1.5336917193004314, - 53.799597786218186 + -1.534312562408503, + 53.79991273496047 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1569761300, - "osm_way_id": 114458912, - "src_i": 615978081, + "dst_i": 370191920, + "osm_way_id": 32863858, + "src_i": 9823112, "type": "road" }, "type": "Feature" @@ -4485,33 +5021,33 @@ "coordinates": [ [ [ - -1.5323262045989534, - 53.79778526995243 + -1.5356092139775182, + 53.79816067559364 ], [ - -1.5323114892133545, - 53.79785649173168 + -1.5357612993527991, + 53.79826101650908 ], [ - -1.5324305338661437, - 53.79786507305901 + -1.5358336354076159, + 53.798222764761384 ], [ - -1.5324452492517426, - 53.797793851279756 + -1.535681550032335, + 53.798122423845946 ], [ - -1.5323262045989534, - 53.79778526995243 + -1.5356092139775182, + 53.79816067559364 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4361246652, - "osm_way_id": 114458978, - "src_i": 26661448, + "dst_i": 2014304856, + "osm_way_id": 38732418, + "src_i": 26300437, "type": "road" }, "type": "Feature" @@ -4521,33 +5057,33 @@ "coordinates": [ [ [ - -1.5323021057760606, - 53.7979009254165 + -1.535257727134017, + 53.79779735593628 ], [ - -1.5322840286138033, - 53.79798471971262 + -1.5353444755882213, + 53.7979009505975 ], [ - -1.5324029940943162, - 53.797993673359116 + -1.535431501145393, + 53.797875524975396 ], [ - -1.5324210712565733, - 53.79790987906299 + -1.5353447526911888, + 53.79777193031418 ], [ - -1.5323021057760606, - 53.7979009254165 + -1.535257727134017, + 53.79779735593628 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 394143337, - "osm_way_id": 114458978, - "src_i": 4361246652, + "dst_i": 2014304851, + "osm_way_id": 38732418, + "src_i": 26660391, "type": "road" }, "type": "Feature" @@ -4557,57 +5093,69 @@ "coordinates": [ [ [ - -1.533772083728581, - 53.79909605016474 - ], - [ - -1.5338266105888454, - 53.79903825166066 + -1.5353826351028894, + 53.797942713296976 ], [ - -1.5338684074605953, - 53.79896586256189 + -1.535506755916629, + 53.79806770641789 ], [ - -1.5339167253873394, - 53.79882450538396 + -1.5355905019145062, + 53.79803869250234 ], [ - -1.5339533836738437, - 53.79882566550891 + -1.5354663811007665, + 53.797913699381425 ], [ - -1.5339597996733174, - 53.798754928464035 - ], + -1.5353826351028894, + 53.797942713296976 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26300437, + "osm_way_id": 38732418, + "src_i": 2014304851, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.533819675401944, - 53.79875049480823 + -1.5358209541405023, + 53.79830003088154 ], [ - -1.533752392669921, - 53.79894733833424 + -1.5358968803535438, + 53.79834924176305 ], [ - -1.533716588530475, - 53.79900934746235 + -1.5359686408868132, + 53.798310614098895 ], [ - -1.5336673235815022, - 53.79906156837347 + -1.5358927146737715, + 53.798261403217396 ], [ - -1.533772083728581, - 53.79909605016474 + -1.5358209541405023, + 53.79830003088154 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237437098, - "osm_way_id": 114459026, - "src_i": 1296601330, + "dst_i": 643907, + "osm_way_id": 38732418, + "src_i": 2014304856, "type": "road" }, "type": "Feature" @@ -4617,57 +5165,49 @@ "coordinates": [ [ [ - -1.5389006597711479, - 53.79558318552788 - ], - [ - -1.5388024328594134, - 53.795604761153946 - ], - [ - -1.5383375865415843, - 53.79569124622049 + -1.5357341706677912, + 53.79787187912537 ], [ - -1.5378516545149958, - 53.795757473167214 + -1.5356977103119778, + 53.79788850218702 ], [ - -1.5354949957885002, - 53.795996417537644 + -1.5356342583000961, + 53.79795362566606 ], [ - -1.5355014361486743, - 53.796018576823464 + -1.53559050343705, + 53.798038694300985 ], [ - -1.5378591454303756, - 53.795779526333085 + -1.5356478789767198, + 53.798048989735406 ], [ - -1.5383476140148957, - 53.79571295404684 + -1.5356896484426816, + 53.79796778278771 ], [ - -1.5388147685090898, - 53.79562603910454 + -1.5357437550808637, + 53.79791225147355 ], [ - -1.5389139272176156, - 53.79560425843314 + -1.5357708091612265, + 53.79789991637759 ], [ - -1.5389006597711479, - 53.79558318552788 + -1.5357341706677912, + 53.79787187912537 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 60197213, - "osm_way_id": 115570255, - "src_i": 1305300599, + "dst_i": 26300437, + "osm_way_id": 38732419, + "src_i": 8174077587, "type": "road" }, "type": "Feature" @@ -4677,33 +5217,41 @@ "coordinates": [ [ [ - -1.532335297230386, - 53.79805340450545 + -1.5348377029824214, + 53.79674002975014 ], [ - -1.5323417299778415, - 53.79805607998741 + -1.5348549229525326, + 53.796723584754176 ], [ - -1.5324107773381013, - 53.797998160074904 + -1.5349033596376913, + 53.79670206758402 ], [ - -1.532404344590646, - 53.79799548459295 + -1.5348698880353109, + 53.796675778613114 ], [ - -1.532335297230386, - 53.79805340450545 + -1.534813077359382, + 53.79670101537768 + ], + [ + -1.5347903427357128, + 53.796722726801306 + ], + [ + -1.5348377029824214, + 53.79674002975014 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4361246658, - "osm_way_id": 123501444, - "src_i": 394143337, + "dst_i": 342579521, + "osm_way_id": 38732606, + "src_i": 342579517, "type": "road" }, "type": "Feature" @@ -4713,57 +5261,49 @@ "coordinates": [ [ [ - -1.5321577762387766, - 53.79818327015115 - ], - [ - -1.5321622372920416, - 53.7981582411299 - ], - [ - -1.5321826409011892, - 53.79810714616951 + -1.5344147327086184, + 53.79685437849983 ], [ - -1.5322374235488077, - 53.7980691138563 + -1.5344514412390675, + 53.7969559245063 ], [ - -1.5323218470786655, - 53.798052253373726 + -1.5346064940521686, + 53.79715529332754 ], [ - -1.5322834363442743, - 53.79798514778974 + -1.5346815661181517, + 53.797227721097144 ], [ - -1.5321675753305215, - 53.79800828553753 + -1.5347643681388874, + 53.79719777728299 ], [ - -1.5320725579410677, - 53.79807425437893 + -1.5346923167997568, + 53.79712826331558 ], [ - -1.5320437620706246, - 53.79814635929206 + -1.5345441489296126, + 53.796937747416806 ], [ - -1.5320385062495085, - 53.7981758543447 + -1.5345096815836023, + 53.79684240313254 ], [ - -1.5321577762387766, - 53.79818327015115 + -1.5344147327086184, + 53.79685437849983 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 394143337, - "osm_way_id": 123501444, - "src_i": 5506378742, + "dst_i": 319558919, + "osm_way_id": 38732625, + "src_i": 301689321, "type": "road" }, "type": "Feature" @@ -4773,33 +5313,41 @@ "coordinates": [ [ [ - -1.5320933391410718, - 53.79897172973643 + -1.5347907005335002, + 53.79733249656771 ], [ - -1.5320823022212366, - 53.799026055959565 + -1.5350672142763637, + 53.79759678292333 ], [ - -1.5321427715698603, - 53.79903034212662 + -1.5351541408681897, + 53.79769134299911 ], [ - -1.5321538084896953, - 53.798976015903484 + -1.5352394642214193, + 53.79766397843949 ], [ - -1.5320933391410718, - 53.79897172973643 + -1.5351512221517705, + 53.79756798844227 + ], + [ + -1.534873292443195, + 53.79730234770822 + ], + [ + -1.5347907005335002, + 53.79733249656771 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1675168080, - "osm_way_id": 123501451, - "src_i": 1296601030, + "dst_i": 5452444896, + "osm_way_id": 38732625, + "src_i": 319558919, "type": "road" }, "type": "Feature" @@ -4809,57 +5357,41 @@ "coordinates": [ [ [ - -1.5334187272013227, - 53.79960662834879 - ], - [ - -1.5335094631976773, - 53.799582613762375 - ], - [ - -1.533576624126198, - 53.79955463856334 - ], - [ - -1.5336427344995134, - 53.79951334441046 - ], - [ - -1.5336559958558058, - 53.79950036719884 + -1.5375510708775713, + 53.796447912086954 ], [ - -1.5336234073288157, - 53.79948874976157 + -1.5374467020242426, + 53.796457519540304 ], [ - -1.5336122653534598, - 53.79949965493608 + -1.5374310030753642, + 53.79645560668312 ], [ - -1.5335515752359887, - 53.79953756224357 + -1.5374127386402225, + 53.79650791123115 ], [ - -1.5334905379785366, - 53.799562986966365 + -1.5374444577947162, + 53.796511775616345 ], [ - -1.5334031637588403, - 53.79958611122433 + -1.5375649930178625, + 53.796500680684964 ], [ - -1.5334187272013227, - 53.79960662834879 + -1.5375510708775713, + 53.796447912086954 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1569761300, - "osm_way_id": 143459488, - "src_i": 1152092910, + "dst_i": 9319419235, + "osm_way_id": 38732655, + "src_i": 5728993691, "type": "road" }, "type": "Feature" @@ -4869,41 +5401,33 @@ "coordinates": [ [ [ - -1.5335459281211221, - 53.79990784265062 - ], - [ - -1.5336864436862463, - 53.79979046498556 - ], - [ - -1.5337050689642628, - 53.79973677548217 + -1.53764198196646, + 53.79645667058065 ], [ - -1.5336677788220914, - 53.79973226268606 + -1.5376308780546988, + 53.796457647243976 ], [ - -1.5336507552601273, - 53.79978133507202 + -1.5376375376611768, + 53.79648405852263 ], [ - -1.5335148499575582, - 53.79989486184171 + -1.537648641572938, + 53.79648308185931 ], [ - -1.5335459281211221, - 53.79990784265062 + -1.53764198196646, + 53.79645667058065 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583002, - "osm_way_id": 143460612, - "src_i": 3381506667, + "dst_i": 5728993691, + "osm_way_id": 38732655, + "src_i": 9319419230, "type": "road" }, "type": "Feature" @@ -4913,33 +5437,41 @@ "coordinates": [ [ [ - -1.533705871344833, - 53.79964459770948 + -1.5381694428970938, + 53.79601471693488 ], [ - -1.5337046837606876, - 53.79964213536677 + -1.5382995351275246, + 53.796059381745366 ], [ - -1.5336680757181278, - 53.79964829572017 + -1.5389119387754435, + 53.79629425668526 ], [ - -1.5336692633022733, - 53.79965075806289 + -1.5389326666864154, + 53.79627539970859 ], [ - -1.533705871344833, - 53.79964459770948 + -1.5383194652255576, + 53.79604021899933 + ], + [ + -1.5381885721371005, + 53.795995278996415 + ], + [ + -1.5381694428970938, + 53.79601471693488 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 615978081, - "osm_way_id": 143460612, - "src_i": 6211582994, + "dst_i": 301688528, + "osm_way_id": 39070659, + "src_i": 10440056, "type": "road" }, "type": "Feature" @@ -4949,33 +5481,33 @@ "coordinates": [ [ [ - -1.5337157633117484, - 53.79970412291116 + -1.5353552201796514, + 53.80006587774882 ], [ - -1.5337162063719874, - 53.79969202073951 + -1.5359249012492047, + 53.80014493172045 ], [ - -1.53367815191284, - 53.799691535105815 + -1.535933390953302, + 53.80012358362277 ], [ - -1.533677708852601, - 53.79970363727746 + -1.5353637098837487, + 53.80004452965114 ], [ - -1.5337157633117484, - 53.79970412291116 + -1.5353552201796514, + 53.80006587774882 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211582994, - "osm_way_id": 143460612, - "src_i": 6211583002, + "dst_i": 1152092921, + "osm_way_id": 39173305, + "src_i": 370191920, "type": "road" }, "type": "Feature" @@ -4985,33 +5517,33 @@ "coordinates": [ [ [ - -1.5321980185933308, - 53.7989081881642 + -1.5322148777205669, + 53.79676418373142 ], [ - -1.5322386628994418, - 53.79872642716183 + -1.532421088004555, + 53.796732233530626 ], [ - -1.5321197674559426, - 53.79871715155818 + -1.532408770625404, + 53.79670449845048 ], [ - -1.5320791231498316, - 53.798898912560546 + -1.5322025603414158, + 53.796736448651274 ], [ - -1.5321980185933308, - 53.7989081881642 + -1.5322148777205669, + 53.79676418373142 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4361248196, - "osm_way_id": 143460882, - "src_i": 1296601030, + "dst_i": 5728993713, + "osm_way_id": 39597033, + "src_i": 474665273, "type": "road" }, "type": "Feature" @@ -5021,49 +5553,33 @@ "coordinates": [ [ [ - -1.5336673281491335, - 53.79906156837347 - ], - [ - -1.53363865712728, - 53.799049117265014 - ], - [ - -1.5335165491164127, - 53.799019266980316 - ], - [ - -1.5321980185933308, - 53.79890818636556 - ], - [ - -1.5321810848614497, - 53.79897831367034 + -1.5321988757854768, + 53.7994380334156 ], [ - -1.533484651824297, - 53.79908813343612 + -1.5333121795878502, + 53.799627089715315 ], [ - -1.533579341866839, - 53.799111281975776 + -1.533328747909225, + 53.7995930503903 ], [ - -1.5335962893016142, - 53.79911864112496 + -1.5322154441068516, + 53.79940399409058 ], [ - -1.5336673281491335, - 53.79906156837347 + -1.5321988757854768, + 53.7994380334156 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1296601030, - "osm_way_id": 143460882, - "src_i": 1296601330, + "dst_i": 1152092910, + "osm_way_id": 48477918, + "src_i": 9823073, "type": "road" }, "type": "Feature" @@ -5073,49 +5589,33 @@ "coordinates": [ [ [ - -1.5337473972037907, - 53.79943272292117 - ], - [ - -1.533793138986465, - 53.79917433071974 - ], - [ - -1.5337753343595437, - 53.799125945415526 - ], - [ - -1.5337575754089359, - 53.79911143396114 - ], - [ - -1.5336603823044255, - 53.79915293405869 + -1.5379633711645893, + 53.79876479851931 ], [ - -1.5336634669781166, - 53.799155453957994 + -1.537964231401823, + 53.79874611241376 ], [ - -1.5336718622844996, - 53.79917826974863 + -1.537933792706645, + 53.79874562318277 ], [ - -1.5336281211243474, - 53.79942535567809 + -1.5379329324694113, + 53.79876430928832 ], [ - -1.5337473972037907, - 53.79943272292117 + -1.5379633711645893, + 53.79876479851931 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1296601330, - "osm_way_id": 143460882, - "src_i": 1569761300, + "dst_i": 342529365, + "osm_way_id": 49785457, + "src_i": 342529363, "type": "road" }, "type": "Feature" @@ -5125,33 +5625,33 @@ "coordinates": [ [ [ - -1.5322481239864683, - 53.798681216463095 + -1.5345449513101828, + 53.799485085025786 ], [ - -1.5322577601660292, - 53.79863179603965 + -1.5348132357039348, + 53.799354065550396 ], [ - -1.5321386211155257, - 53.7986236913528 + -1.5347607718904874, + 53.79931658542069 ], [ - -1.532128984935965, - 53.79867311177625 + -1.5344924874967354, + 53.79944760489608 ], [ - -1.5322481239864683, - 53.798681216463095 + -1.5345449513101828, + 53.799485085025786 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 394143340, - "osm_way_id": 143460882, - "src_i": 4361248196, + "dst_i": 659971029, + "osm_way_id": 51704587, + "src_i": 643951, "type": "road" }, "type": "Feature" @@ -5161,33 +5661,41 @@ "coordinates": [ [ [ - -1.5333504944019833, - 53.79613582678485 + -1.5330695424440117, + 53.79544904810428 ], [ - -1.5333272329781675, - 53.79607168176778 + -1.533068321363903, + 53.79543509602797 ], [ - -1.533209966656509, - 53.796086518776605 - ], + -1.5330789532870936, + 53.795404993933204 + ], [ - -1.533233228080325, - 53.796150663793675 + -1.5330202531343382, + 53.795397761588376 ], [ - -1.5333504944019833, - 53.79613582678485 + -1.5330080377656201, + 53.79543235129825 + ], + [ + -1.5330096577521983, + 53.7954508755259 + ], + [ + -1.5330695424440117, + 53.79544904810428 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591164975, - "osm_way_id": 145765941, - "src_i": 342579559, + "dst_i": 1606819521, + "osm_way_id": 51706165, + "src_i": 659985459, "type": "road" }, "type": "Feature" @@ -5197,49 +5705,33 @@ "coordinates": [ [ [ - -1.5336906489521567, - 53.79952081687417 - ], - [ - -1.5336975125795007, - 53.79952894854067 - ], - [ - -1.5337607514352534, - 53.7995593357204 - ], - [ - -1.5338160212968805, - 53.79957254675566 - ], - [ - -1.5338610094203857, - 53.79950688188497 + -1.5336615714111148, + 53.80037059400921 ], [ - -1.5338224479541607, - 53.79949766383791 + -1.5336779631174116, + 53.800326681930954 ], [ - -1.5337932866732114, - 53.79948365150705 + -1.5335831512713676, + 53.8003143342445 ], [ - -1.5337979761080427, - 53.799489207516295 + -1.5335667595650708, + 53.80035824632275 ], [ - -1.5336906489521567, - 53.79952081687417 + -1.5336615714111148, + 53.80037059400921 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1569783677, - "osm_way_id": 145796714, - "src_i": 1569761300, + "dst_i": 1591373207, + "osm_way_id": 53014870, + "src_i": 26298445, "type": "road" }, "type": "Feature" @@ -5249,33 +5741,41 @@ "coordinates": [ [ [ - -1.5343719583637643, - 53.799571621353664 + -1.5340755373610242, + 53.795997503918215 ], [ - -1.5344364548406764, - 53.79953975748776 + -1.5340907018970373, + 53.79609582675584 ], [ - -1.5343814910103484, - 53.7995009427647 + -1.5342235149131964, + 53.79641093917467 ], [ - -1.534316994533436, - 53.79953280663061 + -1.5343177299220803, + 53.7963970842251 ], [ - -1.5343719583637643, - 53.799571621353664 + -1.534186713507577, + 53.79608623099367 + ], + [ + -1.5341722249810008, + 53.79599230044306 + ], + [ + -1.5340755373610242, + 53.795997503918215 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643951, - "osm_way_id": 145796715, - "src_i": 1152092781, + "dst_i": 5728993833, + "osm_way_id": 54108084, + "src_i": 26661442, "type": "road" }, "type": "Feature" @@ -5285,41 +5785,41 @@ "coordinates": [ [ [ - -1.5338430266558425, - 53.80001112344858 + -1.5340789463365396, + 53.79568481876856 ], [ - -1.5341011815658503, - 53.79978173347152 + -1.5340616334912582, + 53.79588205529813 ], [ - -1.5342891609106597, - 53.799653982131055 + -1.5340688914574403, + 53.795946808256645 ], [ - -1.5341598390873799, - 53.79958759060847 + -1.534165767872845, + 53.79594302031379 ], [ - -1.5339646215694573, - 53.799720261238434 + -1.5341588874975196, + 53.79588164700609 ], [ - -1.5337003368982058, - 53.7999550975075 + -1.5341759049693084, + 53.79568778832869 ], [ - -1.5338430266558425, - 53.80001112344858 + -1.5340789463365396, + 53.79568481876856 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1152092781, - "osm_way_id": 145796715, - "src_i": 3381506666, + "dst_i": 26661442, + "osm_way_id": 54108084, + "src_i": 26661443, "type": "road" }, "type": "Feature" @@ -5329,41 +5829,33 @@ "coordinates": [ [ [ - -1.5329295536790342, - 53.79978943975886 - ], - [ - -1.532433324688886, - 53.799706394597685 - ], - [ - -1.532216088142869, - 53.799659665843976 + -1.5340841580038862, + 53.79559332268169 ], [ - -1.5321900374188548, - 53.799701917774435 + -1.5340820949570693, + 53.79563701622478 ], [ - -1.5324098744696417, - 53.799749205906224 + -1.5341791479875522, + 53.7956386152187 ], [ - -1.532908801407362, - 53.79983270252688 + -1.534181211034369, + 53.79559492167561 ], [ - -1.5329295536790342, - 53.79978943975886 + -1.5340841580038862, + 53.79559332268169 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5335915830, - "osm_way_id": 145796721, - "src_i": 358204012, + "dst_i": 26661443, + "osm_way_id": 54108084, + "src_i": 682264890, "type": "road" }, "type": "Feature" @@ -5373,41 +5865,33 @@ "coordinates": [ [ [ - -1.5341992744937325, - 53.800088728613005 - ], - [ - -1.534047519510451, - 53.800109254730685 - ], - [ - -1.5339560207196643, - 53.80013243024999 + -1.5344137323973575, + 53.795443556846195 ], [ - -1.5339796536441617, - 53.800164982096966 + -1.5344860593169114, + 53.7954295265289 ], [ - -1.534066176761887, - 53.80014306742664 + -1.5344557667859362, + 53.79537504202516 ], [ - -1.5342126606986146, - 53.80012325357172 + -1.534383439866382, + 53.79538907234245 ], [ - -1.5341992744937325, - 53.800088728613005 + -1.5344137323973575, + 53.795443556846195 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6935272509, - "osm_way_id": 145796724, - "src_i": 1591373171, + "dst_i": 26661423, + "osm_way_id": 54108085, + "src_i": 320943617, "type": "road" }, "type": "Feature" @@ -5417,33 +5901,41 @@ "coordinates": [ [ [ - -1.533857078212355, - 53.80015751772715 + -1.5342447026323889, + 53.79549814027532 ], [ - -1.5338441122295552, - 53.800160811043085 + -1.5342670885935332, + 53.79548645089233 ], [ - -1.5338677999656285, - 53.800193348500926 + -1.534340173739888, + 53.795461805881416 ], [ - -1.5338807659484281, - 53.800190055184984 + -1.5342920369958535, + 53.79541200324626 ], [ - -1.533857078212355, - 53.80015751772715 + -1.5342102763950607, + 53.79543957464986 + ], + [ + -1.5341803995185364, + 53.79545517428346 + ], + [ + -1.5342447026323889, + 53.79549814027532 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591373192, - "osm_way_id": 145796724, - "src_i": 6935272509, + "dst_i": 320943617, + "osm_way_id": 54108085, + "src_i": 682264890, "type": "road" }, "type": "Feature" @@ -5453,33 +5945,33 @@ "coordinates": [ [ [ - -1.5335754167489835, - 53.8000475001106 + -1.5330650372369772, + 53.795420019799586 ], [ - -1.5335727020534302, - 53.80004089279433 + -1.533009659274742, + 53.79545087462658 ], [ - -1.5335357133749263, - 53.80004619519487 + -1.533101754902689, + 53.795508542729024 ], [ - -1.5335384280704796, - 53.80005280251114 + -1.5331571328649243, + 53.79547768790202 ], [ - -1.5335754167489835, - 53.8000475001106 + -1.5330650372369772, + 53.795420019799586 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4833244387, - "osm_way_id": 145796727, - "src_i": 1591373161, + "dst_i": 659985459, + "osm_way_id": 80868672, + "src_i": 26661419, "type": "road" }, "type": "Feature" @@ -5489,33 +5981,33 @@ "coordinates": [ [ [ - -1.5336228409425308, - 53.80020940229196 + -1.5329441929374443, + 53.79548248128649 ], [ - -1.5335907700804248, - 53.8000923978454 + -1.5328227883418017, + 53.79553467162067 ], [ - -1.5335531967451106, - 53.80009599153477 + -1.5329017657325712, + 53.79559876987302 ], [ - -1.5335852676072168, - 53.80021299598133 + -1.5330231703282138, + 53.795546579538836 ], [ - -1.5336228409425308, - 53.80020940229196 + -1.5329441929374443, + 53.79548248128649 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591373161, - "osm_way_id": 145796727, - "src_i": 1591373207, + "dst_i": 1020737603, + "osm_way_id": 80868672, + "src_i": 659985459, "type": "road" }, "type": "Feature" @@ -5525,33 +6017,33 @@ "coordinates": [ [ [ - -1.5335588225443646, - 53.80000870966923 + -1.5327588856569623, + 53.79556276912745 ], [ - -1.533545574890966, - 53.79997866513105 + -1.532707880440453, + 53.7955857099238 ], [ - -1.5335087415119273, - 53.79998433085754 + -1.5327891903682878, + 53.79564878294944 ], [ - -1.5335219891653258, - 53.80001437539572 + -1.5328401955847972, + 53.79562584215309 ], [ - -1.5335588225443646, - 53.80000870966923 + -1.5327588856569623, + 53.79556276912745 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3381506667, - "osm_way_id": 145796727, - "src_i": 4833244387, + "dst_i": 643851, + "osm_way_id": 80868672, + "src_i": 1020737603, "type": "road" }, "type": "Feature" @@ -5561,33 +6053,33 @@ "coordinates": [ [ [ - -1.5355974173083387, - 53.798789217800476 + -1.53292029509033, + 53.79561414737416 ], [ - -1.5355943691756984, - 53.79879188249057 + -1.5329013348526825, + 53.79559905046138 ], [ - -1.5356574481643546, - 53.79881705630261 + -1.5328401925397097, + 53.795625841253774 ], [ - -1.5356604962969949, - 53.79881439161252 + -1.5328591527773572, + 53.79564093816656 ], [ - -1.5355974173083387, - 53.798789217800476 + -1.53292029509033, + 53.79561414737416 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444915, - "osm_way_id": 147463174, - "src_i": 250348721, + "dst_i": 1020737603, + "osm_way_id": 87797760, + "src_i": 342529324, "type": "road" }, "type": "Feature" @@ -5597,65 +6089,41 @@ "coordinates": [ [ [ - -1.535264258846818, - 53.79735878643794 - ], - [ - -1.5352018117138289, - 53.79737883681446 - ], - [ - -1.5350948971673062, - 53.79736075145578 - ], - [ - -1.5350196256480886, - 53.79729405955975 - ], - [ - -1.5349579382644438, - 53.796709879991326 - ], - [ - -1.5349600302395927, - 53.79669853235056 - ], - [ - -1.534904667502795, - 53.79669497283541 + -1.5328227883418017, + 53.79553467162067 ], [ - -1.5349020609078499, - 53.7967091191652 + -1.532805735851506, + 53.79552040208382 ], [ - -1.5349649754617785, - 53.79730493955326 + -1.532806498645938, + 53.79552366032621 ], [ - -1.5350599030211494, - 53.79738904771264 + -1.5327310900977804, + 53.7955298242769 ], [ - -1.5352083891029429, - 53.7974141639681 + -1.5327328638612798, + 53.79553739746464 ], [ - -1.535290854641504, - 53.79738768703896 + -1.5327605954736232, + 53.79556060266156 ], [ - -1.535264258846818, - 53.79735878643794 + -1.5328227883418017, + 53.79553467162067 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579521, - "osm_way_id": 147463179, - "src_i": 1606819535, + "dst_i": 6665254467, + "osm_way_id": 87797760, + "src_i": 1020737603, "type": "road" }, "type": "Feature" @@ -5665,33 +6133,33 @@ "coordinates": [ [ [ - -1.5342190569050191, - 53.79661162820012 + -1.5326087247770148, + 53.79563122099597 ], [ - -1.5342175176132613, - 53.796608165811705 + -1.5325923970175568, + 53.79563892908196 ], [ - -1.5340877024857977, - 53.796628301623784 + -1.5326761917368348, + 53.7957008563718 ], [ - -1.5340892417775558, - 53.79663176401219 + -1.5326925194962928, + 53.795693148285814 ], [ - -1.5342190569050191, - 53.79661162820012 + -1.5326087247770148, + 53.79563122099597 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6905278501, - "osm_way_id": 147479103, - "src_i": 643852, + "dst_i": 1020737601, + "osm_way_id": 87797769, + "src_i": 643851, "type": "road" }, "type": "Feature" @@ -5701,33 +6169,33 @@ "coordinates": [ [ [ - -1.5344851747189774, - 53.7970381692712 + -1.532503806285383, + 53.79576127190193 ], [ - -1.5342417945737759, - 53.796654596889944 + -1.5324889827991761, + 53.795772612348124 ], [ - -1.5341161146752091, - 53.79668241830497 + -1.532554522218575, + 53.795802502202974 ], [ - -1.5343594948204107, - 53.79706599068622 + -1.532569345704782, + 53.79579116175678 ], [ - -1.5344851747189774, - 53.7970381692712 + -1.532503806285383, + 53.79576127190193 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643852, - "osm_way_id": 147479103, - "src_i": 26661432, + "dst_i": 1606819527, + "osm_way_id": 113039474, + "src_i": 1020737601, "type": "road" }, "type": "Feature" @@ -5737,33 +6205,33 @@ "coordinates": [ [ [ - -1.5341950585700155, - 53.79655745755963 + -1.5324657746643924, + 53.79581339388766 ], [ - -1.5341945744010947, - 53.7965563603872 + -1.5324529533232514, + 53.79585876916226 ], [ - -1.5340646983718802, - 53.796576355905096 + -1.5325346256165049, + 53.7958668198898 ], [ - -1.534065182540801, - 53.79657745307753 + -1.532547446957646, + 53.7958214446152 ], [ - -1.5341950585700155, - 53.79655745755963 + -1.5324657746643924, + 53.79581339388766 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342628235, - "osm_way_id": 147479103, - "src_i": 6905278501, + "dst_i": 478743247, + "osm_way_id": 113039474, + "src_i": 1606819527, "type": "road" }, "type": "Feature" @@ -5773,57 +6241,69 @@ "coordinates": [ [ [ - -1.5339237778101116, - 53.79717464762909 - ], - [ - -1.5339377776001355, - 53.79719374742261 + -1.5338138547170868, + 53.80006966209439 ], [ - -1.5339563176157007, - 53.79732313822647 + -1.533775789600133, + 53.80006582558816 ], [ - -1.533992548067404, - 53.79737931435426 + -1.533770667762869, + 53.80008355661411 ], [ - -1.534037571209416, - 53.797421092342205 + -1.533808732879823, + 53.80008739312033 ], [ - -1.5340889479266069, - 53.79740177491284 - ], + -1.5338138547170868, + 53.80006966209439 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1284137095, + "osm_way_id": 113160846, + "src_i": 1284137007, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5340472530652902, - 53.7973630851955 + -1.5336735462179163, + 53.80005802217408 ], [ - -1.5340162814797906, - 53.797315062317914 + -1.5336058204256544, + 53.800055477093764 ], [ - -1.5339976227058107, - 53.79718485313134 + -1.5336038867950583, + 53.800073427554196 ], [ - -1.5339796673470556, - 53.79716035560919 + -1.5336716125873202, + 53.80007597263451 ], [ - -1.5339237778101116, - 53.79717464762909 + -1.5336735462179163, + 53.80005802217408 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1606959629, - "osm_way_id": 147479112, - "src_i": 26661454, + "dst_i": 1591373161, + "osm_way_id": 113160846, + "src_i": 1284137095, "type": "road" }, "type": "Feature" @@ -5833,33 +6313,41 @@ "coordinates": [ [ [ - -1.533863370885783, - 53.799980088757245 + -1.5340649800424788, + 53.800102178867824 + ], + [ + -1.534042691524136, + 53.80008026959342 + ], + [ + -1.5340067138146996, + 53.800079518659835 ], [ - -1.533815243277011, - 53.79997278446668 + -1.5340056388987935, + 53.80009749430127 ], [ - -1.5337910805072794, - 53.80002832837135 + -1.5340251000533436, + 53.80009789989534 ], [ - -1.5338392081160515, - 53.80003563266191 + -1.5340388775519762, + 53.80011144367962 ], [ - -1.533863370885783, - 53.799980088757245 + -1.5340649800424788, + 53.800102178867824 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3381506666, - "osm_way_id": 162428102, - "src_i": 9823132, + "dst_i": 6935272510, + "osm_way_id": 113160846, + "src_i": 1591373175, "type": "road" }, "type": "Feature" @@ -5869,33 +6357,33 @@ "coordinates": [ [ [ - -1.5342225968192993, - 53.80003305880331 + -1.533956868776548, + 53.80007849523178 ], [ - -1.534064951114147, - 53.80001001818225 + -1.5339509384685388, + 53.800078380118606 ], [ - -1.5340416318336676, - 53.80006568799195 + -1.5339499396798215, + 53.80009635755869 ], [ - -1.53419927753882, - 53.800088728613005 + -1.5339558699878306, + 53.80009647267186 ], [ - -1.5342225968192993, - 53.80003305880331 + -1.533956868776548, + 53.80007849523178 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6935272506, - "osm_way_id": 162428102, - "src_i": 1591373171, + "dst_i": 1284137007, + "osm_way_id": 113160846, + "src_i": 6935272510, "type": "road" }, "type": "Feature" @@ -5905,41 +6393,41 @@ "coordinates": [ [ [ - -1.5356376596628927, - 53.80029706097328 + -1.5336917193004314, + 53.799597786218186 ], [ - -1.5345587577371471, - 53.80007597803044 + -1.533686982666743, + 53.79954150397043 ], [ - -1.534417193139361, - 53.8000602479952 + -1.5336906459070692, + 53.799520812377565 ], [ - -1.5343992453933248, - 53.80011660668529 + -1.5336527893786127, + 53.79951847414124 ], [ - -1.5345337240723755, - 53.800131548914756 + -1.5336488185844437, + 53.79954089602899 ], [ - -1.5356058384979658, - 53.800351241506306 + -1.5336537013823346, + 53.79959890317569 ], [ - -1.5356376596628927, - 53.80029706097328 + -1.5336917193004314, + 53.799597786218186 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591373171, - "osm_way_id": 162428102, - "src_i": 1743212077, + "dst_i": 1569761300, + "osm_way_id": 114458912, + "src_i": 615978081, "type": "road" }, "type": "Feature" @@ -5949,33 +6437,33 @@ "coordinates": [ [ [ - -1.5339910803352035, - 53.79999920833584 + -1.5323262045989534, + 53.79778526995243 ], [ - -1.5339883093055304, - 53.79999880274177 + -1.5323114892133545, + 53.79785649173168 ], [ - -1.533964956529088, - 53.80005446715554 + -1.5324305338661437, + 53.79786507305901 ], [ - -1.533967727558761, - 53.800054872749605 + -1.5324452492517426, + 53.797793851279756 ], [ - -1.5339910803352035, - 53.79999920833584 + -1.5323262045989534, + 53.79778526995243 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9823132, - "osm_way_id": 162428102, - "src_i": 6935272506, + "dst_i": 4361246652, + "osm_way_id": 114458978, + "src_i": 26661448, "type": "road" }, "type": "Feature" @@ -5985,33 +6473,33 @@ "coordinates": [ [ [ - -1.5359976209850532, - 53.800156171442616 - ], + -1.5323021057760606, + 53.7979009254165 + ], [ - -1.5363524802630188, - 53.80021669579067 + -1.5322840286138033, + 53.79798471971262 ], [ - -1.5363627787491225, - 53.800195628281344 + -1.5324029940943162, + 53.797993673359116 ], [ - -1.5360079194711567, - 53.8001351039333 + -1.5324210712565733, + 53.79790987906299 ], [ - -1.5359976209850532, - 53.800156171442616 + -1.5323021057760606, + 53.7979009254165 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1743212076, - "osm_way_id": 162428103, - "src_i": 1152092921, + "dst_i": 394143337, + "osm_way_id": 114458978, + "src_i": 4361246652, "type": "road" }, "type": "Feature" @@ -6021,33 +6509,57 @@ "coordinates": [ [ [ - -1.5367044314823717, - 53.800288802502436 + -1.533772083728581, + 53.79909605016474 ], [ - -1.5370393880680924, - 53.80035307162589 + -1.5338266105888454, + 53.79903825166066 ], [ - -1.5370623267126275, - 53.80031135928843 + -1.5338684074605953, + 53.79896586256189 ], [ - -1.536727370126907, - 53.80024709016497 + -1.5339167253873394, + 53.79882450538396 ], [ - -1.5367044314823717, - 53.800288802502436 + -1.5339533836738437, + 53.79882566550891 + ], + [ + -1.5339597996733174, + 53.798754928464035 + ], + [ + -1.533819675401944, + 53.79875049480823 + ], + [ + -1.533752392669921, + 53.79894733833424 + ], + [ + -1.533716588530475, + 53.79900934746235 + ], + [ + -1.5336673235815022, + 53.79906156837347 + ], + [ + -1.533772083728581, + 53.79909605016474 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1743296708, - "osm_way_id": 162428104, - "src_i": 1152092776, + "dst_i": 7237437098, + "osm_way_id": 114459026, + "src_i": 1296601330, "type": "road" }, "type": "Feature" @@ -6057,33 +6569,57 @@ "coordinates": [ [ [ - -1.532189914092809, - 53.79582380353593 + -1.5389006597711479, + 53.79558318552788 ], [ - -1.5321313326984682, - 53.79585251977601 + -1.5388024328594134, + 53.795604761153946 ], [ - -1.5321933367712184, - 53.7958966494901 + -1.5383375865415843, + 53.79569124622049 ], [ - -1.5322519181655592, - 53.79586793325002 + -1.5378516545149958, + 53.795757473167214 ], [ - -1.532189914092809, - 53.79582380353593 + -1.5354949957885002, + 53.795996417537644 + ], + [ + -1.5355014361486743, + 53.796018576823464 + ], + [ + -1.5378591454303756, + 53.795779526333085 + ], + [ + -1.5383476140148957, + 53.79571295404684 + ], + [ + -1.5388147685090898, + 53.79562603910454 + ], + [ + -1.5389139272176156, + 53.79560425843314 + ], + [ + -1.5389006597711479, + 53.79558318552788 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342620651, - "osm_way_id": 172405746, - "src_i": 2377604550, + "dst_i": 60197213, + "osm_way_id": 115570255, + "src_i": 1305300599, "type": "road" }, "type": "Feature" @@ -6093,41 +6629,33 @@ "coordinates": [ [ [ - -1.5366048632095701, - 53.7989313052276 - ], - [ - -1.5365557855334817, - 53.79893727582413 - ], - [ - -1.5365390177588722, - 53.79894213845637 + -1.5341368075676742, + 53.79952372258247 ], [ - -1.536565446073743, - 53.79897393127587 + -1.5341392299348224, + 53.79953140998406 ], [ - -1.5365753593562712, - 53.7989710561445 + -1.534169166190554, + 53.79952811846677 ], [ - -1.53661695829733, - 53.7989659956615 + -1.534166743823406, + 53.79952043106518 ], [ - -1.5366048632095701, - 53.7989313052276 + -1.5341368075676742, + 53.79952372258247 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304923, - "osm_way_id": 190821082, - "src_i": 2014304918, + "dst_i": 1591373154, + "osm_way_id": 121485718, + "src_i": 1152092841, "type": "road" }, "type": "Feature" @@ -6137,41 +6665,33 @@ "coordinates": [ [ [ - -1.536467139989732, - 53.798970689221264 - ], - [ - -1.536440538104871, - 53.79898468176705 - ], - [ - -1.5364363039106286, - 53.79899055523684 + -1.5341106396077893, + 53.799439615322406 ], [ - -1.5364914748069103, - 53.799004433568776 + -1.5341134075923748, + 53.799448613934985 ], [ - -1.5364904501349488, - 53.79900585539633 + -1.5341433682088068, + 53.79944539796072 ], [ - -1.5365070184563236, - 53.79899714007007 + -1.5341406002242213, + 53.79943639934814 ], [ - -1.536467139989732, - 53.798970689221264 + -1.5341106396077893, + 53.799439615322406 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9791699, - "osm_way_id": 190821082, - "src_i": 2014304923, + "dst_i": 1152092841, + "osm_way_id": 121485718, + "src_i": 6211583011, "type": "road" }, "type": "Feature" @@ -6181,33 +6701,41 @@ "coordinates": [ [ [ - -1.5365551475876393, - 53.798961868674375 + -1.532335297230386, + 53.79805340360613 ], [ - -1.536541184338666, - 53.79894899848203 + -1.5324047983086913, + 53.79808231140173 ], [ - -1.536477088290767, - 53.798973260381906 + -1.5324063573935183, + 53.7980843897341 ], [ - -1.5364910515397405, - 53.79898613057425 + -1.5325160079512072, + 53.7980556977757 ], [ - -1.5365551475876393, - 53.798961868674375 + -1.532501001759747, + 53.79803568876798 + ], + [ + -1.532404344590646, + 53.79799548549227 + ], + [ + -1.532335297230386, + 53.79805340360613 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304919, - "osm_way_id": 190821091, - "src_i": 2014304923, + "dst_i": 4361246658, + "osm_way_id": 123501444, + "src_i": 394143337, "type": "road" }, "type": "Feature" @@ -6217,33 +6745,41 @@ "coordinates": [ [ [ - -1.5363213259722661, - 53.798873186565004 + -1.5321979363759668, + 53.798096527878606 ], [ - -1.5363298004509256, - 53.79885403820811 + -1.5322374235488077, + 53.7980691138563 ], [ - -1.536256148918286, - 53.79884266538634 + -1.5323218470786655, + 53.798052253373726 ], [ - -1.5362476744396265, - 53.79886181374323 + -1.5322834363442743, + 53.79798514778974 ], [ - -1.5363213259722661, - 53.798873186565004 + -1.5321675753305215, + 53.79800828553753 + ], + [ + -1.5321065928846453, + 53.79805062470219 + ], + [ + -1.5321979363759668, + 53.798096527878606 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304912, - "osm_way_id": 190821092, - "src_i": 2014304914, + "dst_i": 394143337, + "osm_way_id": 123501444, + "src_i": 4361246654, "type": "road" }, "type": "Feature" @@ -6253,33 +6789,41 @@ "coordinates": [ [ [ - -1.5362886049839675, - 53.798948786242114 + -1.5321577762387766, + 53.79818327015115 ], [ - -1.5363119501476912, - 53.79889485122391 + -1.5321622372920416, + 53.79815823933125 ], [ - -1.5362381950820747, - 53.79888371402441 + -1.5321772221678889, + 53.79812071333614 ], [ - -1.5362148499183512, - 53.79893764904262 + -1.5320604978718149, + 53.7981044518018 ], [ - -1.5362886049839675, - 53.798948786242114 + -1.5320437620706246, + 53.7981463610907 + ], + [ + -1.5320385062495085, + 53.7981758543447 + ], + [ + -1.5321577762387766, + 53.79818327015115 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304914, - "osm_way_id": 190821092, - "src_i": 7261942265, + "dst_i": 4361246654, + "osm_way_id": 123501444, + "src_i": 5506378742, "type": "road" }, "type": "Feature" @@ -6289,33 +6833,33 @@ "coordinates": [ [ [ - -1.53584692569224, - 53.798212856934605 + -1.5320933391410718, + 53.79897172973643 ], [ - -1.5358336338850722, - 53.798222764761384 + -1.5320823022212366, + 53.799026055959565 ], [ - -1.5358932993305818, - 53.798250692296364 + -1.5321427715698603, + 53.79903034212662 ], [ - -1.5359065911377496, - 53.798240784469584 + -1.5321538084896953, + 53.798976015903484 ], [ - -1.53584692569224, - 53.798212856934605 + -1.5320933391410718, + 53.79897172973643 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304856, - "osm_way_id": 190821093, - "src_i": 2014304855, + "dst_i": 1675168080, + "osm_way_id": 123501451, + "src_i": 1296601030, "type": "road" }, "type": "Feature" @@ -6325,57 +6869,57 @@ "coordinates": [ [ [ - -1.5357649625931251, - 53.79826956725947 + -1.5334187272013227, + 53.79960662834879 ], [ - -1.5357460358514408, - 53.79828170450466 + -1.5335094631976773, + 53.799582613762375 ], [ - -1.5357252363809113, - 53.798309484550884 + -1.533576624126198, + 53.79955463856334 ], [ - -1.5357280195909346, - 53.79834275045927 + -1.5336427344995134, + 53.79951334441046 ], [ - -1.5357511653014233, - 53.79837458644621 + -1.5336559958558058, + 53.79950036719884 ], [ - -1.5358211140075988, - 53.79835684282976 + -1.5336234073288157, + 53.79948874976157 ], [ - -1.5358033794176913, - 53.79833244962892 + -1.5336122653534598, + 53.79949965493608 ], [ - -1.5358021644277577, - 53.79831791479217 + -1.5335515752359887, + 53.79953756224357 ], [ - -1.535810564301772, - 53.79830669485508 + -1.5334905379785366, + 53.799562986966365 ], [ - -1.535820955663046, - 53.79830003088154 + -1.5334031637588403, + 53.79958611122433 ], [ - -1.5357649625931251, - 53.79826956725947 + -1.5334187272013227, + 53.79960662834879 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304862, - "osm_way_id": 190821093, - "src_i": 2014304856, + "dst_i": 1569761300, + "osm_way_id": 143459488, + "src_i": 1152092910, "type": "road" }, "type": "Feature" @@ -6385,33 +6929,41 @@ "coordinates": [ [ [ - -1.5364612721060178, - 53.79891287452939 + -1.5335459281211221, + 53.79990784265062 ], [ - -1.536460366192471, - 53.79891512553152 + -1.5336864436862463, + 53.79979046498556 ], [ - -1.53653442881193, - 53.79892552528725 + -1.5337050689642628, + 53.79973677548217 ], [ - -1.536535334725477, - 53.79892327428513 + -1.5336677788220914, + 53.79973226268606 ], [ - -1.5364612721060178, - 53.79891287452939 + -1.5336507552601273, + 53.79978133507202 + ], + [ + -1.5335148499575582, + 53.79989486184171 + ], + [ + -1.5335459281211221, + 53.79990784265062 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304919, - "osm_way_id": 190821094, - "src_i": 2014304915, + "dst_i": 6211583002, + "osm_way_id": 143460612, + "src_i": 3381506667, "type": "road" }, "type": "Feature" @@ -6421,33 +6973,33 @@ "coordinates": [ [ [ - -1.536444064316257, - 53.798924339981305 + -1.533705871344833, + 53.79964459770948 ], [ - -1.5364409354887965, - 53.79892469341472 + -1.5337046837606876, + 53.79964213536677 ], [ - -1.5364552352199443, - 53.79896885910168 + -1.5336680757181278, + 53.79964829572017 ], [ - -1.536458364047405, - 53.79896850566826 + -1.5336692633022733, + 53.79965075806289 ], [ - -1.536444064316257, - 53.798924339981305 + -1.533705871344833, + 53.79964459770948 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304920, - "osm_way_id": 190821094, - "src_i": 2014304919, + "dst_i": 615978081, + "osm_way_id": 143460612, + "src_i": 6211582994, "type": "road" }, "type": "Feature" @@ -6457,33 +7009,33 @@ "coordinates": [ [ [ - -1.5363534607812108, - 53.798939794824115 + -1.5337157633117484, + 53.79970412291116 ], [ - -1.5363397091658224, - 53.798942881296064 + -1.5337162063719874, + 53.79969202073951 ], [ - -1.5363667495432913, - 53.79898491559068 + -1.53367815191284, + 53.799691535105815 ], [ - -1.5363805011586797, - 53.79898182911873 + -1.533677708852601, + 53.79970363727746 ], [ - -1.5363534607812108, - 53.798939794824115 + -1.5337157633117484, + 53.79970412291116 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7261942266, - "osm_way_id": 190821094, - "src_i": 2014304920, + "dst_i": 6211582994, + "osm_way_id": 143460612, + "src_i": 6211583002, "type": "road" }, "type": "Feature" @@ -6493,49 +7045,33 @@ "coordinates": [ [ [ - -1.5388947553463832, - 53.797706819425635 - ], - [ - -1.5384208833890474, - 53.79773090955508 - ], - [ - -1.5378621585445091, - 53.797751066051546 - ], - [ - -1.537155501824112, - 53.79776263222748 - ], - [ - -1.5371571613968282, - 53.79779803672278 + -1.5321980185933308, + 53.7989081881642 ], [ - -1.5378648229961178, - 53.79778645435906 + -1.5322386628994418, + 53.79872642716183 ], [ - -1.5384252804954737, - 53.79776623491007 + -1.5321197674559426, + 53.79871715155818 ], [ - -1.5388998984992597, - 53.79774210700912 + -1.5320791231498316, + 53.798898912560546 ], [ - -1.5388947553463832, - 53.797706819425635 + -1.5321980185933308, + 53.7989081881642 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9316506541, - "osm_way_id": 192930242, - "src_i": 26109188, + "dst_i": 4361248196, + "osm_way_id": 143460882, + "src_i": 1296601030, "type": "road" }, "type": "Feature" @@ -6545,69 +7081,49 @@ "coordinates": [ [ [ - -1.5370796349902778, - 53.79776374648702 + -1.5336673281491335, + 53.79906156837347 ], [ - -1.5368478444483022, - 53.79776675741596 + -1.53363865712728, + 53.799049117265014 ], [ - -1.5368491629712127, - 53.79780216730719 + -1.5335165491164127, + 53.799019266980316 ], [ - -1.5370809535131882, - 53.797799156378254 + -1.5321980185933308, + 53.79890818636556 ], [ - -1.5370796349902778, - 53.79776374648702 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 26109191, - "osm_way_id": 192930242, - "src_i": 9316506541, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -1.5334705804747157, - 53.79980860880015 + -1.5321810848614497, + 53.79897831367034 ], [ - -1.532216034853837, - 53.79955279405461 + -1.533484651824297, + 53.79908813343612 ], [ - -1.5321918050921792, - 53.79959425098472 + -1.533579341866839, + 53.799111281975776 ], [ - -1.533446350713058, - 53.79985006573026 + -1.5335962893016142, + 53.79911864112496 ], [ - -1.5334705804747157, - 53.79980860880015 + -1.5336673281491335, + 53.79906156837347 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3174228063, - "osm_way_id": 206566459, - "src_i": 358204009, + "dst_i": 1296601030, + "osm_way_id": 143460882, + "src_i": 1296601330, "type": "road" }, "type": "Feature" @@ -6617,33 +7133,49 @@ "coordinates": [ [ [ - -1.533402233484593, - 53.799739570573905 + -1.5337473972037907, + 53.79943272292117 ], [ - -1.5342396797604705, - 53.7998990706671 + -1.533793138986465, + 53.79917433071974 ], [ - -1.5342624661506281, - 53.799857329551344 + -1.5337753343595437, + 53.799125945415526 ], [ - -1.5334250198747506, - 53.79969782945815 + -1.5337575754089359, + 53.79911143396114 ], [ - -1.533402233484593, - 53.799739570573905 + -1.5336603823044255, + 53.79915293405869 + ], + [ + -1.5336634669781166, + 53.799155453957994 + ], + [ + -1.5336718622844996, + 53.79917826974863 + ], + [ + -1.5336281211243474, + 53.79942535567809 + ], + [ + -1.5337473972037907, + 53.79943272292117 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9823112, - "osm_way_id": 206566460, - "src_i": 2165840661, + "dst_i": 1296601330, + "osm_way_id": 143460882, + "src_i": 1569761300, "type": "road" }, "type": "Feature" @@ -6653,33 +7185,33 @@ "coordinates": [ [ [ - -1.5353318476101399, - 53.800107506449365 + -1.5322481239864683, + 53.798681216463095 ], [ - -1.535878786443305, - 53.8002146381427 + -1.5322577601660292, + 53.79863179603965 ], [ - -1.535902157490273, - 53.80017300854283 + -1.5321386211155257, + 53.7986236913528 ], [ - -1.5353552186571078, - 53.8000658768495 + -1.532128984935965, + 53.79867311177625 ], [ - -1.5353318476101399, - 53.800107506449365 + -1.5322481239864683, + 53.798681216463095 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 50021952, - "osm_way_id": 206817419, - "src_i": 370191920, + "dst_i": 394143340, + "osm_way_id": 143460882, + "src_i": 4361248196, "type": "road" }, "type": "Feature" @@ -6689,49 +7221,33 @@ "coordinates": [ [ [ - -1.5325314221843995, - 53.79690181412037 - ], - [ - -1.5324774997740145, - 53.79685836968938 - ], - [ - -1.5323643290951146, - 53.796808707348404 - ], - [ - -1.5323281443197245, - 53.796799022553394 - ], - [ - -1.5323033938480954, - 53.796831283020154 + -1.5333504944019833, + 53.79613582678485 ], [ - -1.5323337290102965, - 53.79683940299547 + -1.5333272329781675, + 53.79607168176778 ], [ - -1.5324344848672435, - 53.79688361544716 + -1.533209966656509, + 53.796086518776605 ], [ - -1.5324830631489734, - 53.79692275572465 + -1.533233228080325, + 53.796150663793675 ], [ - -1.5325314221843995, - 53.79690181412037 + -1.5333504944019833, + 53.79613582678485 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3181227681, - "osm_way_id": 312269974, - "src_i": 3181227677, + "dst_i": 1591164975, + "osm_way_id": 145765941, + "src_i": 342579559, "type": "road" }, "type": "Feature" @@ -6741,33 +7257,49 @@ "coordinates": [ [ [ - -1.532445247729199, - 53.79779385038044 + -1.5336906489521567, + 53.79952081687417 ], [ - -1.5327858179338232, - 53.79784288679353 + -1.5336975125795007, + 53.79952894854067 ], [ - -1.5328142194654282, - 53.797774063505166 + -1.5337607514352534, + 53.7995593357204 ], [ - -1.532473649260804, - 53.79772502709206 + -1.5338160212968805, + 53.79957254675566 ], [ - -1.532445247729199, - 53.79779385038044 + -1.5338610094203857, + 53.79950688188497 + ], + [ + -1.5338224479541607, + 53.79949766383791 + ], + [ + -1.5337932866732114, + 53.79948365150705 + ], + [ + -1.5337979761080427, + 53.799489207516295 + ], + [ + -1.5336906489521567, + 53.79952081687417 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5506378752, - "osm_way_id": 312269975, - "src_i": 26661448, + "dst_i": 1569783677, + "osm_way_id": 145796714, + "src_i": 1569761300, "type": "road" }, "type": "Feature" @@ -6777,33 +7309,33 @@ "coordinates": [ [ [ - -1.5324430217701979, - 53.79724004540124 + -1.5343719583637643, + 53.799571621353664 ], [ - -1.532341154456294, - 53.79771416148771 + -1.5344364548406764, + 53.79953975748776 ], [ - -1.5324601290720694, - 53.79772307916134 + -1.5343814910103484, + 53.7995009427647 ], [ - -1.5325619963859733, - 53.797248963074864 + -1.534316994533436, + 53.79953280663061 ], [ - -1.5324430217701979, - 53.79724004540124 + -1.5343719583637643, + 53.799571621353664 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661448, - "osm_way_id": 312269975, - "src_i": 26661450, + "dst_i": 643951, + "osm_way_id": 145796715, + "src_i": 1152092781, "type": "road" }, "type": "Feature" @@ -6813,33 +7345,41 @@ "coordinates": [ [ [ - -1.5324765238234537, - 53.79699393433646 + -1.5338430266558425, + 53.80001112344858 ], [ - -1.5324503924046193, - 53.79719709829513 + -1.5341011815658503, + 53.79978173347152 ], [ - -1.5325699760379055, - 53.79720246544683 + -1.5342891609106597, + 53.799653982131055 ], [ - -1.5325961074567398, - 53.79699930148816 + -1.5341598390873799, + 53.79958759060847 ], [ - -1.5324765238234537, - 53.79699393433646 + -1.5339646215694573, + 53.799720261238434 + ], + [ + -1.5337003368982058, + 53.7999550975075 + ], + [ + -1.5338430266558425, + 53.80001112344858 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661450, - "osm_way_id": 312269975, - "src_i": 3181227677, + "dst_i": 1152092781, + "osm_way_id": 145796715, + "src_i": 3381506666, "type": "road" }, "type": "Feature" @@ -6849,33 +7389,41 @@ "coordinates": [ [ [ - -1.5328682454087899, - 53.79785147531543 + -1.5329295536790342, + 53.79978943975886 ], [ - -1.5330680792794424, - 53.797864523573466 + -1.532433324688886, + 53.799706394597685 ], [ - -1.5330812553732835, - 53.79779411388168 + -1.532216088142869, + 53.799659665843976 ], [ - -1.532881421502631, - 53.797781065623646 + -1.5321900374188548, + 53.799701917774435 ], [ - -1.5328682454087899, - 53.79785147531543 + -1.5324098744696417, + 53.799749205906224 + ], + [ + -1.532908801407362, + 53.79983270252688 + ], + [ + -1.5329295536790342, + 53.79978943975886 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661446, - "osm_way_id": 312269975, - "src_i": 5506378752, + "dst_i": 5335915830, + "osm_way_id": 145796721, + "src_i": 358204012, "type": "road" }, "type": "Feature" @@ -6885,41 +7433,33 @@ "coordinates": [ [ [ - -1.5344729426022778, - 53.796137851157916 - ], - [ - -1.5349184891551972, - 53.796058253096675 - ], - [ - -1.5354142370215123, - 53.79598788387437 + -1.5341992744937325, + 53.800088728613005 ], [ - -1.5354053423207705, - 53.79596602316334 + -1.5340882612593636, + 53.80010374458684 ], [ - -1.5349085104032867, - 53.79603654706897 + -1.5341016474642457, + 53.800138269545556 ], [ - -1.5344619224304241, - 53.796116330390475 + -1.5342126606986146, + 53.80012325357172 ], [ - -1.5344729426022778, - 53.796137851157916 + -1.5341992744937325, + 53.800088728613005 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3193487666, - "osm_way_id": 313390685, - "src_i": 3193487669, + "dst_i": 1591373175, + "osm_way_id": 145796724, + "src_i": 1591373171, "type": "road" }, "type": "Feature" @@ -6929,57 +7469,69 @@ "coordinates": [ [ [ - -1.535487533801452, - 53.795978975193954 - ], - [ - -1.5378457516127746, - 53.795739825778185 + -1.5340090996407973, + 53.80011898629042 ], [ - -1.5383296038445646, - 53.795673954962844 + -1.5339559841786137, + 53.80013243924321 ], [ - -1.5387925682982861, - 53.795587838618175 + -1.533979617103111, + 53.800164991090185 ], [ - -1.5389139287401594, - 53.79556117912674 + -1.5340327325652945, + 53.8001515381374 ], [ - -1.5389006612936917, - 53.795540106221495 - ], + -1.5340090996407973, + 53.80011898629042 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6935272509, + "osm_way_id": 145796724, + "src_i": 1591373175, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5387802326486097, - 53.79556656066759 + -1.5338570766898112, + 53.80015751772715 ], [ - -1.5383195946417785, - 53.79565224533785 + -1.533845202370899, + 53.80016053405201 ], [ - -1.5378382485170445, - 53.79571777441096 + -1.5338688931520599, + 53.80019307150985 ], [ - -1.535481093441278, - 53.79595681590813 + -1.533880767470972, + 53.800190055184984 ], [ - -1.535487533801452, - 53.795978975193954 + -1.5338570766898112, + 53.80015751772715 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3193482754, - "osm_way_id": 313390688, - "src_i": 3193487666, + "dst_i": 1591373192, + "osm_way_id": 145796724, + "src_i": 6935272509, "type": "road" }, "type": "Feature" @@ -6989,33 +7541,33 @@ "coordinates": [ [ [ - -1.5322116742884613, - 53.79651315877307 + -1.5335754167489835, + 53.8000475001106 ], [ - -1.5327953673283887, - 53.796415445675535 + -1.5335727020534302, + 53.80004089279433 ], [ - -1.5327849896700088, - 53.79639381519085 + -1.5335357133749263, + 53.80004619519487 ], [ - -1.5322012966300813, - 53.79649152828838 + -1.5335384280704796, + 53.80005280251114 ], [ - -1.5322116742884613, - 53.79651315877307 + -1.5335754167489835, + 53.8000475001106 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3371780107, - "osm_way_id": 313390689, - "src_i": 3193487681, + "dst_i": 4833244387, + "osm_way_id": 145796727, + "src_i": 1591373161, "type": "road" }, "type": "Feature" @@ -7025,33 +7577,33 @@ "coordinates": [ [ [ - -1.5328685818909644, - 53.796403272457475 + -1.5336226186511395, + 53.8002085902045 ], [ - -1.5343994646396286, - 53.79615047943273 + -1.5335907700804248, + 53.8000923978454 ], [ - -1.5343892179200136, - 53.79612882736433 + -1.5335531967451106, + 53.80009599153477 ], [ - -1.5328583351713494, - 53.79638162038907 + -1.5335850453158255, + 53.80021218389387 ], [ - -1.5328685818909644, - 53.796403272457475 + -1.5336226186511395, + 53.8002085902045 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3193487669, - "osm_way_id": 313390689, - "src_i": 3371780107, + "dst_i": 1591373161, + "osm_way_id": 145796727, + "src_i": 1591373207, "type": "road" }, "type": "Feature" @@ -7061,33 +7613,33 @@ "coordinates": [ [ [ - -1.5331131069890858, - 53.79635767055382 + -1.5335588225443646, + 53.80000870966923 ], [ - -1.5328610392090962, - 53.79638357101776 + -1.533545574890966, + 53.79997866513105 ], [ - -1.5328675617866343, - 53.79640572131037 + -1.5335087415119273, + 53.79998433085754 ], [ - -1.5331196295666238, - 53.79637982084642 + -1.5335219891653258, + 53.80001437539572 ], [ - -1.5331131069890858, - 53.79635767055382 + -1.5335588225443646, + 53.80000870966923 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3371780107, - "osm_way_id": 330225647, - "src_i": 3371780106, + "dst_i": 3381506667, + "osm_way_id": 145796727, + "src_i": 4833244387, "type": "road" }, "type": "Feature" @@ -7097,33 +7649,33 @@ "coordinates": [ [ [ - -1.5331406924372266, - 53.800000122046654 + -1.5355974173083387, + 53.798789217800476 ], [ - -1.533137367201619, - 53.79999794388958 + -1.5355943691756984, + 53.79879188249057 ], [ - -1.5330808321061136, - 53.800028056776206 + -1.5356574481643546, + 53.79881705630261 ], [ - -1.5330841573417213, - 53.800030234933274 + -1.5356604962969949, + 53.79881439161252 ], [ - -1.5331406924372266, - 53.800000122046654 + -1.5355974173083387, + 53.798789217800476 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583000, - "osm_way_id": 331099341, - "src_i": 3381506663, + "dst_i": 5452444915, + "osm_way_id": 147463174, + "src_i": 250348721, "type": "road" }, "type": "Feature" @@ -7133,33 +7685,33 @@ "coordinates": [ [ [ - -1.533110402951339, - 53.79998029739987 + -1.535734184370685, + 53.7986908760771 ], [ - -1.5331101471639845, - 53.79998013012604 + -1.535679357569297, + 53.79872779413076 ], [ - -1.5330536516546174, - 53.80001026999232 + -1.5357365869447643, + 53.7987574465647 ], [ - -1.5330539074419718, - 53.800010437266145 + -1.5357914137461526, + 53.79872052851103 ], [ - -1.533110402951339, - 53.79998029739987 + -1.535734184370685, + 53.7986908760771 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3381506664, - "osm_way_id": 331099341, - "src_i": 6211583000, + "dst_i": 250348721, + "osm_way_id": 147463174, + "src_i": 2014304901, "type": "road" }, "type": "Feature" @@ -7169,49 +7721,65 @@ "coordinates": [ [ [ - -1.5324380400069615, - 53.79594563913848 + -1.5352581884647813, + 53.797360736167306 ], [ - -1.5324419483768354, - 53.795986511509504 + -1.5352018117138289, + 53.79737883681446 ], [ - -1.5325224726720816, - 53.79620472741488 + -1.5350948971673062, + 53.79736075145578 ], [ - -1.5325644141854902, - 53.79627627744654 + -1.5350196256480886, + 53.79729405955975 ], [ - -1.5326426577101595, - 53.79626027491683 + -1.5349579382644438, + 53.796709879991326 ], [ - -1.5326023270480664, - 53.79619147321218 + -1.5349587223744887, + 53.79670562709917 ], [ - -1.5325242510032127, - 53.79597988890477 + -1.5349033596376913, + 53.79670206758402 + ], + [ + -1.5349020609078499, + 53.7967091191652 + ], + [ + -1.5349649754617785, + 53.79730493955326 + ], + [ + -1.5350599030211494, + 53.79738904771264 + ], + [ + -1.5352083891029429, + 53.7974141639681 ], [ - -1.5325207110889325, - 53.79594288001961 + -1.5352847842594677, + 53.79738963676833 ], [ - -1.5324380400069615, - 53.79594563913848 + -1.5352581884647813, + 53.797360736167306 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579565, - "osm_way_id": 363048952, - "src_i": 478743247, + "dst_i": 342579521, + "osm_way_id": 147463179, + "src_i": 1606819535, "type": "road" }, "type": "Feature" @@ -7221,33 +7789,33 @@ "coordinates": [ [ [ - -1.5335282879289287, - 53.79616668430981 + -1.5342190569050191, + 53.79661162820012 ], [ - -1.5335365781797914, - 53.79616494951832 + -1.5342175176132613, + 53.796608165811705 ], [ - -1.5335111577889005, - 53.79612256448825 + -1.5340877024857977, + 53.796628301623784 ], [ - -1.533502867538038, - 53.79612429927975 + -1.5340892417775558, + 53.79663176401219 ], [ - -1.5335282879289287, - 53.79616668430981 + -1.5342190569050191, + 53.79661162820012 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3672604268, - "osm_way_id": 363049230, - "src_i": 342579557, + "dst_i": 6905278501, + "osm_way_id": 147479103, + "src_i": 643852, "type": "road" }, "type": "Feature" @@ -7257,33 +7825,33 @@ "coordinates": [ [ [ - -1.5337260100313634, - 53.799634269000165 + -1.5344851747189774, + 53.7970381692712 ], [ - -1.5338399191439949, - 53.79960503205284 + -1.5342417945737759, + 53.796654596889944 ], [ - -1.5338160212968805, - 53.79957254675566 + -1.5341161146752091, + 53.79668241830497 ], [ - -1.5337021121842491, - 53.79960178370298 + -1.5343594948204107, + 53.79706599068622 ], [ - -1.5337260100313634, - 53.799634269000165 + -1.5344851747189774, + 53.7970381692712 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1569783677, - "osm_way_id": 400349314, - "src_i": 615978081, + "dst_i": 643852, + "osm_way_id": 147479103, + "src_i": 26661432, "type": "road" }, "type": "Feature" @@ -7293,33 +7861,33 @@ "coordinates": [ [ [ - -1.532306365853547, - 53.79786286522432 + -1.5341950585700155, + 53.79655745755963 ], [ - -1.5322138560936929, - 53.79785945499656 + -1.5341945744010947, + 53.7965563603872 ], [ - -1.532210061914602, - 53.79789535771607 + -1.5340646983718802, + 53.796576355905096 ], [ - -1.5323025716744563, - 53.79789876794382 + -1.534065182540801, + 53.79657745307753 ], [ - -1.532306365853547, - 53.79786286522432 + -1.5341950585700155, + 53.79655745755963 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4361246653, - "osm_way_id": 438378829, - "src_i": 4361246652, + "dst_i": 342628235, + "osm_way_id": 147479103, + "src_i": 6905278501, "type": "road" }, "type": "Feature" @@ -7329,41 +7897,33 @@ "coordinates": [ [ [ - -1.53242181578048, - 53.797906427466444 - ], - [ - -1.5325927974465698, - 53.797922229447416 - ], - [ - -1.5327342950524296, - 53.79799890471324 + -1.533923774765024, + 53.79717464223316 ], [ - -1.5327754646361436, - 53.79797239630785 + -1.5339246289120825, + 53.79717580865336 ], [ - -1.532620401165236, - 53.79788836998674 + -1.5339805245392018, + 53.797161527425324 ], [ - -1.5324312311911934, - 53.79787088627425 + -1.5339796703921433, + 53.79716036100512 ], [ - -1.53242181578048, - 53.797906427466444 + -1.533923774765024, + 53.79717464223316 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5506378754, - "osm_way_id": 438378831, - "src_i": 4361246652, + "dst_i": 6596024424, + "osm_way_id": 147479112, + "src_i": 26661454, "type": "road" }, "type": "Feature" @@ -7373,41 +7933,49 @@ "coordinates": [ [ [ - -1.5328298773056246, - 53.798019509971226 + -1.5339467849691168, + 53.79727806962055 ], [ - -1.5331023167213425, - 53.7980648591655 + -1.5339565490423548, + 53.79732349615649 + ], + [ + -1.533992548067404, + 53.79737931435426 ], [ - -1.5332792789393859, - 53.79812202994306 + -1.534037571209416, + 53.797421092342205 ], [ - -1.5333085026446303, - 53.798090469148555 + -1.5340889479266069, + 53.79740177491284 ], [ - -1.5331254837474442, - 53.79803134144705 + -1.5340472530652902, + 53.7973630851955 ], [ - -1.5328463969055985, - 53.79798488608713 + -1.5340160500531366, + 53.797314704387894 ], [ - -1.5328298773056246, - 53.798019509971226 + -1.534007202551252, + 53.797273538838006 + ], + [ + -1.5339467849691168, + 53.79727806962055 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5506378774, - "osm_way_id": 438378831, - "src_i": 5506378754, + "dst_i": 1606959629, + "osm_way_id": 147479112, + "src_i": 6596024419, "type": "road" }, "type": "Feature" @@ -7417,33 +7985,33 @@ "coordinates": [ [ [ - -1.5321250034839897, - 53.798678769408845 + -1.533938849470954, + 53.79721250727254 ], [ - -1.5321012883421283, - 53.79867769112217 + -1.533940199967284, + 53.79723177973582 ], [ - -1.5320966141327348, - 53.79871355786881 + -1.5340010499518515, + 53.79723029225778 ], [ - -1.5321203292745962, - 53.79871463615549 + -1.5339996994555218, + 53.7972110197945 ], [ - -1.5321250034839897, - 53.798678769408845 + -1.533938849470954, + 53.79721250727254 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5506378693, - "osm_way_id": 438378833, - "src_i": 4361248196, + "dst_i": 6596024419, + "osm_way_id": 147479112, + "src_i": 6596024424, "type": "road" }, "type": "Feature" @@ -7453,33 +8021,33 @@ "coordinates": [ [ [ - -1.5320656273217976, - 53.79867612180587 + -1.5322679642544186, + 53.798295652084356 ], [ - -1.5319903847309115, - 53.79866928965918 + -1.532192420199865, + 53.798290095175794 ], [ - -1.5319811307098385, - 53.79870484524052 + -1.5321886564716496, + 53.79830794311355 ], [ - -1.5320563733007246, - 53.79871167738721 + -1.5322642005262033, + 53.79831350002212 ], [ - -1.5320656273217976, - 53.79867612180587 + -1.5322679642544186, + 53.798295652084356 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": -8, - "osm_way_id": 438378833, - "src_i": 5506378693, + "dst_i": -11, + "osm_way_id": 155080992, + "src_i": 6584937059, "type": "road" }, "type": "Feature" @@ -7489,33 +8057,33 @@ "coordinates": [ [ [ - -1.537705350238434, - 53.796625651322834 + -1.533489228590889, + 53.79839231477418 ], [ - -1.5377065180295104, - 53.79660568997917 + -1.5332139907397102, + 53.798369076302365 ], [ - -1.537653259448212, - 53.796604603598595 + -1.533209681940823, + 53.79838688107269 ], [ - -1.5376520916571355, - 53.79662456494226 + -1.5334849197920017, + 53.798410119544506 ], [ - -1.537705350238434, - 53.796625651322834 + -1.533489228590889, + 53.79839231477418 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4364076651, - "osm_way_id": 448805302, - "src_i": 301689294, + "dst_i": 1675168031, + "osm_way_id": 155080995, + "src_i": 1675168033, "type": "road" }, "type": "Feature" @@ -7525,33 +8093,33 @@ "coordinates": [ [ [ - -1.537682273042415, - 53.7966993228543 + -1.5338653623730423, + 53.79998039092932 ], [ - -1.5376935048478535, - 53.79667378391766 + -1.5338148717763294, + 53.79997272780942 ], [ - -1.537641927154884, - 53.796665869887015 + -1.5337907090065979, + 53.80002827171408 ], [ - -1.5376306953494456, - 53.79669140882365 + -1.533841199603311, + 53.80003593483399 ], [ - -1.537682273042415, - 53.7966993228543 + -1.5338653623730423, + 53.79998039092932 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 301689294, - "osm_way_id": 448805302, - "src_i": 4457813299, + "dst_i": 3381506666, + "osm_way_id": 162428102, + "src_i": 9823132, "type": "road" }, "type": "Feature" @@ -7561,33 +8129,33 @@ "coordinates": [ [ [ - -1.536718314036525, - 53.796532567033914 + -1.5342225968192993, + 53.80003305880331 ], [ - -1.5367162509897079, - 53.7965757083935 + -1.534064951114147, + 53.80001001818225 ], [ - -1.5367466896848858, - 53.79657621561092 + -1.5340416318336676, + 53.80006568799195 ], [ - -1.5367487527317027, - 53.796533074251336 + -1.53419927753882, + 53.800088728613005 ], [ - -1.536718314036525, - 53.796532567033914 + -1.5342225968192993, + 53.80003305880331 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4457813307, - "osm_way_id": 448805309, - "src_i": 9319419229, + "dst_i": 6935272506, + "osm_way_id": 162428102, + "src_i": 1591373171, "type": "road" }, "type": "Feature" @@ -7597,33 +8165,33 @@ "coordinates": [ [ [ - -1.5367018385903206, - 53.796620032361076 + -1.5356376764108743, + 53.80029705917464 ], [ - -1.5366869876983256, - 53.79679106445598 + -1.5347557155226061, + 53.8001163081105 ], [ - -1.536747810277105, - 53.79679290626675 + -1.5347238913125918, + 53.80017048684488 ], [ - -1.5367626611691, - 53.79662187417185 + -1.53560585220086, + 53.80035123790902 ], [ - -1.5367018385903206, - 53.796620032361076 + -1.5356376764108743, + 53.80029705917464 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4457813308, - "osm_way_id": 448805312, - "src_i": 4457813307, + "dst_i": 8312439326, + "osm_way_id": 162428102, + "src_i": 1743212077, "type": "road" }, "type": "Feature" @@ -7633,33 +8201,33 @@ "coordinates": [ [ [ - -1.5363088928797881, - 53.80011390782098 + -1.5339910757675723, + 53.79999920743652 ], [ - -1.5363414920645846, - 53.799880735296995 + -1.5339887523657694, + 53.79999886749293 ], [ - -1.5362219723781372, - 53.799874905893965 + -1.5339654087245898, + 53.80005453370534 ], [ - -1.5361893731933407, - 53.80010807841795 + -1.5339677321263925, + 53.80005487364893 ], [ - -1.5363088928797881, - 53.80011390782098 + -1.5339910757675723, + 53.79999920743652 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9791722, - "osm_way_id": 453297315, - "src_i": 370191923, + "dst_i": 9823132, + "osm_way_id": 162428102, + "src_i": 6935272506, "type": "road" }, "type": "Feature" @@ -7669,33 +8237,41 @@ "coordinates": [ [ [ - -1.5362313847437628, - 53.80028418448568 + -1.5346837738066275, + 53.8001015718257 ], [ - -1.5362923656670953, - 53.80016517904841 + -1.5345587455567968, + 53.800075975332476 ], [ - -1.5361775810917924, - 53.800144658326666 + -1.534417193139361, + 53.8000602479952 ], [ - -1.53611660016846, - 53.800263663763936 + -1.5343992453933248, + 53.80011660668529 ], [ - -1.5362313847437628, - 53.80028418448568 + -1.534533721027288, + 53.800131548015436 + ], + [ + -1.534651977002401, + 53.80015575775465 + ], + [ + -1.5346837738066275, + 53.8001015718257 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 370191923, - "osm_way_id": 453297316, - "src_i": 369772541, + "dst_i": 1591373171, + "osm_way_id": 162428102, + "src_i": 8312439326, "type": "road" }, "type": "Feature" @@ -7705,41 +8281,33 @@ "coordinates": [ [ [ - -1.5334097563733922, - 53.799825679723995 - ], - [ - -1.53324779273409, - 53.79977229239268 - ], - [ - -1.5322163561105737, - 53.79956279541085 + -1.5359976209850532, + 53.800156171442616 ], [ - -1.532191602593857, - 53.799605317137804 + -1.5363524802630188, + 53.80021669579067 ], [ - -1.5332166079924618, - 53.79981350830458 + -1.5363627787491225, + 53.800195628281344 ], [ - -1.5333726580717364, - 53.79986494590653 + -1.5360079194711567, + 53.8001351039333 ], [ - -1.5334097563733922, - 53.799825679723995 + -1.5359976209850532, + 53.800156171442616 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 358204014, - "osm_way_id": 454077550, - "src_i": 1591373158, + "dst_i": 1743212076, + "osm_way_id": 162428103, + "src_i": 1152092921, "type": "road" }, "type": "Feature" @@ -7749,33 +8317,33 @@ "coordinates": [ [ [ - -1.5335137445907765, - 53.79989384291026 + -1.5367044314823717, + 53.800288802502436 ], [ - -1.5335092759247928, - 53.7998897186211 + -1.5370393880680924, + 53.80035307162589 ], [ - -1.5334451555161934, - 53.79991395713862 + -1.5370623267126275, + 53.80031135928843 ], [ - -1.5334496241821773, - 53.79991808142777 + -1.536727370126907, + 53.80024709016497 ], [ - -1.5335137445907765, - 53.79989384291026 + -1.5367044314823717, + 53.800288802502436 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211582997, - "osm_way_id": 454077550, - "src_i": 3381506667, + "dst_i": 1743296708, + "osm_way_id": 162428104, + "src_i": 1152092776, "type": "road" }, "type": "Feature" @@ -7785,33 +8353,33 @@ "coordinates": [ [ [ - -1.5334887535572308, - 53.79987077530956 + -1.532189914092809, + 53.79582380353593 ], [ - -1.5334822842687248, - 53.79986480831031 + -1.5321313326984682, + 53.79585251977601 ], [ - -1.5334181760404757, - 53.79988905761968 + -1.5321933367712184, + 53.7958966494901 ], [ - -1.5334246453289817, - 53.79989502461893 + -1.5322519181655592, + 53.79586793325002 ], [ - -1.5334887535572308, - 53.79987077530956 + -1.532189914092809, + 53.79582380353593 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591373158, - "osm_way_id": 454077550, - "src_i": 6211582997, + "dst_i": 342620651, + "osm_way_id": 172405746, + "src_i": 2377604550, "type": "road" }, "type": "Feature" @@ -7821,33 +8389,41 @@ "coordinates": [ [ [ - -1.5328423956605541, - 53.79545268765906 + -1.5365755633771372, + 53.79775576051064 ], [ - -1.532778757898332, - 53.79547736594486 + -1.5365893271728759, + 53.79766388940664 ], [ - -1.532820539544644, - 53.795514955791816 + -1.5365803137137195, + 53.7975679524694 + ], + [ + -1.536549908514505, + 53.79756894891781 + ], + [ + -1.536558800170159, + 53.797663599825064 ], [ - -1.5328841773068662, - 53.795490277506005 + -1.5365452312600236, + 53.797754175905865 ], [ - -1.5328423956605541, - 53.79545268765906 + -1.5365755633771372, + 53.79775576051064 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6665254467, - "osm_way_id": 474067466, - "src_i": 1606959376, + "dst_i": 8481640859, + "osm_way_id": 177344221, + "src_i": 342579512, "type": "road" }, "type": "Feature" @@ -7857,49 +8433,33 @@ "coordinates": [ [ [ - -1.5327128134822885, - 53.79548617120329 - ], - [ - -1.5326969135576316, - 53.795488494151144 - ], - [ - -1.5326138146408594, - 53.79547551514088 - ], - [ - -1.5325003257503103, - 53.79543101040965 - ], - [ - -1.53245821827963, - 53.79546847255292 + -1.5360855585459467, + 53.79656313767527 ], [ - -1.5325821853164483, - 53.79551708538552 + -1.5360598443041071, + 53.796562915542815 ], [ - -1.5326962862695956, - 53.795534906343626 + -1.5360593997213243, + 53.796580900177474 ], [ - -1.5327310900977804, - 53.79552982247826 + -1.536085113963164, + 53.796581122309924 ], [ - -1.5327128134822885, - 53.79548617120329 + -1.5360855585459467, + 53.79656313767527 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6665254468, - "osm_way_id": 474067466, - "src_i": 6665254467, + "dst_i": 6500031458, + "osm_way_id": 177344221, + "src_i": 342579554, "type": "road" }, "type": "Feature" @@ -7909,33 +8469,41 @@ "coordinates": [ [ [ - -1.5337175797064735, - 53.80022194962783 + -1.5364662995455676, + 53.796574604925816 + ], + [ + -1.5362665783431544, + 53.79657244385586 + ], + [ + -1.5361746243117786, + 53.79656241012404 ], [ - -1.5337901243497878, - 53.800030842874726 + -1.5361690913876953, + 53.79658009798255 ], [ - -1.533695385585845, - 53.800018295538855 + -1.5362634997596385, + 53.796590399712215 ], [ - -1.5336228409425308, - 53.80020940229196 + -1.5364657422945454, + 53.79659258776183 ], [ - -1.5337175797064735, - 53.80022194962783 + -1.5364662995455676, + 53.796574604925816 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3381506666, - "osm_way_id": 491178797, - "src_i": 1591373207, + "dst_i": 342579554, + "osm_way_id": 177344221, + "src_i": 5518536453, "type": "road" }, "type": "Feature" @@ -7945,33 +8513,33 @@ "coordinates": [ [ [ - -1.5335920018183398, - 53.80003733867511 + -1.5366004067239367, + 53.79738661055093 ], [ - -1.5336579203511391, - 53.80002519693331 + -1.536581141977534, + 53.79722466700077 ], [ - -1.533646589580355, - 53.800003733722455 + -1.5365507672291947, + 53.797225927849745 ], [ - -1.533580671047556, - 53.800015875464254 + -1.5365700319755975, + 53.797387871399906 ], [ - -1.5335920018183398, - 53.80003733867511 + -1.5366004067239367, + 53.79738661055093 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3381506666, - "osm_way_id": 491178798, - "src_i": 4833244387, + "dst_i": 8481640865, + "osm_way_id": 177344221, + "src_i": 5518536456, "type": "road" }, "type": "Feature" @@ -7981,33 +8549,33 @@ "coordinates": [ [ [ - -1.5354863507849377, - 53.79874942731341 + -1.5360201713809254, + 53.79656380946855 ], [ - -1.5354896486147573, - 53.79873945923208 + -1.5359193409193332, + 53.79656614680556 ], [ - -1.5353943617350552, - 53.79872846052812 + -1.535920534593654, + 53.79658411884971 ], [ - -1.5353910639052355, - 53.798738428609454 + -1.5360213650552461, + 53.7965817815127 ], [ - -1.5354863507849377, - 53.79874942731341 + -1.5360201713809254, + 53.79656380946855 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444914, - "osm_way_id": 491178799, - "src_i": 682218116, + "dst_i": 6500031459, + "osm_way_id": 177344221, + "src_i": 6500031458, "type": "road" }, "type": "Feature" @@ -8017,41 +8585,41 @@ "coordinates": [ [ [ - -1.5355046015171854, - 53.798695870010306 + -1.5365735186008453, + 53.79701958029238 ], [ - -1.535559242568233, - 53.79854205183139 + -1.5365494045525148, + 53.79687334159645 ], [ - -1.5355570470601074, - 53.79844122618157 + -1.5365354489162604, + 53.79661489723437 ], [ - -1.5354599666238364, - 53.798441963625336 + -1.5365050132661702, + 53.79661547100159 ], [ - -1.5354620251030222, - 53.798536465245206 + -1.5365189993533002, + 53.79687449992276 ], [ - -1.535409582605188, - 53.79868409249378 + -1.5365432108444324, + 53.797021323177766 ], [ - -1.5355046015171854, - 53.798695870010306 + -1.5365735186008453, + 53.79701958029238 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1022749752, - "osm_way_id": 491178799, - "src_i": 5452444914, + "dst_i": 5518536453, + "osm_way_id": 177344221, + "src_i": 6979945559, "type": "road" }, "type": "Feature" @@ -8061,33 +8629,33 @@ "coordinates": [ [ [ - -1.5355752810443735, - 53.79905914739955 + -1.5365821605593204, + 53.79752607915336 ], [ - -1.5353373683538731, - 53.79915789561631 + -1.5365988872252478, + 53.797434584865144 ], [ - -1.5353931878538036, - 53.799204816824854 + -1.536568612964798, + 53.79743265312221 ], [ - -1.535631100544304, - 53.79910606860809 + -1.5365518862988703, + 53.79752414741043 ], [ - -1.5355752810443735, - 53.79905914739955 + -1.5365821605593204, + 53.79752607915336 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419293, - "osm_way_id": 491178800, - "src_i": 4833244388, + "dst_i": 5518536456, + "osm_way_id": 177344221, + "src_i": 8481640859, "type": "road" }, "type": "Feature" @@ -8097,41 +8665,41 @@ "coordinates": [ [ [ - -1.5352923178060733, - 53.799198249078735 + -1.5365799848442638, + 53.79718171989466 ], [ - -1.535029333387207, - 53.79930749687594 + -1.5365857080863192, + 53.7970933660377 ], [ - -1.5345915030861461, - 53.79951954073673 + -1.5365809075057923, + 53.79706432873978 ], [ - -1.5346222828311298, - 53.7995417144117 + -1.5365505997493794, + 53.7970660770211 ], [ - -1.535058727617354, - 53.79933034144487 + -1.5365551993541278, + 53.79709390023476 ], [ - -1.53532024430402, - 53.79922170338776 + -1.5365495552843487, + 53.79718103281291 ], [ - -1.5352923178060733, - 53.799198249078735 + -1.5365799848442638, + 53.79718171989466 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4833244389, - "osm_way_id": 491178800, - "src_i": 9319419293, + "dst_i": 6979945559, + "osm_way_id": 177344221, + "src_i": 8481640865, "type": "road" }, "type": "Feature" @@ -8141,49 +8709,41 @@ "coordinates": [ [ [ - -1.534367574960232, - 53.7996340090962 - ], - [ - -1.5342292427228834, - 53.79973216376067 - ], - [ - -1.534039491137118, - 53.7998830393591 + -1.5358702297472817, + 53.797700427047246 ], [ - -1.5339348238652093, - 53.79997829820781 + -1.5358701429622865, + 53.7977167137626 ], [ - -1.5339883169182493, - 53.799998804540415 + -1.535785663098309, + 53.7977167137626 ], [ - -1.5340919001389892, - 53.79990453314689 + -1.535785663098309, + 53.79773470019589 ], [ - -1.5342793861796153, - 53.799755459789075 + -1.5359004994401004, + 53.79773470019589 ], [ - -1.5344165856443943, - 53.79965810731953 + -1.5359006806228097, + 53.79770048280518 ], [ - -1.534367574960232, - 53.7996340090962 + -1.5358702297472817, + 53.797700427047246 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9823132, - "osm_way_id": 491178801, - "src_i": 643950, + "dst_i": 1877939969, + "osm_way_id": 177344224, + "src_i": 1877939967, "type": "road" }, "type": "Feature" @@ -8193,33 +8753,33 @@ "coordinates": [ [ [ - -1.5338392081160515, - 53.80003563086327 + -1.53460852664811, + 53.796472888048235 ], [ - -1.533754014179043, - 53.80015867875142 + -1.5346086941279256, + 53.79644875655 ], [ - -1.5338720630882023, - 53.80018719444277 + -1.5345782432523976, + 53.796448682805625 ], [ - -1.533957257025211, - 53.80006414655462 + -1.534578075772582, + 53.796472814303854 ], [ - -1.5338392081160515, - 53.80003563086327 + -1.53460852664811, + 53.796472888048235 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591373192, - "osm_way_id": 491178801, - "src_i": 9823132, + "dst_i": 5728993838, + "osm_way_id": 177344225, + "src_i": 1877939942, "type": "road" }, "type": "Feature" @@ -8229,33 +8789,33 @@ "coordinates": [ [ [ - -1.5345193862776332, - 53.79954972466977 + -1.534559371322289, + 53.79655189975174 ], [ - -1.5344274779225706, - 53.79959762883689 + -1.5345625427809753, + 53.7965354763395 ], [ - -1.5344696706557024, - 53.7996258729331 + -1.5345322867910505, + 53.79653343847661 ], [ - -1.5345615790107647, - 53.79957796876597 + -1.5345291153323644, + 53.79654986188885 ], [ - -1.5345193862776332, - 53.79954972466977 + -1.534559371322289, + 53.79655189975174 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643950, - "osm_way_id": 491178801, - "src_i": 4833244389, + "dst_i": 1877939942, + "osm_way_id": 177344225, + "src_i": 1877939944, "type": "road" }, "type": "Feature" @@ -8265,33 +8825,33 @@ "coordinates": [ [ [ - -1.5337407132366123, - 53.8002074156904 + -1.5346094904183205, + 53.79640402429039 ], [ - -1.5337114956215432, - 53.800263715924594 + -1.5346102471225773, + 53.79637750419381 ], [ - -1.5338043220705027, - 53.80028052244786 + -1.5345797992921368, + 53.79637720022309 ], [ - -1.5338335396855718, - 53.80022422221368 + -1.53457904258788, + 53.79640372031967 ], [ - -1.5337407132366123, - 53.8002074156904 + -1.5346094904183205, + 53.79640402429039 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5851965030, - "osm_way_id": 491178802, - "src_i": 1591373192, + "dst_i": 1877939939, + "osm_way_id": 177344225, + "src_i": 5728993838, "type": "road" }, "type": "Feature" @@ -8301,33 +8861,41 @@ "coordinates": [ [ [ - -1.5352729282110809, - 53.79802730619074 + -1.5345616246870781, + 53.79659106521025 ], [ - -1.5352645496526793, - 53.79802425569165 + -1.5345623296248465, + 53.79659108139804 ], [ - -1.5352246041941615, - 53.798062534418996 + -1.5345824089321698, + 53.796603576573254 ], [ - -1.535232982752563, - 53.798065584918085 + -1.5346044949521902, + 53.79659119291392 ], [ - -1.5352729282110809, - 53.79802730619074 + -1.5345759015800693, + 53.796573400734104 + ], + [ + -1.5345628366319242, + 53.796573093166096 + ], + [ + -1.5345616246870781, + 53.79659106521025 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452456322, - "osm_way_id": 566234612, - "src_i": 5452456321, + "dst_i": 301689312, + "osm_way_id": 177344229, + "src_i": 1877939944, "type": "road" }, "type": "Feature" @@ -8337,33 +8905,33 @@ "coordinates": [ [ [ - -1.5320308448092257, - 53.798691401280955 + -1.53571500336419, + 53.79775610674948 ], [ - -1.5320202707426986, - 53.798735931193185 + -1.5357137975095192, + 53.797768415765105 ], [ - -1.5320805817467693, - 53.79874092782436 + -1.5357441966185588, + 53.79776945538095 ], [ - -1.5320911558132964, - 53.798696397912124 + -1.5357454024732298, + 53.79775714636533 ], [ - -1.5320308448092257, - 53.798691401280955 + -1.53571500336419, + 53.79775610674948 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5506378690, - "osm_way_id": 573276629, - "src_i": 5506378693, + "dst_i": 8174077588, + "osm_way_id": 177344231, + "src_i": 1877939969, "type": "road" }, "type": "Feature" @@ -8373,57 +8941,69 @@ "coordinates": [ [ [ - -1.5321797556807328, - 53.79855715054282 + -1.5357420132907835, + 53.797865850972244 ], [ - -1.5321399685667678, - 53.79854856921549 + -1.5357437276750756, + 53.79786752011326 ], [ - -1.5321155515322258, - 53.79853390667507 + -1.5357697631736522, + 53.79785819055031 ], [ - -1.5320969521374532, - 53.79851478709647 + -1.53576804878936, + 53.797856521409294 ], [ - -1.5321039847671565, - 53.79847717656513 + -1.5357420132907835, + 53.797865850972244 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8174077587, + "osm_way_id": 177344231, + "src_i": 1877939971, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5357856965942722, + 53.79790620083738 ], [ - -1.5319847817698145, - 53.79846939923137 + -1.535800753029677, + 53.79791935161809 ], [ - -1.5319734464313992, - 53.79853001261226 + -1.5358259785349644, + 53.79790927561815 ], [ - -1.5320192475932808, - 53.79857709390006 + -1.5358109220995595, + 53.79789612483745 ], [ - -1.5320734303586516, - 53.79860963135789 - ], - [ - -1.5321386226380695, - 53.7986236913528 - ], - [ - -1.5321797556807328, - 53.79855715054282 + -1.5357856965942722, + 53.79790620083738 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5506378741, - "osm_way_id": 573276642, - "src_i": 394143340, + "dst_i": 1877939977, + "osm_way_id": 177344231, + "src_i": 8174077587, "type": "road" }, "type": "Feature" @@ -8433,33 +9013,33 @@ "coordinates": [ [ [ - -1.5322590923918336, - 53.79855693560494 + -1.5357147597571859, + 53.797815773144656 ], [ - -1.5322336050090166, - 53.79856009312331 + -1.535714840452006, + 53.79781635770374 ], [ - -1.5322582214967935, - 53.798629421830455 + -1.5357451908396447, + 53.79781489540672 ], [ - -1.5322837088796104, - 53.798626264312084 + -1.5357451101448247, + 53.797814310847635 ], [ - -1.5322590923918336, - 53.79855693560494 + -1.5357147597571859, + 53.797815773144656 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 394143340, - "osm_way_id": 573276642, - "src_i": 4361246660, + "dst_i": 1877939971, + "osm_way_id": 177344231, + "src_i": 8174077588, "type": "road" }, "type": "Feature" @@ -8469,33 +9049,41 @@ "coordinates": [ [ [ - -1.5328361014645826, - 53.79797581912611 + -1.5366048632095701, + 53.7989313052276 ], [ - -1.532860414966148, - 53.797850962702086 + -1.5365557855334817, + 53.79893727582413 ], [ - -1.5327999121215612, - 53.797846852802074 + -1.5365390177588722, + 53.79894213845637 ], [ - -1.532775598619996, - 53.7979717092261 + -1.536565446073743, + 53.79897393127587 ], [ - -1.5328361014645826, - 53.79797581912611 + -1.5365753593562712, + 53.7989710561445 + ], + [ + -1.53661695829733, + 53.7989659956615 + ], + [ + -1.5366048632095701, + 53.7989313052276 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5506378752, - "osm_way_id": 573276645, - "src_i": 5506378754, + "dst_i": 2014304923, + "osm_way_id": 190821082, + "src_i": 2014304918, "type": "road" }, "type": "Feature" @@ -8505,33 +9093,41 @@ "coordinates": [ [ [ - -1.5387832076991488, - 53.799140806706035 + -1.536467139989732, + 53.798970689221264 ], [ - -1.5375999521455126, - 53.79900083628212 + -1.536440538104871, + 53.79898468176705 ], [ - -1.537588176791946, - 53.79903556628617 + -1.5364363039106286, + 53.79899055523684 ], [ - -1.5387714323455821, - 53.79917553671009 + -1.5364914748069103, + 53.799004433568776 ], [ - -1.5387832076991488, - 53.799140806706035 + -1.5364904501349488, + 53.79900585539633 + ], + [ + -1.5365070184563236, + 53.79899714007007 + ], + [ + -1.536467139989732, + 53.798970689221264 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298429, - "osm_way_id": 583053002, - "src_i": 26298428, + "dst_i": 9791699, + "osm_way_id": 190821082, + "src_i": 2014304923, "type": "road" }, "type": "Feature" @@ -8541,85 +9137,81 @@ "coordinates": [ [ [ - -1.5375217025306682, - 53.79899210117078 + -1.535898900769135, + 53.79849697962819 ], [ - -1.5371298469614796, - 53.79895077823961 + -1.535917661553548, + 53.79849578802698 ], [ - -1.5371193079134595, - 53.79898564494055 + -1.5359686926533016, + 53.79850212374811 ], [ - -1.537511163482648, - 53.79902696787173 + -1.5360141253595894, + 53.79851735465983 ], [ - -1.5375217025306682, - 53.79899210117078 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 26298430, - "osm_way_id": 583053002, - "src_i": 26298429, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5360494970966028, + 53.79854003195493 + ], [ - -1.5334050669385608, - 53.799641115536 + -1.5360714597905774, + 53.79856790732925 ], [ - -1.5335116891566785, - 53.799655850921475 + -1.5360777981403184, + 53.79859850045365 ], [ - -1.5336329795615378, - 53.79965596063872 + -1.5360742780191075, + 53.798609456889494 ], [ - -1.5336532552770081, - 53.799651533278166 + -1.5361041960043136, + 53.7986128113593 ], [ - -1.53363246037411, - 53.799618312335866 + -1.5361086022460027, + 53.79859910120052 ], [ - -1.5336222943493152, - 53.799620532761054 + -1.5361011006728162, + 53.79856289990622 ], [ - -1.5335186532719116, - 53.79962043743296 + -1.5360751001927466, + 53.79852990019705 ], [ - -1.5334187272013227, - 53.79960662834879 + -1.5360333002759092, + 53.79850310041144 ], [ - -1.5334050669385608, - 53.799641115536 + -1.5359796001569157, + 53.798485099588994 + ], + [ + -1.535919199322762, + 53.79847760014563 + ], + [ + -1.5358956455705413, + 53.79847909571756 + ], + [ + -1.535898900769135, + 53.79849697962819 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 615978081, - "osm_way_id": 583053006, - "src_i": 1152092910, + "dst_i": 2014304895, + "osm_way_id": 190821089, + "src_i": 2014304864, "type": "road" }, "type": "Feature" @@ -8629,69 +9221,73 @@ "coordinates": [ [ [ - -1.536745107761902, - 53.79550498681116 + -1.5360521219620733, + 53.79864599722806 ], [ - -1.5368000061228477, - 53.795524593822094 + -1.5360427857236363, + 53.79865608312053 ], [ - -1.5368310325199233, - 53.79549428488335 + -1.536004472432047, + 53.79867747978158 ], [ - -1.5367761341589776, - 53.795474677872406 + -1.5359569964720112, + 53.79869082751373 ], [ - -1.536745107761902, - 53.79550498681116 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 26660405, - "osm_way_id": 603499168, - "src_i": 320943570, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5359047549499554, + 53.798694799817525 + ], [ - -1.534939654036233, - 53.79645539893981 + -1.535852965623401, + 53.79868913049375 ], [ - -1.5349065234836585, - 53.796459110440324 + -1.5358358659342484, + 53.7986836698126 ], [ - -1.5349246143488098, - 53.796515454741275 + -1.5358213834978471, + 53.79869949247797 ], [ - -1.5349577449013843, - 53.796511743240764 + -1.5358427006332607, + 53.79870630034297 ], [ - -1.534939654036233, - 53.79645539893981 + -1.535903899280353, + 53.798713000289375 + ], + [ + -1.535965699332237, + 53.798708301333676 + ], + [ + -1.5360218994681116, + 53.798692500252024 + ], + [ + -1.5360672012356347, + 53.798667198736304 + ], + [ + -1.5360788395602616, + 53.79865462711875 + ], + [ + -1.5360521219620733, + 53.79864599722806 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643911, - "osm_way_id": 603499170, - "src_i": 320943571, + "dst_i": 2014304901, + "osm_way_id": 190821089, + "src_i": 2014304895, "type": "road" }, "type": "Feature" @@ -8701,49 +9297,81 @@ "coordinates": [ [ [ - -1.5376957993213245, - 53.796559933392174 + -1.5357838649741091, + 53.79866010668566 ], [ - -1.5376952603408276, - 53.79654071758616 + -1.5357699778523246, + 53.798651435426166 ], [ - -1.5376666304276563, - 53.79650604783666 + -1.5357472371384802, + 53.798622863976874 ], [ - -1.5376370260864678, - 53.79648666385749 + -1.5357408135262876, + 53.798591589166655 ], [ - -1.5376144163113883, - 53.79649871117052 + -1.5357512170679117, + 53.79856063361563 ], [ - -1.5376411399997516, - 53.796516210171475 + -1.5357775022636675, + 53.79853316743266 ], [ - -1.5376649251786267, - 53.79654501094779 + -1.5358170640411535, + 53.7985119488373 ], [ - -1.537665351490884, - 53.79656023196697 + -1.535835467027779, + 53.79850709250031 ], [ - -1.5376957993213245, - 53.796559933392174 + -1.535823046115651, + 53.79849067088671 + ], + [ + -1.535800200346286, + 53.79849669993915 + ], + [ + -1.5357534034407747, + 53.79852179820817 + ], + [ + -1.535722297871423, + 53.7985543023911 + ], + [ + -1.5357100002853408, + 53.79859090028626 + ], + [ + -1.5357175993013288, + 53.7986279001782 + ], + [ + -1.5357444996047702, + 53.798661700283645 + ], + [ + -1.535761742413038, + 53.79867246696262 + ], + [ + -1.5357838649741091, + 53.79866010668566 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993691, - "osm_way_id": 603499171, - "src_i": 4364076651, + "dst_i": 2014304864, + "osm_way_id": 190821089, + "src_i": 2014304901, "type": "road" }, "type": "Feature" @@ -8753,49 +9381,33 @@ "coordinates": [ [ [ - -1.5374480555656598, - 53.79648033712958 - ], - [ - -1.5375576726273856, - 53.79645396452176 - ], - [ - -1.5376467795018995, - 53.796419169766544 - ], - [ - -1.5376569242110816, - 53.7964127836834 - ], - [ - -1.537623958093235, - 53.79639451306446 + -1.5365551475876393, + 53.798961868674375 ], [ - -1.5376174370382407, - 53.79639861846786 + -1.536541184338666, + 53.79894899848203 ], [ - -1.5375364788180181, - 53.796430231423024 + -1.536477088290767, + 53.798973260381906 ], [ - -1.5374310030753642, - 53.796455607582445 + -1.5364910515397405, + 53.79898613057425 ], [ - -1.5374480555656598, - 53.79648033712958 + -1.5365551475876393, + 53.798961868674375 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993720, - "osm_way_id": 603499172, - "src_i": 9319419235, + "dst_i": 2014304919, + "osm_way_id": 190821091, + "src_i": 2014304923, "type": "road" }, "type": "Feature" @@ -8805,33 +9417,33 @@ "coordinates": [ [ [ - -1.534078937201277, - 53.796476611239925 + -1.5363213259722661, + 53.798873186565004 ], [ - -1.5340621222278104, - 53.7964672331136 + -1.5363298004509256, + 53.79885403820811 ], [ - -1.5339954652612797, - 53.796508931061915 + -1.536256148918286, + 53.79884266538634 ], [ - -1.5340122802347462, - 53.79651830918824 + -1.5362476744396265, + 53.79886181374323 ], [ - -1.534078937201277, - 53.796476611239925 + -1.5363213259722661, + 53.798873186565004 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993707, - "osm_way_id": 603499175, - "src_i": 342628235, + "dst_i": 2014304912, + "osm_way_id": 190821092, + "src_i": 2014304914, "type": "road" }, "type": "Feature" @@ -8841,33 +9453,33 @@ "coordinates": [ [ [ - -1.5378830143491582, - 53.796174114505405 + -1.5362886049839675, + 53.798948786242114 ], [ - -1.5379477072342176, - 53.79607078964069 + -1.5363119501476912, + 53.79889485122391 ], [ - -1.5378629045909595, - 53.79605226541303 + -1.5362381950820747, + 53.79888371402441 ], [ - -1.5377982117059004, - 53.796155590277756 + -1.5362148499183512, + 53.79893764904262 ], [ - -1.5378830143491582, - 53.796174114505405 + -1.5362886049839675, + 53.798948786242114 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993687, - "osm_way_id": 603499179, - "src_i": 320959867, + "dst_i": 2014304914, + "osm_way_id": 190821092, + "src_i": 7261942265, "type": "road" }, "type": "Feature" @@ -8877,33 +9489,33 @@ "coordinates": [ [ [ - -1.5377727897924658, - 53.796347903021214 + -1.53584692569224, + 53.798212856934605 ], [ - -1.5378563424272833, - 53.79621640150941 + -1.5358336338850722, + 53.798222764761384 ], [ - -1.537771692038403, - 53.79619763626355 + -1.5358932993305818, + 53.798250692296364 ], [ - -1.5376881394035855, - 53.79632913777535 + -1.5359065911377496, + 53.798240784469584 ], [ - -1.5377727897924658, - 53.796347903021214 + -1.53584692569224, + 53.798212856934605 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320959867, - "osm_way_id": 603499179, - "src_i": 5728993720, + "dst_i": 2014304856, + "osm_way_id": 190821093, + "src_i": 2014304855, "type": "road" }, "type": "Feature" @@ -8913,49 +9525,57 @@ "coordinates": [ [ [ - -1.5379675825206747, - 53.7960437209579 + -1.5357649625931251, + 53.79826956725947 ], [ - -1.5380050233946803, - 53.79602874455421 + -1.5357460358514408, + 53.79828170450466 ], [ - -1.5380846965879555, - 53.79601677188489 + -1.5357252363809113, + 53.798309484550884 ], [ - -1.5381021830032273, - 53.79601717028438 + -1.5357280195909346, + 53.79834275045927 ], [ - -1.53810449422468, - 53.795981778379584 + -1.5357511653014233, + 53.79837458644621 ], [ - -1.538078326264795, - 53.79598118212932 + -1.5358211140075988, + 53.79835684282976 ], [ - -1.5379800780374475, - 53.79599594629309 + -1.5358033794176913, + 53.79833244962892 ], [ - -1.5379339586639167, - 53.796014394078405 + -1.5358021644277577, + 53.79831791479217 ], [ - -1.5379675825206747, - 53.7960437209579 + -1.535810564301772, + 53.79830669485508 + ], + [ + -1.535820955663046, + 53.79830003088154 + ], + [ + -1.5357649625931251, + 53.79826956725947 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 10440056, - "osm_way_id": 603499180, - "src_i": 5728993687, + "dst_i": 2014304862, + "osm_way_id": 190821093, + "src_i": 2014304856, "type": "road" }, "type": "Feature" @@ -8965,33 +9585,33 @@ "coordinates": [ [ [ - -1.5347379611396295, - 53.79646941756593 + -1.5358048029961222, + 53.79844245285632 ], [ - -1.5343587152779972, - 53.796487680090976 + -1.5358126410514832, + 53.79846419305825 ], [ - -1.5343666050998463, - 53.79654483917735 + -1.5358870995323242, + 53.798454827522434 ], [ - -1.5347458509614789, - 53.796526576652305 + -1.5358792614769634, + 53.798433087320504 ], [ - -1.5347379611396295, - 53.79646941756593 + -1.5358048029961222, + 53.79844245285632 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643914, - "osm_way_id": 603499183, - "src_i": 643911, + "dst_i": 2014304864, + "osm_way_id": 190821093, + "src_i": 2014304862, "type": "road" }, "type": "Feature" @@ -9001,33 +9621,33 @@ "coordinates": [ [ [ - -1.537060711293681, - 53.79893149948108 + -1.5364612721060178, + 53.79891287452939 ], [ - -1.536843684858705, - 53.79890349550375 + -1.536460366192471, + 53.79891512553152 ], [ - -1.5368229630379082, - 53.79895952144483 + -1.53653442881193, + 53.79892552528725 ], [ - -1.5370399894728841, - 53.798987525422156 + -1.536535334725477, + 53.79892327428513 ], [ - -1.537060711293681, - 53.79893149948108 + -1.5364612721060178, + 53.79891287452939 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304918, - "osm_way_id": 616128591, - "src_i": 26298430, + "dst_i": 2014304919, + "osm_way_id": 190821094, + "src_i": 2014304915, "type": "road" }, "type": "Feature" @@ -9037,33 +9657,33 @@ "coordinates": [ [ [ - -1.5363397731126611, - 53.79883792865913 + -1.536444064316257, + 53.798924339981305 ], [ - -1.5363336250808919, - 53.79883719930926 + -1.5364409354887965, + 53.79892469341472 ], [ - -1.5363145080212355, - 53.79889342489975 + -1.5364552352199443, + 53.79896885910168 ], [ - -1.5363206560530045, - 53.798894154249616 + -1.536458364047405, + 53.79896850566826 ], [ - -1.5363397731126611, - 53.79883792865913 + -1.536444064316257, + 53.798924339981305 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304914, - "osm_way_id": 616128591, - "src_i": 1675168064, + "dst_i": 2014304920, + "osm_way_id": 190821094, + "src_i": 2014304919, "type": "road" }, "type": "Feature" @@ -9073,33 +9693,33 @@ "coordinates": [ [ [ - -1.5362648365530742, - 53.798827188060486 + -1.5363534607812108, + 53.798939794824115 ], [ - -1.5361437912777627, - 53.7988062338657 + -1.5363397091658224, + 53.798942881296064 ], [ - -1.5361164859776768, - 53.798861266955655 + -1.5363667495432913, + 53.79898491559068 ], [ - -1.5362375312529881, - 53.79888222115045 + -1.5363805011586797, + 53.79898182911873 ], [ - -1.5362648365530742, - 53.798827188060486 + -1.5363534607812108, + 53.798939794824115 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8273166694, - "osm_way_id": 616128591, - "src_i": 2014304914, + "dst_i": 7261942266, + "osm_way_id": 190821094, + "src_i": 2014304920, "type": "road" }, "type": "Feature" @@ -9109,33 +9729,33 @@ "coordinates": [ [ [ - -1.5364836824278627, - 53.79885656440267 + -1.5364803693726052, + 53.79886540113735 ], [ - -1.5364440749740633, - 53.79885106505069 + -1.5364788696669855, + 53.79886912792633 ], [ - -1.5364218580152782, - 53.79890689134236 + -1.5365529322864446, + 53.79887952588342 ], [ - -1.5364614654690774, - 53.79891239069434 + -1.5365544319920645, + 53.79887579909444 ], [ - -1.5364836824278627, - 53.79885656440267 + -1.5364803693726052, + 53.79886540113735 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1675168064, - "osm_way_id": 616128591, - "src_i": 2014304915, + "dst_i": 2014304915, + "osm_way_id": 190821094, + "src_i": 7261942269, "type": "road" }, "type": "Feature" @@ -9145,33 +9765,57 @@ "coordinates": [ [ [ - -1.5366256474546618, - 53.79887528648109 + -1.536126166311007, + 53.79865801306482 ], [ - -1.536558153089054, - 53.798866549571116 + -1.5361689406558614, + 53.79866465725328 ], [ - -1.5365373703665062, - 53.79892256831762 + -1.5361493074538646, + 53.79868515549199 ], [ - -1.536604864732114, - 53.7989313052276 + -1.5360925774727558, + 53.798721675146155 ], [ - -1.5366256474546618, - 53.79887528648109 + -1.5361060474175459, + 53.79873082934138 + ], + [ + -1.5361290317383942, + 53.79871903024114 + ], + [ + -1.5361333999164888, + 53.798721998901954 + ], + [ + -1.5361741005567195, + 53.79869579986322 + ], + [ + -1.5362149001622958, + 53.79865319989527 + ], + [ + -1.536133909968654, + 53.79864061838518 + ], + [ + -1.536126166311007, + 53.79865801306482 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304915, - "osm_way_id": 616128591, - "src_i": 2014304918, + "dst_i": 6309394782, + "osm_way_id": 190821096, + "src_i": 2014304895, "type": "road" }, "type": "Feature" @@ -9181,33 +9825,33 @@ "coordinates": [ [ [ - -1.5364256339238436, - 53.800229161288264 + -1.5388947157602448, + 53.79770732214645 ], [ - -1.536637984626882, - 53.80026530952258 + -1.5385298107384424, + 53.79772617912312 ], [ - -1.5366482648424602, - 53.80024423841597 + -1.5385350361086831, + 53.79776146310932 ], [ - -1.536435914139422, - 53.800208090181656 + -1.5388999411304856, + 53.79774260613265 ], [ - -1.5364256339238436, - 53.800229161288264 + -1.5388947157602448, + 53.79770732214645 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1152092776, - "osm_way_id": 616128592, - "src_i": 1743212076, + "dst_i": 26109190, + "osm_way_id": 192930242, + "src_i": -6, "type": "road" }, "type": "Feature" @@ -9217,33 +9861,33 @@ "coordinates": [ [ [ - -1.5322103390175694, - 53.79679587672621 + -1.5384547843487728, + 53.79772958395494 ], [ - -1.532137407648136, - 53.796808767602954 + -1.5384267756334622, + 53.79773067932873 ], [ - -1.5321513236982522, - 53.79683623828253 + -1.5384307372923682, + 53.797766020871514 ], [ - -1.5322242550676857, - 53.796823347405784 + -1.538458746007679, + 53.797764925497724 ], [ - -1.5322103390175694, - 53.79679587672621 + -1.5384547843487728, + 53.79772958395494 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9823004, - "osm_way_id": 619248620, - "src_i": 3181227681, + "dst_i": 5071469690, + "osm_way_id": 192930242, + "src_i": 26109190, "type": "road" }, "type": "Feature" @@ -9253,33 +9897,33 @@ "coordinates": [ [ [ - -1.534018253173981, - 53.796521639376365 + -1.53753385090746, + 53.79775793776839 ], [ - -1.5339722038374637, - 53.79652452619891 + -1.5371557591340101, + 53.79776276622641 ], [ - -1.5339785315293986, - 53.79655974723259 + -1.5371570563413077, + 53.797798176117645 ], [ - -1.5340245808659156, - 53.79655686041005 + -1.5375351481147577, + 53.79779334765962 ], [ - -1.534018253173981, - 53.796521639376365 + -1.53753385090746, + 53.79775793776839 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6905278495, - "osm_way_id": 619360566, - "src_i": 342628235, + "dst_i": 9316506541, + "osm_way_id": 192930242, + "src_i": 301689323, "type": "road" }, "type": "Feature" @@ -9289,41 +9933,33 @@ "coordinates": [ [ [ - -1.5338926828985662, - 53.79653007141629 - ], - [ - -1.5336535613083073, - 53.79654856686565 - ], - [ - -1.5328142453486724, - 53.79668288325427 + -1.538383497326618, + 53.79773219198777 ], [ - -1.5328299275495691, - 53.796717070068034 + -1.5378217974315405, + 53.797751482437484 ], [ - -1.5336653610225743, - 53.79658337421137 + -1.5378252779666135, + 53.7977868419667 ], [ - -1.5339004691874387, - 53.79656518992731 + -1.5383869778616908, + 53.79776755151699 ], [ - -1.5338926828985662, - 53.79653007141629 + -1.538383497326618, + 53.79773219198777 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8733041518, - "osm_way_id": 619360566, - "src_i": 6905278495, + "dst_i": 5071469692, + "osm_way_id": 192930242, + "src_i": 5071469690, "type": "road" }, "type": "Feature" @@ -9333,33 +9969,33 @@ "coordinates": [ [ [ - -1.5327395798018777, - 53.79669511223027 + -1.537746620310037, + 53.79775360034 ], [ - -1.5326547147343248, - 53.796709336801044 + -1.5376092959966683, + 53.79775662475876 ], [ - -1.5326710851250087, - 53.79674341030028 + -1.537611531090932, + 53.797792018462204 ], [ - -1.5327559501925614, - 53.796729185729504 + -1.5377488554043008, + 53.797788994043444 ], [ - -1.5327395798018777, - 53.79669511223027 + -1.537746620310037, + 53.79775360034 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993689, - "osm_way_id": 619360566, - "src_i": 8733041518, + "dst_i": 301689323, + "osm_way_id": 192930242, + "src_i": 5071469692, "type": "road" }, "type": "Feature" @@ -9369,33 +10005,33 @@ "coordinates": [ [ [ - -1.5358678865524098, - 53.80024851289185 + -1.5370796349902778, + 53.79776374648702 ], [ - -1.5341344247866642, - 53.79993228171686 + -1.5368478444483022, + 53.79776675741596 ], [ - -1.5341125123366341, - 53.79997418650916 + -1.5368491629712127, + 53.79780216730719 ], [ - -1.5358459741023798, - 53.800290417684145 + -1.5370809535131882, + 53.797799156378254 ], [ - -1.5358678865524098, - 53.80024851289185 + -1.5370796349902778, + 53.79776374648702 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6740104094, - "osm_way_id": 636647073, - "src_i": 21099344, + "dst_i": 26109191, + "osm_way_id": 192930242, + "src_i": 9316506541, "type": "road" }, "type": "Feature" @@ -9405,41 +10041,33 @@ "coordinates": [ [ [ - -1.5340605844585962, - 53.79991937735029 - ], - [ - -1.5337970976002837, - 53.79987532947447 - ], - [ - -1.5335218323433168, - 53.7998559409987 + -1.5334705804747157, + 53.79980860880015 ], [ - -1.533513041175552, - 53.79989948975099 + -1.532216034853837, + 53.79955279405461 ], [ - -1.533782502495643, - 53.79991846993473 + -1.5321918050921792, + 53.79959425098472 ], [ - -1.5340403650772456, - 53.799961577120094 + -1.533446350713058, + 53.79985006573026 ], [ - -1.5340605844585962, - 53.79991937735029 + -1.5334705804747157, + 53.79980860880015 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 358204009, - "osm_way_id": 636647073, - "src_i": 6740104094, + "dst_i": 3174228063, + "osm_way_id": 206566459, + "src_i": 358204009, "type": "road" }, "type": "Feature" @@ -9449,33 +10077,33 @@ "coordinates": [ [ [ - -1.5373285617624566, - 53.796428463356634 + -1.533402233484593, + 53.799739570573905 ], [ - -1.5369677721764818, - 53.79642816837912 + -1.5342396797604705, + 53.7998990706671 ], [ - -1.5369675224793025, - 53.796534979014616 + -1.5342624661506281, + 53.799857329551344 ], [ - -1.5373283120652772, - 53.79653527399213 + -1.5334250198747506, + 53.79969782945815 ], [ - -1.5373285617624566, - 53.796428463356634 + -1.533402233484593, + 53.799739570573905 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419234, - "osm_way_id": 648548332, - "src_i": 9319419235, + "dst_i": 9823112, + "osm_way_id": 206566460, + "src_i": 2165840661, "type": "road" }, "type": "Feature" @@ -9485,41 +10113,33 @@ "coordinates": [ [ [ - -1.5368810054517523, - 53.79787112279585 - ], - [ - -1.5368701649400642, - 53.797827489507306 - ], - [ - -1.5368468182537969, - 53.79780499297586 + -1.5353318476101399, + 53.800107506449365 ], [ - -1.5368208558373218, - 53.7978143926859 + -1.535878786443305, + 53.8002146381427 ], [ - -1.5368409442799076, - 53.7978337487861 + -1.535902157490273, + 53.80017300854283 ], [ - -1.5368508773555047, - 53.79787373442596 + -1.5353552186571078, + 53.8000658768495 ], [ - -1.5368810054517523, - 53.79787112279585 + -1.5353318476101399, + 53.800107506449365 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26109191, - "osm_way_id": 650344876, - "src_i": 6101189538, + "dst_i": 50021952, + "osm_way_id": 206817419, + "src_i": 370191920, "type": "road" }, "type": "Feature" @@ -9529,33 +10149,49 @@ "coordinates": [ [ [ - -1.5362417349963549, - 53.798409525992206 + -1.5325314221843995, + 53.79690181412037 ], [ - -1.5363189218756432, - 53.79841053952772 + -1.5324774997740145, + 53.79685836968938 ], [ - -1.5363195978850799, - 53.79839255669172 + -1.5323643290951146, + 53.796808707348404 ], [ - -1.5362424110057915, - 53.7983915431562 + -1.5323281443197245, + 53.796799022553394 ], [ - -1.5362417349963549, - 53.798409525992206 + -1.5323033938480954, + 53.796831283020154 + ], + [ + -1.5323337290102965, + 53.79683940299547 + ], + [ + -1.5324344848672435, + 53.79688361544716 + ], + [ + -1.5324830631489734, + 53.79692275572465 + ], + [ + -1.5325314221843995, + 53.79690181412037 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6584937015, - "osm_way_id": 650344877, - "src_i": 6111971409, + "dst_i": 3181227681, + "osm_way_id": 312269974, + "src_i": 3181227677, "type": "road" }, "type": "Feature" @@ -9565,49 +10201,33 @@ "coordinates": [ [ [ - -1.5343318241098183, - 53.796435726278396 - ], - [ - -1.5345775992163802, - 53.7964374367882 - ], - [ - -1.5348945060456314, - 53.79645117572528 - ], - [ - -1.5349396555587769, - 53.79645539893981 - ], - [ - -1.5349456087049425, - 53.79643319288927 + -1.532445247729199, + 53.79779385038044 ], [ - -1.5348988940167951, - 53.79642882398462 + -1.5327858179338232, + 53.79784288679353 ], [ - -1.5345792009324328, - 53.796414962739796 + -1.5328142194654282, + 53.797774063505166 ], [ - -1.5343322717376886, - 53.79641324503542 + -1.532473649260804, + 53.79772502709206 ], [ - -1.5343318241098183, - 53.796435726278396 + -1.532445247729199, + 53.79779385038044 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943571, - "osm_way_id": 663356010, - "src_i": 5728993833, + "dst_i": 5506378752, + "osm_way_id": 312269975, + "src_i": 26661448, "type": "road" }, "type": "Feature" @@ -9617,33 +10237,33 @@ "coordinates": [ [ [ - -1.5342380719542426, - 53.79645224052213 + -1.5324430217701979, + 53.79724004540124 ], [ - -1.5342500924373574, - 53.79649449874784 + -1.532341154456294, + 53.79771416148771 ], [ - -1.53434583912528, - 53.796484996515126 + -1.5324601290720694, + 53.79772307916134 ], [ - -1.5343338186421653, - 53.796442738289414 + -1.5325619963859733, + 53.797248963074864 ], [ - -1.5342380719542426, - 53.79645224052213 + -1.5324430217701979, + 53.79724004540124 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643914, - "osm_way_id": 663356011, - "src_i": 5728993833, + "dst_i": 26661448, + "osm_way_id": 312269975, + "src_i": 26661450, "type": "road" }, "type": "Feature" @@ -9653,33 +10273,33 @@ "coordinates": [ [ [ - -1.5337397662143832, - 53.79967411974177 + -1.5324765238234537, + 53.79699393433646 ], [ - -1.533766372666876, - 53.799669758031705 + -1.5324503924046193, + 53.79719709829513 ], [ - -1.533756192939187, - 53.799648093372795 + -1.5325699760379055, + 53.79720246544683 ], [ - -1.5337295864866942, - 53.79965245508287 + -1.5325961074567398, + 53.79699930148816 ], [ - -1.5337397662143832, - 53.79967411974177 + -1.5324765238234537, + 53.79699393433646 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583008, - "osm_way_id": 663639106, - "src_i": 6211582994, + "dst_i": 26661450, + "osm_way_id": 312269975, + "src_i": 3181227677, "type": "road" }, "type": "Feature" @@ -9689,49 +10309,33 @@ "coordinates": [ [ [ - -1.53357557661608, - 53.79973341561643 - ], - [ - -1.533599681529148, - 53.79970865998896 - ], - [ - -1.5336294868461149, - 53.79969219520792 - ], - [ - -1.5336664100552364, - 53.79968614367244 - ], - [ - -1.533656233372635, - 53.79966447901353 + -1.5328682454087899, + 53.79785147531543 ], [ - -1.5336103119297948, - 53.79967200543654 + -1.533181578827798, + 53.797871933983984 ], [ - -1.5335695199369375, - 53.79969454063882 + -1.5331947549216391, + 53.7978015242922 ], [ - -1.5335425800473579, - 53.799722206471195 + -1.532881421502631, + 53.797781065623646 ], [ - -1.53357557661608, - 53.79973341561643 + -1.5328682454087899, + 53.79785147531543 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211582994, - "osm_way_id": 663639106, - "src_i": 6211583004, + "dst_i": 26661446, + "osm_way_id": 312269975, + "src_i": 5506378752, "type": "road" }, "type": "Feature" @@ -9741,41 +10345,41 @@ "coordinates": [ [ [ - -1.533817333729616, - 53.79965128866267 + -1.5344729426022778, + 53.796137851157916 ], [ - -1.5338515513784468, - 53.799637852797 + -1.5349184891551972, + 53.796058253096675 ], [ - -1.5338822336806286, - 53.79961605773645 + -1.5354142370215123, + 53.79598788387437 ], [ - -1.5338529673441588, - 53.79960168297896 + -1.5354053423207705, + 53.79596602316334 ], [ - -1.5338258477944136, - 53.79962094734834 + -1.5349085104032867, + 53.79603654706897 ], [ - -1.5337962617237504, - 53.79963256478561 + -1.5344619224304241, + 53.796116330390475 ], [ - -1.533817333729616, - 53.79965128866267 + -1.5344729426022778, + 53.796137851157916 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1569783677, - "osm_way_id": 663639106, - "src_i": 6211583008, + "dst_i": 3193487666, + "osm_way_id": 313390685, + "src_i": 3193487669, "type": "road" }, "type": "Feature" @@ -9785,33 +10389,57 @@ "coordinates": [ [ [ - -1.5333726565491927, - 53.79986494590653 + -1.535487533801452, + 53.795978975193954 ], [ - -1.5333177140344774, - 53.7999071735553 + -1.5378457516127746, + 53.795739825778185 ], [ - -1.5333780737599492, - 53.799934574087786 + -1.5383296038445646, + 53.795673954962844 ], [ - -1.5334330162746643, - 53.79989234643901 + -1.5387925682982861, + 53.795587838618175 ], [ - -1.5333726565491927, - 53.79986494590653 + -1.5389139287401594, + 53.79556117912674 + ], + [ + -1.5389006612936917, + 53.795540106221495 + ], + [ + -1.5387802326486097, + 53.79556656066759 + ], + [ + -1.5383195946417785, + 53.79565224533785 + ], + [ + -1.5378382485170445, + 53.79571777441096 + ], + [ + -1.535481093441278, + 53.79595681590813 + ], + [ + -1.535487533801452, + 53.795978975193954 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211582998, - "osm_way_id": 663639107, - "src_i": 1591373158, + "dst_i": 3193482754, + "osm_way_id": 313390688, + "src_i": 3193487666, "type": "road" }, "type": "Feature" @@ -9821,33 +10449,33 @@ "coordinates": [ [ [ - -1.5332713480088547, - 53.79994287033014 + -1.5322116742884613, + 53.79651315877307 ], [ - -1.5332704375276764, - 53.799943571801045 + -1.5327953673283887, + 53.796415445675535 ], [ - -1.533330852064724, - 53.79997093096473 + -1.5327849896700088, + 53.79639381519085 ], [ - -1.5333317625459022, - 53.79997022949383 + -1.5322012966300813, + 53.79649152828838 ], [ - -1.5332713480088547, - 53.79994287033014 + -1.5322116742884613, + 53.79651315877307 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298442, - "osm_way_id": 663639107, - "src_i": 6211582998, + "dst_i": 3371780107, + "osm_way_id": 313390689, + "src_i": 3193487681, "type": "road" }, "type": "Feature" @@ -9857,33 +10485,33 @@ "coordinates": [ [ [ - -1.5334879831500798, - 53.79975526013967 + -1.5328685818909644, + 53.796403272457475 ], [ - -1.5334162226168107, - 53.79982721666472 + -1.5343994646396286, + 53.79615047943273 ], [ - -1.5334818168477855, - 53.79985003964993 + -1.5343892179200136, + 53.79612882736433 ], [ - -1.5335535773810547, - 53.79977808312488 + -1.5328583351713494, + 53.79638162038907 ], [ - -1.5334879831500798, - 53.79975526013967 + -1.5328685818909644, + 53.796403272457475 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591373158, - "osm_way_id": 663639107, - "src_i": 6211583004, + "dst_i": 3193487669, + "osm_way_id": 313390689, + "src_i": 3371780107, "type": "road" }, "type": "Feature" @@ -9893,33 +10521,33 @@ "coordinates": [ [ [ - -1.5335394146788468, - 53.79973584738221 + -1.5331131069890858, + 53.79635767055382 ], [ - -1.5335357468708894, - 53.79973635639827 + -1.5328610392090962, + 53.79638357101776 ], [ - -1.5335444527762028, - 53.799758244088956 + -1.5328675617866343, + 53.79640572131037 ], [ - -1.5335481205841601, - 53.79975773507289 + -1.5331196295666238, + 53.79637982084642 ], [ - -1.5335394146788468, - 53.79973584738221 + -1.5331131069890858, + 53.79635767055382 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583004, - "osm_way_id": 663639108, - "src_i": 6211583003, + "dst_i": 3371780107, + "osm_way_id": 330225647, + "src_i": 3371780106, "type": "road" }, "type": "Feature" @@ -9929,41 +10557,33 @@ "coordinates": [ [ [ - -1.5338925032384005, - 53.79967068073573 - ], - [ - -1.5339994223525544, - 53.79962841801341 - ], - [ - -1.5341343121184248, - 53.79958435664776 + -1.5331406924372266, + 53.800000122046654 ], [ - -1.5340974696041234, - 53.79954500592899 + -1.533137367201619, + 53.79999794388958 ], [ - -1.5339597783577046, - 53.7995899828041 + -1.5330808321061136, + 53.800028056776206 ], [ - -1.5338501643410662, - 53.799633310323266 + -1.5330841573417213, + 53.800030234933274 ], [ - -1.5338925032384005, - 53.79967068073573 + -1.5331406924372266, + 53.800000122046654 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591373154, - "osm_way_id": 663639109, - "src_i": 6211583009, + "dst_i": 6211583000, + "osm_way_id": 331099341, + "src_i": 3381506663, "type": "road" }, "type": "Feature" @@ -9973,33 +10593,33 @@ "coordinates": [ [ [ - -1.5338120307096426, - 53.79967355226981 + -1.533110402951339, + 53.79998029739987 ], [ - -1.5338370476264327, - 53.79967563150149 + -1.5331101471639845, + 53.79998013012604 ], [ - -1.5338423521689497, - 53.79965336789436 + -1.5330536516546174, + 53.80001026999232 ], [ - -1.5338173352521596, - 53.79965128866267 + -1.5330539074419718, + 53.800010437266145 ], [ - -1.5338120307096426, - 53.79967355226981 + -1.533110402951339, + 53.79998029739987 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583009, - "osm_way_id": 663639110, - "src_i": 6211583008, + "dst_i": 3381506664, + "osm_way_id": 331099341, + "src_i": 6211583000, "type": "road" }, "type": "Feature" @@ -10009,41 +10629,49 @@ "coordinates": [ [ [ - -1.53340415950247, - 53.79988981934513 + -1.5324380110786298, + 53.79594532617454 ], [ - -1.5333665694191745, - 53.79992476428706 + -1.5324419483768354, + 53.795986511509504 ], [ - -1.533374602360139, - 53.799926776069626 + -1.5325224726720816, + 53.79620472741488 ], [ - -1.533344885350711, - 53.79996817544315 + -1.5325644141854902, + 53.79627627744654 ], [ - -1.5333962316170264, - 53.79998103484363 + -1.5326426577101595, + 53.79626027491683 ], [ - -1.5334684138949217, - 53.79991393375625 + -1.5326023270480664, + 53.79619147321218 ], [ - -1.53340415950247, - 53.79988981934513 + -1.5325242510032127, + 53.79597988890477 + ], + [ + -1.5325206821606008, + 53.795942568854315 + ], + [ + -1.5324380110786298, + 53.79594532617454 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211582998, - "osm_way_id": 663639111, - "src_i": 6211582997, + "dst_i": 342579565, + "osm_way_id": 363048952, + "src_i": 478743247, "type": "road" }, "type": "Feature" @@ -10053,41 +10681,49 @@ "coordinates": [ [ [ - -1.5333061381341455, - 53.79990885348817 + -1.532425711970004, + 53.79591389578167 ], [ - -1.5332542742029462, - 53.79989467927941 + -1.5324254546601057, + 53.795913954237584 ], [ - -1.5331104105640578, - 53.7999803027958 + -1.5323538951026148, + 53.795850427054496 ], [ - -1.5331644456426823, - 53.800011976904834 + -1.5321725570937579, + 53.79591795082306 ], [ - -1.533270726810994, - 53.799948721316895 + -1.532188796545677, + 53.79593316554699 ], [ - -1.5332741708050162, - 53.79994966290668 + -1.532345000401873, + 53.795875000119665 ], [ - -1.5333061381341455, - 53.79990885348817 + -1.5324136001342625, + 53.795935899484846 + ], + [ + -1.5324366103383553, + 53.795930689714446 + ], + [ + -1.532425711970004, + 53.79591389578167 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583000, - "osm_way_id": 663639111, - "src_i": 6211582998, + "dst_i": 1020737635, + "osm_way_id": 363048953, + "src_i": 478743247, "type": "road" }, "type": "Feature" @@ -10097,41 +10733,33 @@ "coordinates": [ [ [ - -1.5336495752887007, - 53.79968860061923 - ], - [ - -1.5336185747748694, - 53.79969311071737 - ], - [ - -1.5336049540982457, - 53.79970563017427 + -1.5336843623689038, + 53.79632397656832 ], [ - -1.533668998379656, - 53.79972993883887 + -1.5336106803853886, + 53.79615585018171 ], [ - -1.5336662243048955, - 53.79973248841579 + -1.5335664626690344, + 53.79616261128199 ], [ - -1.5336677788220914, - 53.79973226268606 + -1.5336401446525496, + 53.7963307376686 ], [ - -1.5336495752887007, - 53.79968860061923 + -1.5336843623689038, + 53.79632397656832 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583003, - "osm_way_id": 663639111, - "src_i": 6211583002, + "dst_i": 3672604268, + "osm_way_id": 363049114, + "src_i": 6264670280, "type": "road" }, "type": "Feature" @@ -10141,33 +10769,33 @@ "coordinates": [ [ [ - -1.5335481251517915, - 53.79975773417357 + -1.5335282879289287, + 53.79616668430981 ], [ - -1.5334453519243407, - 53.79985181850818 + -1.5335365781797914, + 53.79616494951832 ], [ - -1.5335093200785623, - 53.799876197319875 + -1.5335111577889005, + 53.79612256448825 ], [ - -1.5336120933060131, - 53.79978211298526 + -1.533502867538038, + 53.79612429927975 ], [ - -1.5335481251517915, - 53.79975773417357 + -1.5335282879289287, + 53.79616668430981 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211582997, - "osm_way_id": 663639111, - "src_i": 6211583003, + "dst_i": 3672604268, + "osm_way_id": 363049230, + "src_i": 342579557, "type": "road" }, "type": "Feature" @@ -10177,41 +10805,33 @@ "coordinates": [ [ [ - -1.5337869072147883, - 53.79965829078115 - ], - [ - -1.5337576317430557, - 53.79966983986997 - ], - [ - -1.5337214149942464, - 53.79967665403023 + -1.5337260100313634, + 53.799634269000165 ], [ - -1.533744521118597, - 53.79971949951299 + -1.5338399191439949, + 53.79960503205284 ], [ - -1.5337909693615837, - 53.799710760804366 + -1.5338160212968805, + 53.79957254675566 ], [ - -1.5338291882554589, - 53.79969568277733 + -1.5337021121842491, + 53.79960178370298 ], [ - -1.5337869072147883, - 53.79965829078115 + -1.5337260100313634, + 53.799634269000165 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583002, - "osm_way_id": 663639111, - "src_i": 6211583009, + "dst_i": 1569783677, + "osm_way_id": 400349314, + "src_i": 615978081, "type": "road" }, "type": "Feature" @@ -10221,33 +10841,33 @@ "coordinates": [ [ [ - -1.534423301584992, - 53.79966188626917 + -1.532306365853547, + 53.79786286522432 ], [ - -1.534437485602813, - 53.799669868648266 + -1.5322138560936929, + 53.79785945499656 ], [ - -1.534489998137661, - 53.799637313203995 + -1.532210061914602, + 53.79789535771607 ], [ - -1.53447581411984, - 53.7996293308249 + -1.5323025716744563, + 53.79789876794382 ], [ - -1.534423301584992, - 53.79966188626917 + -1.532306365853547, + 53.79786286522432 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583005, - "osm_way_id": 663639112, - "src_i": 643950, + "dst_i": 4361246653, + "osm_way_id": 438378829, + "src_i": 4361246652, "type": "road" }, "type": "Feature" @@ -10257,41 +10877,41 @@ "coordinates": [ [ [ - -1.5343776770381885, - 53.79962580188669 + -1.53242181578048, + 53.797906427466444 ], [ - -1.5343679951823144, - 53.79963103234149 + -1.5325927989691137, + 53.797922229447416 ], [ - -1.5343681976806365, - 53.7996311447567 + -1.5327131667124445, + 53.797987455449125 ], [ - -1.5344202321367388, - 53.799598321314576 + -1.5327543362961584, + 53.797960947043734 ], [ - -1.5343686041998248, - 53.799569766952395 + -1.5326203996426924, + 53.79788836998674 ], [ - -1.5343263003209975, - 53.79959262051454 + -1.5324312311911934, + 53.79787088627425 ], [ - -1.5343776770381885, - 53.79962580188669 + -1.53242181578048, + 53.797906427466444 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643950, - "osm_way_id": 663639112, - "src_i": 1152092781, + "dst_i": 5506378775, + "osm_way_id": 438378831, + "src_i": 4361246652, "type": "road" }, "type": "Feature" @@ -10301,33 +10921,49 @@ "coordinates": [ [ [ - -1.5341551861935991, - 53.79958539716293 + -1.5328298773056246, + 53.798019509971226 ], [ - -1.5341598329972048, - 53.79958758970915 + -1.5331023167213425, + 53.7980648591655 ], [ - -1.5342073454982912, - 53.79955245680899 + -1.5333753347036954, + 53.79815306283575 ], [ - -1.5342026986946855, - 53.79955026426277 + -1.5333947258212315, + 53.7981533722024 ], [ - -1.5341551861935991, - 53.79958539716293 + -1.5333963732135976, + 53.79811741192631 + ], + [ + -1.533391665508241, + 53.79811733638329 + ], + [ + -1.5331254837474442, + 53.79803134144705 + ], + [ + -1.5328463969055985, + 53.79798488608713 + ], + [ + -1.5328298773056246, + 53.798019509971226 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1152092781, - "osm_way_id": 663639112, - "src_i": 1591373154, + "dst_i": 5506378774, + "osm_way_id": 438378831, + "src_i": 5506378754, "type": "road" }, "type": "Feature" @@ -10337,41 +10973,33 @@ "coordinates": [ [ [ - -1.535548653276268, - 53.798390657324354 - ], - [ - -1.535505761695543, - 53.79825350897182 - ], - [ - -1.5354174541565118, - 53.798091822627654 + -1.532753434950243, + 53.79800669373818 ], [ - -1.5353250540198096, - 53.79810942954721 + -1.5327565363719153, + 53.79800721714339 ], [ - -1.5354114248831572, - 53.798267572564015 + -1.5327732660829305, + 53.79797262923216 ], [ - -1.5354531776011375, - 53.79840107506652 + -1.532770164661258, + 53.79797210582695 ], [ - -1.535548653276268, - 53.798390657324354 + -1.532753434950243, + 53.79800669373818 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452456321, - "osm_way_id": 663639113, - "src_i": 1022749752, + "dst_i": 5506378754, + "osm_way_id": 438378831, + "src_i": 5506378775, "type": "road" }, "type": "Feature" @@ -10381,41 +11009,69 @@ "coordinates": [ [ [ - -1.5353633033645604, - 53.798006348398665 + -1.5321250034839897, + 53.798678769408845 + ], + [ + -1.5321012883421283, + 53.79867769112217 ], [ - -1.5353149047429961, - 53.79793353122278 + -1.5320966141327348, + 53.79871355786881 ], [ - -1.5351106935589864, - 53.79772325632771 + -1.5321203292745962, + 53.79871463615549 ], [ - -1.5350264755725385, - 53.79775179180413 + -1.5321250034839897, + 53.798678769408845 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5506378693, + "osm_way_id": 438378833, + "src_i": 4361248196, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5320656273217976, + 53.79867612180587 ], [ - -1.5352271361844618, - 53.79795841005732 + -1.5319903847309115, + 53.79866928965918 ], [ - -1.5352729282110809, - 53.79802730619074 + -1.5319811307098385, + 53.79870484524052 ], [ - -1.5353633033645604, - 53.798006348398665 + -1.5320563733007246, + 53.79871167738721 + ], + [ + -1.5320656273217976, + 53.79867612180587 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444899, - "osm_way_id": 663639113, - "src_i": 5452456321, + "dst_i": -12, + "osm_way_id": 438378833, + "src_i": 5506378693, "type": "road" }, "type": "Feature" @@ -10425,41 +11081,69 @@ "coordinates": [ [ [ - -1.5353340294153714, - 53.79890331923671 + -1.5358534269541653, + 53.79667515987981 ], [ - -1.5353268886850602, - 53.798865742879585 + -1.5358614720754797, + 53.79715369613226 ], [ - -1.5353493157548865, - 53.798753610058476 + -1.535891922951008, + 53.79715351806657 ], [ - -1.535311514038006, - 53.79875097144871 + -1.5358838778296933, + 53.79667498181412 ], [ - -1.5352885723483833, - 53.798865674531136 + -1.5358534269541653, + 53.79667515987981 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9258530385, + "osm_way_id": 438914633, + "src_i": 1877939950, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358622303022804, + 53.79719866221551 ], [ - -1.5352962033377906, - 53.79890582654551 + -1.535869967869752, + 53.797655697485595 ], [ - -1.5353340294153714, - 53.79890331923671 + -1.5359004187452803, + 53.797655517621266 + ], + [ + -1.5358926811778084, + 53.79719848235118 + ], + [ + -1.5358622303022804, + 53.79719866221551 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444913, - "osm_way_id": 663639114, - "src_i": 26298432, + "dst_i": 1877939967, + "osm_way_id": 438914633, + "src_i": 9258530385, "type": "road" }, "type": "Feature" @@ -10469,33 +11153,57 @@ "coordinates": [ [ [ - -1.5353807182202748, - 53.79891117481145 + -1.5360394087215403, + 53.79567853790605 ], [ - -1.535438133346083, - 53.79879214779046 + -1.5361018071331285, + 53.795695848049455 ], [ - -1.5353914460637235, - 53.798784291316395 + -1.536194361046752, + 53.795697750114776 ], [ - -1.5353340309379153, - 53.79890331833739 + -1.5362655247428612, + 53.79567417169936 ], [ - -1.5353807182202748, - 53.79891117481145 + -1.5362841850393847, + 53.79567116706568 + ], + [ + -1.5362761764591208, + 53.79565381375483 + ], + [ + -1.536253895553497, + 53.79565740114896 + ], + [ + -1.5361868975371602, + 53.79567960000493 + ], + [ + -1.5361091001178175, + 53.79567800011169 + ], + [ + -1.5360523533887271, + 53.79566225838527 + ], + [ + -1.5360394087215403, + 53.79567853790605 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 682218116, - "osm_way_id": 663639115, - "src_i": 26298432, + "dst_i": 4365671270, + "osm_way_id": 438922251, + "src_i": 4365671268, "type": "road" }, "type": "Feature" @@ -10505,65 +11213,73 @@ "coordinates": [ [ [ - -1.5350384716949528, - 53.79926671443708 + -1.5363496513766823, + 53.79566681524815 ], [ - -1.5350514757413471, - 53.79926257845675 + -1.5365141759346164, + 53.79567090266511 ], [ - -1.53513014405573, - 53.79922439685615 + -1.5365749056382259, + 53.79564868132609 ], [ - -1.535326964812249, - 53.799102469522786 + -1.5366314879325882, + 53.79563892998128 ], [ - -1.535520210635981, - 53.79889619840777 + -1.536815577178049, + 53.79563649731618 ], [ - -1.535535184854022, - 53.7988678562855 + -1.5368741113735327, + 53.7956203589889 ], [ - -1.5354888447116435, - 53.79885931452832 + -1.5368990415053274, + 53.795600369766255 ], [ - -1.535475344315978, - 53.79888486515615 + -1.53687452550544, + 53.79558970201267 ], [ - -1.5352875126579149, - 53.79908535723015 + -1.536854199546025, + 53.7956060004192 ], [ - -1.535097043954031, - 53.79920335093054 + -1.5368084973494887, + 53.79561860081505 ], [ - -1.5350243105152885, - 53.79923865110453 + -1.5366267954526693, + 53.79562100110457 ], [ - -1.5350154569232288, - 53.799241466880666 + -1.5365623994636464, + 53.79563209963324 ], [ - -1.5350384716949528, - 53.79926671443708 + -1.5365061003624265, + 53.79565270039461 + ], + [ + -1.5363509303134546, + 53.79564884500264 + ], + [ + -1.5363496513766823, + 53.79566681524815 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583022, - "osm_way_id": 663639116, - "src_i": 659971029, + "dst_i": 6264671922, + "osm_way_id": 438922251, + "src_i": 4365671270, "type": "road" }, "type": "Feature" @@ -10573,33 +11289,33 @@ "coordinates": [ [ [ - -1.5356174996607495, - 53.79872313924183 + -1.5358358370059166, + 53.795669196651914 ], [ - -1.5356178955221311, - 53.79870945965998 + -1.5359794159291187, + 53.79567037296465 ], [ - -1.5355208211760354, - 53.798708479399366 + -1.5359798391962887, + 53.79565238833 ], [ - -1.5355204253146537, - 53.798722158981214 + -1.5358362602730864, + 53.79565121201726 ], [ - -1.5356174996607495, - 53.79872313924183 + -1.5358358370059166, + 53.795669196651914 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583013, - "osm_way_id": 663639116, - "src_i": 6211583020, + "dst_i": 4365671268, + "osm_way_id": 438922251, + "src_i": 4365671272, "type": "road" }, "type": "Feature" @@ -10609,33 +11325,33 @@ "coordinates": [ [ [ - -1.5355874081055525, - 53.7988258102997 + -1.5369410835066253, + 53.79555919072654 ], [ - -1.5356042291691943, - 53.79878966836063 + -1.5369507120734671, + 53.795547431196454 ], [ - -1.5355106140425585, - 53.79877446622721 + -1.5369233001953169, + 53.7955395999034 ], [ - -1.5354937929789167, - 53.79881060816628 + -1.536913671628475, + 53.79555135943349 ], [ - -1.5355874081055525, - 53.7988258102997 + -1.5369410835066253, + 53.79555919072654 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583020, - "osm_way_id": 663639116, - "src_i": 6211583022, + "dst_i": 8450014339, + "osm_way_id": 438922251, + "src_i": 6264671922, "type": "road" }, "type": "Feature" @@ -10645,41 +11361,49 @@ "coordinates": [ [ [ - -1.5350154584457725, - 53.799241466880666 + -1.5362985624202652, + 53.79562038147194 ], [ - -1.5351932474050867, - 53.79914029319337 + -1.5361861545357973, + 53.79557520045082 ], [ - -1.5353424536500864, - 53.798999964839425 + -1.536109253894739, + 53.79558175740508 ], [ - -1.53527273028039, - 53.79897410034834 + -1.5360265645422426, + 53.79562436726556 ], [ - -1.535128877299308, - 53.799109394299606 + -1.5360465829478147, + 53.79563792004305 ], [ - -1.5349583356483696, - 53.79920644369775 + -1.5361225000255936, + 53.79559879955063 ], [ - -1.5350154584457725, - 53.799241466880666 + -1.5361788006493573, + 53.7955939998709 + ], + [ + -1.536281430757693, + 53.79563525085635 + ], + [ + -1.5362985624202652, + 53.79562038147194 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298432, - "osm_way_id": 663639118, - "src_i": 659971029, + "dst_i": 4365671268, + "osm_way_id": 438922252, + "src_i": 4365671270, "type": "road" }, "type": "Feature" @@ -10689,41 +11413,49 @@ "coordinates": [ [ [ - -1.532505659221159, - 53.79672763260099 + -1.5377549090383558, + 53.797799278686 ], [ - -1.5325400001960356, - 53.796718623196554 + -1.5377534915500999, + 53.79783692159293 ], [ - -1.5327377557944335, - 53.7966875381432 + -1.5378958006717924, + 53.79784049459791 ], [ - -1.5327175607737833, - 53.79664271415278 + -1.5378751153920462, + 53.79805020831626 ], [ - -1.5325138063529065, - 53.796674741695234 + -1.537905514501086, + 53.79805125512668 ], [ - -1.5324737832446562, - 53.796685242174995 + -1.5379279994275759, + 53.797823299567675 ], [ - -1.532505659221159, - 53.79672763260099 + -1.5377846001645392, + 53.797819699583044 + ], + [ + -1.5377853538237085, + 53.79779967798482 + ], + [ + -1.5377549090383558, + 53.797799278686 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8733041519, - "osm_way_id": 668984459, - "src_i": 5728993713, + "dst_i": 4457095868, + "osm_way_id": 448727589, + "src_i": 5071469692, "type": "road" }, "type": "Feature" @@ -10733,33 +11465,33 @@ "coordinates": [ [ [ - -1.5328130379714575, - 53.79668001351884 + -1.5379416825284944, + 53.798091448509844 ], [ - -1.5328342226455625, - 53.79667886598439 + -1.5384121576906649, + 53.79808852121783 ], [ - -1.5328270514643756, - 53.796632676823684 + -1.5384118379564717, + 53.79807053658317 ], [ - -1.5328058667902709, - 53.796633824358125 + -1.5379413627943013, + 53.79807346387519 ], [ - -1.5328130379714575, - 53.79668001351884 + -1.5379416825284944, + 53.798091448509844 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264559102, - "osm_way_id": 668984459, - "src_i": 8733041519, + "dst_i": 4457095876, + "osm_way_id": 448727590, + "src_i": 4457095868, "type": "road" }, "type": "Feature" @@ -10769,33 +11501,33 @@ "coordinates": [ [ [ - -1.5339374532983112, - 53.796521767979364 + -1.5384877093579374, + 53.7980884744531 ], [ - -1.5339464637123799, - 53.79651977418323 + -1.5388974989702682, + 53.79809049343024 ], [ - -1.5338993805686385, - 53.79644553517979 + -1.538897751712535, + 53.79807250699694 ], [ - -1.5338903701545699, - 53.796447528975925 + -1.5384879621002043, + 53.7980704880198 ], [ - -1.5339374532983112, - 53.796521767979364 + -1.5384877093579374, + 53.7980884744531 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993707, - "osm_way_id": 668984461, - "src_i": 5728993834, + "dst_i": 4457095865, + "osm_way_id": 448727590, + "src_i": 4457095876, "type": "road" }, "type": "Feature" @@ -10805,49 +11537,33 @@ "coordinates": [ [ [ - -1.5329221769544377, - 53.79668717301861 - ], - [ - -1.5334888905861705, - 53.79661027382169 - ], - [ - -1.5338089414683203, - 53.796557757933066 - ], - [ - -1.5338575578136446, - 53.79654263224199 - ], - [ - -1.5337950086702226, - 53.796472490548055 + -1.5383968835315, + 53.798418108218854 ], [ - -1.5337591390613943, - 53.7964836502306 + -1.5384161863414971, + 53.798332049430776 ], [ - -1.5334558727018357, - 53.79653341239628 + -1.5383860003885863, + 53.798329687812085 ], [ - -1.5328921280304666, - 53.79660990869709 + -1.538366697578589, + 53.79841574660016 ], [ - -1.5329221769544377, - 53.79668717301861 + -1.5383968835315, + 53.798418108218854 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993834, - "osm_way_id": 668984461, - "src_i": 6264559102, + "dst_i": 4457095875, + "osm_way_id": 448727591, + "src_i": 4457095874, "type": "road" }, "type": "Feature" @@ -10857,49 +11573,33 @@ "coordinates": [ [ [ - -1.5348639440244078, - 53.797587795102615 - ], - [ - -1.5347686586672493, - 53.797473139684236 + -1.5384834553706261, + 53.798049416913194 ], [ - -1.5346259262783868, - 53.79734225150981 + -1.5385226273769055, + 53.79777642242589 ], [ - -1.5344285604511958, - 53.797139240435826 - ], - [ - -1.53437574645268, - 53.79715715492339 - ], - [ - -1.5345738735517591, - 53.797360948407224 + -1.5384922861245294, + 53.79777490257228 ], [ - -1.5347155401599781, - 53.79749085991832 + -1.53845311411825, + 53.79804789705958 ], [ - -1.5348092725224847, - 53.79760364654628 - ], - [ - -1.5348639440244078, - 53.797587795102615 + -1.5384834553706261, + 53.798049416913194 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264670253, - "osm_way_id": 668997030, - "src_i": 5452444904, + "dst_i": 26109190, + "osm_way_id": 448727593, + "src_i": 4457095876, "type": "road" }, "type": "Feature" @@ -10909,33 +11609,41 @@ "coordinates": [ [ [ - -1.534389726449635, - 53.797098741283286 + -1.5388949547996178, + 53.798239731363914 ], [ - -1.5343750247669299, - 53.797083209998135 + -1.5388070583474063, + 53.79825304672048 ], [ - -1.5343218666735206, - 53.79710076475703 + -1.538424223850093, + 53.798286331514625 ], [ - -1.5343365683562256, - 53.797116296042184 + -1.5384286574975696, + 53.79830412549308 ], [ - -1.534389726449635, - 53.797098741283286 + -1.538813099801111, + 53.798270700404764 + ], + [ + -1.538902518797099, + 53.79825715482185 + ], + [ + -1.5388949547996178, + 53.798239731363914 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264670255, - "osm_way_id": 668997030, - "src_i": 6264670253, + "dst_i": 4457095875, + "osm_way_id": 448727594, + "src_i": -7, "type": "road" }, "type": "Feature" @@ -10945,49 +11653,41 @@ "coordinates": [ [ [ - -1.534360499699303, - 53.79706341682761 - ], - [ - -1.5343065011617292, - 53.79698984062424 - ], - [ - -1.53412654105499, - 53.79669719056263 + -1.5383513960136364, + 53.79829061498371 ], [ - -1.5340991520149962, - 53.796685420240685 + -1.5381256256097526, + 53.79829760091441 ], [ - -1.53406332351485, - 53.79671450969926 + -1.5378998871792884, + 53.79829393797726 ], [ - -1.5340756576419827, - 53.79671981030115 + -1.5378990497802114, + 53.79831191721599 ], [ - -1.5342498990742977, - 53.797003159578104 + -1.5381260001555217, + 53.798315599938206 ], [ - -1.534304622342709, - 53.7970777250353 + -1.5383529885944265, + 53.798308576236 ], [ - -1.534360499699303, - 53.79706341682761 + -1.5383513960136364, + 53.79829061498371 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3672602007, - "osm_way_id": 668997030, - "src_i": 6264670255, + "dst_i": 4457095867, + "osm_way_id": 448727594, + "src_i": 4457095875, "type": "road" }, "type": "Feature" @@ -10997,33 +11697,33 @@ "coordinates": [ [ [ - -1.5343365698787694, - 53.797116296042184 + -1.537705350238434, + 53.796625651322834 ], [ - -1.534319759472934, - 53.79711509005183 + -1.5377065180295104, + 53.79660568997917 ], [ - -1.5343160870973453, - 53.79713294518417 + -1.537653259448212, + 53.796604603598595 ], [ - -1.5343328975031807, - 53.79713415117452 + -1.5376520916571355, + 53.79662456494226 ], [ - -1.5343365698787694, - 53.797116296042184 + -1.537705350238434, + 53.796625651322834 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661455, - "osm_way_id": 668997031, - "src_i": 6264670253, + "dst_i": 4364076651, + "osm_way_id": 448805302, + "src_i": 301689294, "type": "road" }, "type": "Feature" @@ -11033,33 +11733,33 @@ "coordinates": [ [ [ - -1.5338405768829064, - 53.79644862165175 + -1.5376918437525935, + 53.796677561068655 ], [ - -1.5338305813830142, - 53.796441964872784 + -1.5376935048478535, + 53.79667378301834 ], [ - -1.5337850177379617, - 53.79646583466842 + -1.537641927154884, + 53.796665870786335 ], [ - -1.5337950132378537, - 53.79647249144738 + -1.537640266059624, + 53.79666964883665 ], [ - -1.5338405768829064, - 53.79644862165175 + -1.5376918437525935, + 53.796677561068655 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7241259894, - "osm_way_id": 668997032, - "src_i": 5728993834, + "dst_i": 301689294, + "osm_way_id": 448805302, + "src_i": 4457813299, "type": "road" }, "type": "Feature" @@ -11069,33 +11769,33 @@ "coordinates": [ [ [ - -1.5339385190789547, - 53.796522651113236 + -1.537869035874747, + 53.79809417885042 ], [ - -1.5339374517757673, - 53.79652176618072 + -1.537834697944958, + 53.79828705906585 ], [ - -1.5338878503446198, - 53.79654263763792 + -1.5378649813406706, + 53.798288940446774 ], [ - -1.533888917647807, - 53.79654352257044 + -1.5378993192704598, + 53.798096060231344 ], [ - -1.5339385190789547, - 53.796522651113236 + -1.537869035874747, + 53.79809417885042 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993834, - "osm_way_id": 668997032, - "src_i": 6905278495, + "dst_i": 4457095867, + "osm_way_id": 448805303, + "src_i": 4457095868, "type": "road" }, "type": "Feature" @@ -11105,33 +11805,33 @@ "coordinates": [ [ [ - -1.5339940005741668, - 53.79657614636315 + -1.5378265523357542, + 53.79833167081636 ], [ - -1.5339809264907587, - 53.796562286017654 + -1.5377604176017388, + 53.79868497562766 ], [ - -1.5339277257661237, - 53.796579794011826 + -1.537790682726926, + 53.79868695233667 ], [ - -1.5339407998495318, - 53.79659365435732 + -1.5378568174609415, + 53.798333647525375 ], [ - -1.5339940005741668, - 53.79657614636315 + -1.5378265523357542, + 53.79833167081636 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6905278495, - "osm_way_id": 668997032, - "src_i": 7241259893, + "dst_i": 4457095870, + "osm_way_id": 448805306, + "src_i": 4457095867, "type": "road" }, "type": "Feature" @@ -11141,41 +11841,33 @@ "coordinates": [ [ [ - -1.5337804653320704, - 53.79640093691911 - ], - [ - -1.5336321832711428, - 53.79615074653127 - ], - [ - -1.5336122074967964, - 53.79613878105651 + -1.5367183155590687, + 53.796532524765794 ], [ - -1.533568842404957, - 53.796164037606154 + -1.5367162509897079, + 53.7965757083935 ], [ - -1.5335792170182494, - 53.79617025281818 + -1.5367466896848858, + 53.79657621561092 ], [ - -1.533722983214336, - 53.796412822354235 + -1.5367487542542466, + 53.796533031983216 ], [ - -1.5337804653320704, - 53.79640093691911 + -1.5367183155590687, + 53.796532524765794 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3672604268, - "osm_way_id": 668997033, - "src_i": 6264670275, + "dst_i": 4457813307, + "osm_way_id": 448805309, + "src_i": 9319419229, "type": "road" }, "type": "Feature" @@ -11185,33 +11877,33 @@ "coordinates": [ [ [ - -1.5340657854681365, - 53.79664246953729 + -1.5367018385903206, + 53.796620032361076 ], [ - -1.5340567948471369, - 53.79663149331637 + -1.5366869876983256, + 53.79679106445598 ], [ - -1.5339882681968486, - 53.79665107694495 + -1.536747810277105, + 53.79679290626675 ], [ - -1.5339972588178483, - 53.79666205316587 + -1.5367626611691, + 53.79662187417185 ], [ - -1.5340657854681365, - 53.79664246953729 + -1.5367018385903206, + 53.796620032361076 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6905278494, - "osm_way_id": 668997034, - "src_i": 3672602007, + "dst_i": 4457813308, + "osm_way_id": 448805312, + "src_i": 4457813307, "type": "road" }, "type": "Feature" @@ -11221,33 +11913,33 @@ "coordinates": [ [ [ - -1.5340297681725619, - 53.796603001007384 + -1.5363088928797881, + 53.80011390782098 ], [ - -1.5340195442911033, - 53.796592797303774 + -1.5363414920645846, + 53.799880735296995 ], [ - -1.5339540322774925, - 53.796615699429296 + -1.5362219723781372, + 53.799874905893965 ], [ - -1.533964256158951, - 53.796625903132906 + -1.5361893731933407, + 53.80010807841795 ], [ - -1.5340297681725619, - 53.796603001007384 + -1.5363088928797881, + 53.80011390782098 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7241259893, - "osm_way_id": 668997034, - "src_i": 6905278494, + "dst_i": 9791722, + "osm_way_id": 453297315, + "src_i": 370191923, "type": "road" }, "type": "Feature" @@ -11257,33 +11949,33 @@ "coordinates": [ [ [ - -1.5330747099575888, - 53.7955782005879 + -1.5362313847437628, + 53.80028418448568 ], [ - -1.533067585975259, - 53.795543406732 + -1.5362923656670953, + 53.80016517904841 ], [ - -1.5330231703282138, - 53.795546579538836 + -1.5361775810917924, + 53.800144658326666 ], [ - -1.5330302943105436, - 53.79558137339473 + -1.53611660016846, + 53.800263663763936 ], [ - -1.5330747099575888, - 53.7955782005879 + -1.5362313847437628, + 53.80028418448568 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 659985459, - "osm_way_id": 668997035, - "src_i": 320943623, + "dst_i": 370191923, + "osm_way_id": 453297316, + "src_i": 369772541, "type": "road" }, "type": "Feature" @@ -11293,57 +11985,41 @@ "coordinates": [ [ [ - -1.5333548092910456, - 53.795831464857194 - ], - [ - -1.533211684085889, - 53.79575973855849 - ], - [ - -1.5331422119359155, - 53.795707157019386 - ], - [ - -1.5330852413928902, - 53.79563847132723 - ], - [ - -1.5330844420574075, - 53.795633157235514 + -1.5367574068705279, + 53.79874878160046 ], [ - -1.5330398802461598, - 53.79563549727049 + -1.536748873012661, + 53.7987552962866 ], [ - -1.53304141649283, - 53.79564569827613 + -1.5367349097636878, + 53.79882997775629 ], [ - -1.5331040783044918, - 53.79572124579259 + -1.5367651779339626, + 53.79883195266667 ], [ - -1.5331792417231014, - 53.795778135082465 + -1.536778200250882, + 53.79876230020373 ], [ - -1.5333258657338562, - 53.79585161505842 + -1.5367814904679828, + 53.798759789297634 ], [ - -1.5333548092910456, - 53.795831464857194 + -1.5367574068705279, + 53.79874878160046 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943623, - "osm_way_id": 668997035, - "src_i": 6264670261, + "dst_i": 4500478004, + "osm_way_id": 453297317, + "src_i": 7261942276, "type": "road" }, "type": "Feature" @@ -11353,41 +12029,41 @@ "coordinates": [ [ [ - -1.534672287736378, - 53.795427642450015 + -1.5334097563733922, + 53.799825679723995 ], [ - -1.5348355135644711, - 53.79542788346822 + -1.53324779273409, + 53.79977229239268 ], [ - -1.5355206247678883, - 53.79547732637471 + -1.5322163561105737, + 53.79956279541085 ], [ - -1.5355280121502914, - 53.79544161970733 + -1.532191602593857, + 53.799605317137804 ], [ - -1.534839286427949, - 53.795391915997556 + -1.5332166079924618, + 53.79981350830458 ], [ - -1.5346724399907559, - 53.79539166958342 + -1.5333726580717364, + 53.79986494590653 ], [ - -1.534672287736378, - 53.795427642450015 + -1.5334097563733922, + 53.799825679723995 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6665254428, - "osm_way_id": 668997041, - "src_i": 6264671914, + "dst_i": 358204014, + "osm_way_id": 454077550, + "src_i": 1591373158, "type": "road" }, "type": "Feature" @@ -11397,49 +12073,33 @@ "coordinates": [ [ [ - -1.5355967382538143, - 53.79548245790413 - ], - [ - -1.5359543868319785, - 53.795504872597306 - ], - [ - -1.5363392478350582, - 53.795507966263834 - ], - [ - -1.5365296617273663, - 53.795526164037724 - ], - [ - -1.53653938773701, - 53.79549065342246 + -1.5335137445907765, + 53.79989384291026 ], [ - -1.5363445523775752, - 53.79547203296739 + -1.5335092759247928, + 53.7998897186211 ], [ - -1.5359580135312538, - 53.79546892671036 + -1.5334451555161934, + 53.79991395713862 ], [ - -1.5356031633885507, - 53.79544668648559 + -1.5334496241821773, + 53.79991808142777 ], [ - -1.5355967382538143, - 53.79548245790413 + -1.5335137445907765, + 53.79989384291026 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8450014342, - "osm_way_id": 668997041, - "src_i": 6665254428, + "dst_i": 6211582997, + "osm_way_id": 454077550, + "src_i": 3381506667, "type": "road" }, "type": "Feature" @@ -11449,33 +12109,33 @@ "coordinates": [ [ [ - -1.536603482262365, - 53.795534032202966 + -1.5334887535572308, + 53.79987077530956 ], [ - -1.5367039214302067, - 53.795545848390326 + -1.5334822842687248, + 53.79986480831031 ], [ - -1.5367158185872754, - 53.79551056800141 + -1.5334181760404757, + 53.79988905761968 ], [ - -1.5366153794194337, - 53.79549875181406 + -1.5334246453289817, + 53.79989502461893 ], [ - -1.536603482262365, - 53.795534032202966 + -1.5334887535572308, + 53.79987077530956 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264671921, - "osm_way_id": 668997041, - "src_i": 8450014342, + "dst_i": 1591373158, + "osm_way_id": 454077550, + "src_i": 6211582997, "type": "road" }, "type": "Feature" @@ -11485,41 +12145,33 @@ "coordinates": [ [ [ - -1.5373083454261935, - 53.79569114099986 - ], - [ - -1.5372779280466287, - 53.7956842476993 - ], - [ - -1.5370901131365469, - 53.795621191760766 + -1.5328765143440395, + 53.79536708482706 ], [ - -1.5370750673589486, - 53.79563682916587 + -1.5328691147812863, + 53.79541183777108 ], [ - -1.5372648707112022, - 53.79570055240108 + -1.5329448826497751, + 53.795416208474364 ], [ - -1.5372974379225794, - 53.79570793313398 + -1.5329522822125283, + 53.79537145553036 ], [ - -1.5373083454261935, - 53.79569114099986 + -1.5328765143440395, + 53.79536708482706 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6047609624, - "osm_way_id": 668997046, - "src_i": 6047091983, + "dst_i": 6665254462, + "osm_way_id": 474067466, + "src_i": 1606959376, "type": "road" }, "type": "Feature" @@ -11529,33 +12181,41 @@ "coordinates": [ [ [ - -1.5370217174250234, - 53.79560009457383 + -1.5328399900413874, + 53.79545175146521 ], [ - -1.5367881089657789, - 53.795534176094435 + -1.5328361852044903, + 53.7954550969418 ], [ - -1.536774981593339, - 53.7955504052532 + -1.532778757898332, + 53.79547736684419 + ], + [ + -1.532820539544644, + 53.79551495489249 + ], + [ + -1.5328908140751876, + 53.79548770274808 ], [ - -1.5370085900525834, - 53.79561632373259 + -1.5329031847433707, + 53.79547682455322 ], [ - -1.5370217174250234, - 53.79560009457383 + -1.5328399900413874, + 53.79545175146521 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264671921, - "osm_way_id": 668997046, - "src_i": 6047609624, + "dst_i": 6665254467, + "osm_way_id": 474067466, + "src_i": 6665254462, "type": "road" }, "type": "Feature" @@ -11565,33 +12225,49 @@ "coordinates": [ [ [ - -1.5367846543139503, - 53.79554244535714 + -1.5327128134822885, + 53.79548617120329 ], [ - -1.5367994351689316, - 53.79554277900548 + -1.5326969135576316, + 53.795488494151144 ], [ - -1.5368005983923767, - 53.795524805162685 + -1.5326138146408594, + 53.79547551514088 ], [ - -1.5367858175373954, - 53.79552447151435 + -1.5325003257503103, + 53.79543101040965 ], [ - -1.5367846543139503, - 53.79554244535714 - ] + -1.53245821827963, + 53.79546847255292 + ], + [ + -1.5325821853164483, + 53.79551708538552 + ], + [ + -1.5326962862695956, + 53.795534906343626 + ], + [ + -1.5327310900977804, + 53.79552982247826 + ], + [ + -1.5327128134822885, + 53.79548617120329 + ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26660405, - "osm_way_id": 668997046, - "src_i": 6264671921, + "dst_i": 6665254468, + "osm_way_id": 474067466, + "src_i": 6665254467, "type": "road" }, "type": "Feature" @@ -11601,33 +12277,33 @@ "coordinates": [ [ [ - -1.5358468830610144, - 53.79641987213677 + -1.533776674198067, + 53.80006360156569 ], [ - -1.5352101948398618, - 53.79641263709397 + -1.5337894331149133, + 53.800031482292425 ], [ - -1.5352067173498765, - 53.79651942794439 + -1.5336949105521867, + 53.800018382773054 ], [ - -1.535843405571029, - 53.79652666298718 + -1.5336821516353405, + 53.80005050204632 ], [ - -1.5358468830610144, - 53.79641987213677 + -1.533776674198067, + 53.80006360156569 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943571, - "osm_way_id": 670751728, - "src_i": 342579666, + "dst_i": 3381506666, + "osm_way_id": 491178797, + "src_i": 1284137095, "type": "road" }, "type": "Feature" @@ -11637,57 +12313,33 @@ "coordinates": [ [ [ - -1.5359539848804216, - 53.79882883381914 - ], - [ - -1.5359266536970912, - 53.79883106593551 - ], - [ - -1.5358368053437583, - 53.798821162605336 - ], - [ - -1.53575313547307, - 53.79879790075115 - ], - [ - -1.5357107904855607, - 53.798777085051896 - ], - [ - -1.5356702969112836, - 53.79880582377502 - ], - [ - -1.5357188630126632, - 53.79882969896658 + -1.5337174304971835, + 53.800220936092316 ], [ - -1.5358171949799184, - 53.79885703654654 + -1.5337599627575773, + 53.80010698124551 ], [ - -1.5359251463787527, - 53.79886893457217 + -1.5336651509115333, + 53.8000946353577 ], [ - -1.5359626542446843, - 53.79886587148258 + -1.5336226186511395, + 53.8002085902045 ], [ - -1.5359539848804216, - 53.79882883381914 + -1.5337174304971835, + 53.800220936092316 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 250348721, - "osm_way_id": 673667995, - "src_i": 643945, + "dst_i": 1284137095, + "osm_way_id": 491178797, + "src_i": 1591373207, "type": "road" }, "type": "Feature" @@ -11697,41 +12349,33 @@ "coordinates": [ [ [ - -1.5356890104968393, - 53.79873601393078 - ], - [ - -1.535651998980179, - 53.79870450439761 - ], - [ - -1.5356409574927123, - 53.79868488749413 + -1.5335920018183398, + 53.80003733867511 ], [ - -1.5355208196534917, - 53.798708478500046 + -1.5336579203511391, + 53.80002519693331 ], [ - -1.5355376011309951, - 53.79873829550984 + -1.533646589580355, + 53.800003733722455 ], [ - -1.5355849933511232, - 53.798778641777695 + -1.533580671047556, + 53.800015875464254 ], [ - -1.5356890104968393, - 53.79873601393078 + -1.5335920018183398, + 53.80003733867511 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583013, - "osm_way_id": 673667995, - "src_i": 250348721, + "dst_i": 3381506666, + "osm_way_id": 491178798, + "src_i": 4833244387, "type": "road" }, "type": "Feature" @@ -11741,49 +12385,33 @@ "coordinates": [ [ [ - -1.5339190746723863, - 53.79640956141388 - ], - [ - -1.5339034031292957, - 53.79640222294909 - ], - [ - -1.5338412041709422, - 53.79634867823649 - ], - [ - -1.5337229679888982, - 53.79614082341602 - ], - [ - -1.5336661283846378, - 53.79615210450698 + -1.5354863507849377, + 53.79874942731341 ], [ - -1.5337870290182902, - 53.79636464299468 + -1.5354896486147573, + 53.79873945923208 ], [ - -1.5338590757897896, - 53.7964266647133 + -1.5353943617350552, + 53.79872846052812 ], [ - -1.5338818210712653, - 53.7964373162791 + -1.5353910639052355, + 53.798738428609454 ], [ - -1.5339190746723863, - 53.79640956141388 + -1.5354863507849377, + 53.79874942731341 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6309354601, - "osm_way_id": 673731116, - "src_i": 5728993707, + "dst_i": 5452444914, + "osm_way_id": 491178799, + "src_i": 682218116, "type": "road" }, "type": "Feature" @@ -11793,41 +12421,41 @@ "coordinates": [ [ [ - -1.5336626508946525, - 53.79608020823648 + -1.5355046015171854, + 53.798695870010306 ], [ - -1.5336328638482108, - 53.79605725484963 + -1.535559242568233, + 53.79854205183139 ], [ - -1.5335297998148987, - 53.79600223345085 + -1.5355570470601074, + 53.79844122618157 ], [ - -1.5334895924788516, - 53.79602850983125 + -1.5354599666238364, + 53.798441963625336 ], [ - -1.5335885943653682, - 53.796081362066175 + -1.5354620251030222, + 53.798536465245206 ], [ - -1.5336150592212896, - 53.79610175598357 + -1.535409582605188, + 53.79868409249378 ], [ - -1.5336626508946525, - 53.79608020823648 + -1.5355046015171854, + 53.798695870010306 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1020737673, - "osm_way_id": 673731116, - "src_i": 6309354601, + "dst_i": 1022749752, + "osm_way_id": 491178799, + "src_i": 5452444914, "type": "road" }, "type": "Feature" @@ -11837,33 +12465,33 @@ "coordinates": [ [ [ - -1.5334749714909668, - 53.79596335397663 + -1.5355752810443735, + 53.79905914739955 ], [ - -1.5332095616598647, - 53.79586017480202 + -1.5353373683538731, + 53.79915789561631 ], [ - -1.5331561843201515, - 53.79590807806982 + -1.5353931878538036, + 53.799204816824854 ], [ - -1.5334215941512537, - 53.79601125724444 + -1.535631100544304, + 53.79910606860809 ], [ - -1.5334749714909668, - 53.79596335397663 + -1.5355752810443735, + 53.79905914739955 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1020737641, - "osm_way_id": 673731117, - "src_i": 1020737673, + "dst_i": 9319419293, + "osm_way_id": 491178800, + "src_i": 4833244388, "type": "road" }, "type": "Feature" @@ -11873,49 +12501,41 @@ "coordinates": [ [ [ - -1.5336833635801865, - 53.796078870945166 - ], - [ - -1.5335874509349923, - 53.79597898868378 - ], - [ - -1.533500327935019, - 53.795921005818755 + -1.5352923178060733, + 53.799198249078735 ], [ - -1.533486361640958, - 53.79590879213123 + -1.535029333387207, + 53.79930749687594 ], [ - -1.5334212881199547, - 53.795934753749044 + -1.5345915030861461, + 53.79951954073673 ], [ - -1.5334381533373658, - 53.79594950352367 + -1.5346222828311298, + 53.7995417144117 ], [ - -1.533523226993416, - 53.796006121218404 + -1.535058727617354, + 53.79933034144487 ], [ - -1.5336150592212896, - 53.79610175508425 + -1.53532024430402, + 53.79922170338776 ], [ - -1.5336833635801865, - 53.796078870945166 + -1.5352923178060733, + 53.799198249078735 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264670261, - "osm_way_id": 673731118, - "src_i": 6309354601, + "dst_i": 4833244389, + "osm_way_id": 491178800, + "src_i": 9319419293, "type": "road" }, "type": "Feature" @@ -11925,49 +12545,49 @@ "coordinates": [ [ [ - -1.5332144246646864, - 53.79557423997528 + -1.534367574960232, + 53.7996340090962 ], [ - -1.5332174697522392, - 53.79557181270611 + -1.5342292427228834, + 53.79973216376067 ], [ - -1.5338339370694976, - 53.79543720133999 + -1.534039491137118, + 53.7998830393591 ], [ - -1.5338697016228051, - 53.79543664196191 + -1.5339348238652093, + 53.79997829820781 ], [ - -1.5338680877264022, - 53.79540068168582 + -1.5339883169182493, + 53.799998804540415 ], [ - -1.53382226220382, - 53.79540139934451 + -1.5340919001389892, + 53.79990453314689 ], [ - -1.5331793300306404, - 53.795541787953006 + -1.5342793861796153, + 53.799755459789075 ], [ - -1.5331654870626252, - 53.79555282712644 + -1.5344165856443943, + 53.79965810731953 ], [ - -1.5332144246646864, - 53.79557423997528 + -1.534367574960232, + 53.7996340090962 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": -6, - "osm_way_id": 673731119, - "src_i": 6309354609, + "dst_i": 9823132, + "osm_way_id": 491178801, + "src_i": 643950, "type": "road" }, "type": "Feature" @@ -11977,41 +12597,33 @@ "coordinates": [ [ [ - -1.5326598441843076, - 53.795809257008 - ], - [ - -1.532575378023224, - 53.79583057093146 + -1.5338411980807671, + 53.80003593573331 ], [ - -1.532530609146023, - 53.795881032769394 + -1.5338308630536128, + 53.800052985972755 ], [ - -1.532598039564792, - 53.7959019042266 + -1.5339509399910825, + 53.800078379219286 ], [ - -1.5326302230951376, - 53.795865628288595 + -1.5339612750182368, + 53.800061328979844 ], [ - -1.5326897499891636, - 53.79585060781815 - ], - [ - -1.5326598441843076, - 53.795809257008 + -1.5338411980807671, + 53.80003593573331 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 478743247, - "osm_way_id": 673731120, - "src_i": 475070618, + "dst_i": 1284137007, + "osm_way_id": 491178801, + "src_i": 9823132, "type": "road" }, "type": "Feature" @@ -12021,33 +12633,33 @@ "coordinates": [ [ [ - -1.5331032469955899, - 53.795619900334856 + -1.5338010348984894, + 53.80009764448799 ], [ - -1.5331451199945285, - 53.7956105707719 + -1.5337559036558694, + 53.8001577398596 ], [ - -1.53311825318705, - 53.79556849870578 + -1.533872487877916, + 53.800188286219274 ], [ - -1.5330763801881115, - 53.795577828268726 + -1.533917619120536, + 53.80012819084766 ], [ - -1.5331032469955899, - 53.795619900334856 + -1.5338010348984894, + 53.80009764448799 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6309354609, - "osm_way_id": 673731123, - "src_i": 320943623, + "dst_i": 1591373192, + "osm_way_id": 491178801, + "src_i": 1284137007, "type": "road" }, "type": "Feature" @@ -12057,33 +12669,33 @@ "coordinates": [ [ [ - -1.5328748304106228, - 53.79569529406731 + -1.5345193862776332, + 53.79954972466977 ], [ - -1.532909147024799, - 53.79567733821094 + -1.5344274779225706, + 53.79959762883689 ], [ - -1.5328586686084364, - 53.79564367839967 + -1.5344696706557024, + 53.7996258729331 ], [ - -1.5328243519942601, - 53.795661634256035 + -1.5345615790107647, + 53.79957796876597 ], [ - -1.5328748304106228, - 53.79569529406731 + -1.5345193862776332, + 53.79954972466977 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342529324, - "osm_way_id": 673731123, - "src_i": 320943624, + "dst_i": 643950, + "osm_way_id": 491178801, + "src_i": 4833244389, "type": "road" }, "type": "Feature" @@ -12093,33 +12705,33 @@ "coordinates": [ [ [ - -1.5329629369738755, - 53.79565654949134 + -1.5337407132366123, + 53.8002074156904 ], [ - -1.5330356612773555, - 53.79563665020086 + -1.5337114956215432, + 53.800263715924594 ], [ - -1.5330036634973505, - 53.795595849775566 + -1.5338043220705027, + 53.80028052244786 ], [ - -1.5329309391938708, - 53.795615749066044 + -1.5338335396855718, + 53.80022422221368 ], [ - -1.5329629369738755, - 53.79565654949134 + -1.5337407132366123, + 53.8002074156904 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943623, - "osm_way_id": 673731123, - "src_i": 342529324, + "dst_i": 5851965030, + "osm_way_id": 491178802, + "src_i": 1591373192, "type": "road" }, "type": "Feature" @@ -12129,33 +12741,33 @@ "coordinates": [ [ [ - -1.5327451401317491, - 53.795797115266204 + -1.538457151904345, + 53.79773191679534 ], [ - -1.5327449056600075, - 53.795795118772105 + -1.5384755594586017, + 53.79757426750613 ], [ - -1.5326689611764406, - 53.79579823042507 + -1.538445181665175, + 53.797573030039516 ], [ - -1.5326691956481822, - 53.79580022691916 + -1.5384267741109183, + 53.79773067932873 ], [ - -1.5327451401317491, - 53.795797115266204 + -1.538457151904345, + 53.79773191679534 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1020737577, - "osm_way_id": 673731123, - "src_i": 475070618, + "dst_i": 6001482101, + "osm_way_id": 520302973, + "src_i": 5071469690, "type": "road" }, "type": "Feature" @@ -12165,41 +12777,33 @@ "coordinates": [ [ [ - -1.5327617449941744, - 53.79575108888272 - ], - [ - -1.5327821455582344, - 53.795746156103384 - ], - [ - -1.532800403903201, - 53.795735672710734 + -1.5378192791441343, + 53.79775156877236 ], [ - -1.532747340207506, - 53.79570343023041 + -1.537839341703476, + 53.797551908570895 ], [ - -1.5327396544065226, - 53.79570784320182 + -1.5378089456395239, + 53.79755084377405 ], [ - -1.5327329049699618, - 53.79570947547064 + -1.5377888830801822, + 53.79775050397551 ], [ - -1.5327617449941744, - 53.79575108888272 + -1.5378192791441343, + 53.79775156877236 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943624, - "osm_way_id": 673731123, - "src_i": 475070619, + "dst_i": 6001482100, + "osm_way_id": 520302975, + "src_i": 5071469692, "type": "road" }, "type": "Feature" @@ -12209,33 +12813,33 @@ "coordinates": [ [ [ - -1.5327463398962449, - 53.79576373514397 + -1.5389352062894346, + 53.79746978701307 ], [ - -1.5327464099332586, - 53.79576329717432 + -1.5388591963364853, + 53.7974672895968 ], [ - -1.532670620749157, - 53.79575906856385 + -1.5388575063128935, + 53.79748524905045 ], [ - -1.5326705507121432, - 53.7957595065335 + -1.5389335162658426, + 53.797487746466714 ], [ - -1.5327463398962449, - 53.79576373514397 + -1.5389352062894346, + 53.79746978701307 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 475070619, - "osm_way_id": 673731123, - "src_i": 1020737577, + "dst_i": 6001482132, + "osm_way_id": 520302981, + "src_i": 5071469695, "type": "road" }, "type": "Feature" @@ -12245,73 +12849,105 @@ "coordinates": [ [ [ - -1.5335797894947094, - 53.796103112160644 + -1.5387831894286235, + 53.79746479128122 ], [ - -1.533563653575767, - 53.796083247943706 + -1.538585397289175, + 53.797458290084904 ], [ - -1.5334686331412257, - 53.79602783713865 + -1.5385837042204957, + 53.797476249538555 ], [ - -1.533254179805232, - 53.79594228017206 + -1.5387814963599442, + 53.79748275073487 ], [ - -1.532979555539195, - 53.79585023370034 - ], + -1.5387831894286235, + 53.79746479128122 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5071469697, + "osm_way_id": 520302981, + "src_i": 6001482132, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5328123041053574, - 53.795803420410394 + -1.537644297755544, + 53.79742792448889 ], [ - -1.5327507948593346, - 53.79580049491702 + -1.5376385882163826, + 53.79742782016758 ], [ - -1.5327446864137038, - 53.79584531531015 + -1.5376376472843287, + 53.79744579760766 ], [ - -1.5327922948350479, - 53.79584757890279 + -1.5376433568234902, + 53.797445901928974 ], [ - -1.5329444456797112, - 53.79589016717954 - ], + -1.537644297755544, + 53.79742792448889 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5071469699, + "osm_way_id": 520302982, + "src_i": 5071469698, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5332140211905856, - 53.79598051932925 + -1.5389506083422766, + 53.796762768199116 ], [ - -1.5334201675277352, - 53.796062763194826 + -1.5388745451002952, + 53.79676092818699 ], [ - -1.5335007451120137, - 53.79610975275182 + -1.538873299659486, + 53.79677890023114 ], [ - -1.533511153221269, - 53.79612256448825 + -1.5389493629014674, + 53.796780740243264 ], [ - -1.5335797894947094, - 53.796103112160644 + -1.5389506083422766, + 53.796762768199116 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 475070618, - "osm_way_id": 673731126, - "src_i": 3672604268, + "dst_i": 5924236780, + "osm_way_id": 520302984, + "src_i": 5071469704, "type": "road" }, "type": "Feature" @@ -12321,33 +12957,33 @@ "coordinates": [ [ [ - -1.5353344648628915, - 53.797569895004195 + -1.538836461712816, + 53.79676004505311 ], [ - -1.5353457621377125, - 53.79758602253961 + -1.538589530995528, + 53.79675431097818 ], [ - -1.5353809328989474, - 53.79757742682314 + -1.5385883342761197, + 53.79677228302233 ], [ - -1.5353696356241264, - 53.79756129928772 + -1.5388352649934078, + 53.79677801709727 ], [ - -1.5353344648628915, - 53.797569895004195 + -1.538836461712816, + 53.79676004505311 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237437116, - "osm_way_id": 673731133, - "src_i": 2275824794, + "dst_i": 5931863421, + "osm_way_id": 520302984, + "src_i": 5924236780, "type": "road" }, "type": "Feature" @@ -12357,57 +12993,69 @@ "coordinates": [ [ [ - -1.5357186924877604, - 53.79799177489108 - ], - [ - -1.5357046881301049, - 53.79802620002509 + -1.5384839441071785, + 53.79675219307566 ], [ - -1.5357079615992242, - 53.79808546442349 + -1.5379082322417268, + 53.79674115210358 ], [ - -1.5357456582605842, - 53.79814430704002 + -1.5379072425882723, + 53.79675912954366 ], [ - -1.5358466013904157, - 53.79820812200604 + -1.5384829544537237, + 53.79677017051574 ], [ - -1.5359022260047428, - 53.79817742276168 - ], + -1.5384839441071785, + 53.79675219307566 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5931863422, + "osm_way_id": 520302984, + "src_i": 5931863420, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5358115417748766, - 53.79812009370352 + -1.5385511796403442, + 53.79675342064973 ], [ - -1.5357836381150864, - 53.798076535957996 + -1.5385218798079112, + 53.796752920626886 ], [ - -1.5357811106924175, - 53.79803079915609 + -1.5385209997776084, + 53.79677089986561 ], [ - -1.5357927124759938, - 53.798002280766774 + -1.5385502996100415, + 53.796771399888456 ], [ - -1.5357186924877604, - 53.79799177489108 + -1.5385511796403442, + 53.79675342064973 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304855, - "osm_way_id": 673731136, - "src_i": 1877939977, + "dst_i": 5931863420, + "osm_way_id": 520302984, + "src_i": 5931863421, "type": "road" }, "type": "Feature" @@ -12417,57 +13065,33 @@ "coordinates": [ [ [ - -1.5359075503403288, - 53.798240714322496 + -1.5378321598644826, + 53.79673968261198 ], [ - -1.5360625985857985, - 53.79831065097108 + -1.5377694462863327, + 53.7967384631318 ], [ - -1.536236109197101, - 53.79836582075794 + -1.537768444452528, + 53.79675644057188 ], [ - -1.5363236311035438, - 53.79837292719773 - ], - [ - -1.5363232489450558, - 53.79837522226662 - ], - [ - -1.5363990107233696, - 53.798379627144136 - ], - [ - -1.5364065701532192, - 53.79833427255394 - ], - [ - -1.536260092306667, - 53.79832237992424 - ], - [ - -1.536104002641254, - 53.798272748160194 - ], - [ - -1.5359537534537675, - 53.79820497707818 + -1.5378311580306778, + 53.79675766005206 ], [ - -1.5359075503403288, - 53.798240714322496 + -1.5378321598644826, + 53.79673968261198 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6584937015, - "osm_way_id": 673731136, - "src_i": 2014304855, + "dst_i": 5071469702, + "osm_way_id": 520302984, + "src_i": 5931863422, "type": "road" }, "type": "Feature" @@ -12477,57 +13101,33 @@ "coordinates": [ [ [ - -1.5363864680077395, - 53.7984614096577 - ], - [ - -1.5364335968277942, - 53.79849950942003 - ], - [ - -1.5364862189857942, - 53.79852651964691 - ], - [ - -1.5366471533855035, - 53.79856966640243 - ], - [ - -1.5366673377483473, - 53.79857305324782 - ], - [ - -1.536688141786508, - 53.79852979947302 - ], - [ - -1.536673447716522, - 53.79852733353302 + -1.5376941762896588, + 53.79673643426212 ], [ - -1.5365277813858023, - 53.79848828048972 + -1.5376860733116808, + 53.79673615457309 ], [ - -1.5364900040296223, - 53.79846889111463 + -1.5376842980256376, + 53.79675411042945 ], [ - -1.5364479361450805, - 53.79843488146723 + -1.5376924010036155, + 53.79675439011849 ], [ - -1.5363864680077395, - 53.7984614096577 + -1.5376941762896588, + 53.79673643426212 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419252, - "osm_way_id": 673731136, - "src_i": 6584937015, + "dst_i": 5071469703, + "osm_way_id": 520302986, + "src_i": 5071469702, "type": "road" }, "type": "Feature" @@ -12537,41 +13137,33 @@ "coordinates": [ [ [ - -1.5351622773421307, - 53.79770019502225 - ], - [ - -1.5351422254405955, - 53.79770613144456 - ], - [ - -1.5351121369304863, - 53.797705288780165 + -1.5352729282110809, + 53.79802730619074 ], [ - -1.5351106935589864, - 53.79772325542839 + -1.5352645496526793, + 53.79802425569165 ], [ - -1.535148744973046, - 53.797724321124555 + -1.5352246041941615, + 53.798062534418996 ], [ - -1.535175922379455, - 53.797716274893624 + -1.535232982752563, + 53.798065584918085 ], [ - -1.5351622773421307, - 53.79770019502225 + -1.5352729282110809, + 53.79802730619074 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444899, - "osm_way_id": 673734333, - "src_i": 5452444896, + "dst_i": 5452456322, + "osm_way_id": 566234612, + "src_i": 5452456321, "type": "road" }, "type": "Feature" @@ -12581,33 +13173,33 @@ "coordinates": [ [ [ - -1.5352869843352246, - 53.79766834464617 + -1.5320308448092257, + 53.798691401280955 ], [ - -1.5352850293890157, - 53.797695051801654 + -1.5320202707426986, + 53.798735931193185 ], [ - -1.535323056442375, - 53.79769602306905 + -1.5320805817467693, + 53.79874092782436 ], [ - -1.535325011388584, - 53.797669315913566 + -1.5320911558132964, + 53.798696397912124 ], [ - -1.5352869843352246, - 53.79766834464617 + -1.5320308448092257, + 53.798691401280955 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6309354662, - "osm_way_id": 673737341, - "src_i": 5452444895, + "dst_i": 5506378690, + "osm_way_id": 573276629, + "src_i": 5506378693, "type": "road" }, "type": "Feature" @@ -12617,33 +13209,33 @@ "coordinates": [ [ [ - -1.5352809504942386, - 53.79773089606525 + -1.5320717479477788, + 53.79806827478919 ], [ - -1.5352796837378166, - 53.79773795753896 + -1.5319962556597133, + 53.79806247776173 ], [ - -1.535317534176098, - 53.797740326352226 + -1.531992330541858, + 53.79808031490764 ], [ - -1.53531880093252, - 53.79773326487852 + -1.5320678228299232, + 53.798086111935085 ], [ - -1.5352809504942386, - 53.79773089606525 + -1.5320717479477788, + 53.79806827478919 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26660391, - "osm_way_id": 673737341, - "src_i": 6309354662, + "dst_i": 5506378735, + "osm_way_id": 573276640, + "src_i": 4361246654, "type": "road" }, "type": "Feature" @@ -12653,57 +13245,57 @@ "coordinates": [ [ [ - -1.536408614929511, - 53.79840309314434 + -1.5321797556807328, + 53.79855715054282 ], [ - -1.5364313556433553, - 53.7983993762479 + -1.5321399685667678, + 53.79854856921549 ], [ - -1.5366589196038076, - 53.79841125628709 + -1.5321155515322258, + 53.79853390667507 ], [ - -1.5366856052285764, - 53.79838971933186 + -1.5320969521374532, + 53.79851478709647 ], [ - -1.5366903997189285, - 53.798348907215384 + -1.5321039847671565, + 53.79847717656513 ], [ - -1.5366600219255016, - 53.7983476625542 + -1.5319847817698145, + 53.79846939923137 ], [ - -1.5366558364526604, - 53.798383289181956 + -1.5319734464313992, + 53.79853001261226 ], [ - -1.5366444889338948, - 53.79839244607515 + -1.5320192475932808, + 53.79857709390006 ], [ - -1.5364285450275441, - 53.798381173977404 + -1.5320734303586516, + 53.79860963135789 ], [ - -1.5364004936810076, - 53.79838575781993 + -1.5321386226380695, + 53.7986236913528 ], [ - -1.536408614929511, - 53.79840309314434 + -1.5321797556807328, + 53.79855715054282 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6584937084, - "osm_way_id": 701166698, - "src_i": 6584937015, + "dst_i": 5506378741, + "osm_way_id": 573276642, + "src_i": 394143340, "type": "road" }, "type": "Feature" @@ -12713,73 +13305,69 @@ "coordinates": [ [ [ - -1.5364479361450805, - 53.79843488236655 - ], - [ - -1.536490578028626, - 53.79843905701772 - ], - [ - -1.5366229601648964, - 53.79844637210014 - ], - [ - -1.5366776742980452, - 53.79843828899702 - ], - [ - -1.5367340510489977, - 53.79838384136546 - ], - [ - -1.5367364627583397, - 53.7983422162622 + -1.5322590923918336, + 53.79855693560494 ], [ - -1.5367323640704935, - 53.79833919993734 + -1.5322336050090166, + 53.79856009312331 ], [ - -1.5367086154326692, - 53.79835045764594 + -1.5322582214967935, + 53.798629421830455 ], [ - -1.5367056434272177, - 53.79834827049565 + -1.5322837088796104, + 53.798626264312084 ], [ - -1.5367038925018748, - 53.79837849399884 - ], + -1.5322590923918336, + 53.79855693560494 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 394143340, + "osm_way_id": 573276642, + "src_i": 4361246660, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.53665819487297, - 53.7984226264109 + -1.5328361014645826, + 53.79797581912611 ], [ - -1.5366206245827436, - 53.79842817702421 + -1.532860414966148, + 53.797850962702086 ], [ - -1.5364944544250807, - 53.79842120548267 + -1.5327999121215612, + 53.797846852802074 ], [ - -1.536452914863229, - 53.798417138750104 + -1.532775598619996, + 53.7979717092261 ], [ - -1.5364479361450805, - 53.79843488236655 + -1.5328361014645826, + 53.79797581912611 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6584937084, - "osm_way_id": 701166699, - "src_i": 6584937015, + "dst_i": 5506378752, + "osm_way_id": 573276645, + "src_i": 5506378754, "type": "road" }, "type": "Feature" @@ -12789,49 +13377,41 @@ "coordinates": [ [ [ - -1.5342452431354294, - 53.79665385315093 - ], - [ - -1.5342520595639164, - 53.796652378263396 - ], - [ - -1.5342916807206097, - 53.79674013227281 + -1.5327134834015501, + 53.797993214705066 ], [ - -1.53435044329766, - 53.79673067860347 + -1.5326819423846783, + 53.79801269311301 ], [ - -1.534330437072438, - 53.79668729352771 + -1.532518386164586, + 53.79805886878389 ], [ - -1.5343455178685432, - 53.79668486715786 + -1.5325315165821136, + 53.79807509614401 ], [ - -1.534304139696332, - 53.79659322088428 + -1.532700103286843, + 53.7980274995449 ], [ - -1.5342190553824755, - 53.796611631797404 + -1.5327354902492942, + 53.79800564692776 ], [ - -1.5342452431354294, - 53.79665385315093 + -1.5327134834015501, + 53.797993214705066 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643906, - "osm_way_id": 701166712, - "src_i": 643852, + "dst_i": 4361246658, + "osm_way_id": 573276646, + "src_i": 5506378775, "type": "road" }, "type": "Feature" @@ -12841,33 +13421,41 @@ "coordinates": [ [ [ - -1.5340991535375401, - 53.796685421140005 + -1.5331585564433552, + 53.79836025395683 ], [ - -1.534115747742159, - 53.79668184094046 + -1.5331947503540078, + 53.798231030426805 ], [ - -1.5340896300262186, - 53.79663960339914 + -1.5336024906224155, + 53.79825151607501 ], [ - -1.5340730358215997, - 53.7966431835987 + -1.5336050728566601, + 53.798233594392876 ], [ - -1.5340991535375401, - 53.796685421140005 + -1.5331692995122415, + 53.798211700406945 + ], + [ + -1.5331285136095592, + 53.79835731857092 + ], + [ + -1.5331585564433552, + 53.79836025395683 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643852, - "osm_way_id": 701166712, - "src_i": 3672602007, + "dst_i": 5506378757, + "osm_way_id": 573276648, + "src_i": 5506378761, "type": "road" }, "type": "Feature" @@ -12877,49 +13465,33 @@ "coordinates": [ [ [ - -1.53683466378683, - 53.79791617071736 - ], - [ - -1.5368068392993162, - 53.79815078755194 - ], - [ - -1.5366761243484808, - 53.79827782303235 - ], - [ - -1.536669382524639, - 53.798303747777986 - ], - [ - -1.5367295778153827, - 53.79830920845914 + -1.5344527506267152, + 53.79846073876374 ], [ - -1.5367344743161677, - 53.79829037756279 + -1.5344229727155363, + 53.798459975239645 ], [ - -1.5368665595564017, - 53.79816201288496 + -1.534419671840629, + 53.79850489815545 ], [ - -1.536895416328596, - 53.797918685220736 + -1.534449449751808, + 53.79850566167954 ], [ - -1.53683466378683, - 53.79791617071736 + -1.5344527506267152, + 53.79846073876374 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6584937084, - "osm_way_id": 702394096, - "src_i": 6101189538, + "dst_i": 9316506597, + "osm_way_id": 573276649, + "src_i": 1675168038, "type": "road" }, "type": "Feature" @@ -12929,33 +13501,33 @@ "coordinates": [ [ [ - -1.5341986350253463, - 53.79655605281919 + -1.5340149888401244, + 53.798431113309455 ], [ - -1.5341950540023843, - 53.79655744766709 + -1.5339804788628886, + 53.79842825616452 ], [ - -1.534216007249835, - 53.79657621651024 + -1.5339699124090802, + 53.79847278697608 ], [ - -1.5342195882727971, - 53.79657482166234 + -1.534004422386316, + 53.79847564412101 ], [ - -1.5341986350253463, - 53.79655605281919 + -1.5340149888401244, + 53.798431113309455 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6905278501, - "osm_way_id": 702394734, - "src_i": 643914, + "dst_i": 9316506599, + "osm_way_id": 573276649, + "src_i": 9258530363, "type": "road" }, "type": "Feature" @@ -12965,33 +13537,33 @@ "coordinates": [ [ [ - -1.534067620133387, - 53.79660279776069 + -1.5343865473782297, + 53.798457441850516 ], [ - -1.534039579444657, - 53.79661144024189 + -1.534098147136104, + 53.79843738967535 ], [ - -1.534057189185975, - 53.79663137280727 + -1.534089246345187, + 53.798482048190586 ], [ - -1.534085229874705, - 53.79662273032607 + -1.534377646587313, + 53.798502100365745 ], [ - -1.534067620133387, - 53.79660279776069 + -1.5343865473782297, + 53.798457441850516 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6905278494, - "osm_way_id": 702394734, - "src_i": 6905278501, + "dst_i": 9258530363, + "osm_way_id": 573276649, + "src_i": 9316506597, "type": "road" }, "type": "Feature" @@ -13001,33 +13573,33 @@ "coordinates": [ [ [ - -1.5340355157753178, - 53.79742604490661 + -1.5346648181366112, + 53.79840872559593 ], [ - -1.5336817024849265, - 53.797546506345654 + -1.5345690227272877, + 53.79844301942897 ], [ - -1.533712116819404, - 53.79757767323728 + -1.5346084809717968, + 53.79848147442336 ], [ - -1.5340659301097952, - 53.79745721179823 + -1.5347042763811203, + 53.798447180590315 ], [ - -1.5340355157753178, - 53.79742604490661 + -1.5346648181366112, + 53.79840872559593 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7105816301, - "osm_way_id": 702394737, - "src_i": 1606959629, + "dst_i": 9316506598, + "osm_way_id": 573276650, + "src_i": 4029217614, "type": "road" }, "type": "Feature" @@ -13037,41 +13609,33 @@ "coordinates": [ [ [ - -1.537556765191295, - 53.79573779690851 - ], - [ - -1.5375859584456637, - 53.79576998183225 - ], - [ - -1.5377713205377215, - 53.795840324074916 + -1.5345364859667858, + 53.798454667443174 ], [ - -1.5377918961943158, - 53.79582140774301 + -1.5345076855287114, + 53.7984649673742 ], [ - -1.537614841101102, - 53.79575421852211 + -1.5345471133223452, + 53.798503433160455 ], [ - -1.5375903159659516, - 53.79572717951694 + -1.5345759137604196, + 53.79849313322943 ], [ - -1.537556765191295, - 53.79573779690851 + -1.5345364859667858, + 53.798454667443174 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8892765835, - "osm_way_id": 709186189, - "src_i": 320951161, + "dst_i": 5506378768, + "osm_way_id": 573276650, + "src_i": 9316506598, "type": "road" }, "type": "Feature" @@ -13081,41 +13645,33 @@ "coordinates": [ [ [ - -1.537835821582265, - 53.795865389069036 - ], - [ - -1.5380742169191426, - 53.79596032685991 - ], - [ - -1.53810449422468, - 53.795981778379584 + -1.534728206201654, + 53.798386059992005 ], [ - -1.5381337301102744, - 53.79596738203837 + -1.5346974051410576, + 53.79839705959529 ], [ - -1.5380999844500143, - 53.79594347357191 + -1.534736793348553, + 53.798435539770686 ], [ - -1.537857100654084, - 53.795846747929566 + -1.5347675944091494, + 53.7984245401674 ], [ - -1.537835821582265, - 53.795865389069036 + -1.534728206201654, + 53.798386059992005 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 10440056, - "osm_way_id": 709186189, - "src_i": 8892765835, + "dst_i": 4029217614, + "osm_way_id": 573276651, + "src_i": 5506378766, "type": "road" }, "type": "Feature" @@ -13125,33 +13681,33 @@ "coordinates": [ [ [ - -1.5356139262505062, - 53.79540463870115 + -1.5348340625802521, + 53.798353384038634 ], [ - -1.5356242947736234, - 53.795360090802475 + -1.5347646482869421, + 53.798378259275886 ], [ - -1.5355488770902033, - 53.79535396642194 + -1.5347804431560785, + 53.798393637676355 ], [ - -1.5355385085670858, - 53.79539851432061 + -1.5348498574493885, + 53.798368762439104 ], [ - -1.5356139262505062, - 53.79540463870115 + -1.5348340625802521, + 53.798353384038634 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6665254427, - "osm_way_id": 709186190, - "src_i": 320943572, + "dst_i": 5506378766, + "osm_way_id": 573276652, + "src_i": 5506378765, "type": "road" }, "type": "Feature" @@ -13161,33 +13717,33 @@ "coordinates": [ [ [ - -1.5355998092246115, - 53.79546526467254 + -1.5349119635325716, + 53.79832547718805 ], [ - -1.535600567451412, - 53.795462010027435 + -1.534899158939412, + 53.79833006282922 ], [ - -1.5355251497679918, - 53.79545588025097 + -1.5349149477183734, + 53.79834544302833 ], [ - -1.5355243915411911, - 53.79545913489608 + -1.534927752311533, + 53.79834085738717 ], [ - -1.5355998092246115, - 53.79546526467254 + -1.5349119635325716, + 53.79832547718805 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943572, - "osm_way_id": 709186190, - "src_i": 6665254428, + "dst_i": 5506378765, + "osm_way_id": 573276654, + "src_i": 5506378764, "type": "road" }, "type": "Feature" @@ -13197,33 +13753,33 @@ "coordinates": [ [ [ - -1.5343507341035212, - 53.79539142226996 + -1.535056664570537, + 53.798273671763546 ], [ - -1.534312515209646, - 53.79535253380253 + -1.5349770690269944, + 53.79830216587118 ], [ - -1.534259844330245, - 53.7953705939802 + -1.5349928517157805, + 53.79831754786893 ], [ - -1.5342980632241203, - 53.79540948244764 + -1.5350724472593231, + 53.7982890537613 ], [ - -1.5343507341035212, - 53.79539142226996 + -1.535056664570537, + 53.798273671763546 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1277537020, - "osm_way_id": 709186193, - "src_i": 320943617, + "dst_i": 5506378764, + "osm_way_id": 573276655, + "src_i": 5506378763, "type": "road" }, "type": "Feature" @@ -13233,33 +13789,33 @@ "coordinates": [ [ [ - -1.5344333366710223, - 53.795458281439814 + -1.533548135809598, + 53.79812962201655 ], [ - -1.5344137323973575, - 53.795443555946875 + -1.5334763570058032, + 53.79812217473385 ], [ - -1.5343658605759398, - 53.79546579257436 + -1.533471089004337, + 53.798139889572 ], [ - -1.5343854648496047, - 53.7954805180673 + -1.5335428678081315, + 53.79814733685471 ], [ - -1.5344333366710223, - 53.795458281439814 + -1.533548135809598, + 53.79812962201655 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943617, - "osm_way_id": 709186193, - "src_i": 6665254454, + "dst_i": 5506378774, + "osm_way_id": 573276656, + "src_i": 5506378782, "type": "road" }, "type": "Feature" @@ -13269,49 +13825,33 @@ "coordinates": [ [ [ - -1.534580595582532, - 53.795407438289494 - ], - [ - -1.5345776448926933, - 53.795408959042426 - ], - [ - -1.5344877082318213, - 53.79541980755967 - ], - [ - -1.5344254696873296, - 53.795439053043296 - ], - [ - -1.5344607774775043, - 53.795478891194406 + -1.5333293569267357, + 53.797737683245856 ], [ - -1.5345134909881308, - 53.79546259188855 + -1.5333333947128305, + 53.79773808614196 ], [ - -1.5346125537763986, - 53.79545064080295 + -1.5333384678286937, + 53.79772035151873 ], [ - -1.5346306385513748, - 53.79544132293118 + -1.5333344300425986, + 53.79771994862262 ], [ - -1.534580595582532, - 53.795407438289494 + -1.5333293569267357, + 53.797737683245856 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6665254454, - "osm_way_id": 709186194, - "src_i": 6264671914, + "dst_i": 5506378777, + "osm_way_id": 573276657, + "src_i": 5506378778, "type": "road" }, "type": "Feature" @@ -13321,33 +13861,33 @@ "coordinates": [ [ [ - -1.534449161991034, - 53.799677345608586 + -1.533262153366989, + 53.7977328448953 ], [ - -1.5341005253494826, - 53.799916699170375 + -1.533293319838092, + 53.79773408416055 ], [ - -1.534129380599133, - 53.7999313617108 + -1.5332953661369275, + 53.79771613909605 ], [ - -1.5344780172406844, - 53.799692008149016 + -1.5332641996658245, + 53.797714899830794 ], [ - -1.534449161991034, - 53.799677345608586 + -1.533262153366989, + 53.7977328448953 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6740104094, - "osm_way_id": 717747209, - "src_i": 6211583005, + "dst_i": 5506378778, + "osm_way_id": 573276658, + "src_i": 5506378779, "type": "road" }, "type": "Feature" @@ -13357,33 +13897,33 @@ "coordinates": [ [ [ - -1.5340488273755548, - 53.79996299085375 + -1.533653453207699, + 53.798209239862864 ], [ - -1.5340202203005402, - 53.79999895472713 + -1.5336392691898781, + 53.798171455762436 ], [ - -1.5340546693760249, - 53.800008516315074 + -1.5336095400001002, + 53.79817534982525 ], [ - -1.5340832764510397, - 53.799972552441695 + -1.5336237240179211, + 53.79821313392568 ], [ - -1.5340488273755548, - 53.79996299085375 + -1.533653453207699, + 53.798209239862864 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6935272506, - "osm_way_id": 717747209, - "src_i": 6740104094, + "dst_i": 5506378782, + "osm_way_id": 573276659, + "src_i": 5506378757, "type": "road" }, "type": "Feature" @@ -13393,33 +13933,33 @@ "coordinates": [ [ [ - -1.5339748865595977, - 53.80005592135867 + -1.533849655811445, + 53.79841085608895 ], [ - -1.5339215792568985, - 53.80012285966883 + -1.5336884062451739, + 53.79824597175695 ], [ - -1.5339560222422082, - 53.80013243024999 + -1.5336620388320543, + 53.79825496857088 ], [ - -1.5340093295449075, - 53.800065491939826 + -1.5338232883983254, + 53.79841985290289 ], [ - -1.5339748865595977, - 53.80005592135867 + -1.533849655811445, + 53.79841085608895 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6935272509, - "osm_way_id": 717747209, - "src_i": 6935272506, + "dst_i": 5506378757, + "osm_way_id": 573276659, + "src_i": 5506378781, "type": "road" }, "type": "Feature" @@ -13429,41 +13969,49 @@ "coordinates": [ [ [ - -1.5338715423782308, - 53.800185713259985 + -1.5332197916314982, + 53.79786775753418 ], [ - -1.5338209391132784, - 53.800249333073204 + -1.533370862992624, + 53.7980142660266 ], [ - -1.5338135547759628, - 53.80026926294062 + -1.5335252565442699, + 53.798101539798246 ], [ - -1.5338507383400701, - 53.80027407071424 + -1.533548135809598, + 53.79812962201655 ], [ - -1.5338572091511198, - 53.80025660858547 + -1.5335755750935363, + 53.79812182309907 ], [ - -1.5339059944988032, - 53.80019527304928 + -1.5335502993443042, + 53.798090800098926 ], [ - -1.5338715423782308, - 53.800185713259985 + -1.5333948004258766, + 53.798002900399396 + ], + [ + -1.5332457997242868, + 53.79785840099157 + ], + [ + -1.5332197916314982, + 53.79786775753418 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6740071784, - "osm_way_id": 717747209, - "src_i": 6935272509, + "dst_i": 5506378782, + "osm_way_id": 573276660, + "src_i": 26661446, "type": "road" }, "type": "Feature" @@ -13473,33 +14021,33 @@ "coordinates": [ [ [ - -1.5346224959872585, - 53.79958000932683 + -1.5332274408914308, + 53.797733808968125 ], [ - -1.5345039933600537, - 53.79964397537889 + -1.5332063978138972, + 53.79780228421901 ], [ - -1.5345296695382988, - 53.7996605714609 + -1.5332363584303292, + 53.79780549659599 ], [ - -1.5346481721655039, - 53.79959660540884 + -1.5332574015078628, + 53.79773702134511 ], [ - -1.5346224959872585, - 53.79958000932683 + -1.5332274408914308, + 53.797733808968125 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583005, - "osm_way_id": 717747209, - "src_i": 9319419273, + "dst_i": 26661446, + "osm_way_id": 573276662, + "src_i": 5506378779, "type": "road" }, "type": "Feature" @@ -13509,73 +14057,49 @@ "coordinates": [ [ [ - -1.5388909550771173, - 53.79882489479024 - ], - [ - -1.5379367784149907, - 53.798764621352944 - ], - [ - -1.5368938252703495, - 53.798681316287805 - ], - [ - -1.536755028657149, - 53.798662540250085 - ], - [ - -1.536568810895489, - 53.79862075147028 - ], - [ - -1.5365123717202414, - 53.798617698273226 - ], - [ - -1.5364019066016321, - 53.798626321868674 + -1.533243625531774, + 53.79722297177943 ], [ - -1.5364097629275184, - 53.79866143498376 + -1.5331810291894947, + 53.797494092080385 ], [ - -1.5365135745298248, - 53.798653331196235 + -1.53325622305898, + 53.79752544782955 ], [ - -1.5365551810836025, - 53.798655582198364 + -1.5332364939367253, + 53.797691211698144 ], [ - -1.536737604666172, - 53.798696518421224 + -1.5332668686850646, + 53.79769247254712 ], [ - -1.5368830822014632, - 53.79871619917654 + -1.5332878006169024, + 53.79751660030301 ], [ - -1.5379295737378407, - 53.79879978662868 + -1.5332136999338488, + 53.79748569961061 ], [ - -1.5388845786637817, - 53.79886011222664 + -1.533273796259247, + 53.797225401746566 ], [ - -1.5388909550771173, - 53.79882489479024 + -1.533243625531774, + 53.79722297177943 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4540786888, - "osm_way_id": 718449717, - "src_i": 342605804, + "dst_i": 5506378779, + "osm_way_id": 573276662, + "src_i": 5506378793, "type": "road" }, "type": "Feature" @@ -13585,33 +14109,33 @@ "coordinates": [ [ [ - -1.532662198036986, - 53.79576003623396 + -1.5387832076991488, + 53.799140806706035 ], [ - -1.532548107741645, - 53.79576728656522 + -1.5375999521455126, + 53.79900083628212 ], [ - -1.5325545206960312, - 53.795802502202974 + -1.537588176791946, + 53.79903556628617 ], [ - -1.532668610991372, - 53.795795251871716 + -1.5387714323455821, + 53.79917553671009 ], [ - -1.532662198036986, - 53.79576003623396 + -1.5387832076991488, + 53.799140806706035 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1606819527, - "osm_way_id": 737539058, - "src_i": 1020737577, + "dst_i": 26298429, + "osm_way_id": 583053002, + "src_i": 26298428, "type": "road" }, "type": "Feature" @@ -13621,33 +14145,33 @@ "coordinates": [ [ [ - -1.5324494941037914, - 53.79577930420063 + -1.5375216796925115, + 53.79899209847282 ], [ - -1.5323032385486302, - 53.79580367042182 + -1.5371298469614796, + 53.79895077823961 ], [ - -1.5323195175866875, - 53.795837760108846 + -1.5371193079134595, + 53.79898564494055 ], [ - -1.5324657731418485, - 53.79581339388766 + -1.5375111406444912, + 53.799026965173766 ], [ - -1.5324494941037914, - 53.79577930420063 + -1.5375216796925115, + 53.79899209847282 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2377604550, - "osm_way_id": 737539058, - "src_i": 1606819527, + "dst_i": 26298430, + "osm_way_id": 583053002, + "src_i": 26298429, "type": "road" }, "type": "Feature" @@ -13657,33 +14181,49 @@ "coordinates": [ [ [ - -1.5328575449711295, - 53.79576580448312 + -1.5334050669385608, + 53.799641115536 ], [ - -1.5327505238465424, - 53.79575985636963 + -1.5335116891566785, + 53.799655850921475 ], [ - -1.5327449056600075, - 53.795795118772105 + -1.5336329795615378, + 53.79965596063872 ], [ - -1.5328519267845944, - 53.7958010668856 + -1.5336532552770081, + 53.799651533278166 ], [ - -1.5328575449711295, - 53.79576580448312 + -1.53363246037411, + 53.799618312335866 + ], + [ + -1.5336222943493152, + 53.799620532761054 + ], + [ + -1.5335186532719116, + 53.79962043743296 + ], + [ + -1.5334187272013227, + 53.79960662834879 + ], + [ + -1.5334050669385608, + 53.799641115536 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1020737577, - "osm_way_id": 737539058, - "src_i": 6905250281, + "dst_i": 615978081, + "osm_way_id": 583053006, + "src_i": 1152092910, "type": "road" }, "type": "Feature" @@ -13693,97 +14233,121 @@ "coordinates": [ [ [ - -1.5364146487704968, - 53.797769893350605 - ], - [ - -1.5364320072920916, - 53.79775862395082 + -1.5367451092844457, + 53.79550498771048 ], [ - -1.5364492577130782, - 53.79758426436575 - ], - [ - -1.5364391190940712, - 53.79745767584821 + -1.5368000061228477, + 53.795524593822094 ], [ - -1.5363689526641358, - 53.7973755506931 + -1.5368310325199233, + 53.79549428488335 ], [ - -1.5363736375313357, - 53.79679614562338 + -1.5367761356815213, + 53.79547467877173 ], [ - -1.5363555420985533, - 53.796719625040886 - ], + -1.5367451092844457, + 53.79550498771048 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26660405, + "osm_way_id": 603499168, + "src_i": 320943570, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5363201003245262, - 53.79667574803618 + -1.534939654036233, + 53.79645539893981 ], [ - -1.536261263142831, - 53.796633005975416 + -1.5349065234836585, + 53.796459110440324 ], [ - -1.536052403632672, - 53.79652821431706 + -1.5349246143488098, + 53.796515454741275 ], [ - -1.5360277627841945, - 53.79654534999206 + -1.5349577449013843, + 53.796511743240764 ], [ - -1.536233936527132, - 53.79664879446656 - ], + -1.534939654036233, + 53.79645539893981 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 643911, + "osm_way_id": 603499170, + "src_i": 320943571, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5362877005929643, - 53.796687851107144 + -1.5376957993213245, + 53.796559933392174 ], [ - -1.536318656953026, - 53.796726175699895 + -1.5376952603408276, + 53.79654071758616 ], [ - -1.5363355617565755, - 53.796797654685136 + -1.5376666304276563, + 53.79650604783666 ], [ - -1.5363308464385, - 53.79738084949634 + -1.5376370260864678, + 53.79648666385749 ], [ - -1.5364014818119185, - 53.797463525036314 + -1.5376144163113883, + 53.79649871117052 ], [ - -1.5364111423521798, - 53.797584134863435 + -1.5376411399997516, + 53.796516210171475 ], [ - -1.536394793277109, - 53.797749375326816 + -1.5376649251786267, + 53.79654501094779 ], [ - -1.5363864938909837, - 53.797754763162914 + -1.537665351490884, + 53.79656023196697 ], [ - -1.5364146487704968, - 53.797769893350605 + -1.5376957993213245, + 53.796559933392174 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579666, - "osm_way_id": 745724293, - "src_i": 342579538, + "dst_i": 5728993691, + "osm_way_id": 603499171, + "src_i": 4364076651, "type": "road" }, "type": "Feature" @@ -13793,49 +14357,49 @@ "coordinates": [ [ [ - -1.5358922609557262, - 53.79781473802542 + -1.5374480555656598, + 53.79648033712958 ], [ - -1.5356962730306527, - 53.79788840326164 + -1.5375576726273856, + 53.79645396452176 ], [ - -1.5355881663323532, - 53.79804202358979 + -1.5376467795018995, + 53.796419169766544 ], [ - -1.5355880825924455, - 53.79804816146015 + -1.5376569242110816, + 53.7964127836834 ], [ - -1.5356480434114477, - 53.79804844744444 + -1.537623958093235, + 53.79639451306446 ], [ - -1.5356480327536413, - 53.79804923075361 + -1.5376174370382407, + 53.79639861846786 ], [ - -1.5357443945492497, - 53.79791229823827 + -1.5375364788180181, + 53.796430231423024 ], [ - -1.5359244536213343, - 53.7978446206857 + -1.5374310030753642, + 53.796455607582445 ], [ - -1.5358922609557262, - 53.79781473802542 + -1.5374480555656598, + 53.79648033712958 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26300437, - "osm_way_id": 745724294, - "src_i": 342579667, + "dst_i": 5728993720, + "osm_way_id": 603499172, + "src_i": 9319419235, "type": "road" }, "type": "Feature" @@ -13845,41 +14409,33 @@ "coordinates": [ [ [ - -1.5362865602076758, - 53.797774063505166 - ], - [ - -1.5362573730434823, - 53.79777799354084 - ], - [ - -1.5359814013262032, - 53.79778672775285 + -1.534078937201277, + 53.796476611239925 ], [ - -1.535987817325677, - 53.79785746479772 + -1.5340621222278104, + 53.7964672331136 ], [ - -1.5362740266273085, - 53.797848406829914 + -1.5339954652612797, + 53.796508931061915 ], [ - -1.5363132169041132, - 53.797843129610385 + -1.5340122802347462, + 53.79651830918824 ], [ - -1.5362865602076758, - 53.797774063505166 + -1.534078937201277, + 53.796476611239925 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579667, - "osm_way_id": 745724295, - "src_i": 342579538, + "dst_i": 5728993707, + "osm_way_id": 603499175, + "src_i": 342628235, "type": "road" }, "type": "Feature" @@ -13889,57 +14445,33 @@ "coordinates": [ [ [ - -1.5339758351043704, - 53.796398140928055 - ], - [ - -1.5338068906018534, - 53.79610520308351 - ], - [ - -1.5337115869741698, - 53.79598319481121 - ], - [ - -1.5335272160581102, - 53.795881611033224 - ], - [ - -1.533515082906756, - 53.795877700782626 - ], - [ - -1.5334863646860455, - 53.79590879392987 - ], - [ - -1.5334918534563595, - 53.795910561996266 + -1.5378830143491582, + 53.796174114505405 ], [ - -1.5336620708054736, - 53.79600434865541 + -1.5379477072342176, + 53.79607078964069 ], [ - -1.5337511411389368, - 53.79611837634726 + -1.5378629045909595, + 53.79605226541303 ], [ - -1.5339190746723863, - 53.7964095623132 + -1.5377982117059004, + 53.796155590277756 ], [ - -1.5339758351043704, - 53.796398140928055 + -1.5378830143491582, + 53.796174114505405 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264670261, - "osm_way_id": 760129761, - "src_i": 5728993707, + "dst_i": 5728993687, + "osm_way_id": 603499179, + "src_i": 320959867, "type": "road" }, "type": "Feature" @@ -13949,33 +14481,33 @@ "coordinates": [ [ [ - -1.5340243037629484, - 53.79649292133764 + -1.5377727897924658, + 53.796347903021214 ], [ - -1.5341008663992886, - 53.79648050710138 + -1.5378563424272833, + 53.79621640150941 ], [ - -1.5340751658603429, - 53.79642520421492 + -1.537771692038403, + 53.79619763626355 ], [ - -1.5339986032240027, - 53.79643761845118 + -1.5376881394035855, + 53.79632913777535 ], [ - -1.5340243037629484, - 53.79649292133764 + -1.5377727897924658, + 53.796347903021214 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993836, - "osm_way_id": 760129762, - "src_i": 5728993707, + "dst_i": 320959867, + "osm_way_id": 603499179, + "src_i": 5728993720, "type": "road" }, "type": "Feature" @@ -13985,97 +14517,49 @@ "coordinates": [ [ [ - -1.5352501372532918, - 53.798613482253266 - ], - [ - -1.5352535797247702, - 53.798444052749566 - ], - [ - -1.535110437771632, - 53.798435700749266 - ], - [ - -1.5350381945919855, - 53.798613288899105 - ], - [ - -1.5350103792397345, - 53.7986126243004 - ], - [ - -1.535016408513089, - 53.79842894234695 - ], - [ - -1.5348865294387868, - 53.79841803357516 - ], - [ - -1.5348154357796917, - 53.7985753896855 - ], - [ - -1.5347678197456285, - 53.79857406678334 - ], - [ - -1.5347701690306754, - 53.79848280631875 - ], - [ - -1.534694050977118, - 53.79848212283429 - ], - [ - -1.5346905810998517, - 53.798616933849814 - ], - [ - -1.5348731645495177, - 53.79862201052061 + -1.5379675825206747, + 53.7960437209579 ], [ - -1.534942671717998, - 53.798468167160685 + -1.5380050233946803, + 53.79602874455421 ], [ - -1.5349389902071466, - 53.79846785779404 + -1.5380846965879555, + 53.79601677188489 ], [ - -1.5349328208597646, - 53.79865577555252 + -1.5381021830032273, + 53.79601717028438 ], [ - -1.5350976042501407, - 53.798659711883445 + -1.53810449422468, + 53.795981778379584 ], [ - -1.5351689613093091, - 53.798484300092035 + -1.538078326264795, + 53.79598118212932 ], [ - -1.5351766212270483, - 53.7984847470549 + -1.5379800780374475, + 53.79599594629309 ], [ - -1.535174016154647, - 53.79861294266026 + -1.5379339586639167, + 53.796014394078405 ], [ - -1.5352501372532918, - 53.798613482253266 + -1.5379675825206747, + 53.7960437209579 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237435071, - "osm_way_id": 775795899, - "src_i": 7237437005, + "dst_i": 10440056, + "osm_way_id": 603499180, + "src_i": 5728993687, "type": "road" }, "type": "Feature" @@ -14085,57 +14569,33 @@ "coordinates": [ [ [ - -1.5346084368180273, - 53.798480741476205 + -1.5347431895549577, + 53.79646779429032 ], [ - -1.5345941355643355, - 53.79870287752472 - ], - [ - -1.5345179459512206, - 53.798862616837475 - ], - [ - -1.5344336670630219, - 53.79892055293777 - ], - [ - -1.534331819542187, - 53.79893444116224 - ], - [ - -1.534348945114584, - 53.79897825431511 - ], - [ - -1.5344751320202283, - 53.7989610475937 - ], - [ - -1.534586655306762, - 53.798884384019054 + -1.5346085251255663, + 53.796472888048235 ], [ - -1.5346698638466862, - 53.79870992281064 + -1.5346147310139988, + 53.796530119080344 ], [ - -1.5346845091952714, - 53.79848245018737 + -1.5347493954433902, + 53.79652502532243 ], [ - -1.5346084368180273, - 53.798480741476205 + -1.5347431895549577, + 53.79646779429032 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237437091, - "osm_way_id": 775795904, - "src_i": 7237435071, + "dst_i": 1877939942, + "osm_way_id": 603499183, + "src_i": 643911, "type": "road" }, "type": "Feature" @@ -14145,33 +14605,33 @@ "coordinates": [ [ [ - -1.5357346852875877, - 53.79906456761122 + -1.5344922515024502, + 53.79647833164227 ], [ - -1.535743126270284, - 53.79907124237661 + -1.534355760020527, + 53.796487137800014 ], [ - -1.5358041163288791, - 53.79904433287376 + -1.534366302113635, + 53.79654414580035 ], [ - -1.5357956753461828, - 53.79903765810836 + -1.534502793595558, + 53.79653533964261 ], [ - -1.5357346852875877, - 53.79906456761122 + -1.5344922515024502, + 53.79647833164227 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237437041, - "osm_way_id": 775795915, - "src_i": 7237437075, + "dst_i": 643914, + "osm_way_id": 603499183, + "src_i": 1877939942, "type": "road" }, "type": "Feature" @@ -14181,49 +14641,33 @@ "coordinates": [ [ [ - -1.5354943045536256, - 53.79881000202347 - ], - [ - -1.53551748071499, - 53.79881421174819 - ], - [ - -1.5355387765347905, - 53.798765115080535 - ], - [ - -1.5354848054030048, - 53.79875409839014 - ], - [ - -1.535459942263136, - 53.79879659853338 + -1.537060711293681, + 53.79893149948108 ], [ - -1.535447624883985, - 53.79879408403001 + -1.536843684858705, + 53.79890349550375 ], [ - -1.5354257200466739, - 53.79884458903538 + -1.5368229630379082, + 53.79895952144483 ], [ - -1.5354719292502876, - 53.79885298240448 + -1.5370399894728841, + 53.798987525422156 ], [ - -1.5354943045536256, - 53.79881000202347 + -1.537060711293681, + 53.79893149948108 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 682218116, - "osm_way_id": 775795916, - "src_i": 6211583022, + "dst_i": 2014304918, + "osm_way_id": 616128591, + "src_i": 26298430, "type": "road" }, "type": "Feature" @@ -14233,33 +14677,33 @@ "coordinates": [ [ [ - -1.535600846076923, - 53.79883696188834 + -1.5363397731126611, + 53.79883792865913 ], [ - -1.535584469596064, - 53.79883213163168 + -1.5363336250808919, + 53.79883719930926 ], [ - -1.535550459013187, - 53.798872360088396 + -1.5363145080212355, + 53.79889342489975 ], [ - -1.535566835494046, - 53.79887719034505 + -1.5363206560530045, + 53.798894154249616 ], [ - -1.535600846076923, - 53.79883696188834 + -1.5363397731126611, + 53.79883792865913 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583022, - "osm_way_id": 775795916, - "src_i": 7237437048, + "dst_i": 2014304914, + "osm_way_id": 616128591, + "src_i": 1675168064, "type": "road" }, "type": "Feature" @@ -14269,33 +14713,33 @@ "coordinates": [ [ [ - -1.5355561959581363, - 53.79883700955239 + -1.5362648365530742, + 53.798827188060486 ], [ - -1.5355486228253925, - 53.79884995888504 + -1.5361437912777627, + 53.7988062338657 ], [ - -1.5356205782442653, - 53.79886464121054 + -1.5361164859776768, + 53.798861266955655 ], [ - -1.5356281513770091, - 53.79885169187789 + -1.5362375312529881, + 53.79888222115045 ], [ - -1.5355561959581363, - 53.79883700955239 + -1.5362648365530742, + 53.798827188060486 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237437048, - "osm_way_id": 775795918, - "src_i": 5452444915, + "dst_i": 8273166694, + "osm_way_id": 616128591, + "src_i": 2014304914, "type": "road" }, "type": "Feature" @@ -14305,57 +14749,69 @@ "coordinates": [ [ [ - -1.5355993631192848, - 53.7988878769844 - ], - [ - -1.5356849711882006, - 53.79891600326947 + -1.5364836824278627, + 53.79885656440267 ], [ - -1.5356961588398697, - 53.79893689720971 + -1.5364440749740633, + 53.79885106505069 ], [ - -1.5356491350753354, - 53.79899249237571 + -1.5364218580152782, + 53.79890689134236 ], [ - -1.535675864853874, - 53.799015529399476 + -1.5364614654690774, + 53.79891239069434 ], [ - -1.5357386606493877, - 53.798990109173296 - ], + -1.5364836824278627, + 53.79885656440267 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1675168064, + "osm_way_id": 616128591, + "src_i": 2014304915, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5357372659992885, - 53.79898890767955 + -1.5366256474546618, + 53.79887528648109 ], [ - -1.5357780412441644, - 53.798940703138996 + -1.536557117759286, + 53.798866415572185 ], [ - -1.5357484277677134, - 53.79888539755457 + -1.5365363350367383, + 53.79892243431869 ], [ - -1.5356363670232265, - 53.79884858022493 + -1.536604864732114, + 53.7989313052276 ], [ - -1.5355993631192848, - 53.7988878769844 + -1.5366256474546618, + 53.79887528648109 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237437075, - "osm_way_id": 775795918, - "src_i": 7237437048, + "dst_i": 2014304915, + "osm_way_id": 616128591, + "src_i": 2014304918, "type": "road" }, "type": "Feature" @@ -14365,33 +14821,33 @@ "coordinates": [ [ [ - -1.5348821825763053, - 53.797590709804126 + -1.5364256339238436, + 53.800229161288264 ], [ - -1.5348227059262238, - 53.79747376381347 + -1.536637984626882, + 53.80026530952258 ], [ - -1.534749797394947, - 53.79748670145494 + -1.5366482648424602, + 53.80024423841597 ], [ - -1.5348092740450285, - 53.7976036474456 + -1.536435914139422, + 53.800208090181656 ], [ - -1.5348821825763053, - 53.797590709804126 + -1.5364256339238436, + 53.800229161288264 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444905, - "osm_way_id": 775795921, - "src_i": 5452444904, + "dst_i": 1152092776, + "osm_way_id": 616128592, + "src_i": 1743212076, "type": "road" }, "type": "Feature" @@ -14401,65 +14857,69 @@ "coordinates": [ [ [ - -1.5353759328651857, - 53.79871210186703 - ], - [ - -1.5354280921698775, - 53.79855923517044 - ], - [ - -1.5354462804778304, - 53.79840890905755 - ], - [ - -1.5354009848004826, - 53.79824176652884 + -1.5322103390175694, + 53.79679587672621 ], [ - -1.5353544787008324, - 53.798150299220275 + -1.532137407648136, + 53.796808767602954 ], [ - -1.5352845269495694, - 53.79805183249118 + -1.5321513236982522, + 53.79683623828253 ], [ - -1.5352143285462148, - 53.798069230768114 + -1.5322242550676857, + 53.796823347405784 ], [ - -1.5352827212126505, - 53.798165501353694 - ], + -1.5322103390175694, + 53.79679587672621 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9823004, + "osm_way_id": 619248620, + "src_i": 3181227681, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5353266146271805, - 53.79825183353556 + -1.534018253173981, + 53.796521639376365 ], [ - -1.535369720886578, - 53.7984108911625 + -1.5339722038374637, + 53.79652452619891 ], [ - -1.5353525070066418, - 53.7985531647492 + -1.5339785315293986, + 53.79655974723259 ], [ - -1.5353013069045292, - 53.79870321836763 + -1.5340245808659156, + 53.79655686041005 ], [ - -1.5353759328651857, - 53.79871210186703 + -1.534018253173981, + 53.796521639376365 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452456322, - "osm_way_id": 775795921, - "src_i": 5452444913, + "dst_i": 6905278495, + "osm_way_id": 619360566, + "src_i": 342628235, "type": "road" }, "type": "Feature" @@ -14469,41 +14929,41 @@ "coordinates": [ [ [ - -1.535253588860033, - 53.79801002482563 + -1.5338926828985662, + 53.79653007141629 ], [ - -1.5351446706459004, - 53.7978685804135 + -1.5336535613083073, + 53.79654856686565 ], [ - -1.534910224787579, - 53.79762986626942 + -1.5328142453486724, + 53.79668288325427 ], [ - -1.5348443747692497, - 53.79765243024999 + -1.5328299275495691, + 53.796717070068034 ], [ - -1.535076929628201, - 53.79788921984571 + -1.5336653610225743, + 53.79658337421137 ], [ - -1.5351842918025937, - 53.798028642582736 + -1.5339004691874387, + 53.79656518992731 ], [ - -1.535253588860033, - 53.79801002482563 + -1.5338926828985662, + 53.79653007141629 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444904, - "osm_way_id": 775795921, - "src_i": 5452456322, + "dst_i": 8733041518, + "osm_way_id": 619360566, + "src_i": 6905278495, "type": "road" }, "type": "Feature" @@ -14513,33 +14973,33 @@ "coordinates": [ [ [ - -1.535355201909126, - 53.79871100919121 + -1.5327395798018777, + 53.79669511223027 ], [ - -1.5353443796679636, - 53.79870862958609 + -1.5326547147343248, + 53.796709336801044 ], [ - -1.5353178204143278, - 53.79875077000066 + -1.5326710851250087, + 53.79674341030028 ], [ - -1.5353286426554906, - 53.79875314960579 + -1.5327559501925614, + 53.796729185729504 ], [ - -1.535355201909126, - 53.79871100919121 + -1.5327395798018777, + 53.79669511223027 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444913, - "osm_way_id": 775795921, - "src_i": 7237437070, + "dst_i": 5728993689, + "osm_way_id": 619360566, + "src_i": 8733041518, "type": "road" }, "type": "Feature" @@ -14549,33 +15009,33 @@ "coordinates": [ [ [ - -1.535391394297235, - 53.79870235861612 + -1.538842283920217, + 53.796801112576944 ], [ - -1.5353690661927542, - 53.79870769429156 + -1.5388398204443867, + 53.79689855138137 ], [ - -1.5353919073944877, - 53.79874104113889 + -1.5388702682748272, + 53.79689881937922 ], [ - -1.5354142354989686, - 53.79873570546345 + -1.5388727317506574, + 53.7968013805748 ], [ - -1.535391394297235, - 53.79870235861612 + -1.538842283920217, + 53.796801112576944 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237437070, - "osm_way_id": 775795922, - "src_i": 5452444914, + "dst_i": 5924236779, + "osm_way_id": 627580563, + "src_i": 5924236780, "type": "road" }, "type": "Feature" @@ -14585,33 +15045,33 @@ "coordinates": [ [ [ - -1.5355204253146537, - 53.798722158981214 + -1.5388327421383703, + 53.7969025254838 ], [ - -1.5354984306472597, - 53.79871324220691 + -1.5385467201096232, + 53.79689652251169 ], [ - -1.5354639663463372, - 53.79874290183541 + -1.538545639103542, + 53.79691449815313 ], [ - -1.535485961013731, - 53.79875181860972 + -1.538831661132289, + 53.79692050112524 ], [ - -1.5355204253146537, - 53.798722158981214 + -1.5388327421383703, + 53.7969025254838 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444914, - "osm_way_id": 775795922, - "src_i": 6211583020, + "dst_i": 5924236781, + "osm_way_id": 627580564, + "src_i": 5924236779, "type": "road" }, "type": "Feature" @@ -14621,33 +15081,33 @@ "coordinates": [ [ [ - -1.5356082121437133, - 53.79878348912147 + -1.539051123637307, + 53.796907263110334 ], [ - -1.535607533089189, - 53.798782573612016 + -1.5389088617144715, + 53.7969041568533 ], [ - -1.5355517501303093, - 53.79879700952338 + -1.5389077380771645, + 53.796922130696096 ], [ - -1.5355524291848335, - 53.79879792503284 + -1.53905, + 53.79692523695313 ], [ - -1.5356082121437133, - 53.79878348912147 + -1.539051123637307, + 53.796907263110334 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6211583020, - "osm_way_id": 775795922, - "src_i": 7237437077, + "dst_i": 5924236779, + "osm_way_id": 627580564, + "src_i": 5924236782, "type": "road" }, "type": "Feature" @@ -14657,33 +15117,33 @@ "coordinates": [ [ [ - -1.535633096599195, - 53.798805725748956 + -1.5385401122696336, + 53.79689224533785 ], [ - -1.535630304253909, - 53.798802064610456 + -1.5385492992987804, + 53.79679434338277 ], [ - -1.5355608945282304, - 53.798820534878814 + -1.5385188940995658, + 53.79679334873301 ], [ - -1.5355636868735163, - 53.79882419601731 + -1.5385097070704188, + 53.79689125068809 ], [ - -1.535633096599195, - 53.798805725748956 + -1.5385401122696336, + 53.79689224533785 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237437077, - "osm_way_id": 775795923, - "src_i": 5452444915, + "dst_i": 5931863420, + "osm_way_id": 628340603, + "src_i": 5924236781, "type": "road" }, "type": "Feature" @@ -14693,41 +15153,33 @@ "coordinates": [ [ [ - -1.5353824097664104, - 53.79762749475819 - ], - [ - -1.5355103567326602, - 53.79774545428436 + -1.5384877108804813, + 53.79745054602605 ], [ - -1.5355193001548029, - 53.79775059570632 + -1.5384984996256807, + 53.79733554346951 ], [ - -1.5355458502731758, - 53.79773448525801 + -1.5384680944264661, + 53.79733454881975 ], [ - -1.5355400432912125, - 53.79773114607667 + -1.5384573056812665, + 53.79744955137629 ], [ - -1.5354144593129038, - 53.797615366506214 - ], - [ - -1.5353824097664104, - 53.79762749475819 + -1.5384877108804813, + 53.79745054602605 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1601683577, - "osm_way_id": 775795929, - "src_i": 7237437116, + "dst_i": 6001482136, + "osm_way_id": 628340603, + "src_i": 5931863419, "type": "road" }, "type": "Feature" @@ -14737,33 +15189,33 @@ "coordinates": [ [ [ - -1.5338347699009431, - 53.79643803483711 + -1.5385280004338924, + 53.79702194011243 ], [ - -1.5338181300200109, - 53.796428165681164 + -1.5385359115713546, + 53.79693713767672 ], [ - -1.5337641893391005, - 53.79645989554814 + -1.5385055063721398, + 53.79693614842289 ], [ - -1.5337808292200328, - 53.79646976470409 + -1.5384975952346776, + 53.797020950858595 ], [ - -1.5338347699009431, - 53.79643803483711 + -1.5385280004338924, + 53.79702194011243 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264670275, - "osm_way_id": 776103800, - "src_i": 7241259894, + "dst_i": 5924236781, + "osm_way_id": 628340603, + "src_i": 5981573959, "type": "road" }, "type": "Feature" @@ -14773,41 +15225,33 @@ "coordinates": [ [ [ - -1.5326946678055613, - 53.79570871554383 - ], - [ - -1.532687635175858, - 53.795706680378906 - ], - [ - -1.5326761886917473, - 53.79570085817045 + -1.538511421454711, + 53.797198052475416 ], [ - -1.5326265141784983, - 53.795734931669685 + -1.5385237890778067, + 53.797066847739764 ], [ - -1.5326453663155377, - 53.79574452023728 + -1.5384933838785921, + 53.79706584769407 ], [ - -1.5326611718424805, - 53.795749095086585 + -1.5384810162554963, + 53.79719705242973 ], [ - -1.5326946678055613, - 53.79570871554383 + -1.538511421454711, + 53.797198052475416 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1020737601, - "osm_way_id": 776103801, - "src_i": 475070619, + "dst_i": 5981573959, + "osm_way_id": 628340603, + "src_i": 6001482091, "type": "road" }, "type": "Feature" @@ -14817,41 +15261,33 @@ "coordinates": [ [ [ - -1.5325850233380476, - 53.795642408557484 - ], - [ - -1.5325678505667937, - 53.79560286088727 - ], - [ - -1.532243311225591, - 53.795440873270344 + -1.5384803189304468, + 53.79752914943752 ], [ - -1.532194175692839, - 53.79547521836473 + -1.5384834919116768, + 53.79749544645881 ], [ - -1.5325001491352321, - 53.795627939371215 + -1.5384530867124622, + 53.797494448211765 ], [ - -1.532511283497869, - 53.795653579931205 + -1.538449913731232, + 53.79752815119048 ], [ - -1.5325850233380476, - 53.795642408557484 + -1.5384803189304468, + 53.79752914943752 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 475070635, - "osm_way_id": 776103802, - "src_i": 1020737601, + "dst_i": 5931863419, + "osm_way_id": 628340603, + "src_i": 6001482101, "type": "road" }, "type": "Feature" @@ -14861,33 +15297,33 @@ "coordinates": [ [ [ - -1.5352579311548833, - 53.79765381880264 + -1.538502714026854, + 53.79729064753336 ], [ - -1.5352409913328269, - 53.79766564038592 + -1.5385071963957315, + 53.797242945713606 ], [ - -1.5352700445131682, - 53.797680166229455 + -1.538476791196517, + 53.79724194926521 ], [ - -1.5352869843352246, - 53.79766834464617 + -1.538472308827639, + 53.79728965108495 ], [ - -1.5352579311548833, - 53.79765381880264 + -1.538502714026854, + 53.79729064753336 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444896, - "osm_way_id": 777360594, - "src_i": 5452444895, + "dst_i": 6001482091, + "osm_way_id": 628340603, + "src_i": 6001482136, "type": "road" }, "type": "Feature" @@ -14897,33 +15333,33 @@ "coordinates": [ [ [ - -1.534186693714508, - 53.79649913924763 + -1.5385229669041676, + 53.796712606734616 ], [ - -1.5341826270000813, - 53.7964994369231 + -1.5385210622019032, + 53.79674836196536 ], [ - -1.5341945667883758, - 53.79655634959534 + -1.5385514978519936, + 53.79674892673937 ], [ - -1.5341986335028026, - 53.79655605191987 + -1.5385534025542578, + 53.79671317150862 ], [ - -1.534186693714508, - 53.79649913924763 + -1.5385229669041676, + 53.796712606734616 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342628235, - "osm_way_id": 778025015, - "src_i": 643914, + "dst_i": 5931863421, + "osm_way_id": 628340605, + "src_i": 5071469689, "type": "road" }, "type": "Feature" @@ -14933,33 +15369,33 @@ "coordinates": [ [ [ - -1.534069438050656, - 53.79560258299687 + -1.53784959603581, + 53.79742942995336 ], [ - -1.53408415952643, - 53.79559332178237 + -1.5378581435965708, + 53.79731485277597 ], [ - -1.5340133795113526, - 53.79555406819034 + -1.5378277231719184, + 53.7973140613729 ], [ - -1.5339986580355787, - 53.79556332940484 + -1.5378191756111577, + 53.797428638550294 ], [ - -1.534069438050656, - 53.79560258299687 + -1.53784959603581, + 53.79742942995336 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 682264890, - "osm_way_id": 778025016, - "src_i": 26661426, + "dst_i": 6001482128, + "osm_way_id": 628340607, + "src_i": 5931863423, "type": "road" }, "type": "Feature" @@ -14969,81 +15405,141 @@ "coordinates": [ [ [ - -1.5341718306421628, - 53.796410681069354 + -1.5378684831913563, + 53.797176524513404 ], [ - -1.5341259853265117, - 53.79629049931935 + -1.5378729579475152, + 53.797116047829405 ], [ - -1.5339667576983755, - 53.79594898191711 + -1.5378425375228626, + 53.79711526182227 ], [ - -1.5339429451137128, - 53.795874625102535 + -1.5378380627667039, + 53.79717573850627 ], [ - -1.533942288897345, - 53.79575942199726 + -1.5378684831913563, + 53.797176524513404 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6001482098, + "osm_way_id": 628340607, + "src_i": 6001482090, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5378762999311044, + 53.79707113210818 ], [ - -1.5339692653279753, - 53.7956928820866 + -1.5378979413683422, + 53.7967816548534 ], [ - -1.5340051608200478, - 53.795642663065514 + -1.5378675209436896, + 53.79678086165169 ], [ - -1.5340029013650835, - 53.79564406061138 + -1.5378458795064518, + 53.797070338906465 ], [ - -1.5339326786010283, - 53.79560445808254 + -1.5378762999311044, + 53.79707113210818 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5931863422, + "osm_way_id": 628340607, + "src_i": 6001482098, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5378434449589533, + 53.79750680848873 ], [ - -1.5339226450375418, - 53.79561066520068 + -1.537846083527318, + 53.79747442211693 ], [ - -1.5338767098918078, - 53.79567493162617 + -1.5378156691928406, + 53.797473556969486 ], [ - -1.5338451597396734, - 53.79575275082915 + -1.537813030624476, + 53.797505943341285 ], [ - -1.5338458859930546, - 53.79588009117961 + -1.5378434449589533, + 53.79750680848873 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5931863423, + "osm_way_id": 628340607, + "src_i": 6001482100, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5378615038506853, + 53.79726993345745 ], [ - -1.5338721041968844, - 53.79596196092737 + -1.5378651366401357, + 53.7972214555231 ], [ - -1.5340317824979781, - 53.79630444240244 + -1.5378347162154833, + 53.797220660522754 ], [ - -1.5340771162389204, - 53.79642328596181 + -1.537831083426033, + 53.7972691384571 ], [ - -1.5341718306421628, - 53.796410681069354 + -1.5378615038506853, + 53.79726993345745 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661426, - "osm_way_id": 778025016, - "src_i": 5728993836, + "dst_i": 6001482090, + "osm_way_id": 628340607, + "src_i": 6001482128, "type": "road" }, "type": "Feature" @@ -15053,33 +15549,33 @@ "coordinates": [ [ [ - -1.5341828995354172, - 53.79644592908269 + -1.5388992483730672, + 53.79703599111412 ], [ - -1.5342329775227668, - 53.79644113389957 + -1.5385348777641303, + 53.79702642952618 ], [ - -1.5342268873476612, - 53.79641894043952 + -1.5385335257452568, + 53.797044397973046 ], [ - -1.5341768093603116, - 53.79642373562264 + -1.5388978963541937, + 53.797053959560984 ], [ - -1.5341828995354172, - 53.79644592908269 + -1.5388992483730672, + 53.79703599111412 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5728993833, - "osm_way_id": 778025017, - "src_i": 5728993836, + "dst_i": 5981573959, + "osm_way_id": 633689228, + "src_i": 6001482087, "type": "road" }, "type": "Feature" @@ -15089,65 +15585,69 @@ "coordinates": [ [ [ - -1.5327904464669033, - 53.79662724042422 + -1.5376529671198067, + 53.79721014025792 ], [ - -1.5330420316005158, - 53.796597636553656 + -1.5376599647310032, + 53.79721037588019 ], [ - -1.53344069903056, - 53.79653588103425 + -1.5376616973858206, + 53.79719241822519 ], [ - -1.5335283031543665, - 53.79652896165336 + -1.5376546997746243, + 53.79719218260291 ], [ - -1.5336819415242993, - 53.79649529105023 + -1.5376529671198067, + 53.79721014025792 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6001482089, + "osm_way_id": 636406047, + "src_i": 6001482092, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5377360097024593, + 53.797212910168646 ], [ - -1.5337560300270028, - 53.796456475427846 + -1.537796701342474, + 53.797214908461385 ], [ - -1.5337156186700895, - 53.7964295623277 + -1.537798397456241, + 53.797196949007734 ], [ - -1.5336500594576215, - 53.79646390832141 + -1.5377377058162263, + 53.797194950714996 ], [ - -1.5335134979386849, - 53.79649383774642 - ], - [ - -1.5334289023613805, - 53.796500519706385 - ], - [ - -1.5330283682926664, - 53.79656256300873 - ], - [ - -1.532778546264747, - 53.79659196003531 - ], - [ - -1.5327904464669033, - 53.79662724042422 + -1.5377360097024593, + 53.797212910168646 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264670275, - "osm_way_id": 778025023, - "src_i": 6264559092, + "dst_i": 6001482090, + "osm_way_id": 636406048, + "src_i": 6001482089, "type": "road" }, "type": "Feature" @@ -15157,41 +15657,33 @@ "coordinates": [ [ [ - -1.5322149462350367, - 53.79670672337228 - ], - [ - -1.5324845993956437, - 53.79666401368709 - ], - [ - -1.5327133037413845, - 53.79663642969299 + -1.5378726915023544, + 53.79721742206544 ], [ - -1.5327011203460856, - 53.7966011834783 + -1.5381152860149672, + 53.79722549347738 ], [ - -1.5324706011281635, - 53.79662898690689 + -1.5381169973541717, + 53.79720753582237 ], [ - -1.5321991726815132, - 53.79667197718044 + -1.537874402841559, + 53.79719946441043 ], [ - -1.5322149462350367, - 53.79670672337228 + -1.5378726915023544, + 53.79721742206544 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264559092, - "osm_way_id": 778025023, - "src_i": 7261160050, + "dst_i": 6022850279, + "osm_way_id": 636406048, + "src_i": 6001482090, "type": "road" }, "type": "Feature" @@ -15201,33 +15693,33 @@ "coordinates": [ [ [ - -1.5340705860486634, - 53.795361262618606 + -1.5385154348801058, + 53.79723855972185 ], [ - -1.5340769990030496, - 53.7954060686226 + -1.5387692992617514, + 53.79724587030766 ], [ - -1.5341737444796897, - 53.79540123746661 + -1.5387707822193897, + 53.79722790545809 ], [ - -1.5341673315253035, - 53.79535643146262 + -1.5385169178377438, + 53.79722059487227 ], [ - -1.5340705860486634, - 53.795361262618606 + -1.5385154348801058, + 53.79723855972185 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943620, - "osm_way_id": 778025048, - "src_i": 6264670282, + "dst_i": 6022850280, + "osm_way_id": 636406048, + "src_i": 6001482091, "type": "road" }, "type": "Feature" @@ -15237,33 +15729,33 @@ "coordinates": [ [ [ - -1.5362452733880911, - 53.798829320352155 + -1.538191305103179, + 53.79722801337668 ], [ - -1.5362493172643612, - 53.79883111000227 + -1.53843919654559, + 53.79723620259976 ], [ - -1.5362949631267777, - 53.79879512454517 + -1.5384408957044444, + 53.79721824494476 ], [ - -1.5362909192505076, - 53.79879333489506 + -1.5381930042620335, + 53.79721005572168 ], [ - -1.5362452733880911, - 53.798829320352155 + -1.538191305103179, + 53.79722801337668 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304912, - "osm_way_id": 778102285, - "src_i": 2014304908, + "dst_i": 6001482091, + "osm_way_id": 636406048, + "src_i": 6022850279, "type": "road" }, "type": "Feature" @@ -15273,33 +15765,33 @@ "coordinates": [ [ [ - -1.5364211241491779, - 53.798834824200746 + -1.5376467231677797, + 53.79730360226194 ], [ - -1.5364293626335521, - 53.79883381066523 + -1.5376533112147002, + 53.79730381719982 ], [ - -1.536413838777208, - 53.79878978886973 + -1.5376549921030294, + 53.79728585774617 ], [ - -1.5364056002928337, - 53.79879080240525 + -1.537648404056109, + 53.79728564280829 ], [ - -1.5364211241491779, - 53.798834824200746 + -1.5376467231677797, + 53.79730360226194 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7261942271, - "osm_way_id": 778102285, - "src_i": 2014304911, + "dst_i": 6001482093, + "osm_way_id": 636406049, + "src_i": 6001482094, "type": "road" }, "type": "Feature" @@ -15309,33 +15801,33 @@ "coordinates": [ [ [ - -1.5363334865294083, - 53.79884571588543 + -1.5385094010391198, + 53.797455782776105 ], [ - -1.5363445097463495, - 53.79884433542667 + -1.538494909467456, + 53.79745530253833 ], [ - -1.5363287209673882, - 53.7988003478054 + -1.5384932042184265, + 53.79747326019334 ], [ - -1.5363176977504471, - 53.79880172826415 + -1.5385076957900903, + 53.79747374043111 ], [ - -1.5363334865294083, - 53.79884571588543 + -1.5385094010391198, + 53.797455782776105 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304911, - "osm_way_id": 778102285, - "src_i": 2014304912, + "dst_i": 5931863419, + "osm_way_id": 636406050, + "src_i": 5071469697, "type": "road" }, "type": "Feature" @@ -15345,33 +15837,33 @@ "coordinates": [ [ [ - -1.5357782406973992, - 53.7991052969901 + -1.5384188812439814, + 53.79745279522953 ], [ - -1.5358110195423613, - 53.79909656997266 + -1.5378571920067106, + 53.79743438611505 ], [ - -1.5357797373579314, - 53.79905557529389 + -1.5378555050282063, + 53.7974523455687 ], [ - -1.5357469585129693, - 53.79906430231133 + -1.5384171942654772, + 53.79747075468318 ], [ - -1.5357782406973992, - 53.7991052969901 + -1.5384188812439814, + 53.79745279522953 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237437041, - "osm_way_id": 778102286, - "src_i": 7261942252, + "dst_i": 5931863423, + "osm_way_id": 636406050, + "src_i": 5931863419, "type": "road" }, "type": "Feature" @@ -15381,33 +15873,33 @@ "coordinates": [ [ [ - -1.5364205684206995, - 53.79884358988901 + -1.537781197279199, + 53.79743188600082 ], [ - -1.5364693354978576, - 53.79887352201199 + -1.5377211070439758, + 53.79742989849994 ], [ - -1.5365241866599464, - 53.798842342529866 + -1.5377194048400338, + 53.79744785615495 ], [ - -1.536475419582788, - 53.79881241040689 + -1.537779495075257, + 53.797449843655826 ], [ - -1.5364205684206995, - 53.79884358988901 + -1.537781197279199, + 53.79743188600082 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304915, - "osm_way_id": 778102289, - "src_i": 7261942271, + "dst_i": 5071469698, + "osm_way_id": 636406050, + "src_i": 5931863423, "type": "road" }, "type": "Feature" @@ -15417,65 +15909,33 @@ "coordinates": [ [ [ - -1.5366743429722625, - 53.79869431148586 - ], - [ - -1.5365304077738167, - 53.798679081473466 - ], - [ - -1.5364606204572815, - 53.79868600984757 - ], - [ - -1.5363993319801064, - 53.79870972406055 - ], - [ - -1.5363683162408373, - 53.79874644696142 - ], - [ - -1.536378803522369, - 53.79879251381438 - ], - [ - -1.5364542516566648, - 53.7987865207348 - ], - [ - -1.536446882544787, - 53.79875415234944 - ], - [ - -1.5364582666046032, - 53.79874067511497 + -1.5378078768137928, + 53.797073598947506 ], [ - -1.5364889793576608, - 53.79872879057917 + -1.537663588385191, + 53.79706888290469 ], [ - -1.5365299936419095, - 53.79872471845067 + -1.5376619044517743, + 53.79708684235834 ], [ - -1.5366609202263297, - 53.798738572500916 + -1.5378061928803761, + 53.79709155840115 ], [ - -1.5366743429722625, - 53.79869431148586 + -1.5378078768137928, + 53.797073598947506 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7261942271, - "osm_way_id": 778102289, - "src_i": 7261942276, + "dst_i": 6001482097, + "osm_way_id": 636406052, + "src_i": 6001482098, "type": "road" }, "type": "Feature" @@ -15485,33 +15945,33 @@ "coordinates": [ [ [ - -1.5363846698835395, - 53.799164093741226 + -1.5384115958720115, + 53.7975313195007 ], [ - -1.5363491611175863, - 53.799160916437785 + -1.5378509922084531, + 53.79751176914703 ], [ - -1.536340038035278, - 53.799196482810984 + -1.5378491986518845, + 53.79752972500339 ], [ - -1.5363755468012315, - 53.79919966011443 + -1.5384098023154429, + 53.79754927535706 ], [ - -1.5363846698835395, - 53.799164093741226 + -1.5384115958720115, + 53.7975313195007 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7261942264, - "osm_way_id": 778102291, - "src_i": 800488938, + "dst_i": 6001482100, + "osm_way_id": 636406053, + "src_i": 6001482101, "type": "road" }, "type": "Feature" @@ -15521,33 +15981,33 @@ "coordinates": [ [ [ - -1.5363490986932915, - 53.79916091104185 + -1.538851094881051, + 53.79746207443047 ], [ - -1.536332099492028, - 53.79915941097332 + -1.5388569764676592, + 53.797348018859644 ], [ - -1.5363231012583094, - 53.79919498813838 + -1.538826540817569, + 53.797347472072076 ], [ - -1.536340100459573, - 53.79919648820692 + -1.5388206592309608, + 53.7974615276429 ], [ - -1.5363490986932915, - 53.79916091104185 + -1.538851094881051, + 53.79746207443047 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7261942280, - "osm_way_id": 778102291, - "src_i": 7261942264, + "dst_i": 6001482131, + "osm_way_id": 636406054, + "src_i": 6001482132, "type": "road" }, "type": "Feature" @@ -15557,33 +16017,33 @@ "coordinates": [ [ [ - -1.5343160855748017, - 53.79713294518417 + -1.538863861410616, + 53.79734430735913 ], [ - -1.5343300259856183, - 53.79713012671007 + -1.5389955721050812, + 53.797349000918906 ], [ - -1.5343007444237107, - 53.797079599221654 + -1.538997405247788, + 53.79733104686119 ], [ - -1.5342868040128939, - 53.79708241769575 + -1.538865694553323, + 53.797326353301415 ], [ - -1.5343160855748017, - 53.79713294518417 + -1.538863861410616, + 53.79734430735913 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264670255, - "osm_way_id": 779181824, - "src_i": 26661455, + "dst_i": 9356627340, + "osm_way_id": 636406055, + "src_i": 6001482131, "type": "road" }, "type": "Feature" @@ -15593,33 +16053,33 @@ "coordinates": [ [ [ - -1.5343661133182067, - 53.79712282871476 + -1.538800755016172, + 53.797342053659044 ], [ - -1.5343898558658557, - 53.79711800655199 + -1.538825854150326, + 53.797342953880026 ], [ - -1.5343604555455335, - 53.79706750424458 + -1.538827699473383, + 53.79732499982231 ], [ - -1.5343367129978844, - 53.797072326407346 + -1.5388026003392288, + 53.797324099601326 ], [ - -1.5343661133182067, - 53.79712282871476 + -1.538800755016172, + 53.797342053659044 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661432, - "osm_way_id": 779181824, - "src_i": 6264670255, + "dst_i": 6001482131, + "osm_way_id": 636406055, + "src_i": 6022850276, "type": "road" }, "type": "Feature" @@ -15629,33 +16089,33 @@ "coordinates": [ [ [ - -1.5329390802354432, - 53.797255503841335 + -1.539033548914496, + 53.797350353498686 ], [ - -1.5338999606578174, - 53.79716712390404 + -1.539109534506745, + 53.79735308743655 ], [ - -1.5338907340425323, - 53.79713212590213 + -1.539111385919977, + 53.79733513517748 ], [ - -1.532929853620158, - 53.79722050583943 + -1.5390354003277282, + 53.797332401239615 ], [ - -1.5329390802354432, - 53.797255503841335 + -1.539033548914496, + 53.797350353498686 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661454, - "osm_way_id": 779181825, - "src_i": 26661452, + "dst_i": 6001482135, + "osm_way_id": 636406055, + "src_i": 9356627340, "type": "road" }, "type": "Feature" @@ -15665,33 +16125,33 @@ "coordinates": [ [ [ - -1.5339797586996822, - 53.79716034841462 + -1.5386087363627234, + 53.79733512348629 ], [ - -1.5339799596754606, - 53.79716033222683 + -1.5387627508009691, + 53.79734068129418 ], [ - -1.5339718566974827, - 53.797125238896825 + -1.5387646083043764, + 53.79732272903511 ], [ - -1.5339716557217042, - 53.79712525508461 + -1.5386105938661307, + 53.79731717122722 ], [ - -1.5339797586996822, - 53.79716034841462 + -1.5386087363627234, + 53.79733512348629 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9740274255, - "osm_way_id": 779181825, - "src_i": 26661454, + "dst_i": 6022850276, + "osm_way_id": 636406055, + "src_i": 9356627345, "type": "road" }, "type": "Feature" @@ -15701,33 +16161,33 @@ "coordinates": [ [ [ - -1.5340175391009498, - 53.79715741212938 + -1.5358678865524098, + 53.80024851289185 ], [ - -1.5341877640627828, - 53.797144179510404 + -1.5341344247866642, + 53.79993228171686 ], [ - -1.5341799412328596, - 53.797109062798036 + -1.5341125123366341, + 53.79997418650916 ], [ - -1.5340097162710267, - 53.79712229541701 + -1.5358459741023798, + 53.800290417684145 ], [ - -1.5340175391009498, - 53.79715741212938 + -1.5358678865524098, + 53.80024851289185 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26661455, - "osm_way_id": 779181825, - "src_i": 9740274255, + "dst_i": 6740104094, + "osm_way_id": 636647073, + "src_i": 21099344, "type": "road" }, "type": "Feature" @@ -15737,41 +16197,41 @@ "coordinates": [ [ [ - -1.53584778440693, - 53.799085276291194 + -1.5340605844585962, + 53.79991937735029 ], [ - -1.5361510385861383, - 53.79899139070667 + -1.5337970976002837, + 53.79987532947447 ], [ - -1.536207046881497, - 53.79898902728934 + -1.5335218323433168, + 53.7998559409987 ], [ - -1.536201620535478, - 53.79894417631926 + -1.533513041175552, + 53.79989948975099 ], [ - -1.536129762559407, - 53.79894720883192 + -1.533782502495643, + 53.79991846993473 ], [ - -1.5358124431207922, - 53.79904544893194 + -1.5340403650772456, + 53.799961577120094 ], [ - -1.53584778440693, - 53.799085276291194 + -1.5340605844585962, + 53.79991937735029 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7261942265, - "osm_way_id": 779181826, - "src_i": 7237437041, + "dst_i": 358204009, + "osm_way_id": 636647073, + "src_i": 6740104094, "type": "road" }, "type": "Feature" @@ -15781,33 +16241,33 @@ "coordinates": [ [ [ - -1.5362671371167202, - 53.798993210034396 + -1.5388344945862569, + 53.797302325225175 ], [ - -1.5362761262151763, - 53.79899488636998 + -1.5388377650102887, + 53.79725215836474 ], [ - -1.5362990465891861, - 53.798952006713 + -1.5388073354503735, + 53.79725146588706 ], [ - -1.5362900574907303, - 53.798950330377416 + -1.5388040650263417, + 53.79730163274749 ], [ - -1.5362671371167202, - 53.798993210034396 + -1.5388344945862569, + 53.797302325225175 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7261942266, - "osm_way_id": 779181826, - "src_i": 7261942265, + "dst_i": 6022850280, + "osm_way_id": 639133111, + "src_i": 6022850276, "type": "road" }, "type": "Feature" @@ -15817,41 +16277,33 @@ "coordinates": [ [ [ - -1.5362943754248801, - 53.79899886496903 - ], - [ - -1.536331527015568, - 53.79906611264584 - ], - [ - -1.536311881633221, - 53.79915345116864 + -1.538122470899048, + 53.79723024279509 ], [ - -1.5363873449929546, - 53.79915937410113 + -1.5381179245833316, + 53.79727824678692 ], [ - -1.5364092741909663, - 53.79906188763266 + -1.5381483267374587, + 53.79727925222854 ], [ - -1.5363667480207475, - 53.79898491469136 + -1.538152873053175, + 53.79723124823671 ], [ - -1.5362943754248801, - 53.79899886496903 + -1.538122470899048, + 53.79723024279509 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7261942264, - "osm_way_id": 779181826, - "src_i": 7261942266, + "dst_i": 6022850278, + "osm_way_id": 639133112, + "src_i": 6022850279, "type": "road" }, "type": "Feature" @@ -15861,33 +16313,33 @@ "coordinates": [ [ [ - -1.5321935072961212, - 53.799509292067036 + -1.5373285617624566, + 53.796428463356634 ], [ - -1.533329777148818, - 53.79972576958363 + -1.5369677721764818, + 53.79642816837912 ], [ - -1.5333525696291506, - 53.79968402846788 + -1.5369675224793025, + 53.796534979014616 ], [ - -1.532216299776454, - 53.799467550951285 + -1.5373283120652772, + 53.79653527399213 ], [ - -1.5321935072961212, - 53.799509292067036 + -1.5373285617624566, + 53.796428463356634 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2165840661, - "osm_way_id": 812851864, - "src_i": 9892308679, + "dst_i": 9319419234, + "osm_way_id": 648548332, + "src_i": 9319419235, "type": "road" }, "type": "Feature" @@ -15897,33 +16349,41 @@ "coordinates": [ [ [ - -1.5363985524376929, - 53.80030923329202 + -1.5368810054517523, + 53.79787112279585 ], [ - -1.5366330302694335, - 53.80035350509893 + -1.5368701649400642, + 53.797827489507306 ], [ - -1.5366556369994255, - 53.80031172980896 + -1.5368468182537969, + 53.79780499297586 ], [ - -1.5364211591676848, - 53.80026745800204 + -1.5368208558373218, + 53.7978143926859 ], [ - -1.5363985524376929, - 53.80030923329202 + -1.5368409442799076, + 53.7978337487861 + ], + [ + -1.5368508773555047, + 53.79787373442596 + ], + [ + -1.5368810054517523, + 53.79787112279585 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 21133749, - "osm_way_id": 812851867, - "src_i": 358163080, + "dst_i": 26109191, + "osm_way_id": 650344876, + "src_i": 6101189538, "type": "road" }, "type": "Feature" @@ -15933,33 +16393,33 @@ "coordinates": [ [ [ - -1.5363826403326857, - 53.800351429464534 + -1.5362417349963549, + 53.798409525992206 ], [ - -1.5363100530581457, - 53.800337877586365 + -1.5363189218756432, + 53.79841053952772 ], [ - -1.5362876747097203, - 53.80037969604378 + -1.5363195978850799, + 53.79839255669172 ], [ - -1.53636026198426, - 53.800393247921946 + -1.5362424110057915, + 53.7983915431562 ], [ - -1.5363826403326857, - 53.800351429464534 + -1.5362417349963549, + 53.798409525992206 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 358163085, - "osm_way_id": 812851868, - "src_i": 7592482435, + "dst_i": 6584937015, + "osm_way_id": 650344877, + "src_i": 6111971409, "type": "road" }, "type": "Feature" @@ -15969,33 +16429,33 @@ "coordinates": [ [ [ - -1.5351936706722564, - 53.79773185024553 + -1.5343318241098183, + 53.796435726278396 ], [ - -1.535223587134919, - 53.797760777826205 + -1.534540115711149, + 53.79643717598492 ], [ - -1.535306440922143, - 53.79773088257542 + -1.534540563339019, + 53.79641469474194 ], [ - -1.5352765244594806, - 53.79770195499475 + -1.5343322717376886, + 53.79641324503542 ], [ - -1.5351936706722564, - 53.79773185024553 + -1.5343318241098183, + 53.796435726278396 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26660391, - "osm_way_id": 813941484, - "src_i": 5452444896, + "dst_i": 5728993838, + "osm_way_id": 663356010, + "src_i": 5728993833, "type": "road" }, "type": "Feature" @@ -16005,57 +16465,41 @@ "coordinates": [ [ [ - -1.5340130003979524, - 53.799556589192036 - ], - [ - -1.534173525233386, - 53.799513974834944 - ], - [ - -1.5343054703995926, - 53.799495374164955 - ], - [ - -1.5343541217634238, - 53.799495747383446 - ], - [ - -1.5343814879652606, - 53.79950094186538 + -1.5346149685308281, + 53.796439056466525 ], [ - -1.5344181782251844, - 53.799433499935084 + -1.5348945060456314, + 53.79645117572528 ], [ - -1.5343736773156877, - 53.79942505350601 + -1.5349396555587769, + 53.79645539893981 ], [ - -1.5342921298710237, - 53.79942442667881 + -1.5349456087049425, + 53.79643319288927 ], [ - -1.5341346760063872, - 53.799446624635465 + -1.5348988940167951, + 53.79642882398462 ], [ - -1.5339638374594124, - 53.799491976527705 + -1.5346177547859388, + 53.796416634578776 ], [ - -1.5340130003979524, - 53.799556589192036 + -1.5346149685308281, + 53.796439056466525 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643951, - "osm_way_id": 823888306, - "src_i": 1569783677, + "dst_i": 320943571, + "osm_way_id": 663356010, + "src_i": 5728993838, "type": "road" }, "type": "Feature" @@ -16065,41 +16509,33 @@ "coordinates": [ [ [ - -1.5321834600297408, - 53.80004955416128 - ], - [ - -1.5326597573993122, - 53.80017533328933 - ], - [ - -1.5327612638703412, - 53.80020690037909 + -1.5342380719542426, + 53.79645224052213 ], [ - -1.5327967300050687, - 53.800167112589996 + -1.5342500924373574, + 53.79649449874784 ], [ - -1.532693043251352, - 53.8001348674117 + -1.53434583912528, + 53.796484996515126 ], [ - -1.5322145321031295, - 53.80000850372457 + -1.5343338186421653, + 53.796442738289414 ], [ - -1.5321834600297408, - 53.80004955416128 + -1.5342380719542426, + 53.79645224052213 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591373193, - "osm_way_id": 823888307, - "src_i": 7692244823, + "dst_i": 643914, + "osm_way_id": 663356011, + "src_i": 5728993833, "type": "road" }, "type": "Feature" @@ -16109,49 +16545,33 @@ "coordinates": [ [ [ - -1.5356825198927206, - 53.79850149782023 - ], - [ - -1.535688494354499, - 53.798495523626414 - ], - [ - -1.5357531887621023, - 53.79845881871198 - ], - [ - -1.5358063042242858, - 53.79844197711516 - ], - [ - -1.5357464225775599, - 53.79837608921271 + -1.5337397662143832, + 53.79967411974177 ], [ - -1.5356780116405986, - 53.79839778175059 + -1.533766372666876, + 53.799669758031705 ], [ - -1.5355883048838368, - 53.798448676162245 + -1.533756192939187, + 53.799648093372795 ], [ - -1.535573514893593, - 53.79846346550703 + -1.5337295864866942, + 53.79965245508287 ], [ - -1.5356825198927206, - 53.79850149782023 + -1.5337397662143832, + 53.79967411974177 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304862, - "osm_way_id": 845622686, - "src_i": 26298420, + "dst_i": 6211583008, + "osm_way_id": 663639106, + "src_i": 6211582994, "type": "road" }, "type": "Feature" @@ -16161,69 +16581,49 @@ "coordinates": [ [ [ - -1.5358603027618596, - 53.79843029312809 + -1.53357557661608, + 53.79973341561643 ], [ - -1.5359232264510507, - 53.79842238629202 + -1.533599681529148, + 53.79970865998896 ], [ - -1.5358968833986313, - 53.79834924266237 + -1.5336294868461149, + 53.79969219520792 ], [ - -1.5358339597094404, - 53.79835714949844 + -1.5336664100552364, + 53.79968614367244 ], [ - -1.5358603027618596, - 53.79843029312809 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 643907, - "osm_way_id": 845622686, - "src_i": 2014304862, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -1.535621662295434, - 53.79863502730239 + -1.533656233372635, + 53.79966447901353 ], [ - -1.5356204945043574, - 53.798609177200454 + -1.5336103119297948, + 53.79967200543654 ], [ - -1.5354939376205756, - 53.79861117189591 + -1.5335695199369375, + 53.79969454063882 ], [ - -1.5354951054116521, - 53.79863702199784 + -1.5335425800473579, + 53.799722206471195 ], [ - -1.535621662295434, - 53.79863502730239 + -1.53357557661608, + 53.79973341561643 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298420, - "osm_way_id": 845622687, - "src_i": 6211583013, + "dst_i": 6211582994, + "osm_way_id": 663639106, + "src_i": 6211583004, "type": "road" }, "type": "Feature" @@ -16233,33 +16633,41 @@ "coordinates": [ [ [ - -1.5362214866866726, - 53.798725106058306 + -1.533817333729616, + 53.79965128866267 + ], + [ + -1.5338515513784468, + 53.799637852797 ], [ - -1.5361924395965063, - 53.79874634533807 + -1.5338822336806286, + 53.79961605773645 ], [ - -1.536290923818139, - 53.7987933366937 + -1.5338529673441588, + 53.79960168297896 ], [ - -1.5363199709083053, - 53.79877209741394 + -1.5338258477944136, + 53.79962094734834 ], [ - -1.5362214866866726, - 53.798725106058306 + -1.5337962617237504, + 53.79963256478561 + ], + [ + -1.533817333729616, + 53.79965128866267 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2014304908, - "osm_way_id": 845622689, - "src_i": 643946, + "dst_i": 1569783677, + "osm_way_id": 663639106, + "src_i": 6211583008, "type": "road" }, "type": "Feature" @@ -16269,33 +16677,33 @@ "coordinates": [ [ [ - -1.5361673130565643, - 53.798784187894405 + -1.5333726565491927, + 53.79986494590653 ], [ - -1.5361184485366046, - 53.79880184697461 + -1.5333177140344774, + 53.7999071735553 ], [ - -1.536151484691465, - 53.79883374051814 + -1.5333780737599492, + 53.799934574087786 ], [ - -1.5362003492114247, - 53.79881608143793 + -1.5334330162746643, + 53.79989234643901 ], [ - -1.5361673130565643, - 53.798784187894405 + -1.5333726565491927, + 53.79986494590653 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8273166694, - "osm_way_id": 845622689, - "src_i": 2014304908, + "dst_i": 6211582998, + "osm_way_id": 663639107, + "src_i": 1591373158, "type": "road" }, "type": "Feature" @@ -16305,33 +16713,33 @@ "coordinates": [ [ [ - -1.5362745153638608, - 53.79865179695347 + -1.5332713480088547, + 53.79994287033014 ], [ - -1.5362707318425763, - 53.79866247819689 + -1.5332704375276764, + 53.799943571801045 ], [ - -1.5363946516805376, - 53.798677791846195 + -1.533330852064724, + 53.79997093096473 ], [ - -1.536398435201822, - 53.798667110602786 + -1.5333317625459022, + 53.79997022949383 ], [ - -1.5362745153638608, - 53.79865179695347 + -1.5332713480088547, + 53.79994287033014 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643946, - "osm_way_id": 845622689, - "src_i": 4540786888, + "dst_i": 26298442, + "osm_way_id": 663639107, + "src_i": 6211582998, "type": "road" }, "type": "Feature" @@ -16341,41 +16749,33 @@ "coordinates": [ [ [ - -1.5362624187535572, - 53.79856288461775 - ], - [ - -1.5362763393713048, - 53.79859136343691 - ], - [ - -1.5362753253571497, - 53.798624989973284 + -1.5334879831500798, + 53.79975526013967 ], [ - -1.5364019066016321, - 53.798626322767994 + -1.5334162226168107, + 53.79982721666472 ], [ - -1.5364032616655932, - 53.798581436724376 + -1.5334818168477855, + 53.79985003964993 ], [ - -1.5363840517307663, - 53.798542140864235 + -1.5335535773810547, + 53.79977808312488 ], [ - -1.5362624187535572, - 53.79856288461775 + -1.5334879831500798, + 53.79975526013967 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4540786888, - "osm_way_id": 845622690, - "src_i": 26298423, + "dst_i": 1591373158, + "osm_way_id": 663639107, + "src_i": 6211583004, "type": "road" }, "type": "Feature" @@ -16385,33 +16785,33 @@ "coordinates": [ [ [ - -1.5360294299696298, - 53.79842711582465 + -1.5335394146788468, + 53.79973584738221 ], [ - -1.5360513576450974, - 53.798430876787855 + -1.5335357468708894, + 53.79973635639827 ], [ - -1.5360866623901845, - 53.79835906235563 + -1.5335444527762028, + 53.799758244088956 ], [ - -1.536064734714717, - 53.79835530139243 + -1.5335481205841601, + 53.79975773507289 ], [ - -1.5360294299696298, - 53.79842711582465 + -1.5335394146788468, + 53.79973584738221 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6111971409, - "osm_way_id": 845622691, - "src_i": 643907, + "dst_i": 6211583004, + "osm_way_id": 663639108, + "src_i": 6211583003, "type": "road" }, "type": "Feature" @@ -16421,33 +16821,41 @@ "coordinates": [ [ [ - -1.536154957613819, - 53.79846397542241 + -1.5338925032384005, + 53.79967068073573 ], [ - -1.5361713934738852, - 53.79847311432917 + -1.5339994223525544, + 53.79962841801341 ], [ - -1.5362581723789648, - 53.79841866399965 + -1.5341343121184248, + 53.79958435664776 ], [ - -1.5362417365188985, - 53.798409525092886 + -1.5340974696041234, + 53.79954500592899 ], [ - -1.536154957613819, - 53.79846397542241 + -1.5339597783577046, + 53.7995899828041 + ], + [ + -1.5338501643410662, + 53.799633310323266 + ], + [ + -1.5338925032384005, + 53.79967068073573 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298423, - "osm_way_id": 845622691, - "src_i": 6111971409, + "dst_i": 1591373154, + "osm_way_id": 663639109, + "src_i": 6211583009, "type": "road" }, "type": "Feature" @@ -16457,33 +16865,33 @@ "coordinates": [ [ [ - -1.5352964743505828, - 53.797568492062396 + -1.5338120307096426, + 53.79967355226981 ], [ - -1.53529178034812, - 53.797612859197415 + -1.5338370476264327, + 53.79967563150149 ], [ - -1.535329770860429, - 53.79761426213921 + -1.5338423521689497, + 53.79965336789436 ], [ - -1.5353344648628915, - 53.797569895004195 + -1.5338173352521596, + 53.79965128866267 ], [ - -1.5352964743505828, - 53.797568492062396 + -1.5338120307096426, + 53.79967355226981 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452444895, - "osm_way_id": 864595640, - "src_i": 2275824794, + "dst_i": 6211583009, + "osm_way_id": 663639110, + "src_i": 6211583008, "type": "road" }, "type": "Feature" @@ -16493,33 +16901,41 @@ "coordinates": [ [ [ - -1.5352934338306614, - 53.79738686056235 + -1.53340415950247, + 53.79988981934513 + ], + [ + -1.5333665694191745, + 53.79992476428706 + ], + [ + -1.533374602360139, + 53.799926776069626 ], [ - -1.5353002167631853, - 53.79749863455412 + -1.533344885350711, + 53.79996817544315 ], [ - -1.5353382559968949, - 53.797497828761905 + -1.5333962316170264, + 53.79998103484363 ], [ - -1.535331473064371, - 53.797386054770136 + -1.5334684138949217, + 53.79991393375625 ], [ - -1.5352934338306614, - 53.79738686056235 + -1.53340415950247, + 53.79988981934513 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2275824794, - "osm_way_id": 864595641, - "src_i": 1606819535, + "dst_i": 6211582998, + "osm_way_id": 663639111, + "src_i": 6211582997, "type": "road" }, "type": "Feature" @@ -16529,49 +16945,41 @@ "coordinates": [ [ [ - -1.5349795340253682, - 53.79667157788162 - ], - [ - -1.535141010450662, - 53.79664783578966 - ], - [ - -1.5352427529159762, - 53.796679074627015 + -1.5333061381341455, + 53.79990885348817 ], [ - -1.5352903674274956, - 53.797340514919675 + -1.5332542742029462, + 53.79989467927941 ], [ - -1.5353283975259426, - 53.79733955984007 + -1.5331104105640578, + 53.7999803027958 ], [ - -1.5352798481725445, - 53.79666512614799 + -1.5331644456426823, + 53.800011976904834 ], [ - -1.5351457881930324, - 53.79662396419539 + -1.533270726810994, + 53.799948721316895 ], [ - -1.5349703409060464, - 53.79664976033803 + -1.5332741708050162, + 53.79994966290668 ], [ - -1.5349795340253682, - 53.79667157788162 + -1.5333061381341455, + 53.79990885348817 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1606819535, - "osm_way_id": 864595654, - "src_i": 342579521, + "dst_i": 6211583000, + "osm_way_id": 663639111, + "src_i": 6211582998, "type": "road" }, "type": "Feature" @@ -16581,33 +16989,41 @@ "coordinates": [ [ [ - -1.5360638105306446, - 53.79879996829166 + -1.5336495752887007, + 53.79968860061923 ], [ - -1.536049909705966, - 53.79880376882501 + -1.5336185747748694, + 53.79969311071737 ], [ - -1.5361030891149883, - 53.798871631637844 + -1.5336049540982457, + 53.79970563017427 ], [ - -1.5361169899396667, - 53.79886783110449 + -1.533668998379656, + 53.79972993883887 ], [ - -1.5360638105306446, - 53.79879996829166 + -1.5336662243048955, + 53.79973248841579 + ], + [ + -1.5336677788220914, + 53.79973226268606 + ], + [ + -1.5336495752887007, + 53.79968860061923 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 643945, - "osm_way_id": 890039689, - "src_i": 8273166694, + "dst_i": 6211583003, + "osm_way_id": 663639111, + "src_i": 6211583002, "type": "road" }, "type": "Feature" @@ -16617,33 +17033,33 @@ "coordinates": [ [ [ - -1.5365997352821312, - 53.79550433390363 + -1.5335481251517915, + 53.79975773417357 ], [ - -1.5366036375618302, - 53.79550103339312 + -1.5334453519243407, + 53.79985181850818 ], [ - -1.5365786708889848, - 53.795490734361415 + -1.5335093200785623, + 53.799876197319875 ], [ - -1.5365747686092859, - 53.79549403487192 + -1.5336120933060131, + 53.79978211298526 ], [ - -1.5365997352821312, - 53.79550433390363 + -1.5335481251517915, + 53.79975773417357 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320943570, - "osm_way_id": 910065628, - "src_i": 8450014342, + "dst_i": 6211582997, + "osm_way_id": 663639111, + "src_i": 6211583003, "type": "road" }, "type": "Feature" @@ -16653,57 +17069,41 @@ "coordinates": [ [ [ - -1.533574140857299, - 53.8002737118849 - ], - [ - -1.533589052651045, - 53.80022309356499 - ], - [ - -1.53356620688168, - 53.800138899970044 - ], - [ - -1.5335381646704063, - 53.80009321263083 - ], - [ - -1.5335392258834184, - 53.8000929581228 + -1.5337869072147883, + 53.79965829078115 ], [ - -1.5335249048366577, - 53.80007212623575 + -1.5337576317430557, + 53.79966983986997 ], [ - -1.5334898878523442, - 53.80008052500078 + -1.5337214149942464, + 53.79967665403023 ], [ - -1.5335291968875633, - 53.800144567495174 + -1.533744521118597, + 53.79971949951299 ], [ - -1.5335504622564884, - 53.80022293888166 + -1.5337909693615837, + 53.799710760804366 ], [ - -1.533536640604086, - 53.80026985739224 + -1.5338291882554589, + 53.79969568277733 ], [ - -1.533574140857299, - 53.8002737118849 + -1.5337869072147883, + 53.79965829078115 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1591373161, - "osm_way_id": 936169264, - "src_i": 8674724110, + "dst_i": 6211583002, + "osm_way_id": 663639111, + "src_i": 6211583009, "type": "road" }, "type": "Feature" @@ -16713,33 +17113,33 @@ "coordinates": [ [ [ - -1.5327181088895427, - 53.79664160438985 + -1.534423301584992, + 53.79966188626917 ], [ - -1.5327185275890813, - 53.796642558570134 + -1.534437485602813, + 53.799669868648266 ], [ - -1.532792218707859, - 53.79663127747917 + -1.534489998137661, + 53.799637313203995 ], [ - -1.5327918000083207, - 53.796630323298885 + -1.53447581411984, + 53.7996293308249 ], [ - -1.5327181088895427, - 53.79664160438985 + -1.534423301584992, + 53.79966188626917 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8733041519, - "osm_way_id": 943136734, - "src_i": 6264559092, + "dst_i": 6211583005, + "osm_way_id": 663639112, + "src_i": 643950, "type": "road" }, "type": "Feature" @@ -16749,33 +17149,41 @@ "coordinates": [ [ [ - -1.532690354439043, - 53.79657413188262 + -1.5343776770381885, + 53.79962580188669 ], [ - -1.5326996373884476, - 53.796597458487966 + -1.5343679951823144, + 53.79963103234149 ], [ - -1.53277374568422, - 53.79658716844948 + -1.5343681976806365, + 53.7996311447567 ], [ - -1.5327644627348154, - 53.79656384184413 + -1.5344202321367388, + 53.799598321314576 ], [ - -1.532690354439043, - 53.79657413188262 + -1.5343686041998248, + 53.799569766952395 + ], + [ + -1.5343263003209975, + 53.79959262051454 + ], + [ + -1.5343776770381885, + 53.79962580188669 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6264559092, - "osm_way_id": 943136734, - "src_i": 7241259895, + "dst_i": 643950, + "osm_way_id": 663639112, + "src_i": 1152092781, "type": "road" }, "type": "Feature" @@ -16785,33 +17193,33 @@ "coordinates": [ [ [ - -1.532739162624883, - 53.79669087282794 + -1.5341551861935991, + 53.79958539716293 ], [ - -1.5327403715246413, - 53.79669374256337 + -1.5341598329972048, + 53.79958758970915 ], [ - -1.5328142453486724, - 53.79668288415359 + -1.5342073454982912, + 53.79955245680899 ], [ - -1.5328130364489139, - 53.79668001441816 + -1.5342026986946855, + 53.79955026426277 ], [ - -1.532739162624883, - 53.79669087282794 + -1.5341551861935991, + 53.79958539716293 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8733041518, - "osm_way_id": 943136735, - "src_i": 8733041519, + "dst_i": 1152092781, + "osm_way_id": 663639112, + "src_i": 1591373154, "type": "road" }, "type": "Feature" @@ -16821,33 +17229,41 @@ "coordinates": [ [ [ - -1.537765257768404, - 53.795866857661316 + -1.535548653276268, + 53.798390657324354 ], [ - -1.5377779786216557, - 53.79586663552886 + -1.535505761695543, + 53.79825350897182 ], [ - -1.5377757283019542, - 53.7958216892307 + -1.5354174541565118, + 53.798091822627654 ], [ - -1.5377630074487023, - 53.79582191136315 + -1.5353250540198096, + 53.79810942954721 ], [ - -1.537765257768404, - 53.795866857661316 + -1.5354114248831572, + 53.798267572564015 + ], + [ + -1.5354531776011375, + 53.79840107506652 + ], + [ + -1.535548653276268, + 53.798390657324354 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8892765835, - "osm_way_id": 961343997, - "src_i": 8892765836, + "dst_i": 5452456321, + "osm_way_id": 663639113, + "src_i": 1022749752, "type": "road" }, "type": "Feature" @@ -16857,49 +17273,33 @@ "coordinates": [ [ [ - -1.537319461518305, - 53.79587761354843 + -1.5353633033645604, + 53.798006349297985 ], [ - -1.5375311392569944, - 53.79586094731933 + -1.5353304270767965, + 53.797956884807775 ], [ - -1.5375881265480011, - 53.79587154672448 + -1.535240051923317, + 53.79797784080121 ], [ - -1.537665215984488, - 53.79586939914434 - ], - [ - -1.5376616288713507, - 53.79582448342311 - ], - [ - -1.537598074849036, - 53.79582625328815 - ], - [ - -1.5375378597652234, - 53.79581505313613 - ], - [ - -1.5373094035941182, - 53.79583304136807 + -1.5352729282110809, + 53.79802730529142 ], [ - -1.537319461518305, - 53.79587761354843 + -1.5353633033645604, + 53.798006349297985 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8892765836, - "osm_way_id": 961343997, - "src_i": 8892765838, + "dst_i": 8174077586, + "osm_way_id": 663639113, + "src_i": 5452456321, "type": "road" }, "type": "Feature" @@ -16909,49 +17309,33 @@ "coordinates": [ [ [ - -1.5379339586639167, - 53.796014394078405 - ], - [ - -1.53795346549478, - 53.79597004942643 - ], - [ - -1.53793350037824, - 53.79591785189768 - ], - [ - -1.5377833394982925, - 53.79585238577708 - ], - [ - -1.5377652547233163, - 53.795866857661316 + -1.5352937748804671, + 53.79791177393374 ], [ - -1.5379062986111307, - 53.79592834878015 + -1.53511069508153, + 53.79772325632771 ], [ - -1.537922134588949, - 53.79596975085163 + -1.5350264770950823, + 53.79775179180413 ], [ - -1.5379044852614931, - 53.79600987049043 + -1.5352095568940194, + 53.797940309410166 ], [ - -1.5379339586639167, - 53.796014394078405 + -1.5352937748804671, + 53.79791177393374 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8892765836, - "osm_way_id": 968461597, - "src_i": 5728993687, + "dst_i": 5452444899, + "osm_way_id": 663639113, + "src_i": 8174077586, "type": "road" }, "type": "Feature" @@ -16961,41 +17345,41 @@ "coordinates": [ [ [ - -1.537678582396301, - 53.79580954209297 + -1.5353340294153714, + 53.79890331923671 ], [ - -1.537441880128103, - 53.79571583907074 + -1.5353268886850602, + 53.798865742879585 ], [ - -1.5373827765012467, - 53.79570590426431 + -1.5353493157548865, + 53.798753610058476 ], [ - -1.5373744420966147, - 53.79572320361586 + -1.535311514038006, + 53.79875097144871 ], [ - -1.537428920235478, - 53.79573236140837 + -1.5352885723483833, + 53.798865674531136 ], [ - -1.5376616303938946, - 53.79582448342311 + -1.5352962033377906, + 53.79890582654551 ], [ - -1.537678582396301, - 53.79580954209297 + -1.5353340294153714, + 53.79890331923671 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6047091983, - "osm_way_id": 968461597, - "src_i": 8892765836, + "dst_i": 5452444913, + "osm_way_id": 663639114, + "src_i": 26298432, "type": "road" }, "type": "Feature" @@ -17005,41 +17389,33 @@ "coordinates": [ [ [ - -1.53890936110883, - 53.80012987707578 - ], - [ - -1.5387088238229527, - 53.80010402697385 - ], - [ - -1.5387079544504565, - 53.8001030826861 + -1.5353807182202748, + 53.79891117481145 ], [ - -1.5386410751925343, - 53.80012456388339 + -1.535438133346083, + 53.79879214779046 ], [ - -1.538658576833244, - 53.800143573744734 + -1.5353914460637235, + 53.798784291316395 ], [ - -1.5388931307921736, - 53.80017380893911 + -1.5353340309379153, + 53.79890331833739 ], [ - -1.53890936110883, - 53.80012987707578 + -1.5353807182202748, + 53.79891117481145 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298426, - "osm_way_id": 995747902, - "src_i": 9194660290, + "dst_i": 682218116, + "osm_way_id": 663639115, + "src_i": 26298432, "type": "road" }, "type": "Feature" @@ -17049,73 +17425,65 @@ "coordinates": [ [ [ - -1.534037924439572, - 53.79875916966501 - ], - [ - -1.5340816838702496, - 53.798481522986734 - ], - [ - -1.5343791736987207, - 53.7985022064857 + -1.5350384716949528, + 53.79926671443708 ], [ - -1.5343725080020676, - 53.798553943561764 + -1.5350514757413471, + 53.79926257845675 ], [ - -1.5345615241991888, - 53.798568481995794 + -1.53513014405573, + 53.79922439685615 ], [ - -1.5345900627597338, - 53.79848806824981 + -1.535326964812249, + 53.799102469522786 ], [ - -1.53460745020966, - 53.79848184314525 + -1.535520210635981, + 53.79889619840777 ], [ - -1.534567991965151, - 53.79844338815086 + -1.535535184854022, + 53.7988678562855 ], [ - -1.5345223369674719, - 53.79845973242279 + -1.5354888447116435, + 53.79885931452832 ], [ - -1.5345014750726476, - 53.79851851748274 + -1.535475344315978, + 53.79888486515615 ], [ - -1.5344538910120038, - 53.79851485724356 + -1.5352875126579149, + 53.79908535723015 ], [ - -1.5344606267456704, - 53.798462593165006 + -1.535097043954031, + 53.79920335093054 ], [ - -1.5340131176338232, - 53.79843147753473 + -1.5350243105152885, + 53.79923865110453 ], [ - -1.5339621261202077, - 53.798755002208416 + -1.5350154569232288, + 53.799241466880666 ], [ - -1.534037924439572, - 53.79875916966501 + -1.5350384716949528, + 53.79926671443708 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7237435071, - "osm_way_id": 1003280130, - "src_i": 7237437098, + "dst_i": 6211583022, + "osm_way_id": 663639116, + "src_i": 659971029, "type": "road" }, "type": "Feature" @@ -17125,33 +17493,33 @@ "coordinates": [ [ [ - -1.5389368795650449, - 53.799157644705566 + -1.5356174996607495, + 53.79872313924183 ], [ - -1.5388619673661583, - 53.799149643440714 + -1.5356178955221311, + 53.79870945965998 ], [ - -1.5388512973793733, - 53.79918449755116 + -1.5355208211760354, + 53.798708479399366 ], [ - -1.5389262095782597, - 53.79919249881601 + -1.5355204253146537, + 53.798722158981214 ], [ - -1.5389368795650449, - 53.799157644705566 + -1.5356174996607495, + 53.79872313924183 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298428, - "osm_way_id": 1009731641, - "src_i": 8450268992, + "dst_i": 6211583013, + "osm_way_id": 663639116, + "src_i": 6211583020, "type": "road" }, "type": "Feature" @@ -17161,33 +17529,33 @@ "coordinates": [ [ [ - -1.5371549795915966, - 53.79783827237407 + -1.5355874081055525, + 53.7988258102997 ], [ - -1.5371515782288003, - 53.79780890322646 + -1.5356042291691943, + 53.79878966836063 ], [ - -1.5370908195968591, - 53.79781135837461 + -1.5355106140425585, + 53.79877446622721 ], [ - -1.5370942209596556, - 53.797840727522214 + -1.5354937929789167, + 53.79881060816628 ], [ - -1.5371549795915966, - 53.79783827237407 + -1.5355874081055525, + 53.7988258102997 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9316506541, - "osm_way_id": 1009731645, - "src_i": 9316506539, + "dst_i": 6211583020, + "osm_way_id": 663639116, + "src_i": 6211583022, "type": "road" }, "type": "Feature" @@ -17197,33 +17565,41 @@ "coordinates": [ [ [ - -1.5377097245067035, - 53.79667107336216 + -1.5350154584457725, + 53.799241466880666 ], [ - -1.5383258416388932, - 53.796689184801174 + -1.5351932474050867, + 53.79914029319337 ], [ - -1.5383296266827213, - 53.796644274475874 + -1.5353424536500864, + 53.798999964839425 ], [ - -1.5377135095505317, - 53.79662616303686 + -1.53527273028039, + 53.79897410034834 ], [ - -1.5377097245067035, - 53.79667107336216 + -1.535128877299308, + 53.799109394299606 + ], + [ + -1.5349583356483696, + 53.79920644369775 + ], + [ + -1.5350154584457725, + 53.799241466880666 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419245, - "osm_way_id": 1010049062, - "src_i": 301689294, + "dst_i": 26298432, + "osm_way_id": 663639118, + "src_i": 659971029, "type": "road" }, "type": "Feature" @@ -17233,81 +17609,105 @@ "coordinates": [ [ [ - -1.5378842811055802, - 53.79601288052004 + -1.5340776567419612, + 53.7974589708714 ], [ - -1.5378539231052226, - 53.796005456619696 + -1.534093297834176, + 53.797474023717434 ], [ - -1.5377831202519887, - 53.79600611492315 + -1.534211506610432, + 53.79744120746988 ], [ - -1.5377840794545679, - 53.796042084192464 + -1.5343611650509332, + 53.797423480041225 ], [ - -1.5378422756453332, - 53.79604154280082 + -1.5343574667921005, + 53.797404568205934 ], [ - -1.5378609831407137, - 53.79604611765013 + -1.5344205061946186, + 53.797405445044554 ], [ - -1.5378842811055802, - 53.79601288052004 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 6146456169, - "osm_way_id": 1010049064, - "src_i": 5728993687, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5345069790683992, + 53.797415401434705 + ], [ - -1.535426434119705, - 53.7992333406101 + -1.5345777606060202, + 53.79743881347561 ], [ - -1.5357328125587426, - 53.799107584864416 + -1.5346377503533544, + 53.79746925821193 ], [ - -1.5357184214749682, - 53.79907263092927 + -1.5347151640916654, + 53.797551235878295 ], [ - -1.5357073860776767, - 53.799074214634715 + -1.534769081934419, + 53.79749033471447 ], [ - -1.5353916805354648, - 53.79920379969205 + -1.5347420994136136, + 53.79748199980128 ], [ - -1.535426434119705, - 53.7992333406101 + -1.5347142992868004, + 53.79751339961721 + ], + [ + -1.5346616999669571, + 53.7974577001299 + ], + [ + -1.5345953003103245, + 53.797423999849144 + ], + [ + -1.5345176003337835, + 53.79739829993393 + ], + [ + -1.5344237979342632, + 53.797387499980054 + ], + [ + -1.5343232004218688, + 53.79738609973622 + ], + [ + -1.534327699538728, + 53.7974090998878 + ], + [ + -1.5342018993592028, + 53.797423999849144 + ], + [ + -1.5341050001056415, + 53.79745090035878 + ], + [ + -1.5341036100231735, + 53.79744956216815 + ], + [ + -1.5340776567419612, + 53.7974589708714 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7261942252, - "osm_way_id": 1010049066, - "src_i": 9319419267, + "dst_i": 6216919223, + "osm_way_id": 663641181, + "src_i": 1606959629, "type": "road" }, "type": "Feature" @@ -17317,33 +17717,33 @@ "coordinates": [ [ [ - -1.5346952568317889, - 53.79956842606379 + -1.5347676994646702, + 53.79747226014765 ], [ - -1.5346947559148865, - 53.79956626409451 + -1.5346254999661293, + 53.79734186030488 ], [ - -1.5346344175050277, - 53.79957114201522 + -1.534599899915073, + 53.79735159995852 ], [ - -1.5346349184219301, - 53.7995733039845 + -1.5347420994136136, + 53.79748199980128 ], [ - -1.5346952568317889, - 53.79956842606379 + -1.5347676994646702, + 53.79747226014765 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419274, - "osm_way_id": 1010049066, - "src_i": 9319419273, + "dst_i": 6596024418, + "osm_way_id": 663641181, + "src_i": 6216919223, "type": "road" }, "type": "Feature" @@ -17353,33 +17753,57 @@ "coordinates": [ [ [ - -1.5347109390326859, - 53.79955886987178 + -1.5346261851108287, + 53.797342520406985 ], [ - -1.5353663271365003, - 53.79925938316687 + -1.5344739779320458, + 53.79718878406634 ], [ - -1.535329061355029, - 53.79923093042804 + -1.5343580118627724, + 53.79713331840266 ], [ - -1.5346736732512147, - 53.79953041713295 + -1.5341480561210943, + 53.79712930562939 ], [ - -1.5347109390326859, - 53.79955886987178 + -1.5339923760199572, + 53.79716447000581 + ], + [ + -1.534003253072696, + 53.79718126933451 + ], + [ + -1.534153199273971, + 53.79714739998129 + ], + [ + -1.534346799850403, + 53.79715109979062 + ], + [ + -1.5344505003070137, + 53.7972007000784 + ], + [ + -1.534599899915073, + 53.79735159995852 + ], + [ + -1.5346261851108287, + 53.797342520406985 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419267, - "osm_way_id": 1010049066, - "src_i": 9319419274, + "dst_i": 6596024424, + "osm_way_id": 663641181, + "src_i": 6596024418, "type": "road" }, "type": "Feature" @@ -17389,33 +17813,49 @@ "coordinates": [ [ [ - -1.534627416848744, - 53.799542111911876 + -1.5339214696337464, + 53.7971801730614 ], [ - -1.5346222828311298, - 53.79954171531102 + -1.5338377814925328, + 53.79719833756039 ], [ - -1.5346173467442068, - 53.79956400769645 + -1.5337672557422661, + 53.797225801045386 ], [ - -1.5346224807618207, - 53.79956440429731 + -1.5339783290310762, + 53.79743719559593 ], [ - -1.534627416848744, - 53.799542111911876 + -1.534004559415256, + 53.79742805848782 + ], + [ + -1.5338081999895012, + 53.797231400222074 + ], + [ + -1.5338516000998474, + 53.797214500169346 + ], + [ + -1.533931972140716, + 53.79719705512769 + ], + [ + -1.5339214696337464, + 53.7971801730614 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4833244389, - "osm_way_id": 1010049068, - "src_i": 9319419274, + "dst_i": 1606959629, + "osm_way_id": 663641181, + "src_i": 6596024424, "type": "road" }, "type": "Feature" @@ -17425,41 +17865,41 @@ "coordinates": [ [ [ - -1.5363301902221325, - 53.79939606117418 + -1.532505659221159, + 53.79672763260099 ], [ - -1.5361011037179038, - 53.799377379565236 + -1.5325400001960356, + 53.796718623196554 ], [ - -1.5359709658111598, - 53.79942850420324 + -1.5327377557944335, + 53.7966875381432 ], [ - -1.5360373822157738, - 53.79948748711395 + -1.5327175607737833, + 53.79664271415278 ], [ - -1.5361296970900247, - 53.799451221068495 + -1.5325138063529065, + 53.796674741695234 ], [ - -1.536313789380573, - 53.799466233445045 + -1.5324737832446562, + 53.796685242174995 ], [ - -1.5363301902221325, - 53.79939606117418 + -1.532505659221159, + 53.79672763260099 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419289, - "osm_way_id": 1010049071, - "src_i": 9319419287, + "dst_i": 8733041519, + "osm_way_id": 668984459, + "src_i": 5728993713, "type": "road" }, "type": "Feature" @@ -17469,33 +17909,33 @@ "coordinates": [ [ [ - -1.5353263694976325, - 53.799219157408125 + -1.5328130379714575, + 53.79668001351884 ], [ - -1.535331084815708, - 53.79922317377868 + -1.5328342226455625, + 53.79667886598439 ], [ - -1.5353811308296383, - 53.799202674640654 + -1.5328270514643756, + 53.796632676823684 ], [ - -1.5353764155115628, - 53.79919865827009 + -1.5328058667902709, + 53.796633824358125 ], [ - -1.5353263694976325, - 53.799219157408125 + -1.5328130379714575, + 53.79668001351884 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419267, - "osm_way_id": 1010049073, - "src_i": 9319419293, + "dst_i": 6264559102, + "osm_way_id": 668984459, + "src_i": 8733041519, "type": "road" }, "type": "Feature" @@ -17505,33 +17945,33 @@ "coordinates": [ [ [ - -1.5326532165512488, - 53.800375073530425 + -1.5339374532983112, + 53.796521767979364 ], [ - -1.532703038751244, - 53.800337477388226 + -1.5339464637123799, + 53.79651977418323 ], [ - -1.5326378373365634, - 53.80030733032737 + -1.5338993805686385, + 53.79644553517979 ], [ - -1.5325880151365683, - 53.80034492646957 + -1.5338903701545699, + 53.796447528975925 ], [ - -1.5326532165512488, - 53.800375073530425 + -1.5339374532983112, + 53.796521767979364 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 26298441, - "osm_way_id": 1019249869, - "src_i": 1591373213, + "dst_i": 5728993707, + "osm_way_id": 668984461, + "src_i": 5728993834, "type": "road" }, "type": "Feature" @@ -17541,41 +17981,49 @@ "coordinates": [ [ [ - -1.5325853187115401, - 53.79675963046583 + -1.5329221769544377, + 53.79668717301861 ], [ - -1.5325800248268298, - 53.796802173776506 + -1.5334888905861705, + 53.79661027382169 ], [ - -1.5325314221843995, - 53.79690181501969 + -1.5338089414683203, + 53.796557757933066 ], [ - -1.5325890413310734, - 53.796911621223124 + -1.5338575578136446, + 53.79654263224199 ], [ - -1.5326393705381463, - 53.79680844024987 + -1.5337950086702226, + 53.796472490548055 ], [ - -1.5326451211859897, - 53.796762225908154 + -1.5337591390613943, + 53.7964836502306 ], [ - -1.5325853187115401, - 53.79675963046583 + -1.5334558727018357, + 53.79653341239628 + ], + [ + -1.5328921280304666, + 53.79660990869709 + ], + [ + -1.5329221769544377, + 53.79668717301861 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3181227677, - "osm_way_id": 1019599366, - "src_i": 5728993689, + "dst_i": 5728993834, + "osm_way_id": 668984461, + "src_i": 6264559102, "type": "road" }, "type": "Feature" @@ -17585,33 +18033,33 @@ "coordinates": [ [ [ - -1.5325680637229222, - 53.796737270631276 + -1.5348639440244078, + 53.797587795102615 ], [ - -1.5323193942606417, - 53.79678208382983 + -1.5347694351645753, + 53.797474074079446 ], [ - -1.5323281427971809, - 53.79679902165407 + -1.5347147636626521, + 53.79748992552311 ], [ - -1.5325768122594614, - 53.79675420845551 + -1.5348092725224847, + 53.79760364654628 ], [ - -1.5325680637229222, - 53.796737270631276 + -1.5348639440244078, + 53.797587795102615 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3181227681, - "osm_way_id": 1019599367, - "src_i": 5728993689, + "dst_i": 6216919223, + "osm_way_id": 668997030, + "src_i": 5452444904, "type": "road" }, "type": "Feature" @@ -17621,33 +18069,33 @@ "coordinates": [ [ [ - -1.5368594036006527, - 53.79555713038061 + -1.5347676994646702, + 53.79747226014765 ], [ - -1.537015013664776, - 53.79560609035137 + -1.5346254999661293, + 53.79734186030488 ], [ - -1.5370606595271925, - 53.795555474729426 + -1.5345742998640166, + 53.797361339612145 ], [ - -1.5369050494630692, - 53.795506514758664 + -1.5347164993625573, + 53.79749173945491 ], [ - -1.5368594036006527, - 53.79555713038061 + -1.5347676994646702, + 53.79747226014765 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579620, - "osm_way_id": 1019599369, - "src_i": 26660405, + "dst_i": 6596024418, + "osm_way_id": 668997030, + "src_i": 6216919223, "type": "road" }, "type": "Feature" @@ -17657,33 +18105,33 @@ "coordinates": [ [ [ - -1.5370829982894798, - 53.795627192034914 + -1.534389726449635, + 53.797098741283286 ], [ - -1.537247311213829, - 53.79567749918952 + -1.5343750247669299, + 53.797083209998135 ], [ - -1.5372919917834913, - 53.79562658499279 + -1.5343218666735206, + 53.79710076475703 ], [ - -1.5371276788591421, - 53.79557627783818 + -1.5343365683562256, + 53.797116296042184 ], [ - -1.5370829982894798, - 53.795627192034914 + -1.534389726449635, + 53.797098741283286 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579502, - "osm_way_id": 1019599369, - "src_i": 342579620, + "dst_i": 6264670255, + "osm_way_id": 668997030, + "src_i": 6264670253, "type": "road" }, "type": "Feature" @@ -17693,33 +18141,49 @@ "coordinates": [ [ [ - -1.5327639785658944, - 53.80031152656226 + -1.534360499699303, + 53.79706341682761 ], [ - -1.5327873633157563, - 53.80029606272623 + -1.5343065011617292, + 53.79698984062424 ], [ - -1.5326979199590678, - 53.800248873519834 + -1.53412654105499, + 53.79669719056263 ], [ - -1.532674535209206, - 53.80026433735586 + -1.5340991520149962, + 53.796685420240685 ], [ - -1.5327639785658944, - 53.80031152656226 + -1.53406332351485, + 53.79671450969926 + ], + [ + -1.5340756576419827, + 53.79671981030115 + ], + [ + -1.5342498990742977, + 53.797003159578104 + ], + [ + -1.534304622342709, + 53.7970777250353 + ], + [ + -1.534360499699303, + 53.79706341682761 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7692244824, - "osm_way_id": 1020974237, - "src_i": 26298441, + "dst_i": 3672602007, + "osm_way_id": 668997030, + "src_i": 6264670255, "type": "road" }, "type": "Feature" @@ -17729,33 +18193,33 @@ "coordinates": [ [ [ - -1.5373509873097393, - 53.79569144137329 + -1.5346263069143309, + 53.79734264271473 ], [ - -1.537501725233778, - 53.795723648780076 + -1.5344285604511958, + 53.797139240435826 ], [ - -1.5375221212302066, - 53.7956903415029 + -1.53437574645268, + 53.79715715492339 ], [ - -1.537371383306168, - 53.795658134096115 + -1.534573492915815, + 53.797360557202296 ], [ - -1.5373509873097393, - 53.79569144137329 + -1.5346263069143309, + 53.79734264271473 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 320951161, - "osm_way_id": 1042054891, - "src_i": 342579502, + "dst_i": 6264670253, + "osm_way_id": 668997030, + "src_i": 6596024418, "type": "road" }, "type": "Feature" @@ -17765,33 +18229,33 @@ "coordinates": [ [ [ - -1.5339888802594466, - 53.79710860774127 + -1.5343365698787694, + 53.797116296042184 ], [ - -1.5338751827804002, - 53.796937043247944 + -1.534319759472934, + 53.79711509005183 ], [ - -1.5338184710698168, - 53.79695015535782 + -1.5343160870973453, + 53.79713294518417 ], [ - -1.5339321685488634, - 53.79712171985115 + -1.5343328975031807, + 53.79713415117452 ], [ - -1.5339888802594466, - 53.79710860774127 + -1.5343365698787694, + 53.797116296042184 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9740274258, - "osm_way_id": 1060145090, - "src_i": 9740274255, + "dst_i": 26661455, + "osm_way_id": 668997031, + "src_i": 6264670253, "type": "road" }, "type": "Feature" @@ -17801,41 +18265,33 @@ "coordinates": [ [ [ - -1.5337758961781973, - 53.79690827844449 - ], - [ - -1.533755900610782, - 53.79690727300287 - ], - [ - -1.5333803804137702, - 53.7969482200176 + -1.5338405768829064, + 53.79644862165175 ], [ - -1.5333914371266746, - 53.7969835957346 + -1.5338305813830142, + 53.796441964872784 ], [ - -1.5337589000220213, - 53.796943526457824 + -1.5337850177379617, + 53.79646583466842 ], [ - -1.5337707286646203, - 53.79694412180877 + -1.5337950132378537, + 53.79647249144738 ], [ - -1.5337758961781973, - 53.79690827844449 + -1.5338405768829064, + 53.79644862165175 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9740274263, - "osm_way_id": 1060145090, - "src_i": 9740274258, + "dst_i": 7241259894, + "osm_way_id": 668997032, + "src_i": 5728993834, "type": "road" }, "type": "Feature" @@ -17845,33 +18301,33 @@ "coordinates": [ [ [ - -1.5338338320139768, - 53.79689718890904 + -1.5339385190789547, + 53.796522651113236 ], [ - -1.5338293998890438, - 53.7968891094032 + -1.5339374517757673, + 53.79652176618072 ], [ - -1.5337714640532643, - 53.79690019803933 + -1.5338878503446198, + 53.79654263763792 ], [ - -1.5337758961781973, - 53.79690827754517 + -1.533888917647807, + 53.79654352257044 ], [ - -1.5338338320139768, - 53.79689718890904 + -1.5339385190789547, + 53.796522651113236 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9740274265, - "osm_way_id": 1060145092, - "src_i": 9740274258, + "dst_i": 5728993834, + "osm_way_id": 668997032, + "src_i": 6905278495, "type": "road" }, "type": "Feature" @@ -17881,33 +18337,33 @@ "coordinates": [ [ [ - -1.5331505128445844, - 53.79583558464974 + -1.5339940005741668, + 53.79657614636315 ], [ - -1.5330289955807024, - 53.795781457176695 + -1.5339809264907587, + 53.796562286017654 ], [ - -1.5329705390349513, - 53.79582724523994 + -1.5339277257661237, + 53.796579794011826 ], [ - -1.5330920562988333, - 53.795881372712984 + -1.5339407998495318, + 53.79659365435732 ], [ - -1.5331505128445844, - 53.79583558464974 + -1.5339940005741668, + 53.79657614636315 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6905250281, - "osm_way_id": 1067008053, - "src_i": 1020737641, + "dst_i": 6905278495, + "osm_way_id": 668997032, + "src_i": 7241259893, "type": "road" }, "type": "Feature" @@ -17917,33 +18373,41 @@ "coordinates": [ [ [ - -1.5324479867854526, - 53.79571434889474 + -1.5337804653320704, + 53.79640093691911 ], [ - -1.5322636996093009, - 53.79579083710166 + -1.5336321832711428, + 53.79615074653127 ], [ - -1.5323195191092314, - 53.795837760108846 + -1.5336122074967964, + 53.79613878105651 ], [ - -1.532503806285383, - 53.79576127190193 + -1.533568842404957, + 53.796164037606154 ], [ - -1.5324479867854526, - 53.79571434889474 + -1.5335792170182494, + 53.79617025281818 + ], + [ + -1.533722983214336, + 53.796412822354235 + ], + [ + -1.5337804653320704, + 53.79640093691911 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2377604550, - "osm_way_id": 1067008054, - "src_i": 1020737601, + "dst_i": 3672604268, + "osm_way_id": 668997033, + "src_i": 6264670275, "type": "road" }, "type": "Feature" @@ -17953,33 +18417,33 @@ "coordinates": [ [ [ - -1.5368421912432604, - 53.7964275073777 + -1.5340657854681365, + 53.79664246953729 ], [ - -1.5367803911913764, - 53.79642652172116 + -1.5340567948471369, + 53.79663149331637 ], [ - -1.5367755099160292, - 53.7965332927865 + -1.5339882681968486, + 53.79665107694495 ], [ - -1.5368373099679133, - 53.79653427844304 + -1.5339972588178483, + 53.79666205316587 ], [ - -1.5368421912432604, - 53.7964275073777 + -1.5340657854681365, + 53.79664246953729 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9319419229, - "osm_way_id": 1079858510, - "src_i": 9319419234, + "dst_i": 6905278494, + "osm_way_id": 668997034, + "src_i": 3672602007, "type": "road" }, "type": "Feature" @@ -17989,33 +18453,33 @@ "coordinates": [ [ [ - -1.5367028404241254, - 53.796425649379145 + -1.5340297681725619, + 53.796603001007384 ], [ - -1.5360544073002815, - 53.796421410876135 + -1.5340195442911033, + 53.796592797303774 ], [ - -1.5360524066777594, - 53.79652821431706 + -1.5339540322774925, + 53.796615699429296 ], [ - -1.536700839801603, - 53.79653245282006 + -1.533964256158951, + 53.796625903132906 ], [ - -1.5367028404241254, - 53.796425649379145 + -1.5340297681725619, + 53.796603001007384 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 342579666, - "osm_way_id": 1079858511, - "src_i": 9319419229, + "dst_i": 7241259893, + "osm_way_id": 668997034, + "src_i": 6905278494, "type": "road" }, "type": "Feature" @@ -18025,35 +18489,34 @@ "coordinates": [ [ [ - -1.5318494550338804, - 53.798692888758985 + -1.5330747099575888, + 53.7955782005879 ], [ - -1.5318587090549534, - 53.798657333177644 + -1.533067585975259, + 53.795543406732 ], [ - -1.5319903847309115, - 53.79866928965918 + -1.5330231703282138, + 53.795546579538836 ], [ - -1.5319811307098385, - 53.79870484524052 + -1.5330302943105436, + 53.79558137339473 ], [ - -1.5318494550338804, - 53.798692888758985 + -1.5330747099575888, + 53.7955782005879 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-8", - "osm_node_id": -8, - "type": "intersection" + "dst_i": 659985459, + "osm_way_id": 668997035, + "src_i": 320943623, + "type": "road" }, "type": "Feature" }, @@ -18062,72 +18525,58 @@ "coordinates": [ [ [ - -1.5328849644619986, - 53.80036084806033 + -1.5333548092910456, + 53.795831464857194 ], [ - -1.5328344007831842, - 53.800399578247145 + -1.533211684085889, + 53.79575973855849 ], [ - -1.5327289022023738, - 53.800351523893305 + -1.5331422119359155, + 53.795707157019386 ], [ - -1.532779465881188, - 53.80031279370649 + -1.5330852413928902, + 53.79563847132723 ], [ - -1.5328849644619986, - 53.80036084806033 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-7", - "osm_node_id": -7, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5330844420574075, + 53.795633157235514 + ], [ - -1.5340049248257623, - 53.795383173691654 + -1.5330398802461598, + 53.79563549727049 ], [ - -1.534026444459498, - 53.79541682630835 + -1.53304141649283, + 53.79564569827613 ], [ - -1.5338697016228051, - 53.79543664196191 + -1.5331040783044918, + 53.79572124579259 ], [ - -1.5338680877264022, - 53.79540068168582 + -1.5331792417231014, + 53.795778135082465 ], [ - -1.5340049248257623, - 53.795383173691654 + -1.5333258657338562, + 53.79585161505842 + ], + [ + -1.5333548092910456, + 53.795831464857194 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-6", - "osm_node_id": -6, - "type": "intersection" + "dst_i": 320943623, + "osm_way_id": 668997035, + "src_i": 6264670261, + "type": "road" }, "type": "Feature" }, @@ -18136,35 +18585,42 @@ "coordinates": [ [ [ - -1.534329354543813, - 53.795322146622794 + -1.534672287736378, + 53.795427642450015 + ], + [ + -1.5348355135644711, + 53.79542788346822 + ], + [ + -1.5355206247678883, + 53.79547732637471 ], [ - -1.5343693761295194, - 53.795360396571844 + -1.5355280121502914, + 53.79544161970733 ], [ - -1.5342560486286105, - 53.79540176536843 + -1.534839286427949, + 53.795391915997556 ], [ - -1.5342160270429042, - 53.79536351541938 + -1.5346724399907559, + 53.79539166958342 ], [ - -1.534329354543813, - 53.795322146622794 + -1.534672287736378, + 53.795427642450015 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-4", - "osm_node_id": -4, - "type": "intersection" + "dst_i": 6665254428, + "osm_way_id": 668997041, + "src_i": 6264671914, + "type": "road" }, "type": "Feature" }, @@ -18173,35 +18629,50 @@ "coordinates": [ [ [ - -1.53531614409363, - 53.795435773217186 + -1.5358498733369912, + 53.79549767262806 ], [ - -1.5353317532124258, - 53.795379171710245 + -1.5359542193521631, + 53.795504871697986 ], [ - -1.5354632431380433, - 53.795391823367424 + -1.5363392478350582, + 53.795507966263834 ], [ - -1.5354476340192476, - 53.795448424874365 + -1.5365296617273663, + 53.795526164037724 ], [ - -1.53531614409363, - 53.795435773217186 + -1.53653938773701, + 53.79549065342246 + ], + [ + -1.5363445523775752, + 53.79547203296739 + ], + [ + -1.5359581810110692, + 53.79546892760968 + ], + [ + -1.5358569379401137, + 53.795461942578314 + ], + [ + -1.5358498733369912, + 53.79549767262806 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-3", - "osm_node_id": -3, - "type": "intersection" + "dst_i": 8450014342, + "osm_way_id": 668997041, + "src_i": 6264671916, + "type": "road" }, "type": "Feature" }, @@ -18210,35 +18681,34 @@ "coordinates": [ [ [ - -1.539053343506133, - 53.796505081065874 + -1.535596937707049, + 53.79548233739503 ], [ - -1.539048501816924, - 53.796540384837144 + -1.5357746886027688, + 53.7954928549619 ], [ - -1.538896743788555, - 53.79653312371403 + -1.535780760507349, + 53.79545706195964 ], [ - -1.5389015854777641, - 53.79649781994275 + -1.5356030096116293, + 53.79544654439277 ], [ - -1.539053343506133, - 53.796505081065874 + -1.535596937707049, + 53.79548233739503 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-2", - "osm_node_id": -2, - "type": "intersection" + "dst_i": 6264671916, + "osm_way_id": 668997041, + "src_i": 6665254428, + "type": "road" }, "type": "Feature" }, @@ -18247,35 +18717,34 @@ "coordinates": [ [ [ - -1.539137642187401, - 53.79884669704536 + -1.536603482262365, + 53.795534032202966 ], [ - -1.539128305948964, - 53.79888168425541 + -1.5367039214302067, + 53.795545848390326 ], [ - -1.5390471102119123, - 53.7988741245575 + -1.5367158185872754, + 53.79551056800141 ], [ - -1.5390564464503493, - 53.79883913734745 + -1.5366153794194337, + 53.79549875181406 ], [ - -1.539137642187401, - 53.79884669704536 + -1.536603482262365, + 53.795534032202966 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-1", - "osm_node_id": -1, - "type": "intersection" + "dst_i": 6264671921, + "osm_way_id": 668997041, + "src_i": 8450014342, + "type": "road" }, "type": "Feature" }, @@ -18284,40 +18753,22589 @@ "coordinates": [ [ [ - -1.532789188845744, - 53.79564878384876 + -1.5373083454261935, + 53.79569114099986 ], [ - -1.532725033418638, - 53.79569182808161 + -1.5372779280466287, + 53.7956842476993 ], [ - -1.5327108935545863, - 53.795684474328354 + -1.5370901131365469, + 53.795621191760766 ], [ - -1.5326925194962928, - 53.795693149185134 - ], + -1.5370750673589486, + 53.79563682916587 + ], + [ + -1.5372648707112022, + 53.79570055240108 + ], + [ + -1.5372974379225794, + 53.79570793313398 + ], + [ + -1.5373083454261935, + 53.79569114099986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6047609624, + "osm_way_id": 668997046, + "src_i": 6047091983, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5370226142033077, + 53.79559961883267 + ], + [ + -1.5369379135704828, + 53.79557388564255 + ], + [ + -1.5369239853400163, + 53.79558988097768 + ], + [ + -1.5370086859728411, + 53.7956156141678 + ], + [ + -1.5370226142033077, + 53.79559961883267 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6264671922, + "osm_way_id": 668997046, + "src_i": 6047609624, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5367846543139503, + 53.79554244535714 + ], + [ + -1.5367994351689316, + 53.79554277900548 + ], + [ + -1.5368005983923767, + 53.795524805162685 + ], + [ + -1.5367858175373954, + 53.79552447151435 + ], + [ + -1.5367846543139503, + 53.79554244535714 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26660405, + "osm_way_id": 668997046, + "src_i": 6264671921, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368684033569149, + 53.79555430561126 + ], + [ + -1.5367881713900737, + 53.7955334314561 + ], + [ + -1.5367758966421485, + 53.79554989263985 + ], + [ + -1.5368561286089897, + 53.79557076679502 + ], + [ + -1.5368684033569149, + 53.79555430561126 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6264671921, + "osm_way_id": 668997046, + "src_i": 6264671922, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535671193689568, + 53.79641694034814 + ], + [ + -1.5352099116467193, + 53.7964125633496 + ], + [ + -1.535207006633194, + 53.79651935959594 + ], + [ + -1.5356682886760427, + 53.79652373659449 + ], + [ + -1.535671193689568, + 53.79641694034814 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320943571, + "osm_way_id": 670751728, + "src_i": 301689309, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358477691814922, + 53.79641966619211 + ], + [ + -1.535748464308764, + 53.7964179682728 + ], + [ + -1.5357432328483482, + 53.79652473394221 + ], + [ + -1.5358425377210765, + 53.796526431861516 + ], + [ + -1.5358477691814922, + 53.79641966619211 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 301689309, + "osm_way_id": 670751728, + "src_i": 342579666, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5359539848804216, + 53.79882883381914 + ], + [ + -1.5359266536970912, + 53.79883106593551 + ], + [ + -1.5358368053437583, + 53.798821162605336 + ], + [ + -1.53575313547307, + 53.79879790075115 + ], + [ + -1.5357107904855607, + 53.798777085051896 + ], + [ + -1.5356702969112836, + 53.79880582377502 + ], + [ + -1.5357188630126632, + 53.79882969896658 + ], + [ + -1.5358171949799184, + 53.79885703654654 + ], + [ + -1.5359251463787527, + 53.79886893457217 + ], + [ + -1.5359626542446843, + 53.79886587148258 + ], + [ + -1.5359539848804216, + 53.79882883381914 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 250348721, + "osm_way_id": 673667995, + "src_i": 643945, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5356793560467532, + 53.79872779503009 + ], + [ + -1.535651998980179, + 53.79870450439761 + ], + [ + -1.5356409574927123, + 53.79868488749413 + ], + [ + -1.5355208196534917, + 53.798708478500046 + ], + [ + -1.5355376011309951, + 53.79873829550984 + ], + [ + -1.5355753389010371, + 53.798770422877 + ], + [ + -1.5356793560467532, + 53.79872779503009 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6211583013, + "osm_way_id": 673667995, + "src_i": 250348721, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339190746723863, + 53.79640956141388 + ], + [ + -1.5339034031292957, + 53.79640222294909 + ], + [ + -1.5338412041709422, + 53.79634867823649 + ], + [ + -1.5337229679888982, + 53.79614082341602 + ], + [ + -1.5336661283846378, + 53.79615210450698 + ], + [ + -1.5337870290182902, + 53.79636464299468 + ], + [ + -1.5338590757897896, + 53.7964266647133 + ], + [ + -1.5338818210712653, + 53.7964373162791 + ], + [ + -1.5339190746723863, + 53.79640956141388 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6309354601, + "osm_way_id": 673731116, + "src_i": 5728993707, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5336626508946525, + 53.79608020823648 + ], + [ + -1.5336328638482108, + 53.79605725484963 + ], + [ + -1.5335297998148987, + 53.79600223345085 + ], + [ + -1.5334895924788516, + 53.79602850983125 + ], + [ + -1.5335885943653682, + 53.796081362066175 + ], + [ + -1.5336150592212896, + 53.79610175598357 + ], + [ + -1.5336626508946525, + 53.79608020823648 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1020737673, + "osm_way_id": 673731116, + "src_i": 6309354601, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5334749714909668, + 53.79596335397663 + ], + [ + -1.5332095616598647, + 53.79586017480202 + ], + [ + -1.5331561843201515, + 53.79590807806982 + ], + [ + -1.5334215941512537, + 53.79601125724444 + ], + [ + -1.5334749714909668, + 53.79596335397663 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1020737641, + "osm_way_id": 673731117, + "src_i": 1020737673, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5336833635801865, + 53.796078870945166 + ], + [ + -1.5335874509349923, + 53.79597898868378 + ], + [ + -1.533500327935019, + 53.795921005818755 + ], + [ + -1.533486361640958, + 53.79590879213123 + ], + [ + -1.5334212881199547, + 53.795934753749044 + ], + [ + -1.5334381533373658, + 53.79594950352367 + ], + [ + -1.533523226993416, + 53.796006121218404 + ], + [ + -1.5336150592212896, + 53.79610175508425 + ], + [ + -1.5336833635801865, + 53.796078870945166 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6264670261, + "osm_way_id": 673731118, + "src_i": 6309354601, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5332144246646864, + 53.79557423997528 + ], + [ + -1.5332174697522392, + 53.79557181270611 + ], + [ + -1.5338339370694976, + 53.79543720133999 + ], + [ + -1.5338697016228051, + 53.79543664196191 + ], + [ + -1.5338680877264022, + 53.79540068168582 + ], + [ + -1.53382226220382, + 53.79540139934451 + ], + [ + -1.5331793300306404, + 53.795541787953006 + ], + [ + -1.5331654870626252, + 53.79555282712644 + ], + [ + -1.5332144246646864, + 53.79557423997528 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": -8, + "osm_way_id": 673731119, + "src_i": 6309354609, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5326568523857869, + 53.79580512192699 + ], + [ + -1.5325698953430853, + 53.795827064476285 + ], + [ + -1.5325346256165049, + 53.7958668198898 + ], + [ + -1.5325750826497315, + 53.795879342044664 + ], + [ + -1.532602800559181, + 53.795848099610026 + ], + [ + -1.5326747970867356, + 53.79582993241308 + ], + [ + -1.5326568523857869, + 53.79580512192699 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 478743247, + "osm_way_id": 673731120, + "src_i": 475070618, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5331032469955899, + 53.795619900334856 + ], + [ + -1.5331451199945285, + 53.7956105707719 + ], + [ + -1.53311825318705, + 53.79556849870578 + ], + [ + -1.5330763801881115, + 53.795577828268726 + ], + [ + -1.5331032469955899, + 53.795619900334856 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6309354609, + "osm_way_id": 673731123, + "src_i": 320943623, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5328748304106228, + 53.79569529406731 + ], + [ + -1.532909147024799, + 53.79567733821094 + ], + [ + -1.5328586686084364, + 53.79564367839967 + ], + [ + -1.5328243519942601, + 53.795661634256035 + ], + [ + -1.5328748304106228, + 53.79569529406731 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 342529324, + "osm_way_id": 673731123, + "src_i": 320943624, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5329629369738755, + 53.79565654949134 + ], + [ + -1.5330356612773555, + 53.79563665020086 + ], + [ + -1.5330036634973505, + 53.795595849775566 + ], + [ + -1.5329309391938708, + 53.795615749066044 + ], + [ + -1.5329629369738755, + 53.79565654949134 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320943623, + "osm_way_id": 673731123, + "src_i": 342529324, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5327451401317491, + 53.795797115266204 + ], + [ + -1.5327449056600075, + 53.795795118772105 + ], + [ + -1.5326689611764406, + 53.79579823042507 + ], + [ + -1.5326691956481822, + 53.79580022691916 + ], + [ + -1.5327451401317491, + 53.795797115266204 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1020737577, + "osm_way_id": 673731123, + "src_i": 475070618, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5327617449941744, + 53.79575108888272 + ], + [ + -1.5327821455582344, + 53.795746156103384 + ], + [ + -1.532800403903201, + 53.795735672710734 + ], + [ + -1.532747340207506, + 53.79570343023041 + ], + [ + -1.5327396544065226, + 53.79570784320182 + ], + [ + -1.5327329049699618, + 53.79570947547064 + ], + [ + -1.5327617449941744, + 53.79575108888272 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320943624, + "osm_way_id": 673731123, + "src_i": 475070619, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5327463398962449, + 53.79576373514397 + ], + [ + -1.5327464099332586, + 53.79576329717432 + ], + [ + -1.532670620749157, + 53.79575906856385 + ], + [ + -1.5326705507121432, + 53.7957595065335 + ], + [ + -1.5327463398962449, + 53.79576373514397 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 475070619, + "osm_way_id": 673731123, + "src_i": 1020737577, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5335797894947094, + 53.796103112160644 + ], + [ + -1.533563653575767, + 53.796083247943706 + ], + [ + -1.5334686331412257, + 53.79602783713865 + ], + [ + -1.533254179805232, + 53.79594228017206 + ], + [ + -1.532979555539195, + 53.79585023370034 + ], + [ + -1.5328123041053574, + 53.795803420410394 + ], + [ + -1.5327507948593346, + 53.79580049491702 + ], + [ + -1.5327446864137038, + 53.79584531531015 + ], + [ + -1.5327922948350479, + 53.79584757890279 + ], + [ + -1.5329444456797112, + 53.79589016717954 + ], + [ + -1.5332140211905856, + 53.79598051932925 + ], + [ + -1.5334201675277352, + 53.796062763194826 + ], + [ + -1.5335007451120137, + 53.79610975275182 + ], + [ + -1.533511153221269, + 53.79612256448825 + ], + [ + -1.5335797894947094, + 53.796103112160644 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 475070618, + "osm_way_id": 673731126, + "src_i": 3672604268, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534619523981807, + 53.79663552677404 + ], + [ + -1.534633551177619, + 53.79665297001705 + ], + [ + -1.5346610574534834, + 53.79664525203852 + ], + [ + -1.5346470302576716, + 53.79662780879551 + ], + [ + -1.534619523981807, + 53.79663552677404 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6309354657, + "osm_way_id": 673731132, + "src_i": 301689312, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535340883907453, + 53.797592673922644 + ], + [ + -1.5353512250247823, + 53.79760743538845 + ], + [ + -1.5354026809142494, + 53.79759485927429 + ], + [ + -1.53539233979692, + 53.797580097808485 + ], + [ + -1.535340883907453, + 53.797592673922644 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437116, + "osm_way_id": 673731133, + "src_i": 2275824794, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535702603767675, + 53.797827277267395 + ], + [ + -1.5354900855848213, + 53.79786876657308 + ], + [ + -1.535499641069562, + 53.7978858446915 + ], + [ + -1.5357121592524157, + 53.79784435538581 + ], + [ + -1.535702603767675, + 53.797827277267395 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1877939975, + "osm_way_id": 673731135, + "src_i": 1877939971, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535793473747882, + 53.79792822432564 + ], + [ + -1.5357286468789704, + 53.79796730434858 + ], + [ + -1.5357046881301049, + 53.79802620002509 + ], + [ + -1.5357079615992242, + 53.79808546442349 + ], + [ + -1.5357456582605842, + 53.79814430704002 + ], + [ + -1.5358466013904157, + 53.79820812200604 + ], + [ + -1.5359022260047428, + 53.79817742276168 + ], + [ + -1.5358115417748766, + 53.79812009370352 + ], + [ + -1.5357836381150864, + 53.798076535957996 + ], + [ + -1.5357811106924175, + 53.79803079915609 + ], + [ + -1.5357977520958936, + 53.7979898953088 + ], + [ + -1.5358478498763124, + 53.79795969338933 + ], + [ + -1.535793473747882, + 53.79792822432564 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2014304855, + "osm_way_id": 673731136, + "src_i": 1877939977, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5359075503403288, + 53.798240714322496 + ], + [ + -1.5360299476345136, + 53.79829592278018 + ], + [ + -1.5360761507479523, + 53.79826018553586 + ], + [ + -1.5359537534537675, + 53.79820497707818 + ], + [ + -1.5359075503403288, + 53.798240714322496 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6584827765, + "osm_way_id": 673731136, + "src_i": 2014304855, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536098774225926, + 53.79832215329518 + ], + [ + -1.536236109197101, + 53.79836582075794 + ], + [ + -1.5363236311035438, + 53.79837292719773 + ], + [ + -1.5363232489450558, + 53.79837522226662 + ], + [ + -1.5363990107233696, + 53.798379627144136 + ], + [ + -1.5364065701532192, + 53.79833427255394 + ], + [ + -1.536260092306667, + 53.79832237992424 + ], + [ + -1.5361348585134267, + 53.79828255975956 + ], + [ + -1.536098774225926, + 53.79832215329518 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6584937015, + "osm_way_id": 673731136, + "src_i": 6584827765, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363864680077395, + 53.7984614096577 + ], + [ + -1.5364335968277942, + 53.79849950942003 + ], + [ + -1.5364862189857942, + 53.79852651964691 + ], + [ + -1.5366471533855035, + 53.79856966640243 + ], + [ + -1.5366673377483473, + 53.79857305324782 + ], + [ + -1.536688141786508, + 53.79852979947302 + ], + [ + -1.536673447716522, + 53.79852733353302 + ], + [ + -1.5365277813858023, + 53.79848828048972 + ], + [ + -1.5364900040296223, + 53.79846889111463 + ], + [ + -1.5364479361450805, + 53.79843488146723 + ], + [ + -1.5363864680077395, + 53.7984614096577 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9319419252, + "osm_way_id": 673731136, + "src_i": 6584937015, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5354278059316475, + 53.79792174920965 + ], + [ + -1.5354408236809358, + 53.797918387545266 + ], + [ + -1.5354286250601994, + 53.797901906576435 + ], + [ + -1.535415607310911, + 53.79790526824082 + ], + [ + -1.5354278059316475, + 53.79792174920965 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1877939975, + "osm_way_id": 673734329, + "src_i": 2014304851, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5351435698467502, + 53.79800174567038 + ], + [ + -1.5351600239773417, + 53.79799712675431 + ], + [ + -1.5351469544615652, + 53.79798088140776 + ], + [ + -1.5351305003309736, + 53.797985500323826 + ], + [ + -1.5351435698467502, + 53.79800174567038 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6309407701, + "osm_way_id": 673734329, + "src_i": 6309394776, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535229266223205, + 53.797977668131445 + ], + [ + -1.5352382553216608, + 53.7979751383396 + ], + [ + -1.5352251584000962, + 53.79795890018762 + ], + [ + -1.5352161693016404, + 53.797961429979466 + ], + [ + -1.535229266223205, + 53.797977668131445 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8174077586, + "osm_way_id": 673734329, + "src_i": 6309407701, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353261167553656, + 53.7979503980006 + ], + [ + -1.5353740814519534, + 53.797936884793266 + ], + [ + -1.5353609723500388, + 53.797920650238574 + ], + [ + -1.5353130076534507, + 53.79793416344591 + ], + [ + -1.5353261167553656, + 53.7979503980006 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2014304851, + "osm_way_id": 673734329, + "src_i": 8174077586, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535170951274025, + 53.79823206914333 + ], + [ + -1.5351212935087577, + 53.798250264219256 + ], + [ + -1.5351373441652485, + 53.79826554909027 + ], + [ + -1.5351870019305158, + 53.79824735401434 + ], + [ + -1.535170951274025, + 53.79823206914333 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5506378763, + "osm_way_id": 673734330, + "src_i": 1675168026, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5352705408624394, + 53.798151802886096 + ], + [ + -1.5352525855036843, + 53.7981570126565 + ], + [ + -1.5352197914332844, + 53.79820278543128 + ], + [ + -1.535247833644558, + 53.79820979474433 + ], + [ + -1.5352762001576563, + 53.79817020030939 + ], + [ + -1.5352839666534597, + 53.798167947508624 + ], + [ + -1.5352705408624394, + 53.798151802886096 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1675168026, + "osm_way_id": 673734330, + "src_i": 5452444908, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5351622773421307, + 53.79770019502225 + ], + [ + -1.5351422254405955, + 53.79770613144456 + ], + [ + -1.5351121369304863, + 53.797705288780165 + ], + [ + -1.5351106935589864, + 53.79772325542839 + ], + [ + -1.535148744973046, + 53.797724321124555 + ], + [ + -1.535175922379455, + 53.797716274893624 + ], + [ + -1.5351622773421307, + 53.79770019502225 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5452444899, + "osm_way_id": 673734333, + "src_i": 5452444896, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5343956506674687, + 53.79778854708058 + ], + [ + -1.5345991127599405, + 53.79782838253372 + ], + [ + -1.5348949688989395, + 53.79785939474201 + ], + [ + -1.5349002886668943, + 53.79784168529979 + ], + [ + -1.534606600630233, + 53.79781089972056 + ], + [ + -1.53440523051291, + 53.79777147435809 + ], + [ + -1.5343956506674687, + 53.79778854708058 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6309407702, + "osm_way_id": 673736353, + "src_i": 1606959655, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5352770680076089, + 53.7976833228485 + ], + [ + -1.5352764711704485, + 53.79769148599125 + ], + [ + -1.5353321079651256, + 53.79769290512084 + ], + [ + -1.535332704802286, + 53.79768474197809 + ], + [ + -1.5352770680076089, + 53.7976833228485 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6309354662, + "osm_way_id": 673737341, + "src_i": 5452444895, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5352710174186415, + 53.79773686216517 + ], + [ + -1.5352709199758396, + 53.797737403556816 + ], + [ + -1.5353262979380748, + 53.79774088033437 + ], + [ + -1.5353263953808767, + 53.79774033894273 + ], + [ + -1.5352710174186415, + 53.79773686216517 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26660391, + "osm_way_id": 673737341, + "src_i": 6309354662, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536029801470311, + 53.79660377712198 + ], + [ + -1.5360506085535595, + 53.7971563212522 + ], + [ + -1.5360810533389124, + 53.79715592195338 + ], + [ + -1.536060246255664, + 53.79660337782316 + ], + [ + -1.536029801470311, + 53.79660377712198 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9258530387, + "osm_way_id": 692442629, + "src_i": 6500031458, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5360521021690041, + 53.797196013713204 + ], + [ + -1.5360522742164509, + 53.79720058946184 + ], + [ + -1.5360827190018038, + 53.79720019016302 + ], + [ + -1.536082546954357, + 53.797195614414385 + ], + [ + -1.5360521021690041, + 53.797196013713204 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6428423986, + "osm_way_id": 692442629, + "src_i": 9258530387, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536408614929511, + 53.79840309314434 + ], + [ + -1.5364313556433553, + 53.7983993762479 + ], + [ + -1.5366589196038076, + 53.79841125628709 + ], + [ + -1.5366856052285764, + 53.79838971933186 + ], + [ + -1.5366903997189285, + 53.798348907215384 + ], + [ + -1.5366600219255016, + 53.7983476625542 + ], + [ + -1.5366558364526604, + 53.798383289181956 + ], + [ + -1.5366444889338948, + 53.79839244607515 + ], + [ + -1.5364285450275441, + 53.798381173977404 + ], + [ + -1.5364004936810076, + 53.79838575781993 + ], + [ + -1.536408614929511, + 53.79840309314434 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6584937084, + "osm_way_id": 701166698, + "src_i": 6584937015, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5364479361450805, + 53.79843488236655 + ], + [ + -1.536490578028626, + 53.79843905701772 + ], + [ + -1.5366229601648964, + 53.79844637210014 + ], + [ + -1.5366776742980452, + 53.79843828899702 + ], + [ + -1.5367340510489977, + 53.79838384136546 + ], + [ + -1.5367364627583397, + 53.7983422162622 + ], + [ + -1.5367323640704935, + 53.79833919993734 + ], + [ + -1.5367086154326692, + 53.79835045764594 + ], + [ + -1.5367056434272177, + 53.79834827049565 + ], + [ + -1.5367038925018748, + 53.79837849399884 + ], + [ + -1.53665819487297, + 53.7984226264109 + ], + [ + -1.5366206245827436, + 53.79842817702421 + ], + [ + -1.5364944544250807, + 53.79842120548267 + ], + [ + -1.536452914863229, + 53.798417138750104 + ], + [ + -1.5364479361450805, + 53.79843488236655 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6584937084, + "osm_way_id": 701166699, + "src_i": 6584937015, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5360956849846037, + 53.798248200276035 + ], + [ + -1.5360801626508032, + 53.79826199497105 + ], + [ + -1.536105522139943, + 53.79827195046188 + ], + [ + -1.5361210444737434, + 53.79825815576686 + ], + [ + -1.5360956849846037, + 53.798248200276035 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6584827765, + "osm_way_id": 701166702, + "src_i": 6584937053, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5322292155153092, + 53.79731342645181 + ], + [ + -1.5321535679277787, + 53.79730838485455 + ], + [ + -1.532150154384632, + 53.79732625797332 + ], + [ + -1.5322258019721624, + 53.79733129957057 + ], + [ + -1.5322292155153092, + 53.79731342645181 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6584937066, + "osm_way_id": 701166709, + "src_i": 6584937067, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5342452431354294, + 53.79665385315093 + ], + [ + -1.5342520595639164, + 53.796652378263396 + ], + [ + -1.5342916807206097, + 53.79674013227281 + ], + [ + -1.53435044329766, + 53.79673067860347 + ], + [ + -1.534330437072438, + 53.79668729352771 + ], + [ + -1.5343455178685432, + 53.79668486715786 + ], + [ + -1.534304139696332, + 53.79659322088428 + ], + [ + -1.5342190553824755, + 53.796611631797404 + ], + [ + -1.5342452431354294, + 53.79665385315093 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 643906, + "osm_way_id": 701166712, + "src_i": 643852, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5344470882864107, + 53.79671329741365 + ], + [ + -1.5345129580978092, + 53.79669963941553 + ], + [ + -1.5345530969193864, + 53.7965992490374 + ], + [ + -1.5344790068941392, + 53.796588914032824 + ], + [ + -1.534448441827828, + 53.796665360870946 + ], + [ + -1.5344218749614735, + 53.79667086921615 + ], + [ + -1.5344470882864107, + 53.79671329741365 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1877939944, + "osm_way_id": 701166712, + "src_i": 643906, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340991535375401, + 53.796685421140005 + ], + [ + -1.534115747742159, + 53.79668184094046 + ], + [ + -1.5340896300262186, + 53.79663960339914 + ], + [ + -1.5340730358215997, + 53.7966431835987 + ], + [ + -1.5340991535375401, + 53.796685421140005 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 643852, + "osm_way_id": 701166712, + "src_i": 3672602007, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53683466378683, + 53.79791617071736 + ], + [ + -1.5368068392993162, + 53.79815078755194 + ], + [ + -1.5366761243484808, + 53.79827782303235 + ], + [ + -1.536669382524639, + 53.798303747777986 + ], + [ + -1.5367295778153827, + 53.79830920845914 + ], + [ + -1.5367344743161677, + 53.79829037756279 + ], + [ + -1.5368665595564017, + 53.79816201288496 + ], + [ + -1.536895416328596, + 53.797918685220736 + ], + [ + -1.53683466378683, + 53.79791617071736 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6584937084, + "osm_way_id": 702394096, + "src_i": 6101189538, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5341986350253463, + 53.79655605281919 + ], + [ + -1.5341950540023843, + 53.79655744766709 + ], + [ + -1.534216007249835, + 53.79657621651024 + ], + [ + -1.5342195882727971, + 53.79657482166234 + ], + [ + -1.5341986350253463, + 53.79655605281919 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6905278501, + "osm_way_id": 702394734, + "src_i": 643914, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534067620133387, + 53.79660279776069 + ], + [ + -1.534039579444657, + 53.79661144024189 + ], + [ + -1.534057189185975, + 53.79663137280727 + ], + [ + -1.534085229874705, + 53.79662273032607 + ], + [ + -1.534067620133387, + 53.79660279776069 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6905278494, + "osm_way_id": 702394734, + "src_i": 6905278501, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534607689249033, + 53.797334212473444 + ], + [ + -1.5340167854417806, + 53.79724186382965 + ], + [ + -1.5340089961078205, + 53.79725925131471 + ], + [ + -1.534599899915073, + 53.79735159995852 + ], + [ + -1.534607689249033, + 53.797334212473444 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6596024419, + "osm_way_id": 702394735, + "src_i": 6596024418, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5333695718755016, + 53.79769877409402 + ], + [ + -1.5333513927028115, + 53.797713504982895 + ], + [ + -1.5333760000553256, + 53.79772410079075 + ], + [ + -1.533394179228016, + 53.79770936990188 + ], + [ + -1.5333695718755016, + 53.79769877409402 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5506378777, + "osm_way_id": 702394736, + "src_i": 1606959650, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5333483141192956, + 53.797747797017294 + ], + [ + -1.5333494971358097, + 53.79775766437461 + ], + [ + -1.533379871884149, + 53.79775639453241 + ], + [ + -1.5333786888676348, + 53.79774652717511 + ], + [ + -1.5333483141192956, + 53.797747797017294 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6596024421, + "osm_way_id": 702394736, + "src_i": 5506378777, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5333741867056878, + 53.79779430903449 + ], + [ + -1.5334624394331433, + 53.79788237241055 + ], + [ + -1.533488642411535, + 53.79787321012143 + ], + [ + -1.5334003896840798, + 53.79778514674536 + ], + [ + -1.5333741867056878, + 53.79779430903449 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6596024422, + "osm_way_id": 702394736, + "src_i": 6596024421, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339846445426608, + 53.797443164393826 + ], + [ + -1.5339262077899787, + 53.797462920692155 + ], + [ + -1.5339564607348157, + 53.797494141543076 + ], + [ + -1.5340148974874979, + 53.79747438524474 + ], + [ + -1.5339846445426608, + 53.797443164393826 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8990249593, + "osm_way_id": 702394737, + "src_i": 1606959629, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5338601035068387, + 53.79748538844531 + ], + [ + -1.533582699075866, + 53.797580173351506 + ], + [ + -1.5336131956277073, + 53.79761131146483 + ], + [ + -1.53389060005868, + 53.79751652655864 + ], + [ + -1.5338601035068387, + 53.79748538844531 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7105816301, + "osm_way_id": 702394737, + "src_i": 8990249593, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537556765191295, + 53.79573779690851 + ], + [ + -1.5375859584456637, + 53.79576998183225 + ], + [ + -1.5377713205377215, + 53.795840324074916 + ], + [ + -1.5377918961943158, + 53.79582140774301 + ], + [ + -1.537614841101102, + 53.79575421852211 + ], + [ + -1.5375903159659516, + 53.79572717951694 + ], + [ + -1.537556765191295, + 53.79573779690851 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8892765835, + "osm_way_id": 709186189, + "src_i": 320951161, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537835821582265, + 53.795865389069036 + ], + [ + -1.5380742169191426, + 53.79596032685991 + ], + [ + -1.53810449422468, + 53.795981778379584 + ], + [ + -1.5381337301102744, + 53.79596738203837 + ], + [ + -1.5380999844500143, + 53.79594347357191 + ], + [ + -1.537857100654084, + 53.795846747929566 + ], + [ + -1.537835821582265, + 53.795865389069036 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 10440056, + "osm_way_id": 709186189, + "src_i": 8892765835, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5356139262505062, + 53.79540463870115 + ], + [ + -1.5356242947736234, + 53.795360090802475 + ], + [ + -1.5355488770902033, + 53.79535396642194 + ], + [ + -1.5355385085670858, + 53.79539851432061 + ], + [ + -1.5356139262505062, + 53.79540463870115 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6665254427, + "osm_way_id": 709186190, + "src_i": 320943572, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5355998092246115, + 53.79546526467254 + ], + [ + -1.535600567451412, + 53.795462010027435 + ], + [ + -1.5355251497679918, + 53.79545588025097 + ], + [ + -1.5355243915411911, + 53.79545913489608 + ], + [ + -1.5355998092246115, + 53.79546526467254 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320943572, + "osm_way_id": 709186190, + "src_i": 6665254428, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5343507341035212, + 53.79539142226996 + ], + [ + -1.534312515209646, + 53.79535253380253 + ], + [ + -1.534259844330245, + 53.7953705939802 + ], + [ + -1.5342980632241203, + 53.79540948244764 + ], + [ + -1.5343507341035212, + 53.79539142226996 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1277537020, + "osm_way_id": 709186193, + "src_i": 320943617, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534454809105901, + 53.795474361311186 + ], + [ + -1.5344333092652342, + 53.79545826075542 + ], + [ + -1.5343854922553926, + 53.7954805387517 + ], + [ + -1.5344069920960592, + 53.795496639307466 + ], + [ + -1.534454809105901, + 53.795474361311186 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6665254454, + "osm_way_id": 709186193, + "src_i": 6665254450, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5344333366710223, + 53.795458281439814 + ], + [ + -1.5344137323973575, + 53.795443555946875 + ], + [ + -1.5343658605759398, + 53.79546579257436 + ], + [ + -1.5343854648496047, + 53.7954805180673 + ], + [ + -1.5344333366710223, + 53.795458281439814 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320943617, + "osm_way_id": 709186193, + "src_i": 6665254454, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534580595582532, + 53.795407438289494 + ], + [ + -1.5345776448926933, + 53.795408959042426 + ], + [ + -1.5344877082318213, + 53.79541980755967 + ], + [ + -1.5344254696873296, + 53.795439053043296 + ], + [ + -1.5344607774775043, + 53.795478891194406 + ], + [ + -1.5345134909881308, + 53.79546259188855 + ], + [ + -1.5346125537763986, + 53.79545064080295 + ], + [ + -1.5346306385513748, + 53.79544132293118 + ], + [ + -1.534580595582532, + 53.795407438289494 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6665254454, + "osm_way_id": 709186194, + "src_i": 6264671914, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534449161991034, + 53.799677345608586 + ], + [ + -1.5341005253494826, + 53.799916699170375 + ], + [ + -1.534129380599133, + 53.7999313617108 + ], + [ + -1.5344780172406844, + 53.799692008149016 + ], + [ + -1.534449161991034, + 53.799677345608586 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6740104094, + "osm_way_id": 717747209, + "src_i": 6211583005, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340488273755548, + 53.79996299085375 + ], + [ + -1.5340202203005402, + 53.79999895472713 + ], + [ + -1.5340546693760249, + 53.800008516315074 + ], + [ + -1.5340832764510397, + 53.799972552441695 + ], + [ + -1.5340488273755548, + 53.79996299085375 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6935272506, + "osm_way_id": 717747209, + "src_i": 6740104094, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339748667665287, + 53.80005591956002 + ], + [ + -1.5339638298466935, + 53.80006976461706 + ], + [ + -1.5339982667418282, + 53.80007934239279 + ], + [ + -1.5340093036616633, + 53.80006549733576 + ], + [ + -1.5339748667665287, + 53.80005591956002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6935272510, + "osm_way_id": 717747209, + "src_i": 6935272506, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5338715423782308, + 53.800185713259985 + ], + [ + -1.5338209391132784, + 53.800249333073204 + ], + [ + -1.5338135547759628, + 53.80026926294062 + ], + [ + -1.5338507383400701, + 53.80027407071424 + ], + [ + -1.5338572091511198, + 53.80025660858547 + ], + [ + -1.5339059944988032, + 53.80019527304928 + ], + [ + -1.5338715423782308, + 53.800185713259985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6740071784, + "osm_way_id": 717747209, + "src_i": 6935272509, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339307388802572, + 53.80011131058001 + ], + [ + -1.5339215366256727, + 53.800122874957296 + ], + [ + -1.5339559857011575, + 53.80013243834388 + ], + [ + -1.533965187955742, + 53.80012087396659 + ], + [ + -1.5339307388802572, + 53.80011131058001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6935272509, + "osm_way_id": 717747209, + "src_i": 6935272510, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5346224959872585, + 53.79958000932683 + ], + [ + -1.5345039933600537, + 53.79964397537889 + ], + [ + -1.5345296695382988, + 53.7996605714609 + ], + [ + -1.5346481721655039, + 53.79959660540884 + ], + [ + -1.5346224959872585, + 53.79958000932683 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6211583005, + "osm_way_id": 717747209, + "src_i": 9319419273, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5378997136092978, + 53.79876161941722 + ], + [ + -1.5368388416469523, + 53.798675699124686 + ], + [ + -1.5365681440213148, + 53.798620716396734 + ], + [ + -1.5365123717202414, + 53.798617698273226 + ], + [ + -1.5364019066016321, + 53.798626321868674 + ], + [ + -1.5364097629275184, + 53.79866143498376 + ], + [ + -1.5365135745298248, + 53.798653331196235 + ], + [ + -1.5365554734120075, + 53.79865559748683 + ], + [ + -1.5368248738303476, + 53.79871031761285 + ], + [ + -1.5378915680000942, + 53.79879670914995 + ], + [ + -1.5378997136092978, + 53.79876161941722 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4540786888, + "osm_way_id": 718449717, + "src_i": 342529363, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5388909550771173, + 53.79882489479024 + ], + [ + -1.5379740502866368, + 53.79876697577706 + ], + [ + -1.5379676738733012, + 53.798802193213454 + ], + [ + -1.5388845786637817, + 53.79886011222664 + ], + [ + -1.5388909550771173, + 53.79882489479024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 342529363, + "osm_way_id": 718449717, + "src_i": 342605804, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532662198036986, + 53.79576003623396 + ], + [ + -1.532548107741645, + 53.79576728656522 + ], + [ + -1.5325545206960312, + 53.795802502202974 + ], + [ + -1.532668610991372, + 53.795795251871716 + ], + [ + -1.532662198036986, + 53.79576003623396 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1606819527, + "osm_way_id": 737539058, + "src_i": 1020737577, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5324494941037914, + 53.79577930420063 + ], + [ + -1.5323032385486302, + 53.79580367042182 + ], + [ + -1.5323195175866875, + 53.795837760108846 + ], + [ + -1.5324657731418485, + 53.79581339388766 + ], + [ + -1.5324494941037914, + 53.79577930420063 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2377604550, + "osm_way_id": 737539058, + "src_i": 1606819527, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5328575449711295, + 53.79576580448312 + ], + [ + -1.5327505238465424, + 53.79575985636963 + ], + [ + -1.5327449056600075, + 53.795795118772105 + ], + [ + -1.5328519267845944, + 53.7958010668856 + ], + [ + -1.5328575449711295, + 53.79576580448312 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1020737577, + "osm_way_id": 737539058, + "src_i": 6905250281, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339680975368988, + 53.7966891443317 + ], + [ + -1.533978596998781, + 53.796701943477636 + ], + [ + -1.5340059997416686, + 53.79669409959407 + ], + [ + -1.5339955002797865, + 53.796681300448135 + ], + [ + -1.5339680975368988, + 53.7966891443317 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6905278499, + "osm_way_id": 737539059, + "src_i": 6905278500, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536426163769078, + 53.79777015145592 + ], + [ + -1.5364406233673222, + 53.79776076523571 + ], + [ + -1.53645808389935, + 53.79758428864744 + ], + [ + -1.5364478341346473, + 53.79745632146978 + ], + [ + -1.53637777580532, + 53.7973743222197 + ], + [ + -1.5363824530598011, + 53.79679579848522 + ], + [ + -1.5363640805240513, + 53.79671810878456 + ], + [ + -1.5363276034202562, + 53.796672949347155 + ], + [ + -1.5362675664740653, + 53.79662933494438 + ], + [ + -1.5361758423467997, + 53.79658347313676 + ], + [ + -1.536139861592276, + 53.79660857860035 + ], + [ + -1.5362276331958977, + 53.796652465497594 + ], + [ + -1.5362801974972342, + 53.79669064979617 + ], + [ + -1.536310118527528, + 53.79672769195622 + ], + [ + -1.5363267462281103, + 53.796798001823305 + ], + [ + -1.5363220232973158, + 53.797382077969736 + ], + [ + -1.5363927667713424, + 53.79746487941475 + ], + [ + -1.536402316165908, + 53.79758411058175 + ], + [ + -1.5363861772018783, + 53.797747234041935 + ], + [ + -1.5363849759148387, + 53.79774801375382 + ], + [ + -1.536426163769078, + 53.79777015145592 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 342579554, + "osm_way_id": 745724293, + "src_i": 342579538, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5361178821503196, + 53.796554400765295 + ], + [ + -1.5360657319808904, + 53.79652815855911 + ], + [ + -1.5360296172425143, + 53.7965531974729 + ], + [ + -1.5360817674119436, + 53.796579439679086 + ], + [ + -1.5361178821503196, + 53.796554400765295 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 342579666, + "osm_way_id": 745724293, + "src_i": 342579554, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358823842142486, + 53.79781714371087 + ], + [ + -1.5358015721582288, + 53.797845042467564 + ], + [ + -1.5358318311932408, + 53.79787562120281 + ], + [ + -1.535912643249261, + 53.79784772244613 + ], + [ + -1.5358823842142486, + 53.79781714371087 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8174077587, + "osm_way_id": 745724294, + "src_i": 342579667, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5362865602076758, + 53.797774063505166 + ], + [ + -1.5362573730434823, + 53.79777799354084 + ], + [ + -1.5359814013262032, + 53.79778672775285 + ], + [ + -1.535987817325677, + 53.79785746479772 + ], + [ + -1.5362740266273085, + 53.797848406829914 + ], + [ + -1.5363132169041132, + 53.797843129610385 + ], + [ + -1.5362865602076758, + 53.797774063505166 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 342579667, + "osm_way_id": 745724295, + "src_i": 342579538, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5365351352722423, + 53.79657094558596 + ], + [ + -1.5365367187177699, + 53.79653111822671 + ], + [ + -1.5365062769775044, + 53.79653069554553 + ], + [ + -1.536504693531977, + 53.79657052290478 + ], + [ + -1.5365351352722423, + 53.79657094558596 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6979945557, + "osm_way_id": 745724296, + "src_i": 5518536453, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5375883838578994, + 53.79704077460606 + ], + [ + -1.5374827893568308, + 53.79703926374566 + ], + [ + -1.5374820524456432, + 53.797057244783026 + ], + [ + -1.5375876469467116, + 53.79705875564343 + ], + [ + -1.5375883838578994, + 53.79704077460606 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640866, + "osm_way_id": 745724297, + "src_i": 6979945558, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5371106096208649, + 53.797033856124486 + ], + [ + -1.5370311130426677, + 53.79703268071108 + ], + [ + -1.5370303517707795, + 53.79705066174844 + ], + [ + -1.5371098483489767, + 53.79705183716186 + ], + [ + -1.5371106096208649, + 53.797033856124486 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640871, + "osm_way_id": 745724297, + "src_i": 8481640863, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5374066895737988, + 53.797038171069836 + ], + [ + -1.537336996654978, + 53.79703716742686 + ], + [ + -1.537336253653615, + 53.797055148464224 + ], + [ + -1.537405946572436, + 53.7970561521072 + ], + [ + -1.5374066895737988, + 53.797038171069836 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640881, + "osm_way_id": 745724297, + "src_i": 8481640866, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5369547346341246, + 53.79703174991315 + ], + [ + -1.536895251893868, + 53.797031179743215 + ], + [ + -1.5368947585896844, + 53.79704916437787 + ], + [ + -1.5369542413299409, + 53.797049734547805 + ], + [ + -1.5369547346341246, + 53.79703174991315 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640874, + "osm_way_id": 745724297, + "src_i": 8481640871, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368195251340613, + 53.7970301743016 + ], + [ + -1.5367543221968367, + 53.79702906723662 + ], + [ + -1.5367534482567091, + 53.79704704647535 + ], + [ + -1.5368186511939335, + 53.79704815354032 + ], + [ + -1.5368195251340613, + 53.7970301743016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640877, + "osm_way_id": 745724297, + "src_i": 8481640874, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5366781752149477, + 53.79702781088426 + ], + [ + -1.5365857750782455, + 53.7970263306008 + ], + [ + -1.5365849498595188, + 53.79704430983952 + ], + [ + -1.536677349996221, + 53.79704579012298 + ], + [ + -1.5366781752149477, + 53.79702781088426 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6979945559, + "osm_way_id": 745724297, + "src_i": 8481640877, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5372609044846648, + 53.79703606216054 + ], + [ + -1.5371867063588094, + 53.797034975779965 + ], + [ + -1.5371859511770962, + 53.79705295681733 + ], + [ + -1.5372601493029516, + 53.7970540431979 + ], + [ + -1.5372609044846648, + 53.79703606216054 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640863, + "osm_way_id": 745724297, + "src_i": 8481640881, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339758351043704, + 53.796398140928055 + ], + [ + -1.5338068906018534, + 53.79610520308351 + ], + [ + -1.5337115869741698, + 53.79598319481121 + ], + [ + -1.5335272160581102, + 53.795881611033224 + ], + [ + -1.533515082906756, + 53.795877700782626 + ], + [ + -1.5334863646860455, + 53.79590879392987 + ], + [ + -1.5334918534563595, + 53.795910561996266 + ], + [ + -1.5336620708054736, + 53.79600434865541 + ], + [ + -1.5337511411389368, + 53.79611837634726 + ], + [ + -1.5339190746723863, + 53.7964095623132 + ], + [ + -1.5339758351043704, + 53.796398140928055 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6264670261, + "osm_way_id": 760129761, + "src_i": 5728993707, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340243037629484, + 53.79649292133764 + ], + [ + -1.5341008663992886, + 53.79648050710138 + ], + [ + -1.5340751658603429, + 53.79642520421492 + ], + [ + -1.5339986032240027, + 53.79643761845118 + ], + [ + -1.5340243037629484, + 53.79649292133764 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5728993836, + "osm_way_id": 760129762, + "src_i": 5728993707, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5343087210305553, + 53.797754957416394 + ], + [ + -1.5343205679436793, + 53.79776171671803 + ], + [ + -1.5343628794352255, + 53.79773584323373 + ], + [ + -1.5343510325221015, + 53.7977290839321 + ], + [ + -1.5343087210305553, + 53.797754957416394 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1606959655, + "osm_way_id": 760649541, + "src_i": 7105816299, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5335533139809814, + 53.79763495553072 + ], + [ + -1.5335486245461503, + 53.7976289606525 + ], + [ + -1.5334357492407429, + 53.79766472307783 + ], + [ + -1.533450143369605, + 53.79768057272285 + ], + [ + -1.5335883020369632, + 53.79763679914013 + ], + [ + -1.533580957285786, + 53.79762741022195 + ], + [ + -1.5335533139809814, + 53.79763495553072 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1606959650, + "osm_way_id": 760649542, + "src_i": 7105816301, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533332255850086, + 53.79776583021532 + ], + [ + -1.5332366507587343, + 53.79781110296725 + ], + [ + -1.5332556977813772, + 53.797825135982514 + ], + [ + -1.5333513028727286, + 53.79777986323058 + ], + [ + -1.533332255850086, + 53.79776583021532 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26661446, + "osm_way_id": 760649543, + "src_i": 6596024421, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5351870019305158, + 53.79824735401434 + ], + [ + -1.535112887544568, + 53.79842966360293 + ], + [ + -1.5351869105778893, + 53.798440162284045 + ], + [ + -1.5352610249638368, + 53.798257852695464 + ], + [ + -1.5351870019305158, + 53.79824735401434 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437001, + "osm_way_id": 775795899, + "src_i": 1675168026, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534945374233201, + 53.798422976247025 + ], + [ + -1.5349199599324852, + 53.798420841257396 + ], + [ + -1.5349092412242995, + 53.79846535947845 + ], + [ + -1.5349346555250152, + 53.798467494468085 + ], + [ + -1.534945374233201, + 53.798422976247025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237435066, + "osm_way_id": 775795899, + "src_i": 7237435065, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5348680153064658, + 53.798459031851216 + ], + [ + -1.534824427923235, + 53.798555583025156 + ], + [ + -1.5348979850581606, + 53.79856716808685 + ], + [ + -1.5349415724413913, + 53.7984706169129 + ], + [ + -1.5348680153064658, + 53.798459031851216 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237436996, + "osm_way_id": 775795899, + "src_i": 7237435066, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5347605115355016, + 53.79841537338167 + ], + [ + -1.5347497669440717, + 53.798404760486704 + ], + [ + -1.5346844315455388, + 53.79842783887927 + ], + [ + -1.5346951761369687, + 53.79843845177424 + ], + [ + -1.5347605115355016, + 53.79841537338167 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4029217614, + "osm_way_id": 775795899, + "src_i": 7237435071, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5348353871933376, + 53.79857594456697 + ], + [ + -1.5347678197456285, + 53.79857406588401 + ], + [ + -1.5347701690306754, + 53.79848280631875 + ], + [ + -1.534694050977118, + 53.79848212283429 + ], + [ + -1.5346905810998517, + 53.798616934749134 + ], + [ + -1.5348318092154631, + 53.7986208602882 + ], + [ + -1.5348353871933376, + 53.79857594456697 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237435071, + "osm_way_id": 775795899, + "src_i": 7237436996, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5350116931950135, + 53.79857265664697 + ], + [ + -1.535015018430621, + 53.79847131388719 + ], + [ + -1.5349389064672387, + 53.798470443343824 + ], + [ + -1.5349355812316312, + 53.798571786103594 + ], + [ + -1.5350116931950135, + 53.79857265664697 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237435065, + "osm_way_id": 775795899, + "src_i": 7237436997, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5350372034159872, + 53.79861571347031 + ], + [ + -1.5350381885018103, + 53.798613288899105 + ], + [ + -1.5350103807622781, + 53.7986126243004 + ], + [ + -1.5350102163275503, + 53.79861761553563 + ], + [ + -1.534934104364168, + 53.79861674139498 + ], + [ + -1.5349328193372207, + 53.79865577555252 + ], + [ + -1.5350976103403158, + 53.798659711883445 + ], + [ + -1.535111226449308, + 53.798626210352786 + ], + [ + -1.5350372034159872, + 53.79861571347031 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237436997, + "osm_way_id": 775795899, + "src_i": 7237436998, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535093794845612, + 53.79847660729451 + ], + [ + -1.5350549852047517, + 53.798571985753 + ], + [ + -1.5351290051929851, + 53.79858249342733 + ], + [ + -1.5351678148338457, + 53.79848711496884 + ], + [ + -1.535093794845612, + 53.79847660729451 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237436998, + "osm_way_id": 775795899, + "src_i": 7237437001, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5346748577902727, + 53.79841089206182 + ], + [ + -1.5346915570504123, + 53.79842609149728 + ], + [ + -1.5347170992448051, + 53.79841629968299 + ], + [ + -1.5347003999846656, + 53.79840110024753 + ], + [ + -1.5346748577902727, + 53.79841089206182 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4029217614, + "osm_way_id": 775795900, + "src_i": 7237435069, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353642519093331, + 53.79845174554709 + ], + [ + -1.5352549896003072, + 53.79844781461209 + ], + [ + -1.535253138187075, + 53.79846576866981 + ], + [ + -1.535362400496101, + 53.7984696996048 + ], + [ + -1.5353642519093331, + 53.79845174554709 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437002, + "osm_way_id": 775795901, + "src_i": 7237435070, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5348792592922547, + 53.7984229375762 + ], + [ + -1.5347744397659682, + 53.798416748444495 + ], + [ + -1.5347714099038532, + 53.79843464494563 + ], + [ + -1.5348762294301395, + 53.798440834077326 + ], + [ + -1.5348792592922547, + 53.7984229375762 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237435071, + "osm_way_id": 775795902, + "src_i": 7237435066, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5346443429679062, + 53.798448066422154 + ], + [ + -1.5346093944980626, + 53.798465863997905 + ], + [ + -1.5345941355643355, + 53.79870287752472 + ], + [ + -1.5345179459512206, + 53.798862616837475 + ], + [ + -1.5344336670630219, + 53.79892055293777 + ], + [ + -1.5343335735126173, + 53.79893420194268 + ], + [ + -1.5342264777833854, + 53.79893384401266 + ], + [ + -1.5342260453809529, + 53.798978810095896 + ], + [ + -1.534342026675664, + 53.79897919860286 + ], + [ + -1.5344751320202283, + 53.7989610475937 + ], + [ + -1.534586655306762, + 53.798884384019054 + ], + [ + -1.5346698638466862, + 53.79870992281064 + ], + [ + -1.5346842062090598, + 53.798487136552566 + ], + [ + -1.534694050977118, + 53.798482123733606 + ], + [ + -1.5346443429679062, + 53.798448066422154 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437091, + "osm_way_id": 775795904, + "src_i": 7237435071, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5348843050023295, + 53.798604461157645 + ], + [ + -1.5349300894162297, + 53.79860883276026 + ], + [ + -1.534934949375964, + 53.79859107655331 + ], + [ + -1.5348891649620637, + 53.798586704950694 + ], + [ + -1.5348843050023295, + 53.798604461157645 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237436997, + "osm_way_id": 775795907, + "src_i": 7237436996, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5351237645973068, + 53.79861618831215 + ], + [ + -1.5351755189053542, + 53.79861502728789 + ], + [ + -1.535174361772084, + 53.79859705344509 + ], + [ + -1.5351226074640367, + 53.79859821446936 + ], + [ + -1.5351237645973068, + 53.79861618831215 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237436999, + "osm_way_id": 775795908, + "src_i": 7237436998, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5351053250696307, + 53.79843942124299 + ], + [ + -1.53501934397749, + 53.798433264486874 + ], + [ + -1.5350156807371638, + 53.79845111961921 + ], + [ + -1.5351016618293047, + 53.79845727637532 + ], + [ + -1.5351053250696307, + 53.79843942124299 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237435065, + "osm_way_id": 775795909, + "src_i": 7237437001, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5352509213633367, + 53.79857399034099 + ], + [ + -1.5352526996944675, + 53.79848715274036 + ], + [ + -1.5351765785958225, + 53.79848660955007 + ], + [ + -1.5351748002646917, + 53.79857344715071 + ], + [ + -1.5352509213633367, + 53.79857399034099 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437002, + "osm_way_id": 775795910, + "src_i": 7237436999, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5352188428885116, + 53.79844202567853 + ], + [ + -1.535186912100433, + 53.798440162284045 + ], + [ + -1.5351794272752282, + 53.798484910731446 + ], + [ + -1.5352113580633069, + 53.798486774125934 + ], + [ + -1.5352188428885116, + 53.79844202567853 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437001, + "osm_way_id": 775795910, + "src_i": 7237437002, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5357346852875877, + 53.79906456761122 + ], + [ + -1.535743126270284, + 53.79907124237661 + ], + [ + -1.5358041163288791, + 53.79904433287376 + ], + [ + -1.5357956753461828, + 53.79903765810836 + ], + [ + -1.5357346852875877, + 53.79906456761122 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437041, + "osm_way_id": 775795915, + "src_i": 7237437075, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5354943045536256, + 53.79881000202347 + ], + [ + -1.53551748071499, + 53.79881421174819 + ], + [ + -1.5355387765347905, + 53.798765115080535 + ], + [ + -1.5354848054030048, + 53.79875409839014 + ], + [ + -1.535459942263136, + 53.79879659853338 + ], + [ + -1.535447624883985, + 53.79879408403001 + ], + [ + -1.5354257200466739, + 53.79884458903538 + ], + [ + -1.5354719292502876, + 53.79885298240448 + ], + [ + -1.5354943045536256, + 53.79881000202347 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 682218116, + "osm_way_id": 775795916, + "src_i": 6211583022, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535600846076923, + 53.79883696188834 + ], + [ + -1.535584469596064, + 53.79883213163168 + ], + [ + -1.535550459013187, + 53.798872360088396 + ], + [ + -1.535566835494046, + 53.79887719034505 + ], + [ + -1.535600846076923, + 53.79883696188834 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6211583022, + "osm_way_id": 775795916, + "src_i": 7237437048, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5355561959581363, + 53.79883700955239 + ], + [ + -1.5355486228253925, + 53.79884995888504 + ], + [ + -1.5356205782442653, + 53.79886464121054 + ], + [ + -1.5356281513770091, + 53.79885169187789 + ], + [ + -1.5355561959581363, + 53.79883700955239 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437048, + "osm_way_id": 775795918, + "src_i": 5452444915, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5355993631192848, + 53.7988878769844 + ], + [ + -1.5356849711882006, + 53.79891600326947 + ], + [ + -1.5356961588398697, + 53.79893689720971 + ], + [ + -1.5356491350753354, + 53.79899249237571 + ], + [ + -1.535675864853874, + 53.799015529399476 + ], + [ + -1.5357386606493877, + 53.798990109173296 + ], + [ + -1.5357372659992885, + 53.79898890767955 + ], + [ + -1.5357780412441644, + 53.798940703138996 + ], + [ + -1.5357484277677134, + 53.79888539755457 + ], + [ + -1.5356363670232265, + 53.79884858022493 + ], + [ + -1.5355993631192848, + 53.7988878769844 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437075, + "osm_way_id": 775795918, + "src_i": 7237437048, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5348821825763053, + 53.797590709804126 + ], + [ + -1.5348227059262238, + 53.79747376381347 + ], + [ + -1.534749797394947, + 53.79748670145494 + ], + [ + -1.5348092740450285, + 53.7976036474456 + ], + [ + -1.5348821825763053, + 53.797590709804126 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5452444905, + "osm_way_id": 775795921, + "src_i": 5452444904, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353389715924697, + 53.79812846818686 + ], + [ + -1.5352845269495694, + 53.79805183159186 + ], + [ + -1.5352143285462148, + 53.798069231667434 + ], + [ + -1.535268773189115, + 53.79814586826243 + ], + [ + -1.5353389715924697, + 53.79812846818686 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5452456322, + "osm_way_id": 775795921, + "src_i": 5452444908, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353759328651857, + 53.79871210186703 + ], + [ + -1.5354280921698775, + 53.79855923517044 + ], + [ + -1.5354462804778304, + 53.79840890905755 + ], + [ + -1.5354009848004826, + 53.79824176652884 + ], + [ + -1.5353660043572197, + 53.798172965723516 + ], + [ + -1.5352930927808555, + 53.798185899767695 + ], + [ + -1.5353266146271805, + 53.79825183353556 + ], + [ + -1.535369720886578, + 53.7984108911625 + ], + [ + -1.5353525070066418, + 53.7985531647492 + ], + [ + -1.5353013069045292, + 53.79870321836763 + ], + [ + -1.5353759328651857, + 53.79871210186703 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5452444908, + "osm_way_id": 775795921, + "src_i": 5452444913, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535253588860033, + 53.79801002482563 + ], + [ + -1.535232206255237, + 53.7979822573699 + ], + [ + -1.535162909197798, + 53.79800087512701 + ], + [ + -1.5351842918025937, + 53.798028642582736 + ], + [ + -1.535253588860033, + 53.79801002482563 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6309407701, + "osm_way_id": 775795921, + "src_i": 5452456322, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5352006880765219, + 53.79794132564365 + ], + [ + -1.5351446706459004, + 53.7978685804135 + ], + [ + -1.534910224787579, + 53.79762986626942 + ], + [ + -1.5348443747692497, + 53.79765243024999 + ], + [ + -1.535076929628201, + 53.79788921984571 + ], + [ + -1.5351313910190827, + 53.797959943400755 + ], + [ + -1.5352006880765219, + 53.79794132564365 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5452444904, + "osm_way_id": 775795921, + "src_i": 6309407701, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535355201909126, + 53.79871100919121 + ], + [ + -1.5353443796679636, + 53.79870862958609 + ], + [ + -1.5353178204143278, + 53.79875077000066 + ], + [ + -1.5353286426554906, + 53.79875314960579 + ], + [ + -1.535355201909126, + 53.79871100919121 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5452444913, + "osm_way_id": 775795921, + "src_i": 7237437070, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535391394297235, + 53.79870235861612 + ], + [ + -1.5353690661927542, + 53.79870769429156 + ], + [ + -1.5353919073944877, + 53.79874104113889 + ], + [ + -1.5354142354989686, + 53.79873570546345 + ], + [ + -1.535391394297235, + 53.79870235861612 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437070, + "osm_way_id": 775795922, + "src_i": 5452444914, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5355204253146537, + 53.798722158981214 + ], + [ + -1.5354984306472597, + 53.79871324220691 + ], + [ + -1.5354639663463372, + 53.79874290183541 + ], + [ + -1.535485961013731, + 53.79875181860972 + ], + [ + -1.5355204253146537, + 53.798722158981214 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5452444914, + "osm_way_id": 775795922, + "src_i": 6211583020, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5356082121437133, + 53.79878348912147 + ], + [ + -1.535607533089189, + 53.798782573612016 + ], + [ + -1.5355517501303093, + 53.79879700952338 + ], + [ + -1.5355524291848335, + 53.79879792503284 + ], + [ + -1.5356082121437133, + 53.79878348912147 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6211583020, + "osm_way_id": 775795922, + "src_i": 7237437077, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535633096599195, + 53.798805725748956 + ], + [ + -1.535630304253909, + 53.798802064610456 + ], + [ + -1.5355608945282304, + 53.798820534878814 + ], + [ + -1.5355636868735163, + 53.79882419601731 + ], + [ + -1.535633096599195, + 53.798805725748956 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437077, + "osm_way_id": 775795923, + "src_i": 5452444915, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5341521197904335, + 53.79893683965312 + ], + [ + -1.5340285090288588, + 53.798932249515346 + ], + [ + -1.5340265997589633, + 53.79895019997578 + ], + [ + -1.5341502105205378, + 53.798954790113555 + ], + [ + -1.5341521197904335, + 53.79893683965312 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437092, + "osm_way_id": 775795925, + "src_i": 7237437091, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534187442806046, + 53.79910118529145 + ], + [ + -1.5342135650896178, + 53.79898078680492 + ], + [ + -1.5341833608661815, + 53.79897850072925 + ], + [ + -1.5341572385826097, + 53.79909889921578 + ], + [ + -1.534187442806046, + 53.79910118529145 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437091, + "osm_way_id": 775795925, + "src_i": 7237437093, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534097076787829, + 53.79930541224832 + ], + [ + -1.534144606036897, + 53.799307523855596 + ], + [ + -1.5341780182600702, + 53.79914569541861 + ], + [ + -1.534147792721021, + 53.799143517261534 + ], + [ + -1.5341179006190588, + 53.799288299955684 + ], + [ + -1.5340993606034936, + 53.79928747617704 + ], + [ + -1.534097076787829, + 53.79930541224832 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437093, + "osm_way_id": 775795925, + "src_i": 7237437096, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5341164328868584, + 53.799101766253244 + ], + [ + -1.5339960133770392, + 53.7990970529084 + ], + [ + -1.5339940005741668, + 53.79911499977154 + ], + [ + -1.534114420083986, + 53.79911971311639 + ], + [ + -1.5341164328868584, + 53.799101766253244 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437094, + "osm_way_id": 775795926, + "src_i": 7237437093, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353749888880441, + 53.797630303339744 + ], + [ + -1.5354938203847048, + 53.79773985780564 + ], + [ + -1.5355407116879303, + 53.797722112390545 + ], + [ + -1.5354218801912698, + 53.79761255792466 + ], + [ + -1.5353749888880441, + 53.797630303339744 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1601683577, + "osm_way_id": 775795929, + "src_i": 7237437116, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5338347699009431, + 53.79643803483711 + ], + [ + -1.5338181300200109, + 53.796428165681164 + ], + [ + -1.5337641893391005, + 53.79645989554814 + ], + [ + -1.5337808292200328, + 53.79646976470409 + ], + [ + -1.5338347699009431, + 53.79643803483711 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6264670275, + "osm_way_id": 776103800, + "src_i": 7241259894, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5326946678055613, + 53.79570871554383 + ], + [ + -1.532687635175858, + 53.795706680378906 + ], + [ + -1.5326761886917473, + 53.79570085817045 + ], + [ + -1.5326265141784983, + 53.795734931669685 + ], + [ + -1.5326453663155377, + 53.79574452023728 + ], + [ + -1.5326611718424805, + 53.795749095086585 + ], + [ + -1.5326946678055613, + 53.79570871554383 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1020737601, + "osm_way_id": 776103801, + "src_i": 475070619, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5325850233380476, + 53.795642408557484 + ], + [ + -1.5325678505667937, + 53.79560286088727 + ], + [ + -1.532243311225591, + 53.795440873270344 + ], + [ + -1.532194175692839, + 53.79547521836473 + ], + [ + -1.5325001491352321, + 53.795627939371215 + ], + [ + -1.532511283497869, + 53.795653579931205 + ], + [ + -1.5325850233380476, + 53.795642408557484 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 475070635, + "osm_way_id": 776103802, + "src_i": 1020737601, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535234563153003, + 53.797662070078914 + ], + [ + -1.535228338994045, + 53.79766641290323 + ], + [ + -1.535270842326107, + 53.79768766567282 + ], + [ + -1.535277066485065, + 53.7976833228485 + ], + [ + -1.535234563153003, + 53.797662070078914 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5452444896, + "osm_way_id": 777360594, + "src_i": 5452444895, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534186693714508, + 53.79649913924763 + ], + [ + -1.5341826270000813, + 53.7964994369231 + ], + [ + -1.5341945667883758, + 53.79655634959534 + ], + [ + -1.5341986335028026, + 53.79655605191987 + ], + [ + -1.534186693714508, + 53.79649913924763 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 342628235, + "osm_way_id": 778025015, + "src_i": 643914, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340656697548094, + 53.79560495270946 + ], + [ + -1.53408415952643, + 53.79559332088305 + ], + [ + -1.5340133795113526, + 53.79555406729102 + ], + [ + -1.5339948897397322, + 53.79556569911743 + ], + [ + -1.5340656697548094, + 53.79560495270946 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 682264890, + "osm_way_id": 778025016, + "src_i": 26661426, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5341718306421628, + 53.796410681069354 + ], + [ + -1.5341259853265117, + 53.79629049931935 + ], + [ + -1.5339667576983755, + 53.79594898191711 + ], + [ + -1.5339429451137128, + 53.795874625102535 + ], + [ + -1.533942288897345, + 53.79575942199726 + ], + [ + -1.5339692638054316, + 53.79569288658321 + ], + [ + -1.5340076258184216, + 53.79563921506625 + ], + [ + -1.5339181794166457, + 53.79561691009032 + ], + [ + -1.5338767114143517, + 53.79567492712956 + ], + [ + -1.5338451597396734, + 53.79575275082915 + ], + [ + -1.5338458859930546, + 53.79588009117961 + ], + [ + -1.5338721041968844, + 53.79596196092737 + ], + [ + -1.5340317824979781, + 53.79630444240244 + ], + [ + -1.5340771162389204, + 53.79642328596181 + ], + [ + -1.5341718306421628, + 53.796410681069354 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26661426, + "osm_way_id": 778025016, + "src_i": 5728993836, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5341828995354172, + 53.79644592908269 + ], + [ + -1.5342329775227668, + 53.79644113389957 + ], + [ + -1.5342268873476612, + 53.79641894043952 + ], + [ + -1.5341768093603116, + 53.79642373562264 + ], + [ + -1.5341828995354172, + 53.79644592908269 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5728993833, + "osm_way_id": 778025017, + "src_i": 5728993836, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5327904464669033, + 53.79662724042422 + ], + [ + -1.5330420316005158, + 53.796597636553656 + ], + [ + -1.53344069903056, + 53.79653588103425 + ], + [ + -1.5335283031543665, + 53.79652896165336 + ], + [ + -1.5336819415242993, + 53.79649529105023 + ], + [ + -1.5337560300270028, + 53.796456475427846 + ], + [ + -1.5337156186700895, + 53.7964295623277 + ], + [ + -1.5336500594576215, + 53.79646390832141 + ], + [ + -1.5335134979386849, + 53.79649383774642 + ], + [ + -1.5334289023613805, + 53.796500519706385 + ], + [ + -1.5330283682926664, + 53.79656256300873 + ], + [ + -1.532778546264747, + 53.79659196003531 + ], + [ + -1.5327904464669033, + 53.79662724042422 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6264670275, + "osm_way_id": 778025023, + "src_i": 6264559092, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5322149462350367, + 53.79670672337228 + ], + [ + -1.5324845993956437, + 53.79666401368709 + ], + [ + -1.5327133037413845, + 53.79663642969299 + ], + [ + -1.5327011203460856, + 53.7966011834783 + ], + [ + -1.5324706011281635, + 53.79662898690689 + ], + [ + -1.5321991726815132, + 53.79667197718044 + ], + [ + -1.5322149462350367, + 53.79670672337228 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6264559092, + "osm_way_id": 778025023, + "src_i": 7261160050, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340711509124045, + 53.79536519984886 + ], + [ + -1.5340775623442469, + 53.795410005852844 + ], + [ + -1.534174307820887, + 53.79540517649551 + ], + [ + -1.5341678963890446, + 53.795360370491515 + ], + [ + -1.5340711509124045, + 53.79536519984886 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320943620, + "osm_way_id": 778025048, + "src_i": 6264670282, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5362452733880911, + 53.798829320352155 + ], + [ + -1.5362493172643612, + 53.79883111000227 + ], + [ + -1.5362949631267777, + 53.79879512454517 + ], + [ + -1.5362909192505076, + 53.79879333489506 + ], + [ + -1.5362452733880911, + 53.798829320352155 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2014304912, + "osm_way_id": 778102285, + "src_i": 2014304908, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5364211241491779, + 53.798834824200746 + ], + [ + -1.5364293626335521, + 53.79883381066523 + ], + [ + -1.536413838777208, + 53.79878978886973 + ], + [ + -1.5364056002928337, + 53.79879080240525 + ], + [ + -1.5364211241491779, + 53.798834824200746 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7261942271, + "osm_way_id": 778102285, + "src_i": 2014304911, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363334865294083, + 53.79884571588543 + ], + [ + -1.5363445097463495, + 53.79884433542667 + ], + [ + -1.5363287209673882, + 53.7988003478054 + ], + [ + -1.5363176977504471, + 53.79880172826415 + ], + [ + -1.5363334865294083, + 53.79884571588543 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2014304911, + "osm_way_id": 778102285, + "src_i": 2014304912, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536122850210662, + 53.798748921894635 + ], + [ + -1.5361410369960713, + 53.79876421845684 + ], + [ + -1.536203336442314, + 53.798738375549476 + ], + [ + -1.536185149656905, + 53.79872307898727 + ], + [ + -1.536122850210662, + 53.798748921894635 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2014304908, + "osm_way_id": 778102285, + "src_i": 6309394782, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5357782406973992, + 53.7991052969901 + ], + [ + -1.5358110195423613, + 53.79909656997266 + ], + [ + -1.5357797373579314, + 53.79905557529389 + ], + [ + -1.5357469585129693, + 53.79906430231133 + ], + [ + -1.5357782406973992, + 53.7991052969901 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7237437041, + "osm_way_id": 778102286, + "src_i": 7261942252, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5365315314111236, + 53.79890128676974 + ], + [ + -1.5365376215862292, + 53.798903345317036 + ], + [ + -1.536703074895867, + 53.79892617729546 + ], + [ + -1.5367203953538673, + 53.79888239112224 + ], + [ + -1.53656577951083, + 53.798861053816424 + ], + [ + -1.5365693361730917, + 53.79886225620949 + ], + [ + -1.5365315314111236, + 53.79890128676974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7261942277, + "osm_way_id": 778102289, + "src_i": 7261942269, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5364127471133202, + 53.79884316361054 + ], + [ + -1.5364337262440153, + 53.79886051422342 + ], + [ + -1.536463973098677, + 53.79887447349431 + ], + [ + -1.53651084308629, + 53.79883904022071 + ], + [ + -1.5364892747311534, + 53.79882908652852 + ], + [ + -1.5364746963744944, + 53.79881702932296 + ], + [ + -1.5364127471133202, + 53.79884316361054 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7261942269, + "osm_way_id": 778102289, + "src_i": 7261942271, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5367708296164606, + 53.798704520585396 + ], + [ + -1.5365304077738167, + 53.798679081473466 + ], + [ + -1.5364606204572815, + 53.79868600984757 + ], + [ + -1.5363993319801064, + 53.79870972406055 + ], + [ + -1.5363683162408373, + 53.79874644696142 + ], + [ + -1.536378803522369, + 53.79879251381438 + ], + [ + -1.5364542516566648, + 53.7987865207348 + ], + [ + -1.536446882544787, + 53.79875415234944 + ], + [ + -1.5364582666046032, + 53.79874067511497 + ], + [ + -1.5364889793576608, + 53.79872879057917 + ], + [ + -1.5365299936419095, + 53.79872471845067 + ], + [ + -1.5367574068705279, + 53.79874878160046 + ], + [ + -1.5367708296164606, + 53.798704520585396 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7261942271, + "osm_way_id": 778102289, + "src_i": 7261942276, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5367839524212694, + 53.79888934197939 + ], + [ + -1.5367862590750907, + 53.79887892603587 + ], + [ + -1.536756063986917, + 53.79887659319547 + ], + [ + -1.5367537573330958, + 53.798887009138994 + ], + [ + -1.5367839524212694, + 53.79888934197939 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4500478004, + "osm_way_id": 778102290, + "src_i": 7261942277, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363846698835395, + 53.799164093741226 + ], + [ + -1.5363491611175863, + 53.799160916437785 + ], + [ + -1.536340038035278, + 53.799196482810984 + ], + [ + -1.5363755468012315, + 53.79919966011443 + ], + [ + -1.5363846698835395, + 53.799164093741226 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7261942264, + "osm_way_id": 778102291, + "src_i": 800488938, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363490986932915, + 53.79916091104185 + ], + [ + -1.536332099492028, + 53.79915941097332 + ], + [ + -1.5363231012583094, + 53.79919498813838 + ], + [ + -1.536340100459573, + 53.79919648820692 + ], + [ + -1.5363490986932915, + 53.79916091104185 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7261942280, + "osm_way_id": 778102291, + "src_i": 7261942264, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5343160855748017, + 53.79713294518417 + ], + [ + -1.5343300259856183, + 53.79713012671007 + ], + [ + -1.5343007444237107, + 53.797079599221654 + ], + [ + -1.5342868040128939, + 53.79708241769575 + ], + [ + -1.5343160855748017, + 53.79713294518417 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6264670255, + "osm_way_id": 779181824, + "src_i": 26661455, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5343661133182067, + 53.79712282871476 + ], + [ + -1.5343898558658557, + 53.79711800655199 + ], + [ + -1.5343604555455335, + 53.79706750424458 + ], + [ + -1.5343367129978844, + 53.797072326407346 + ], + [ + -1.5343661133182067, + 53.79712282871476 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26661432, + "osm_way_id": 779181824, + "src_i": 6264670255, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339797586996822, + 53.79716034841462 + ], + [ + -1.5339799596754606, + 53.79716033222683 + ], + [ + -1.5339718566974827, + 53.797125238896825 + ], + [ + -1.5339716557217042, + 53.79712525508461 + ], + [ + -1.5339797586996822, + 53.79716034841462 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9740274255, + "osm_way_id": 779181825, + "src_i": 26661454, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5333245213277018, + 53.797215239411756 + ], + [ + -1.5338993562079382, + 53.79716688018787 + ], + [ + -1.533890899999804, + 53.797131815636156 + ], + [ + -1.5333160651195676, + 53.797180174860046 + ], + [ + -1.5333245213277018, + 53.797215239411756 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26661454, + "osm_way_id": 779181825, + "src_i": 5506378793, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340175391009498, + 53.79715741212938 + ], + [ + -1.5341877640627828, + 53.797144179510404 + ], + [ + -1.5341799412328596, + 53.797109062798036 + ], + [ + -1.5340097162710267, + 53.79712229541701 + ], + [ + -1.5340175391009498, + 53.79715741212938 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26661455, + "osm_way_id": 779181825, + "src_i": 9740274255, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53584778440693, + 53.799085276291194 + ], + [ + -1.5361510385861383, + 53.79899139070667 + ], + [ + -1.536207046881497, + 53.79898902728934 + ], + [ + -1.536201620535478, + 53.79894417631926 + ], + [ + -1.536129762559407, + 53.79894720883192 + ], + [ + -1.5358124431207922, + 53.79904544893194 + ], + [ + -1.53584778440693, + 53.799085276291194 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7261942265, + "osm_way_id": 779181826, + "src_i": 7237437041, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5362671371167202, + 53.798993210034396 + ], + [ + -1.5362761262151763, + 53.79899488636998 + ], + [ + -1.5362990465891861, + 53.798952006713 + ], + [ + -1.5362900574907303, + 53.798950330377416 + ], + [ + -1.5362671371167202, + 53.798993210034396 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7261942266, + "osm_way_id": 779181826, + "src_i": 7261942265, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5362943754248801, + 53.79899886496903 + ], + [ + -1.536331527015568, + 53.79906611264584 + ], + [ + -1.536311881633221, + 53.79915345116864 + ], + [ + -1.5363873449929546, + 53.79915937410113 + ], + [ + -1.5364092741909663, + 53.79906188763266 + ], + [ + -1.5363667480207475, + 53.79898491469136 + ], + [ + -1.5362943754248801, + 53.79899886496903 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7261942264, + "osm_way_id": 779181826, + "src_i": 7261942266, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5321935072961212, + 53.799509292067036 + ], + [ + -1.533329777148818, + 53.79972576958363 + ], + [ + -1.5333525696291506, + 53.79968402846788 + ], + [ + -1.532216299776454, + 53.799467550951285 + ], + [ + -1.5321935072961212, + 53.799509292067036 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2165840661, + "osm_way_id": 812851864, + "src_i": 9892308679, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363985524376929, + 53.80030923329202 + ], + [ + -1.5366330302694335, + 53.80035350509893 + ], + [ + -1.5366556369994255, + 53.80031172980896 + ], + [ + -1.5364211591676848, + 53.80026745800204 + ], + [ + -1.5363985524376929, + 53.80030923329202 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 21133749, + "osm_way_id": 812851867, + "src_i": 358163080, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363826403326857, + 53.800351429464534 + ], + [ + -1.5363100530581457, + 53.800337877586365 + ], + [ + -1.5362876747097203, + 53.80037969604378 + ], + [ + -1.53636026198426, + 53.800393247921946 + ], + [ + -1.5363826403326857, + 53.800351429464534 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 358163085, + "osm_way_id": 812851868, + "src_i": 7592482435, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5351936706722564, + 53.79773185024553 + ], + [ + -1.535223587134919, + 53.797760777826205 + ], + [ + -1.535306440922143, + 53.79773088257542 + ], + [ + -1.5352765244594806, + 53.79770195499475 + ], + [ + -1.5351936706722564, + 53.79773185024553 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26660391, + "osm_way_id": 813941484, + "src_i": 5452444896, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534205044934645, + 53.7995095312866 + ], + [ + -1.5343054703995926, + 53.799495374164955 + ], + [ + -1.5343541217634238, + 53.799495747383446 + ], + [ + -1.5343814879652606, + 53.79950094186538 + ], + [ + -1.5344181782251844, + 53.799433499935084 + ], + [ + -1.5343736773156877, + 53.79942505350601 + ], + [ + -1.5342921298710237, + 53.79942442667881 + ], + [ + -1.5341772036991497, + 53.79944062885792 + ], + [ + -1.534205044934645, + 53.7995095312866 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 643951, + "osm_way_id": 823888306, + "src_i": 1152092841, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340130003979524, + 53.799556590091356 + ], + [ + -1.534136809090218, + 53.79952372258247 + ], + [ + -1.534087646151678, + 53.79945910991814 + ], + [ + -1.5339638374594124, + 53.799491977427024 + ], + [ + -1.5340130003979524, + 53.799556590091356 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1152092841, + "osm_way_id": 823888306, + "src_i": 1569783677, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5321834615522845, + 53.80004954696671 + ], + [ + -1.5324841167492667, + 53.800128939982606 + ], + [ + -1.5325151857775678, + 53.80008788954589 + ], + [ + -1.5322145305805859, + 53.80000849653 + ], + [ + -1.5321834615522845, + 53.80004954696671 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8312439358, + "osm_way_id": 823888307, + "src_i": 7692244823, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532619536360371, + 53.80016578159393 + ], + [ + -1.532760310757937, + 53.8002075317029 + ], + [ + -1.5327944705501044, + 53.80016734641362 + ], + [ + -1.5326536961525383, + 53.80012559630465 + ], + [ + -1.532619536360371, + 53.80016578159393 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1591373193, + "osm_way_id": 823888307, + "src_i": 8312439358, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5356825198927206, + 53.79850149782023 + ], + [ + -1.535688494354499, + 53.798495523626414 + ], + [ + -1.535753190284646, + 53.79845881781266 + ], + [ + -1.5358048014735783, + 53.79844245375565 + ], + [ + -1.5357449228719402, + 53.79837656585319 + ], + [ + -1.535678010118055, + 53.79839778264991 + ], + [ + -1.5355883048838368, + 53.798448676162245 + ], + [ + -1.535573514893593, + 53.79846346550703 + ], + [ + -1.5356825198927206, + 53.79850149782023 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2014304862, + "osm_way_id": 845622686, + "src_i": 26298420, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358774770556574, + 53.79842813565542 + ], + [ + -1.5359232279735944, + 53.79842238629202 + ], + [ + -1.5358968818760876, + 53.79834924266237 + ], + [ + -1.5358511309581506, + 53.79835499202577 + ], + [ + -1.5358774770556574, + 53.79842813565542 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 643907, + "osm_way_id": 845622686, + "src_i": 2014304862, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535621662295434, + 53.79863502730239 + ], + [ + -1.5356204945043574, + 53.798609177200454 + ], + [ + -1.5354939376205756, + 53.79861117189591 + ], + [ + -1.5354951054116521, + 53.79863702199784 + ], + [ + -1.535621662295434, + 53.79863502730239 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26298420, + "osm_way_id": 845622687, + "src_i": 6211583013, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5362214866866726, + 53.798725106058306 + ], + [ + -1.5362033379648579, + 53.798738376448796 + ], + [ + -1.5363018221864906, + 53.79878536780443 + ], + [ + -1.5363199709083053, + 53.79877209741394 + ], + [ + -1.5362214866866726, + 53.798725106058306 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2014304908, + "osm_way_id": 845622689, + "src_i": 643946, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5361655392930649, + 53.79878482821143 + ], + [ + -1.5361184485366046, + 53.79880184697461 + ], + [ + -1.536151484691465, + 53.79883374051814 + ], + [ + -1.5361985754479253, + 53.79881672175495 + ], + [ + -1.5361655392930649, + 53.79878482821143 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8273166694, + "osm_way_id": 845622689, + "src_i": 2014304908, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5362745153638608, + 53.79865179695347 + ], + [ + -1.5362707318425763, + 53.79866247819689 + ], + [ + -1.5363946516805376, + 53.798677791846195 + ], + [ + -1.536398435201822, + 53.798667110602786 + ], + [ + -1.5362745153638608, + 53.79865179695347 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 643946, + "osm_way_id": 845622689, + "src_i": 4540786888, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5362624187535572, + 53.79856288461775 + ], + [ + -1.5362763393713048, + 53.79859136343691 + ], + [ + -1.5362753253571497, + 53.798624989973284 + ], + [ + -1.5364019066016321, + 53.798626322767994 + ], + [ + -1.5364032616655932, + 53.798581436724376 + ], + [ + -1.5363840517307663, + 53.798542140864235 + ], + [ + -1.5362624187535572, + 53.79856288461775 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4540786888, + "osm_way_id": 845622690, + "src_i": 26298423, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5360294299696298, + 53.79842711582465 + ], + [ + -1.5360513576450974, + 53.798430876787855 + ], + [ + -1.5360866623901845, + 53.79835906235563 + ], + [ + -1.536064734714717, + 53.79835530139243 + ], + [ + -1.5360294299696298, + 53.79842711582465 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6111971409, + "osm_way_id": 845622691, + "src_i": 643907, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536154957613819, + 53.79846397542241 + ], + [ + -1.5361713934738852, + 53.79847311432917 + ], + [ + -1.5362581723789648, + 53.79841866399965 + ], + [ + -1.5362417365188985, + 53.798409525092886 + ], + [ + -1.536154957613819, + 53.79846397542241 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26298423, + "osm_way_id": 845622691, + "src_i": 6111971409, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5352853034468954, + 53.79759062167061 + ], + [ + -1.5352829846127238, + 53.79761253454229 + ], + [ + -1.5353385635507377, + 53.79761458679433 + ], + [ + -1.535340882384909, + 53.797592673922644 + ], + [ + -1.5352853034468954, + 53.79759062167061 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5452444895, + "osm_way_id": 864595640, + "src_i": 2275824794, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5352847842594677, + 53.79738963586901 + ], + [ + -1.5352914103699824, + 53.7974988207137 + ], + [ + -1.5353470623900976, + 53.797497642602316 + ], + [ + -1.5353404362795826, + 53.79738845775763 + ], + [ + -1.5352847842594677, + 53.79738963586901 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2275824794, + "osm_way_id": 864595641, + "src_i": 1606819535, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5349816625415678, + 53.79667662847209 + ], + [ + -1.5351399020387928, + 53.7966533621213 + ], + [ + -1.5352341657690773, + 53.79668230588976 + ], + [ + -1.5352815640793804, + 53.797340736152805 + ], + [ + -1.5353372008740578, + 53.79733933860694 + ], + [ + -1.5352884353194434, + 53.796661894885254 + ], + [ + -1.5351468966049016, + 53.79661843786376 + ], + [ + -1.534968212389847, + 53.79664470974756 + ], + [ + -1.5349816625415678, + 53.79667662847209 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1606819535, + "osm_way_id": 864595654, + "src_i": 342579521, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5360638105306446, + 53.79879996829166 + ], + [ + -1.536049909705966, + 53.79880376882501 + ], + [ + -1.5361030891149883, + 53.798871631637844 + ], + [ + -1.5361169899396667, + 53.79886783110449 + ], + [ + -1.5360638105306446, + 53.79879996829166 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 643945, + "osm_way_id": 890039689, + "src_i": 8273166694, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5346591101199933, + 53.80015798357577 + ], + [ + -1.5345657614385184, + 53.8003220594176 + ], + [ + -1.5345946258234315, + 53.8003277880966 + ], + [ + -1.5346879745049065, + 53.80016371225478 + ], + [ + -1.5346591101199933, + 53.80015798357577 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8312439329, + "osm_way_id": 894330328, + "src_i": 8312439326, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5345521011757566, + 53.80034806240422 + ], + [ + -1.5345477055918741, + 53.80039295384376 + ], + [ + -1.5345781047009137, + 53.80039399166097 + ], + [ + -1.5345825002847964, + 53.80034910022142 + ], + [ + -1.5345521011757566, + 53.80034806240422 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8312439373, + "osm_way_id": 894330328, + "src_i": 8312439329, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340550408767064, + 53.80016121753648 + ], + [ + -1.534196418201608, + 53.80029307428034 + ], + [ + -1.5345368300616793, + 53.80035916632882 + ], + [ + -1.5345463398701067, + 53.80034207921718 + ], + [ + -1.53421629957824, + 53.80027799985059 + ], + [ + -1.5340807657763524, + 53.80015159479466 + ], + [ + -1.5340550408767064, + 53.80016121753648 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8312439329, + "osm_way_id": 894330329, + "src_i": 1591373175, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5324841167492667, + 53.800128939982606 + ], + [ + -1.532420850487726, + 53.800135118322444 + ], + [ + -1.532309920993265, + 53.800153640751454 + ], + [ + -1.5321394265411834, + 53.800167010966646 + ], + [ + -1.532143433876403, + 53.80018484091797 + ], + [ + -1.5323160994759095, + 53.80017129983167 + ], + [ + -1.5324275009589412, + 53.80015270006099 + ], + [ + -1.5324890832870652, + 53.8001466853977 + ], + [ + -1.5324841167492667, + 53.800128939982606 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8312439368, + "osm_way_id": 894330332, + "src_i": 8312439358, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5320664921266625, + 53.80017069189022 + ], + [ + -1.5319904212719622, + 53.800172423084426 + ], + [ + -1.53199159363067, + 53.80019039692722 + ], + [ + -1.5320676644853704, + 53.80018866573301 + ], + [ + -1.5320664921266625, + 53.80017069189022 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": -13, + "osm_way_id": 894330332, + "src_i": 8312439368, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532190335837435, + 53.80030775300855 + ], + [ + -1.5320692144349348, + 53.80028503524398 + ], + [ + -1.53206, + 53.800302178113554 + ], + [ + -1.5321811214025003, + 53.800324895878134 + ], + [ + -1.532190335837435, + 53.80030775300855 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8312439365, + "osm_way_id": 894330334, + "src_i": 8312439361, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5323282265370886, + 53.800355943159964 + ], + [ + -1.5322660595521542, + 53.80032998963604 + ], + [ + -1.5322484833067995, + 53.80034467735747 + ], + [ + -1.5323106502917336, + 53.800370630881396 + ], + [ + -1.5323282265370886, + 53.800355943159964 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8312439361, + "osm_way_id": 894330335, + "src_i": 8312439359, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5322166910702044, + 53.80029809429387 + ], + [ + -1.532195265834183, + 53.800278660852015 + ], + [ + -1.532147491455567, + 53.800202620507285 + ], + [ + -1.5321189437597595, + 53.80020887798743 + ], + [ + -1.532167899632346, + 53.800286799713085 + ], + [ + -1.532191173236512, + 53.80030790949053 + ], + [ + -1.5322166910702044, + 53.80029809429387 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8312439368, + "osm_way_id": 894330335, + "src_i": 8312439361, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5365997352821312, + 53.79550433390363 + ], + [ + -1.5366036375618302, + 53.79550103339312 + ], + [ + -1.5365786708889848, + 53.795490734361415 + ], + [ + -1.5365747686092859, + 53.79549403487192 + ], + [ + -1.5365997352821312, + 53.79550433390363 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320943570, + "osm_way_id": 910065628, + "src_i": 8450014342, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537549042849261, + 53.797602657292444 + ], + [ + -1.5374628805744106, + 53.79760021383548 + ], + [ + -1.5374614189323854, + 53.79761817868506 + ], + [ + -1.5375475812072357, + 53.79762062214203 + ], + [ + -1.537549042849261, + 53.797602657292444 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640869, + "osm_way_id": 913030752, + "src_i": 8481640857, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368149879536075, + 53.79757640609305 + ], + [ + -1.5367541425366713, + 53.797565330946746 + ], + [ + -1.536745174753828, + 53.797582520581045 + ], + [ + -1.5368060201707645, + 53.79759359572735 + ], + [ + -1.5368149879536075, + 53.79757640609305 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640876, + "osm_way_id": 913030752, + "src_i": 8481640858, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537094531558586, + 53.79758976101977 + ], + [ + -1.5370180724552227, + 53.79758760534574 + ], + [ + -1.53701661994846, + 53.79760557199396 + ], + [ + -1.5370930790518234, + 53.797607727667994 + ], + [ + -1.537094531558586, + 53.79758976101977 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640870, + "osm_way_id": 913030752, + "src_i": 8481640860, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5373868173324292, + 53.79759807075195 + ], + [ + -1.5373340596680332, + 53.797596596763746 + ], + [ + -1.5373326223867083, + 53.79761456341197 + ], + [ + -1.5373853800511044, + 53.797616037400175 + ], + [ + -1.5373868173324292, + 53.79759807075195 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640880, + "osm_way_id": 913030752, + "src_i": 8481640869, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5369420107357852, + 53.79758547575204 + ], + [ + -1.53688505237311, + 53.79758389114726 + ], + [ + -1.53688362118196, + 53.797601857795485 + ], + [ + -1.5369405795446354, + 53.79760344240026 + ], + [ + -1.5369420107357852, + 53.79758547575204 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640858, + "osm_way_id": 913030752, + "src_i": 8481640870, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5366814288909978, + 53.79755207494541 + ], + [ + -1.5365931609381047, + 53.79753595640321 + ], + [ + -1.5365841657494739, + 53.797553140641575 + ], + [ + -1.536672433702367, + 53.79756925918378 + ], + [ + -1.5366814288909978, + 53.79755207494541 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640859, + "osm_way_id": 913030752, + "src_i": 8481640876, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5372580618954341, + 53.79759444198904 + ], + [ + -1.5371705978456551, + 53.79759192748566 + ], + [ + -1.5371691179331044, + 53.79760989233524 + ], + [ + -1.5372565819828834, + 53.79761240683862 + ], + [ + -1.5372580618954341, + 53.79759444198904 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640860, + "osm_way_id": 913030752, + "src_i": 8481640880, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5375633380127776, + 53.79742585694839 + ], + [ + -1.5374707399453844, + 53.79742272640967 + ], + [ + -1.5374690012003918, + 53.797440684064675 + ], + [ + -1.537561599267785, + 53.79744381460339 + ], + [ + -1.5375633380127776, + 53.79742585694839 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640868, + "osm_way_id": 913030753, + "src_i": 5071469699, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537098133897161, + 53.79741016198669 + ], + [ + -1.5370228364946992, + 53.79740762320163 + ], + [ + -1.537021100794794, + 53.79742558085663 + ], + [ + -1.5370963981972559, + 53.797428119641694 + ], + [ + -1.537098133897161, + 53.79741016198669 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640872, + "osm_way_id": 913030753, + "src_i": 8481640861, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5373947497855043, + 53.79742015075242 + ], + [ + -1.5373355517609342, + 53.79741813717121 + ], + [ + -1.5373338008355912, + 53.79743609302757 + ], + [ + -1.5373929988601613, + 53.79743810660878 + ], + [ + -1.5373947497855043, + 53.79742015075242 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640882, + "osm_way_id": 913030753, + "src_i": 8481640868, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536947201087519, + 53.797404821814645 + ], + [ + -1.536884452490862, + 53.79740228842551 + ], + [ + -1.536882375741151, + 53.797420233490016 + ], + [ + -1.5369451243378078, + 53.797422766879144 + ], + [ + -1.536947201087519, + 53.797404821814645 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640875, + "osm_way_id": 913030753, + "src_i": 8481640872, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368079918649549, + 53.797399556286294 + ], + [ + -1.5367458126996705, + 53.79739762094607 + ], + [ + -1.5367442109836178, + 53.79741558219836 + ], + [ + -1.5368063901489022, + 53.797417517538584 + ], + [ + -1.5368079918649549, + 53.797399556286294 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640879, + "osm_way_id": 913030753, + "src_i": 8481640875, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5366697692507583, + 53.79739526921992 + ], + [ + -1.5366122917006553, + 53.79739350385149 + ], + [ + -1.5366107113002154, + 53.797411466902425 + ], + [ + -1.5366681888503182, + 53.79741323227085 + ], + [ + -1.5366697692507583, + 53.79739526921992 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5518536456, + "osm_way_id": 913030753, + "src_i": 8481640879, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5372595174472843, + 53.797415570507184 + ], + [ + -1.5371741225344975, + 53.797412714261576 + ], + [ + -1.5371724020600301, + 53.79743067191658 + ], + [ + -1.537257796972817, + 53.79743352816219 + ], + [ + -1.5372595174472843, + 53.797415570507184 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640861, + "osm_way_id": 913030753, + "src_i": 8481640882, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5371619619773553, + 53.79758651446856 + ], + [ + -1.537164434588448, + 53.797452078470165 + ], + [ + -1.5371339867580076, + 53.797451882418045 + ], + [ + -1.5371315141469148, + 53.79758631841644 + ], + [ + -1.5371619619773553, + 53.79758651446856 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640861, + "osm_way_id": 913030754, + "src_i": 8481640860, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5371655018916355, + 53.79740723019806 + ], + [ + -1.5371701928490105, + 53.79724598901812 + ], + [ + -1.53713974501857, + 53.79724567965147 + ], + [ + -1.537135054061195, + 53.797406920831406 + ], + [ + -1.5371655018916355, + 53.79740723019806 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640862, + "osm_way_id": 913030754, + "src_i": 8481640861, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5371164714144039, + 53.79707441013564 + ], + [ + -1.5371109445804956, + 53.79720025851146 + ], + [ + -1.537141386320761, + 53.79720072436009 + ], + [ + -1.5371469131546693, + 53.797074875984265 + ], + [ + -1.5371164714144039, + 53.79707441013564 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640862, + "osm_way_id": 913030755, + "src_i": 8481640863, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53710412053929, + 53.79720397001197 + ], + [ + -1.5370278258706545, + 53.797201415039126 + ], + [ + -1.5370261023510994, + 53.79721937269413 + ], + [ + -1.5371023970197348, + 53.797221927666975 + ], + [ + -1.53710412053929, + 53.79720397001197 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640873, + "osm_way_id": 913030756, + "src_i": 8481640862, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537577226657106, + 53.79721966497367 + ], + [ + -1.5374777329889495, + 53.797216320396394 + ], + [ + -1.5374760033792194, + 53.7972342780514 + ], + [ + -1.537575497047376, + 53.79723762262867 + ], + [ + -1.537577226657106, + 53.79721966497367 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640867, + "osm_way_id": 913030756, + "src_i": 8481640864, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5374016758371432, + 53.79721379959777 + ], + [ + -1.5373367865439367, + 53.79721168169525 + ], + [ + -1.5373351056556075, + 53.797229641148895 + ], + [ + -1.537399994948814, + 53.79723175905142 + ], + [ + -1.5374016758371432, + 53.79721379959777 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640883, + "osm_way_id": 913030756, + "src_i": 8481640867, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5369517976471798, + 53.79719888524728 + ], + [ + -1.5368827061331505, + 53.797196599171606 + ], + [ + -1.5368810039292085, + 53.79721455682661 + ], + [ + -1.5369500954432378, + 53.79721684290229 + ], + [ + -1.5369517976471798, + 53.79719888524728 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640884, + "osm_way_id": 913030756, + "src_i": 8481640873, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5366667256857491, + 53.79718946665148 + ], + [ + -1.5365878305123437, + 53.79718681814918 + ], + [ + -1.5365861039477011, + 53.79720477580418 + ], + [ + -1.5366649991211068, + 53.797207424306485 + ], + [ + -1.5366667256857491, + 53.79718946665148 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640865, + "osm_way_id": 913030756, + "src_i": 8481640878, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5372608039967754, + 53.797209181581024 + ], + [ + -1.5371801122217137, + 53.79720650340111 + ], + [ + -1.5371784039275966, + 53.79722446105611 + ], + [ + -1.5372590957026584, + 53.79722713923603 + ], + [ + -1.5372608039967754, + 53.797209181581024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640862, + "osm_way_id": 913030756, + "src_i": 8481640883, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368066855223947, + 53.797194091862806 + ], + [ + -1.5367426945300164, + 53.79719198924875 + ], + [ + -1.5367410045064247, + 53.7972099487024 + ], + [ + -1.536804995498803, + 53.79721205131646 + ], + [ + -1.5368066855223947, + 53.797194091862806 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640878, + "osm_way_id": 913030756, + "src_i": 8481640884, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537412790406711, + 53.797078816811805 + ], + [ + -1.5374083202181834, + 53.797210160042994 + ], + [ + -1.5374387650035364, + 53.7972105215703 + ], + [ + -1.5374432351920637, + 53.79707917833911 + ], + [ + -1.537412790406711, + 53.797078816811805 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640867, + "osm_way_id": 913030757, + "src_i": 8481640866, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5374067931067756, + 53.797255118931666 + ], + [ + -1.5374013180393558, + 53.79741656155966 + ], + [ + -1.5374317628247087, + 53.797416921288324 + ], + [ + -1.5374372378921286, + 53.79725547866033 + ], + [ + -1.5374067931067756, + 53.797255118931666 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640868, + "osm_way_id": 913030757, + "src_i": 8481640867, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5373995975648884, + 53.79746142062362 + ], + [ + -1.5373939184766023, + 53.79759416949457 + ], + [ + -1.5374243602168678, + 53.79759462455134 + ], + [ + -1.5374300393051537, + 53.79746187568038 + ], + [ + -1.5373995975648884, + 53.79746142062362 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640869, + "osm_way_id": 913030757, + "src_i": 8481640868, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5370096101569135, + 53.79758228405945 + ], + [ + -1.5370129856364658, + 53.79744704496681 + ], + [ + -1.5369825378060253, + 53.79744678056624 + ], + [ + -1.536979162326473, + 53.79758201965888 + ], + [ + -1.5370096101569135, + 53.79758228405945 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640872, + "osm_way_id": 913030758, + "src_i": 8481640870, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5370140925257911, + 53.79740207708492 + ], + [ + -1.537018002418209, + 53.797240837703626 + ], + [ + -1.5369875545877685, + 53.79724058049763 + ], + [ + -1.5369836446953509, + 53.79740181987893 + ], + [ + -1.5370140925257911, + 53.79740207708492 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640873, + "osm_way_id": 913030758, + "src_i": 8481640872, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5370191093075345, + 53.797195886009526 + ], + [ + -1.5370221863685065, + 53.79707284621527 + ], + [ + -1.536991738538066, + 53.79707258001606 + ], + [ + -1.536988661477094, + 53.79719561981032 + ], + [ + -1.5370191093075345, + 53.797195886009526 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640871, + "osm_way_id": 913030758, + "src_i": 8481640873, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536824415544671, + 53.79707037308069 + ], + [ + -1.5368144550632858, + 53.79718996037908 + ], + [ + -1.5368448693977632, + 53.79719084351295 + ], + [ + -1.5368548298791485, + 53.797071256214565 + ], + [ + -1.536824415544671, + 53.79707037308069 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640884, + "osm_way_id": 913030759, + "src_i": 8481640874, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368140972654982, + 53.797441253335286 + ], + [ + -1.5368149879536075, + 53.79757640609305 + ], + [ + -1.5368454388291355, + 53.79757633594596 + ], + [ + -1.5368445481410264, + 53.7974411831882 + ], + [ + -1.5368140972654982, + 53.797441253335286 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640858, + "osm_way_id": 913030759, + "src_i": 8481640875, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536812702615399, + 53.79723585456228 + ], + [ + -1.5368137958018306, + 53.79739628905069 + ], + [ + -1.5368442466773586, + 53.797396217104954 + ], + [ + -1.5368431534909273, + 53.797235782616546 + ], + [ + -1.536812702615399, + 53.79723585456228 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640875, + "osm_way_id": 913030759, + "src_i": 8481640884, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5367388881705755, + 53.79755324676154 + ], + [ + -1.5367370139191867, + 53.797436710861554 + ], + [ + -1.5367065630436587, + 53.79743688173267 + ], + [ + -1.5367084372950475, + 53.79755341763265 + ], + [ + -1.5367388881705755, + 53.79755324676154 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640879, + "osm_way_id": 913030760, + "src_i": 8481640876, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5367351366227104, + 53.79718705107349 + ], + [ + -1.5367441044055534, + 53.79706967160979 + ], + [ + -1.5367136839809008, + 53.79706886042165 + ], + [ + -1.5367047161980578, + 53.79718623988535 + ], + [ + -1.5367351366227104, + 53.79718705107349 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640877, + "osm_way_id": 913030760, + "src_i": 8481640878, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5367363013686994, + 53.79739175197289 + ], + [ + -1.5367338013518186, + 53.797231017111045 + ], + [ + -1.5367033504762906, + 53.79723118258623 + ], + [ + -1.5367058504931714, + 53.797391917448074 + ], + [ + -1.5367363013686994, + 53.79739175197289 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640878, + "osm_way_id": 913030760, + "src_i": 8481640879, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537325201508342, + 53.79759108931787 + ], + [ + -1.5373260998091702, + 53.797457354790374 + ], + [ + -1.5372956489336422, + 53.79745728284464 + ], + [ + -1.537294750632814, + 53.797591017372135 + ], + [ + -1.537325201508342, + 53.79759108931787 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640882, + "osm_way_id": 913030761, + "src_i": 8481640880, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5373263921375753, + 53.7974123833112 + ], + [ + -1.5373274091968179, + 53.797250949676425 + ], + [ + -1.5372969583212899, + 53.79725088312662 + ], + [ + -1.5372959412620473, + 53.797412316761395 + ], + [ + -1.5373263921375753, + 53.7974123833112 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640883, + "osm_way_id": 913030761, + "src_i": 8481640882, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5373276923899604, + 53.79720598359318 + ], + [ + -1.5373285084734245, + 53.79707714946944 + ], + [ + -1.5372980575978965, + 53.797077082919635 + ], + [ + -1.5372972415144324, + 53.79720591704338 + ], + [ + -1.5373276923899604, + 53.79720598359318 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481640881, + "osm_way_id": 913030761, + "src_i": 8481640883, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532735376058511, + 53.795447322306 + ], + [ + -1.5328399900413874, + 53.79545175146521 + ], + [ + -1.5328421672789878, + 53.795433811796634 + ], + [ + -1.5327375532961112, + 53.79542938263744 + ], + [ + -1.532735376058511, + 53.795447322306 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6665254462, + "osm_way_id": 934510287, + "src_i": 8660924478, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533574140857299, + 53.8002737118849 + ], + [ + -1.533589052651045, + 53.80022309356499 + ], + [ + -1.53356620688168, + 53.800138899970044 + ], + [ + -1.5335381646704063, + 53.80009321263083 + ], + [ + -1.5335392258834184, + 53.8000929581228 + ], + [ + -1.5335249048366577, + 53.80007212623575 + ], + [ + -1.5334898878523442, + 53.80008052500078 + ], + [ + -1.5335291968875633, + 53.800144567495174 + ], + [ + -1.5335504622564884, + 53.80022293888166 + ], + [ + -1.533536640604086, + 53.80026985739224 + ], + [ + -1.533574140857299, + 53.8002737118849 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1591373161, + "osm_way_id": 936169264, + "src_i": 8674724110, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5327181088895427, + 53.79664160438985 + ], + [ + -1.5327185275890813, + 53.796642558570134 + ], + [ + -1.532792218707859, + 53.79663127747917 + ], + [ + -1.5327918000083207, + 53.796630323298885 + ], + [ + -1.5327181088895427, + 53.79664160438985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8733041519, + "osm_way_id": 943136734, + "src_i": 6264559092, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532690354439043, + 53.79657413188262 + ], + [ + -1.5326996373884476, + 53.796597458487966 + ], + [ + -1.53277374568422, + 53.79658716844948 + ], + [ + -1.5327644627348154, + 53.79656384184413 + ], + [ + -1.532690354439043, + 53.79657413188262 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6264559092, + "osm_way_id": 943136734, + "src_i": 7241259895, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532739162624883, + 53.79669087282794 + ], + [ + -1.5327403715246413, + 53.79669374256337 + ], + [ + -1.5328142453486724, + 53.79668288415359 + ], + [ + -1.5328130364489139, + 53.79668001441816 + ], + [ + -1.532739162624883, + 53.79669087282794 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8733041518, + "osm_way_id": 943136735, + "src_i": 8733041519, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5352070096782815, + 53.79631388887721 + ], + [ + -1.535504257422292, + 53.796317053590144 + ], + [ + -1.535593260763829, + 53.79636847320565 + ], + [ + -1.5356713626919272, + 53.79638687512556 + ], + [ + -1.5356826447413103, + 53.796370169326316 + ], + [ + -1.5356102005858854, + 53.79635310020112 + ], + [ + -1.5355169006258111, + 53.79629920025645 + ], + [ + -1.535207557794041, + 53.796295906041195 + ], + [ + -1.5352070096782815, + 53.79631388887721 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8740550411, + "osm_way_id": 944039772, + "src_i": 8740550412, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5348334063638844, + 53.796310663909715 + ], + [ + -1.535131007338051, + 53.79631316492326 + ], + [ + -1.5351314397404836, + 53.79629518028861 + ], + [ + -1.534833838766317, + 53.79629267927506 + ], + [ + -1.5348334063638844, + 53.796310663909715 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8740550412, + "osm_way_id": 944039772, + "src_i": 8740550413, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535200570840651, + 53.79641247431675 + ], + [ + -1.5352000699237487, + 53.796317927730804 + ], + [ + -1.5351696190482207, + 53.79631798348874 + ], + [ + -1.535170119965123, + 53.7964125300747 + ], + [ + -1.535200570840651, + 53.79641247431675 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8740550412, + "osm_way_id": 944039773, + "src_i": 320943571, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537765257768404, + 53.795866857661316 + ], + [ + -1.5377779786216557, + 53.79586663552886 + ], + [ + -1.5377757283019542, + 53.7958216892307 + ], + [ + -1.5377630074487023, + 53.79582191136315 + ], + [ + -1.537765257768404, + 53.795866857661316 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8892765835, + "osm_way_id": 961343997, + "src_i": 8892765836, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537319461518305, + 53.79587761354843 + ], + [ + -1.5375311392569944, + 53.79586094731933 + ], + [ + -1.5375881265480011, + 53.79587154672448 + ], + [ + -1.537665215984488, + 53.79586939914434 + ], + [ + -1.5376616288713507, + 53.79582448342311 + ], + [ + -1.537598074849036, + 53.79582625328815 + ], + [ + -1.5375378597652234, + 53.79581505313613 + ], + [ + -1.5373094035941182, + 53.79583304136807 + ], + [ + -1.537319461518305, + 53.79587761354843 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8892765836, + "osm_way_id": 961343997, + "src_i": 8892765838, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5379339586639167, + 53.796014394078405 + ], + [ + -1.53795346549478, + 53.79597004942643 + ], + [ + -1.53793350037824, + 53.79591785189768 + ], + [ + -1.5377833394982925, + 53.79585238577708 + ], + [ + -1.5377652547233163, + 53.795866857661316 + ], + [ + -1.5379062986111307, + 53.79592834878015 + ], + [ + -1.537922134588949, + 53.79596975085163 + ], + [ + -1.5379044852614931, + 53.79600987049043 + ], + [ + -1.5379339586639167, + 53.796014394078405 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8892765836, + "osm_way_id": 968461597, + "src_i": 5728993687, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537678582396301, + 53.79580954209297 + ], + [ + -1.537441880128103, + 53.79571583907074 + ], + [ + -1.5373827765012467, + 53.79570590426431 + ], + [ + -1.5373744420966147, + 53.79572320361586 + ], + [ + -1.537428920235478, + 53.79573236140837 + ], + [ + -1.5376616303938946, + 53.79582448342311 + ], + [ + -1.537678582396301, + 53.79580954209297 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6047091983, + "osm_way_id": 968461597, + "src_i": 8892765836, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339027134169652, + 53.79751830271893 + ], + [ + -1.533936882344395, + 53.79755050203181 + ], + [ + -1.5339626833712299, + 53.79754094943709 + ], + [ + -1.5339285144438, + 53.7975087501242 + ], + [ + -1.5339027134169652, + 53.79751830271893 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8990249594, + "osm_way_id": 971371100, + "src_i": 8990249593, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340310577671405, + 53.7975644532088 + ], + [ + -1.5340387450906676, + 53.797561856867155 + ], + [ + -1.5340236292760554, + 53.79754624284441 + ], + [ + -1.5340159419525283, + 53.79754883918606 + ], + [ + -1.5340310577671405, + 53.7975644532088 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8990249596, + "osm_way_id": 971371100, + "src_i": 8990249594, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339768475959819, + 53.797588569418565 + ], + [ + -1.5341756842004608, + 53.79778002330983 + ], + [ + -1.534280368220351, + 53.797752053506734 + ], + [ + -1.534267819414546, + 53.79773566606736 + ], + [ + -1.534187599628055, + 53.7977570996006 + ], + [ + -1.534002803922282, + 53.797579164312594 + ], + [ + -1.5339768475959819, + 53.797588569418565 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7105816299, + "osm_way_id": 971371101, + "src_i": 8990249594, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53890936110883, + 53.80012987707578 + ], + [ + -1.5387088238229527, + 53.80010402697385 + ], + [ + -1.5387079544504565, + 53.8001030826861 + ], + [ + -1.5386410751925343, + 53.80012456388339 + ], + [ + -1.538658576833244, + 53.800143573744734 + ], + [ + -1.5388931307921736, + 53.80017380893911 + ], + [ + -1.53890936110883, + 53.80012987707578 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26298426, + "osm_way_id": 995747902, + "src_i": 9194660290, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340436065729457, + 53.798771614478206 + ], + [ + -1.534089246345187, + 53.798482048190586 + ], + [ + -1.534043767962586, + 53.79847954807636 + ], + [ + -1.5339981281903445, + 53.79876911436398 + ], + [ + -1.5340436065729457, + 53.798771614478206 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9258530363, + "osm_way_id": 1003280130, + "src_i": 7237437098, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.538691118161377, + 53.799470922508206 + ], + [ + -1.538717838804653, + 53.79947362856709 + ], + [ + -1.5387229850026172, + 53.79945590113844 + ], + [ + -1.5386962643593414, + 53.79945319507955 + ], + [ + -1.538691118161377, + 53.799470922508206 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8481692879, + "osm_way_id": 1003280133, + "src_i": 3219472273, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5375805549378012, + 53.79944565246875 + ], + [ + -1.5374949103278348, + 53.79943731036098 + ], + [ + -1.5374899559703865, + 53.79945505757472 + ], + [ + -1.5375756005803527, + 53.79946339968248 + ], + [ + -1.5375805549378012, + 53.79944565246875 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9258530380, + "osm_way_id": 1003280134, + "src_i": 3219472271, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5374632992739492, + 53.79988157886072 + ], + [ + -1.537463545926041, + 53.799881328849295 + ], + [ + -1.5374372363695847, + 53.799872272680126 + ], + [ + -1.537436989717493, + 53.79987252269155 + ], + [ + -1.5374632992739492, + 53.79988157886072 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3219472282, + "osm_way_id": 1003280135, + "src_i": 26298424, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536876016075797, + 53.79990496212333 + ], + [ + -1.5368825828071047, + 53.79998843446229 + ], + [ + -1.5369130001866695, + 53.799987599891786 + ], + [ + -1.536906433455362, + 53.79990412755282 + ], + [ + -1.536876016075797, + 53.79990496212333 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9258530382, + "osm_way_id": 1003280136, + "src_i": 26298425, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5385696587541584, + 53.800153299908544 + ], + [ + -1.5386166170493103, + 53.80012694978376 + ], + [ + -1.5385956424862466, + 53.80011390961962 + ], + [ + -1.5385486841910947, + 53.8001402597444 + ], + [ + -1.5385696587541584, + 53.800153299908544 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26298426, + "osm_way_id": 1003280137, + "src_i": 3219472259, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5359297033522754, + 53.79719446418198 + ], + [ + -1.5360431937653685, + 53.79719590039868 + ], + [ + -1.5360438454141048, + 53.797177917562664 + ], + [ + -1.5359303550010117, + 53.797176481345964 + ], + [ + -1.5359297033522754, + 53.79719446418198 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9258530387, + "osm_way_id": 1003280138, + "src_i": 9258530385, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5389368795650449, + 53.799157644705566 + ], + [ + -1.5388619658436145, + 53.799149643440714 + ], + [ + -1.5388512958568294, + 53.79918449755116 + ], + [ + -1.5389262095782597, + 53.79919249881601 + ], + [ + -1.5389368795650449, + 53.799157644705566 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26298428, + "osm_way_id": 1009731641, + "src_i": 8450268992, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5371549795915966, + 53.79783827237407 + ], + [ + -1.5371515782288003, + 53.79780890322646 + ], + [ + -1.5370908195968591, + 53.79781135837461 + ], + [ + -1.5370942209596556, + 53.797840727522214 + ], + [ + -1.5371549795915966, + 53.79783827237407 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9316506541, + "osm_way_id": 1009731645, + "src_i": 9316506539, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5331386324354972, + 53.798362710903625 + ], + [ + -1.5331272712138377, + 53.798361751327405 + ], + [ + -1.533122959369863, + 53.79837955609773 + ], + [ + -1.5331343205915224, + 53.79838051567394 + ], + [ + -1.5331386324354972, + 53.798362710903625 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5506378761, + "osm_way_id": 1009731656, + "src_i": 1675168031, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5330886884319999, + 53.79835864686902 + ], + [ + -1.5328254695413919, + 53.79833749842075 + ], + [ + -1.5328213647633708, + 53.7983553211775 + ], + [ + -1.5330845836539788, + 53.79837646962577 + ], + [ + -1.5330886884319999, + 53.79835864686902 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1675168030, + "osm_way_id": 1009731656, + "src_i": 5506378761, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5345111371354525, + 53.798491292317976 + ], + [ + -1.5345014750726476, + 53.79851851748274 + ], + [ + -1.5344538925345474, + 53.79851485724356 + ], + [ + -1.5344549659279099, + 53.79850652502834 + ], + [ + -1.5343790579853935, + 53.798503111203296 + ], + [ + -1.5343725064795237, + 53.798553943561764 + ], + [ + -1.5345615241991888, + 53.798568481995794 + ], + [ + -1.5345856443376946, + 53.79850051755962 + ], + [ + -1.5345111371354525, + 53.798491292317976 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9316506597, + "osm_way_id": 1009731660, + "src_i": 9316506598, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534528075434965, + 53.79846621743132 + ], + [ + -1.5344898306578456, + 53.79846571650915 + ], + [ + -1.534489154648409, + 53.79848369934516 + ], + [ + -1.5345273994255284, + 53.79848420026733 + ], + [ + -1.534528075434965, + 53.79846621743132 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1675168038, + "osm_way_id": 1009731661, + "src_i": 5506378768, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5338090967677855, + 53.798418686482684 + ], + [ + -1.5335644955424754, + 53.79839858304619 + ], + [ + -1.5335602994118276, + 53.798416398608374 + ], + [ + -1.5338049006371377, + 53.798436502044865 + ], + [ + -1.5338090967677855, + 53.798418686482684 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1675168033, + "osm_way_id": 1009731662, + "src_i": 5506378781, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339039969213686, + 53.798426485400164 + ], + [ + -1.5338844961806803, + 53.79842488280896 + ], + [ + -1.5338803000500327, + 53.79844269837114 + ], + [ + -1.5338998007907207, + 53.798444300962345 + ], + [ + -1.5339039969213686, + 53.798426485400164 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5506378781, + "osm_way_id": 1009731662, + "src_i": 9316506599, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5374034754838868, + 53.796986567093384 + ], + [ + -1.5375925419249528, + 53.79698990717405 + ], + [ + -1.537593452406131, + 53.796971927935324 + ], + [ + -1.5374043859650652, + 53.796968587854664 + ], + [ + -1.5374034754838868, + 53.796986567093384 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9319419240, + "osm_way_id": 1010049061, + "src_i": 4457813310, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5377097245067035, + 53.79667107336216 + ], + [ + -1.538439890825552, + 53.79669253747234 + ], + [ + -1.5384436758693802, + 53.79664762714704 + ], + [ + -1.5377135095505317, + 53.79662616303686 + ], + [ + -1.5377097245067035, + 53.79667107336216 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9319419245, + "osm_way_id": 1010049062, + "src_i": 301689294, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5385926643906198, + 53.79669216964978 + ], + [ + -1.5386075837970847, + 53.796692481714395 + ], + [ + -1.5386086617580785, + 53.79667450607296 + ], + [ + -1.5385937423516136, + 53.79667419400834 + ], + [ + -1.5385926643906198, + 53.79669216964978 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9319419244, + "osm_way_id": 1010049063, + "src_i": 320959869, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.538478307650118, + 53.7966891650161 + ], + [ + -1.5385161900618187, + 53.79669026308785 + ], + [ + -1.5385176821547197, + 53.79667229823827 + ], + [ + -1.538479799743019, + 53.79667120016652 + ], + [ + -1.538478307650118, + 53.7966891650161 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320959869, + "osm_way_id": 1010049063, + "src_i": 9319419245, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5378842811055802, + 53.79601288052004 + ], + [ + -1.5378539231052226, + 53.796005456619696 + ], + [ + -1.5377831202519887, + 53.79600611492315 + ], + [ + -1.5377840794545679, + 53.796042084192464 + ], + [ + -1.5378422756453332, + 53.79604154280082 + ], + [ + -1.5378609831407137, + 53.79604611765013 + ], + [ + -1.5378842811055802, + 53.79601288052004 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6146456169, + "osm_way_id": 1010049064, + "src_i": 5728993687, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535426434119705, + 53.7992333406101 + ], + [ + -1.5357328125587426, + 53.799107584864416 + ], + [ + -1.5357184214749682, + 53.79907263092927 + ], + [ + -1.5357073860776767, + 53.799074214634715 + ], + [ + -1.5353916805354648, + 53.79920379969205 + ], + [ + -1.535426434119705, + 53.7992333406101 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7261942252, + "osm_way_id": 1010049066, + "src_i": 9319419267, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5346952568317889, + 53.79956842606379 + ], + [ + -1.5346947559148865, + 53.79956626409451 + ], + [ + -1.5346344175050277, + 53.79957114201522 + ], + [ + -1.5346349184219301, + 53.7995733039845 + ], + [ + -1.5346952568317889, + 53.79956842606379 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9319419274, + "osm_way_id": 1010049066, + "src_i": 9319419273, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5347109390326859, + 53.79955886987178 + ], + [ + -1.5353663271365003, + 53.79925938316687 + ], + [ + -1.535329061355029, + 53.79923093042804 + ], + [ + -1.5346736732512147, + 53.79953041713295 + ], + [ + -1.5347109390326859, + 53.79955886987178 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9319419267, + "osm_way_id": 1010049066, + "src_i": 9319419274, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534627416848744, + 53.799542111911876 + ], + [ + -1.5346222828311298, + 53.79954171531102 + ], + [ + -1.5346173467442068, + 53.79956400769645 + ], + [ + -1.5346224807618207, + 53.79956440429731 + ], + [ + -1.534627416848744, + 53.799542111911876 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4833244389, + "osm_way_id": 1010049068, + "src_i": 9319419274, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5355556371845704, + 53.79998893088786 + ], + [ + -1.5356640925453948, + 53.80007828119322 + ], + [ + -1.536180982454589, + 53.80013801953413 + ], + [ + -1.5361868290226903, + 53.800120367648496 + ], + [ + -1.5356817997295142, + 53.800061999873805 + ], + [ + -1.535580384611112, + 53.79997845019317 + ], + [ + -1.5355556371845704, + 53.79998893088786 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 370191923, + "osm_way_id": 1010049070, + "src_i": 342579601, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363301902221325, + 53.79939606117418 + ], + [ + -1.5361011037179038, + 53.799377379565236 + ], + [ + -1.5359709658111598, + 53.79942850420324 + ], + [ + -1.5360373822157738, + 53.79948748711395 + ], + [ + -1.5361296970900247, + 53.799451221068495 + ], + [ + -1.536313789380573, + 53.799466233445045 + ], + [ + -1.5363301902221325, + 53.79939606117418 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9319419289, + "osm_way_id": 1010049071, + "src_i": 9319419287, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353263694976325, + 53.799219157408125 + ], + [ + -1.535331084815708, + 53.79922317377868 + ], + [ + -1.5353811308296383, + 53.799202674640654 + ], + [ + -1.5353764155115628, + 53.79919865827009 + ], + [ + -1.5353263694976325, + 53.799219157408125 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9319419267, + "osm_way_id": 1010049073, + "src_i": 9319419293, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390083081837709, + 53.797260584109424 + ], + [ + -1.5390060167553874, + 53.797309427168365 + ], + [ + -1.539036455450565, + 53.79730992539256 + ], + [ + -1.5390387468789486, + 53.79726108233363 + ], + [ + -1.5390083081837709, + 53.797260584109424 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9356627340, + "osm_way_id": 1014169484, + "src_i": 5071469694, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537729304419668, + 53.797306311018794 + ], + [ + -1.5377896961185589, + 53.7973083039156 + ], + [ + -1.5377913952774134, + 53.797290346260596 + ], + [ + -1.5377310035785223, + 53.79728835336379 + ], + [ + -1.537729304419668, + 53.797306311018794 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6001482128, + "osm_way_id": 1014169486, + "src_i": 6001482093, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5378657669732592, + 53.797310770754926 + ], + [ + -1.5381065496587782, + 53.79731844736466 + ], + [ + -1.538108190960969, + 53.797300487911016 + ], + [ + -1.5378674082754502, + 53.79729281130128 + ], + [ + -1.5378657669732592, + 53.797310770754926 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6022850278, + "osm_way_id": 1014169486, + "src_i": 6001482128, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5385063331134103, + 53.797331424576285 + ], + [ + -1.5385327492479308, + 53.79733237875657 + ], + [ + -1.5385346067513381, + 53.7973144264975 + ], + [ + -1.5385081906168177, + 53.797313472317214 + ], + [ + -1.5385063331134103, + 53.797331424576285 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9356627345, + "osm_way_id": 1014169486, + "src_i": 6001482136, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5381825535215523, + 53.797320879130446 + ], + [ + -1.5384305393616773, + 53.7973288390265 + ], + [ + -1.5384321928442186, + 53.79731087957285 + ], + [ + -1.5381842070040934, + 53.797302919676795 + ], + [ + -1.5381825535215523, + 53.797320879130446 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6001482136, + "osm_way_id": 1014169486, + "src_i": 6022850278, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5326532165512488, + 53.800375073530425 + ], + [ + -1.532703038751244, + 53.800337477388226 + ], + [ + -1.5326378373365634, + 53.80030733032737 + ], + [ + -1.5325880151365683, + 53.80034492646957 + ], + [ + -1.5326532165512488, + 53.800375073530425 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 26298441, + "osm_way_id": 1019249869, + "src_i": 1591373213, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5325853187115401, + 53.79675963046583 + ], + [ + -1.5325800248268298, + 53.796802173776506 + ], + [ + -1.5325314221843995, + 53.79690181501969 + ], + [ + -1.5325890413310734, + 53.796911621223124 + ], + [ + -1.5326393705381463, + 53.79680844024987 + ], + [ + -1.5326451211859897, + 53.796762225908154 + ], + [ + -1.5325853187115401, + 53.79675963046583 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3181227677, + "osm_way_id": 1019599366, + "src_i": 5728993689, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5325680637229222, + 53.796737270631276 + ], + [ + -1.5323193942606417, + 53.79678208382983 + ], + [ + -1.5323281427971809, + 53.79679902165407 + ], + [ + -1.5325768122594614, + 53.79675420845551 + ], + [ + -1.5325680637229222, + 53.796737270631276 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3181227681, + "osm_way_id": 1019599367, + "src_i": 5728993689, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368561149060957, + 53.79555723200396 + ], + [ + -1.536859953238956, + 53.79555857828849 + ], + [ + -1.536909524219228, + 53.7955092684816 + ], + [ + -1.5369056858863677, + 53.795507922197075 + ], + [ + -1.5368561149060957, + 53.79555723200396 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8450014339, + "osm_way_id": 1019599369, + "src_i": 26660405, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5370829982894798, + 53.795627192034914 + ], + [ + -1.537247311213829, + 53.79567749918952 + ], + [ + -1.5372919917834913, + 53.79562658499279 + ], + [ + -1.5371276788591421, + 53.79557627783818 + ], + [ + -1.5370829982894798, + 53.795627192034914 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 342579502, + "osm_way_id": 1019599369, + "src_i": 342579620, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536930238427306, + 53.79558135091169 + ], + [ + -1.5370157871170143, + 53.795606876358505 + ], + [ + -1.5370595632956734, + 53.79555568876798 + ], + [ + -1.536974014605965, + 53.79553016332117 + ], + [ + -1.536930238427306, + 53.79558135091169 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 342579620, + "osm_way_id": 1019599369, + "src_i": 8450014339, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5327639785658944, + 53.80031152656226 + ], + [ + -1.5327873633157563, + 53.80029606272623 + ], + [ + -1.5326979199590678, + 53.800248873519834 + ], + [ + -1.532674535209206, + 53.80026433735586 + ], + [ + -1.5327639785658944, + 53.80031152656226 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7692244824, + "osm_way_id": 1020974237, + "src_i": 26298441, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5373509873097393, + 53.79569144137329 + ], + [ + -1.537501725233778, + 53.795723648780076 + ], + [ + -1.5375221212302066, + 53.7956903415029 + ], + [ + -1.537371383306168, + 53.795658134096115 + ], + [ + -1.5373509873097393, + 53.79569144137329 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 320951161, + "osm_way_id": 1042054891, + "src_i": 342579502, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339888802594466, + 53.79710860774127 + ], + [ + -1.5338751827804002, + 53.796937043247944 + ], + [ + -1.5338184710698168, + 53.79695015535782 + ], + [ + -1.5339321685488634, + 53.79712171985115 + ], + [ + -1.5339888802594466, + 53.79710860774127 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9740274258, + "osm_way_id": 1060145090, + "src_i": 9740274255, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5337758961781973, + 53.79690827844449 + ], + [ + -1.533755900610782, + 53.79690727300287 + ], + [ + -1.5333803804137702, + 53.7969482200176 + ], + [ + -1.5333914371266746, + 53.7969835957346 + ], + [ + -1.5337589000220213, + 53.796943526457824 + ], + [ + -1.5337707286646203, + 53.79694412180877 + ], + [ + -1.5337758961781973, + 53.79690827844449 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9740274263, + "osm_way_id": 1060145090, + "src_i": 9740274258, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5338338320139768, + 53.79689718890904 + ], + [ + -1.5338293998890438, + 53.7968891094032 + ], + [ + -1.5337714640532643, + 53.79690019803933 + ], + [ + -1.5337758961781973, + 53.79690827754517 + ], + [ + -1.5338338320139768, + 53.79689718890904 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9740274265, + "osm_way_id": 1060145092, + "src_i": 9740274258, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5331505128445844, + 53.79583558464974 + ], + [ + -1.5330289955807024, + 53.795781457176695 + ], + [ + -1.5329705390349513, + 53.79582724523994 + ], + [ + -1.5330920562988333, + 53.795881372712984 + ], + [ + -1.5331505128445844, + 53.79583558464974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6905250281, + "osm_way_id": 1067008053, + "src_i": 1020737641, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5324479867854526, + 53.79571434889474 + ], + [ + -1.5322636996093009, + 53.79579083710166 + ], + [ + -1.5323195191092314, + 53.795837760108846 + ], + [ + -1.532503806285383, + 53.79576127190193 + ], + [ + -1.5324479867854526, + 53.79571434889474 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2377604550, + "osm_way_id": 1067008054, + "src_i": 1020737601, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368421912432604, + 53.7964275073777 + ], + [ + -1.5367803911913764, + 53.79642652172116 + ], + [ + -1.5367755099160292, + 53.7965332927865 + ], + [ + -1.5368373099679133, + 53.79653427844304 + ], + [ + -1.5368421912432604, + 53.7964275073777 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9319419229, + "osm_way_id": 1079858510, + "src_i": 9319419234, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536471218884509, + 53.796423678066056 + ], + [ + -1.5360674905189522, + 53.79642135331955 + ], + [ + -1.5360657274132592, + 53.79652815855911 + ], + [ + -1.536469455778816, + 53.79653048330562 + ], + [ + -1.536471218884509, + 53.796423678066056 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 342579666, + "osm_way_id": 1079858511, + "src_i": 6979945557, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536703163203406, + 53.79642557113816 + ], + [ + -1.5365477799983054, + 53.79642422935023 + ], + [ + -1.5365451368623095, + 53.796531029193865 + ], + [ + -1.5367005200674102, + 53.796532370981794 + ], + [ + -1.536703163203406, + 53.79642557113816 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6979945557, + "osm_way_id": 1079858511, + "src_i": 9319419229, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5318584700155804, + 53.800193426741906 + ], + [ + -1.5318572976568727, + 53.80017545289911 + ], + [ + -1.5319904212719622, + 53.800172423084426 + ], + [ + -1.53199159363067, + 53.80019039692722 + ], + [ + -1.5318584700155804, + 53.800193426741906 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-13", + "osm_node_id": -13, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5318494550338804, + 53.798692888758985 + ], + [ + -1.5318587090549534, + 53.798657333177644 + ], + [ + -1.5319903847309115, + 53.79866928965918 + ], + [ + -1.5319811307098385, + 53.79870484524052 + ], + [ + -1.5318494550338804, + 53.798692888758985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-12", + "osm_node_id": -12, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5320564555180884, + 53.79829821874839 + ], + [ + -1.5320602192463038, + 53.79828037081063 + ], + [ + -1.532192420199865, + 53.798290095175794 + ], + [ + -1.5321886564716496, + 53.79830794311355 + ], + [ + -1.5320564555180884, + 53.79829821874839 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-11", + "osm_node_id": -11, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5320750427325107, + 53.79642436514781 + ], + [ + -1.5320449572674892, + 53.79635579187086 + ], + [ + -1.5321923425501323, + 53.79633323148757 + ], + [ + -1.532222428015154, + 53.79640180476452 + ], + [ + -1.5320750427325107, + 53.79642436514781 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-10", + "osm_node_id": -10, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5328849644619986, + 53.80036084806033 + ], + [ + -1.5328344007831842, + 53.800399578247145 + ], + [ + -1.5327289022023738, + 53.800351523893305 + ], + [ + -1.532779465881188, + 53.80031279370649 + ], + [ + -1.5328849644619986, + 53.80036084806033 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-9", + "osm_node_id": -9, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340049248257623, + 53.795383173691654 + ], + [ + -1.534026444459498, + 53.79541682630835 + ], + [ + -1.5338697016228051, + 53.79543664196191 + ], + [ + -1.5338680877264022, + 53.79540068168582 + ], + [ + -1.5340049248257623, + 53.795383173691654 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-8", + "osm_node_id": -8, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390424360025188, + 53.79821739041512 + ], + [ + -1.53905, + 53.79823481387305 + ], + [ + -1.538902518797099, + 53.79825715482185 + ], + [ + -1.5388949547996178, + 53.798239731363914 + ], + [ + -1.5390424360025188, + 53.79821739041512 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-7", + "osm_node_id": -7, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53904639157125, + 53.79769948365882 + ], + [ + -1.5390516169414905, + 53.79773476764502 + ], + [ + -1.5388999411304856, + 53.79774260613265 + ], + [ + -1.5388947157602448, + 53.79770732214645 + ], + [ + -1.53904639157125, + 53.79769948365882 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-6", + "osm_node_id": -6, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53432838163834, + 53.79531721474278 + ], + [ + -1.5343523951987812, + 53.795340165431675 + ], + [ + -1.5342390676978723, + 53.795381534228255 + ], + [ + -1.534215054137431, + 53.79535858353937 + ], + [ + -1.53432838163834, + 53.79531721474278 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-4", + "osm_node_id": -4, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53531614409363, + 53.795435773217186 + ], + [ + -1.5353317532124258, + 53.795379171710245 + ], + [ + -1.5354632431380433, + 53.795391823367424 + ], + [ + -1.5354476340192476, + 53.795448424874365 + ], + [ + -1.53531614409363, + 53.795435773217186 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-3", + "osm_node_id": -3, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390532171349995, + 53.7965055720955 + ], + [ + -1.5390485581510438, + 53.79654088306135 + ], + [ + -1.5388967651041678, + 53.79653389353337 + ], + [ + -1.5389014240881238, + 53.79649858256752 + ], + [ + -1.5390532171349995, + 53.7965055720955 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-2", + "osm_node_id": -2, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.539137642187401, + 53.79884669704536 + ], + [ + -1.539128305948964, + 53.79888168425541 + ], + [ + -1.5390471102119123, + 53.7988741245575 + ], + [ + -1.5390564464503493, + 53.79883913734745 + ], + [ + -1.539137642187401, + 53.79884669704536 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-1", + "osm_node_id": -1, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532789188845744, + 53.79564878384876 + ], + [ + -1.532725033418638, + 53.79569182808161 + ], + [ + -1.5327108935545863, + 53.795684474328354 + ], + [ + -1.5326925194962928, + 53.795693149185134 + ], + [ + -1.5326087247770148, + 53.79563122009665 + ], + [ + -1.5326730187556048, + 53.795588246910214 + ], + [ + -1.5326865435119705, + 53.795595305685964 + ], + [ + -1.532707880440453, + 53.7955857099238 + ], + [ + -1.532789188845744, + 53.79564878384876 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/643851", + "osm_node_id": 643851, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5342417960963197, + 53.796654597789264 + ], + [ + -1.5341161146752091, + 53.79668241830497 + ], + [ + -1.5340896300262186, + 53.79663960339914 + ], + [ + -1.534092454344924, + 53.79663899365906 + ], + [ + -1.5340892417775558, + 53.79663176131423 + ], + [ + -1.5342190569050191, + 53.796611630898084 + ], + [ + -1.5342452431354294, + 53.79665385315093 + ], + [ + -1.5342417960963197, + 53.796654597789264 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/643852", + "osm_node_id": 643852, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534443408298103, + 53.796714060038425 + ], + [ + -1.5343515060332158, + 53.796732557286425 + ], + [ + -1.53435044329766, + 53.79673067860347 + ], + [ + -1.5343455178685432, + 53.79668486715786 + ], + [ + -1.5342889705926877, + 53.79659650250903 + ], + [ + -1.534382957220005, + 53.796582122355616 + ], + [ + -1.5344218749614735, + 53.79667086921615 + ], + [ + -1.5344470882864107, + 53.79671329741365 + ], + [ + -1.534443408298103, + 53.796714060038425 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/643906", + "osm_node_id": 643906, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536064734714717, + 53.79835530139243 + ], + [ + -1.5360294299696298, + 53.79842711582465 + ], + [ + -1.5359232264510507, + 53.79842238629202 + ], + [ + -1.5358968833986313, + 53.79834924266237 + ], + [ + -1.5359686408868132, + 53.798310614098895 + ], + [ + -1.536064734714717, + 53.79835530139243 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/643907", + "osm_node_id": 643907, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534785124978191, + 53.79655346906805 + ], + [ + -1.5347493939208465, + 53.79652502532243 + ], + [ + -1.5347431895549577, + 53.79646779429032 + ], + [ + -1.5348727656430483, + 53.79646289298725 + ], + [ + -1.5349065234836585, + 53.796459110440324 + ], + [ + -1.5349246143488098, + 53.796515454741275 + ], + [ + -1.534785124978191, + 53.79655346906805 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/643911", + "osm_node_id": 643911, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5343663036361788, + 53.796544146699674 + ], + [ + -1.5342723170088615, + 53.79655852865174 + ], + [ + -1.5342707289957027, + 53.79655490528475 + ], + [ + -1.5342195882727971, + 53.79657482256166 + ], + [ + -1.5341986350253463, + 53.79655605191987 + ], + [ + -1.5341866921919642, + 53.79649913924763 + ], + [ + -1.5342500924373574, + 53.79649449874784 + ], + [ + -1.53434583912528, + 53.796484996515126 + ], + [ + -1.534346615622606, + 53.7964877268557 + ], + [ + -1.534355760020527, + 53.796487137800014 + ], + [ + -1.5343663036361788, + 53.796544146699674 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/643914", + "osm_node_id": 643914, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5360389489133197, + 53.79890133982972 + ], + [ + -1.5359626542446843, + 53.7988658723819 + ], + [ + -1.5359539848804216, + 53.79882883381914 + ], + [ + -1.536049909705966, + 53.79880376882501 + ], + [ + -1.5361030891149883, + 53.798871631637844 + ], + [ + -1.5360389489133197, + 53.79890133982972 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/643945", + "osm_node_id": 643945, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363789527316591, + 53.79876571942469 + ], + [ + -1.5363199693857614, + 53.79877209741394 + ], + [ + -1.5362214866866726, + 53.798725106058306 + ], + [ + -1.5362707318425763, + 53.79866247639824 + ], + [ + -1.5363946516805376, + 53.79867779364484 + ], + [ + -1.5363789527316591, + 53.79876571942469 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/643946", + "osm_node_id": 643946, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5344696706557024, + 53.7996258729331 + ], + [ + -1.53447581411984, + 53.7996293308249 + ], + [ + -1.534423301584992, + 53.79966188626917 + ], + [ + -1.5344165856443943, + 53.79965810731953 + ], + [ + -1.534367574960232, + 53.7996340090962 + ], + [ + -1.5343701176083386, + 53.799632205056945 + ], + [ + -1.5343681976806365, + 53.7996311447567 + ], + [ + -1.5344202321367388, + 53.799598321314576 + ], + [ + -1.5344231021317574, + 53.79959990951664 + ], + [ + -1.5344274779225706, + 53.79959762883689 + ], + [ + -1.5344696706557024, + 53.7996258729331 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/643950", + "osm_node_id": 643950, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5344364548406764, + 53.79953975838708 + ], + [ + -1.5343814910103484, + 53.79950094186538 + ], + [ + -1.5344181782251844, + 53.799433499935084 + ], + [ + -1.5344924874967354, + 53.79944760399676 + ], + [ + -1.5345449513101828, + 53.799485085025786 + ], + [ + -1.5344364548406764, + 53.79953975838708 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/643951", + "osm_node_id": 643951, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536464301968133, + 53.79904213673025 + ], + [ + -1.5364609143082304, + 53.79906283371905 + ], + [ + -1.536401227547108, + 53.79905942528994 + ], + [ + -1.536404230003435, + 53.79904108272526 + ], + [ + -1.536384435411798, + 53.79899165240927 + ], + [ + -1.5364427884245724, + 53.79898349915906 + ], + [ + -1.5364363039106286, + 53.79899055523684 + ], + [ + -1.5364904501349488, + 53.79900585539633 + ], + [ + -1.536464301968133, + 53.79904213673025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9791699", + "osm_node_id": 9791699, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363105981288177, + 53.79980847300258 + ], + [ + -1.5363497320715025, + 53.799810064801925 + ], + [ + -1.5363414920645846, + 53.799880735296995 + ], + [ + -1.5362219723781372, + 53.799874905893965 + ], + [ + -1.5362508839619071, + 53.79980523994119 + ], + [ + -1.5363105981288177, + 53.79980847300258 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9791722", + "osm_node_id": 9791722, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532023693421108, + 53.79685879776649 + ], + [ + -1.5320097773709915, + 53.79683132708691 + ], + [ + -1.532137407648136, + 53.796808767602954 + ], + [ + -1.5321513236982522, + 53.79683623828253 + ], + [ + -1.532023693421108, + 53.79685879776649 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/9823004", + "osm_node_id": 9823004, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532055628776818, + 53.79941994176167 + ], + [ + -1.5320619595138403, + 53.799384720727986 + ], + [ + -1.5322154441068516, + 53.79940399409058 + ], + [ + -1.5321988757854768, + 53.7994380334156 + ], + [ + -1.532055628776818, + 53.79941994176167 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/9823073", + "osm_node_id": 9823073, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5342984727883962, + 53.79986418687904 + ], + [ + -1.5343347032400996, + 53.799870871536974 + ], + [ + -1.534312562408503, + 53.79991273496047 + ], + [ + -1.5342396797604705, + 53.7998990706671 + ], + [ + -1.5342624661506281, + 53.799857329551344 + ], + [ + -1.5342984727883962, + 53.79986418687904 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9823112", + "osm_node_id": 9823112, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339887660686635, + 53.79999886929157 + ], + [ + -1.5339653950216956, + 53.800054531906696 + ], + [ + -1.5339612750182368, + 53.800061328979844 + ], + [ + -1.5338411980807671, + 53.80003593573331 + ], + [ + -1.5338653623730423, + 53.79998039092932 + ], + [ + -1.5339229251855968, + 53.79998912693998 + ], + [ + -1.5339348238652093, + 53.79997829820781 + ], + [ + -1.5339887660686635, + 53.79999886929157 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9823132", + "osm_node_id": 9823132, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.538158565844355, + 53.79598497726674 + ], + [ + -1.5381885721371005, + 53.795995278996415 + ], + [ + -1.5381694428970938, + 53.79601471693488 + ], + [ + -1.5381021830032273, + 53.79601717028438 + ], + [ + -1.53810449422468, + 53.795981778379584 + ], + [ + -1.5381337301102744, + 53.79596738203837 + ], + [ + -1.538158565844355, + 53.79598497726674 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/10440056", + "osm_node_id": 10440056, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5359413949659344, + 53.800262707785 + ], + [ + -1.535917165204277, + 53.800304164715115 + ], + [ + -1.535881769106563, + 53.80029694765875 + ], + [ + -1.5358459741023798, + 53.800290417684145 + ], + [ + -1.5358678865524098, + 53.80024851289185 + ], + [ + -1.5359413949659344, + 53.800262707785 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/21099344", + "osm_node_id": 21099344, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368006623392154, + 53.80033911235501 + ], + [ + -1.5367780556092234, + 53.800380887644984 + ], + [ + -1.5366330302694335, + 53.80035350509893 + ], + [ + -1.5366556369994255, + 53.80031172980896 + ], + [ + -1.5368006623392154, + 53.80033911235501 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/21133749", + "osm_node_id": 21133749, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390636998489, + 53.798662304627804 + ], + [ + -1.5390931397553607, + 53.798666900161514 + ], + [ + -1.5390590987216077, + 53.79874297827775 + ], + [ + -1.5390296588151473, + 53.79873838274405 + ], + [ + -1.5390636998489, + 53.798662304627804 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/26109188", + "osm_node_id": 26109188, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5385246965138974, + 53.79776199730639 + ], + [ + -1.5385226273769055, + 53.79777642242589 + ], + [ + -1.5384922861245294, + 53.79777490257228 + ], + [ + -1.5384939152463701, + 53.79776354953558 + ], + [ + -1.538458746007679, + 53.797764925497724 + ], + [ + -1.5384547843487728, + 53.79772958395494 + ], + [ + -1.538492397270225, + 53.7977281126647 + ], + [ + -1.5385298107384424, + 53.79772617912312 + ], + [ + -1.5385350361086831, + 53.79776146310932 + ], + [ + -1.5385246965138974, + 53.79776199730639 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26109190", + "osm_node_id": 26109190, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368439558714972, + 53.79780223475632 + ], + [ + -1.5368468182537969, + 53.79780499297586 + ], + [ + -1.5368208558373218, + 53.7978143926859 + ], + [ + -1.5367724983244395, + 53.797813544625576 + ], + [ + -1.5367728606898583, + 53.79775619668165 + ], + [ + -1.5368478444483022, + 53.79776675741596 + ], + [ + -1.5368491629712127, + 53.79780216730719 + ], + [ + -1.5368439558714972, + 53.79780223475632 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26109191", + "osm_node_id": 26109191, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390437271196413, + 53.798786678116095 + ], + [ + -1.5390381393839818, + 53.79882194231722 + ], + [ + -1.538961357501338, + 53.79881708867819 + ], + [ + -1.5389685317276123, + 53.79878192340245 + ], + [ + -1.53901020679586, + 53.79878185595333 + ], + [ + -1.5390396467023204, + 53.79878645148703 + ], + [ + -1.5390437271196413, + 53.798786678116095 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26109193", + "osm_node_id": 26109193, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5356197240972067, + 53.79859212875965 + ], + [ + -1.5356204945043574, + 53.798609177200454 + ], + [ + -1.5354939376205756, + 53.79861117189591 + ], + [ + -1.53547847771107, + 53.798475192661535 + ], + [ + -1.535573514893593, + 53.79846346370838 + ], + [ + -1.5356825198927206, + 53.79850149782023 + ], + [ + -1.5356197240972067, + 53.79859212875965 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298420", + "osm_node_id": 26298420, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536415737389297, + 53.79851207114505 + ], + [ + -1.5363840532533102, + 53.798542140864235 + ], + [ + -1.5362624187535572, + 53.79856288461775 + ], + [ + -1.5361936591540712, + 53.79848549349188 + ], + [ + -1.5361713949964289, + 53.79847311432917 + ], + [ + -1.5362581708564211, + 53.79841866399965 + ], + [ + -1.536415737389297, + 53.79851207114505 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298423", + "osm_node_id": 26298423, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5374586737859566, + 53.79988491174681 + ], + [ + -1.5374314963795477, + 53.79995390590629 + ], + [ + -1.5373357070603992, + 53.79994074073644 + ], + [ + -1.5372968395628752, + 53.79993742493746 + ], + [ + -1.5373139773156224, + 53.79986731382047 + ], + [ + -1.53737338392869, + 53.799872129687984 + ], + [ + -1.537367343997529, + 53.79989812278206 + ], + [ + -1.5374369958076681, + 53.79987251729562 + ], + [ + -1.5374632931837742, + 53.799881584256646 + ], + [ + -1.5374586737859566, + 53.79988491174681 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298424", + "osm_node_id": 26298424, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5369290949969299, + 53.79983448768038 + ], + [ + -1.536949841178427, + 53.799836257545415 + ], + [ + -1.53693270342568, + 53.79990636866241 + ], + [ + -1.536906433455362, + 53.79990412755282 + ], + [ + -1.536876016075797, + 53.79990496212333 + ], + [ + -1.5368758211901936, + 53.79990247280096 + ], + [ + -1.5368611286427514, + 53.79990187475205 + ], + [ + -1.5368693686496693, + 53.79983120425698 + ], + [ + -1.53686955440001, + 53.79983028604956 + ], + [ + -1.5369290949969299, + 53.79983448768038 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298425", + "osm_node_id": 26298425, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5387112005137877, + 53.80006733285128 + ], + [ + -1.5387198348595437, + 53.800068364373224 + ], + [ + -1.5387079529279126, + 53.80010308178677 + ], + [ + -1.5386410751925343, + 53.80012456388339 + ], + [ + -1.5386341917721211, + 53.800117086923066 + ], + [ + -1.5386166155267664, + 53.80012694978376 + ], + [ + -1.5385956440087902, + 53.80011390961962 + ], + [ + -1.5385681986346769, + 53.80011013786456 + ], + [ + -1.5385953790861733, + 53.80004114370507 + ], + [ + -1.5387146064442156, + 53.800048773550074 + ], + [ + -1.5387112005137877, + 53.80006733285128 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298426", + "osm_node_id": 26298426, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5388512806313916, + 53.799148502201525 + ], + [ + -1.5388619658436145, + 53.799149643440714 + ], + [ + -1.5388512958568294, + 53.79918449755116 + ], + [ + -1.538849576904906, + 53.799194125688906 + ], + [ + -1.5387899449553595, + 53.79919040789314 + ], + [ + -1.5387921648241853, + 53.79917798916027 + ], + [ + -1.5387714323455821, + 53.79917553671009 + ], + [ + -1.5387832076991488, + 53.799140806706035 + ], + [ + -1.5388215392612636, + 53.79914464051429 + ], + [ + -1.5388512806313916, + 53.799148502201525 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298428", + "osm_node_id": 26298428, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5375999521455126, + 53.79900083628212 + ], + [ + -1.537588176791946, + 53.79903556628617 + ], + [ + -1.5375701544412645, + 53.79903343489382 + ], + [ + -1.5375676087480705, + 53.79904418628433 + ], + [ + -1.5375082234506157, + 53.79903927778668 + ], + [ + -1.5375111391219476, + 53.799026965173766 + ], + [ + -1.5375216796925115, + 53.79899209847282 + ], + [ + -1.5375999521455126, + 53.79900083628212 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298429", + "osm_node_id": 26298429, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5371298469614796, + 53.79895077823961 + ], + [ + -1.5371193079134595, + 53.79898564494055 + ], + [ + -1.537101197255239, + 53.79898373478134 + ], + [ + -1.5370990154500075, + 53.79899452394335 + ], + [ + -1.5370394748530876, + 53.798990322312534 + ], + [ + -1.5370400397168287, + 53.79898753171741 + ], + [ + -1.537060711293681, + 53.79893149948108 + ], + [ + -1.5371298469614796, + 53.79895077823961 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298430", + "osm_node_id": 26298430, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353424536500864, + 53.798999964839425 + ], + [ + -1.53527273028039, + 53.79897410034834 + ], + [ + -1.5352962033377906, + 53.79890582654551 + ], + [ + -1.5353340294153714, + 53.79890331923671 + ], + [ + -1.5353807182202748, + 53.79891117481145 + ], + [ + -1.5353424536500864, + 53.798999964839425 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298432", + "osm_node_id": 26298432, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5327191822829052, + 53.80028533471809 + ], + [ + -1.532668618604091, + 53.80032406490491 + ], + [ + -1.532703038751244, + 53.800337477388226 + ], + [ + -1.5326378373365634, + 53.80030733032737 + ], + [ + -1.5326745367317498, + 53.80026433645654 + ], + [ + -1.5327639770433508, + 53.80031152746158 + ], + [ + -1.5327191822829052, + 53.80028533471809 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298441", + "osm_node_id": 26298441, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5332893231606788, + 53.80001646631859 + ], + [ + -1.5332090942389252, + 53.7999638146324 + ], + [ + -1.53327042686987, + 53.799943580794256 + ], + [ + -1.5333308627225304, + 53.799970921971514 + ], + [ + -1.5332893231606788, + 53.80001646631859 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26298442", + "osm_node_id": 26298442, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5336328866863675, + 53.80044743834751 + ], + [ + -1.5335380748403236, + 53.80043509066105 + ], + [ + -1.5335667595650708, + 53.80035824632275 + ], + [ + -1.5336615714111148, + 53.80037059400921 + ], + [ + -1.5336328866863675, + 53.80044743834751 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/26298445", + "osm_node_id": 26298445, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53905, + 53.79560354976766 + ], + [ + -1.5390406668066507, + 53.79562067105352 + ], + [ + -1.538947304422282, + 53.795546716235734 + ], + [ + -1.5389744422425524, + 53.79553855938823 + ], + [ + -1.53905, + 53.79560354976766 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/26299406", + "osm_node_id": 26299406, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535681550032335, + 53.798122423845946 + ], + [ + -1.5356092139775182, + 53.79816067559364 + ], + [ + -1.535506755916629, + 53.79806770641789 + ], + [ + -1.5355905019145062, + 53.79803869250234 + ], + [ + -1.5356478789767198, + 53.798048989735406 + ], + [ + -1.535681550032335, + 53.798122423845946 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26300437", + "osm_node_id": 26300437, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353447526911888, + 53.79777193031418 + ], + [ + -1.535257727134017, + 53.79779735593628 + ], + [ + -1.53524203275277, + 53.79777861407279 + ], + [ + -1.535223587134919, + 53.797760777826205 + ], + [ + -1.535306440922143, + 53.79773088257542 + ], + [ + -1.5352709199758396, + 53.79773740985207 + ], + [ + -1.5353262979380748, + 53.79774087403912 + ], + [ + -1.5353447526911888, + 53.79777193031418 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26660391", + "osm_node_id": 26660391, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5369056797961926, + 53.79550792039843 + ], + [ + -1.5368561209962708, + 53.795557233802604 + ], + [ + -1.5367994351689316, + 53.79554277900548 + ], + [ + -1.5368005983923767, + 53.795524805162685 + ], + [ + -1.5368310325199233, + 53.79549428488335 + ], + [ + -1.5369056797961926, + 53.79550792039843 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26660405", + "osm_node_id": 26660405, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358192306209473, + 53.79541539728623 + ], + [ + -1.5358561568751565, + 53.79541598903988 + ], + [ + -1.5358535259195107, + 53.79547331540009 + ], + [ + -1.5358462100966652, + 53.79547319848827 + ], + [ + -1.5358157653113123, + 53.79547279739081 + ], + [ + -1.5357738877447424, + 53.79547059405273 + ], + [ + -1.5357824657563786, + 53.795413470939216 + ], + [ + -1.5358192306209473, + 53.79541539728623 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26660637", + "osm_node_id": 26660637, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533161948670889, + 53.79536602452682 + ], + [ + -1.5332540442988358, + 53.795423692629264 + ], + [ + -1.5331571328649243, + 53.79547768790202 + ], + [ + -1.5330650372369772, + 53.795420019799586 + ], + [ + -1.533161948670889, + 53.79536602452682 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/26661419", + "osm_node_id": 26661419, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534582338895156, + 53.795350488745065 + ], + [ + -1.5346126314261312, + 53.79540497324881 + ], + [ + -1.5344860608394553, + 53.7954295265289 + ], + [ + -1.5344557652633923, + 53.79537504202516 + ], + [ + -1.534582338895156, + 53.795350488745065 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/26661423", + "osm_node_id": 26661423, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53404327770349, + 53.79561903968402 + ], + [ + -1.5340150969407325, + 53.79564027266853 + ], + [ + -1.5340116224958347, + 53.79563866468139 + ], + [ + -1.5340076258184216, + 53.79563921506625 + ], + [ + -1.5339181794166457, + 53.79561691009032 + ], + [ + -1.5339271304515072, + 53.79560789079334 + ], + [ + -1.5339464743701863, + 53.79558345082778 + ], + [ + -1.5339948897397322, + 53.79556569911743 + ], + [ + -1.5340656697548094, + 53.79560495270946 + ], + [ + -1.53404327770349, + 53.79561903968402 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/26661426", + "osm_node_id": 26661426, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5345021145410336, + 53.79708531171287 + ], + [ + -1.5344166846097398, + 53.79711255936067 + ], + [ + -1.5343898558658557, + 53.79711800655199 + ], + [ + -1.5343604555455335, + 53.79706750424458 + ], + [ + -1.5343594948204107, + 53.79706599068622 + ], + [ + -1.5344851747189774, + 53.7970381692712 + ], + [ + -1.5345021145410336, + 53.79708531171287 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26661432", + "osm_node_id": 26661432, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5341722249810008, + 53.79599230044306 + ], + [ + -1.5340755373610242, + 53.795997503918215 + ], + [ + -1.5340688914574403, + 53.795946808256645 + ], + [ + -1.534165767872845, + 53.79594302031379 + ], + [ + -1.53417837301277, + 53.795959391565376 + ], + [ + -1.5341722249810008, + 53.79599230044306 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26661442", + "osm_node_id": 26661442, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5341759049693084, + 53.79568778832869 + ], + [ + -1.5340789463365396, + 53.79568481876856 + ], + [ + -1.5340802085253302, + 53.79567042512531 + ], + [ + -1.534053912671768, + 53.79565824741064 + ], + [ + -1.5340820949570693, + 53.79563701622478 + ], + [ + -1.5341791479875522, + 53.7956386152187 + ], + [ + -1.5341759049693084, + 53.79568778832869 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26661443", + "osm_node_id": 26661443, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5332260005650185, + 53.79783919957471 + ], + [ + -1.5332457997242868, + 53.79785840099157 + ], + [ + -1.5332197916314982, + 53.79786775753418 + ], + [ + -1.533181578827798, + 53.797871933983984 + ], + [ + -1.5331947549216391, + 53.7978015242922 + ], + [ + -1.5332063962913534, + 53.79780228421901 + ], + [ + -1.5332363584303292, + 53.79780549659599 + ], + [ + -1.5332342923384246, + 53.797812220824085 + ], + [ + -1.5332366507587343, + 53.79781110296725 + ], + [ + -1.5332556977813772, + 53.797825135982514 + ], + [ + -1.5332260005650185, + 53.79783919957471 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26661446", + "osm_node_id": 26661446, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5324601290720694, + 53.79772308006066 + ], + [ + -1.532473649260804, + 53.79772502709206 + ], + [ + -1.532445247729199, + 53.79779385038044 + ], + [ + -1.5323262045989534, + 53.79778526995243 + ], + [ + -1.532341154456294, + 53.79771416148771 + ], + [ + -1.5324601290720694, + 53.79772308006066 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26661448", + "osm_node_id": 26661448, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5325685935681566, + 53.79721321054208 + ], + [ + -1.532565301828512, + 53.79724857636655 + ], + [ + -1.5325621014414939, + 53.79724847204524 + ], + [ + -1.5324430217701979, + 53.79724004540124 + ], + [ + -1.5324476228974901, + 53.7972186244585 + ], + [ + -1.5324503924046193, + 53.79719709829513 + ], + [ + -1.5325699760379055, + 53.79720246544683 + ], + [ + -1.5325685935681566, + 53.79721321054208 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26661450", + "osm_node_id": 26661450, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5328548211403135, + 53.797257982371846 + ], + [ + -1.5328581128799579, + 53.79722261744669 + ], + [ + -1.5328661777943415, + 53.7972228791493 + ], + [ + -1.5328678053936384, + 53.79721094515081 + ], + [ + -1.5329285092140037, + 53.79721383377199 + ], + [ + -1.5329276352738759, + 53.79722023964021 + ], + [ + -1.5329293192072926, + 53.79722006247385 + ], + [ + -1.5329398338946125, + 53.79725493277208 + ], + [ + -1.5328548211403135, + 53.797257982371846 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26661452", + "osm_node_id": 26661452, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5339796673470556, + 53.79716035560919 + ], + [ + -1.5339237778101116, + 53.79717464762909 + ], + [ + -1.5339169979226752, + 53.79716539630712 + ], + [ + -1.5338993562079382, + 53.79716688018787 + ], + [ + -1.533890899999804, + 53.797131815636156 + ], + [ + -1.5339716557217042, + 53.79712525508461 + ], + [ + -1.5339796673470556, + 53.79716035560919 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26661454", + "osm_node_id": 26661454, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5343160870973453, + 53.79713294518417 + ], + [ + -1.5341877640627828, + 53.797144179510404 + ], + [ + -1.5341799412328596, + 53.797109062798036 + ], + [ + -1.5342868040128939, + 53.79708241769575 + ], + [ + -1.534319759472934, + 53.79711509005183 + ], + [ + -1.5343160870973453, + 53.79713294518417 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/26661455", + "osm_node_id": 26661455, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390582034658673, + 53.80010876909699 + ], + [ + -1.5390463215342363, + 53.800143486510535 + ], + [ + -1.5388970863609048, + 53.80012566645175 + ], + [ + -1.5389089682925359, + 53.80009094903819 + ], + [ + -1.5390582034658673, + 53.80010876909699 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/30822588", + "osm_node_id": 30822588, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5359378657094607, + 53.800180002567416 + ], + [ + -1.5359738449414408, + 53.80018649027391 + ], + [ + -1.5359521669631524, + 53.800228438233646 + ], + [ + -1.535878786443305, + 53.8002146381427 + ], + [ + -1.535902157490273, + 53.80017300854283 + ], + [ + -1.5359378657094607, + 53.800180002567416 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/50021952", + "osm_node_id": 50021952, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534418501004465, + 53.796189237498524 + ], + [ + -1.5344083365022139, + 53.796167571040975 + ], + [ + -1.5344447740198706, + 53.79616160673969 + ], + [ + -1.534481030354818, + 53.79615513612031 + ], + [ + -1.534492041391409, + 53.7961766586864 + ], + [ + -1.534418501004465, + 53.796189237498524 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/60197210", + "osm_node_id": 60197210, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535464525119903, + 53.79602231890091 + ], + [ + -1.535428142413822, + 53.796027487302524 + ], + [ + -1.5354192416229053, + 53.796005628390134 + ], + [ + -1.5354949957885002, + 53.795996417537644 + ], + [ + -1.5355014361486743, + 53.796018576823464 + ], + [ + -1.535464525119903, + 53.79602231890091 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/60197213", + "osm_node_id": 60197213, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390513779021178, + 53.79666146321085 + ], + [ + -1.5390486220978823, + 53.7967064005158 + ], + [ + -1.5388964682081316, + 53.796703144072055 + ], + [ + -1.538899224012367, + 53.796658206767106 + ], + [ + -1.5390513779021178, + 53.79666146321085 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/250093012", + "osm_node_id": 250093012, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5357088446746145, + 53.79877612817364 + ], + [ + -1.5357107904855607, + 53.798777085051896 + ], + [ + -1.5356702969112836, + 53.79880582377502 + ], + [ + -1.5356604978195387, + 53.7988143907132 + ], + [ + -1.5355974157857948, + 53.798789218699795 + ], + [ + -1.5355753389010371, + 53.798770422877 + ], + [ + -1.5356793560467532, + 53.79872779503009 + ], + [ + -1.5357365869447643, + 53.7987574465647 + ], + [ + -1.5357088446746145, + 53.79877612817364 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/250348721", + "osm_node_id": 250348721, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.539060363955486, + 53.79632437496782 + ], + [ + -1.539039636044514, + 53.79634323194448 + ], + [ + -1.5389119387754435, + 53.79629425668526 + ], + [ + -1.5389326666864154, + 53.79627539970859 + ], + [ + -1.539060363955486, + 53.79632437496782 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/301688528", + "osm_node_id": 301688528, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5377053334904522, + 53.796625922018656 + ], + [ + -1.5377135095505317, + 53.79662616303686 + ], + [ + -1.5377097245067035, + 53.79667107336216 + ], + [ + -1.5376948873176024, + 53.796670637191156 + ], + [ + -1.5376935048478535, + 53.79667378391766 + ], + [ + -1.537641927154884, + 53.796665869887015 + ], + [ + -1.5376508629643078, + 53.79664554881467 + ], + [ + -1.5376520916571355, + 53.79662456404294 + ], + [ + -1.5377053334904522, + 53.796625922018656 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/301689294", + "osm_node_id": 301689294, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5357484658313079, + 53.7964179682728 + ], + [ + -1.5357432313258046, + 53.79652473394221 + ], + [ + -1.5357057386853106, + 53.79652409272587 + ], + [ + -1.5356682886760427, + 53.79652373659449 + ], + [ + -1.535671193689568, + 53.79641694034814 + ], + [ + -1.535713771626275, + 53.796416721812975 + ], + [ + -1.5357441585549645, + 53.796417894528425 + ], + [ + -1.5357484658313079, + 53.7964179682728 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/301689309", + "osm_node_id": 301689309, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5346470302576716, + 53.79662780879551 + ], + [ + -1.534619523981807, + 53.79663552677404 + ], + [ + -1.534571002034197, + 53.79661400780524 + ], + [ + -1.5345833529093111, + 53.79660416472962 + ], + [ + -1.5346044949521902, + 53.79659119291392 + ], + [ + -1.5346365962651718, + 53.79657446463164 + ], + [ + -1.5346723273225165, + 53.79660290837725 + ], + [ + -1.5346470302576716, + 53.79662780879551 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/301689312", + "osm_node_id": 301689312, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5344923641706896, + 53.79680501023704 + ], + [ + -1.5345256408874666, + 53.796810890901405 + ], + [ + -1.5345096815836023, + 53.79684240493118 + ], + [ + -1.5344147327086184, + 53.79685437849983 + ], + [ + -1.5344045605936483, + 53.796826244120865 + ], + [ + -1.5343741340788206, + 53.796772514147996 + ], + [ + -1.5344662083911549, + 53.79675432087072 + ], + [ + -1.5345205571137972, + 53.79676928738186 + ], + [ + -1.5344923641706896, + 53.79680501023704 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/301689321", + "osm_node_id": 301689321, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5375351481147577, + 53.79779334765962 + ], + [ + -1.53753385090746, + 53.79775793776839 + ], + [ + -1.5375748804171465, + 53.797755865731276 + ], + [ + -1.5376052977967114, + 53.79775671289228 + ], + [ + -1.5376092959966683, + 53.79775662475876 + ], + [ + -1.537611531090932, + 53.797792018462204 + ], + [ + -1.5375351481147577, + 53.79779334765962 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/301689323", + "osm_node_id": 301689323, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5384259351892975, + 53.79539531813141 + ], + [ + -1.5384553355096198, + 53.7954 + ], + [ + -1.538542587925814, + 53.795433192164005 + ], + [ + -1.5385326578953042, + 53.7954501947394 + ], + [ + -1.5384259351892975, + 53.79539531813141 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/317087692", + "osm_node_id": 317087692, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534873292443195, + 53.79730234770822 + ], + [ + -1.5347907005335002, + 53.79733249656771 + ], + [ + -1.534741458422684, + 53.797347856082425 + ], + [ + -1.5346815661181517, + 53.797227721097144 + ], + [ + -1.5347643681388874, + 53.79719777728299 + ], + [ + -1.5348198953104126, + 53.797200269303325 + ], + [ + -1.534873292443195, + 53.79730234770822 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/319558919", + "osm_node_id": 319558919, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5367761356815213, + 53.79547467877173 + ], + [ + -1.5367451092844457, + 53.79550498771048 + ], + [ + -1.5366266325404851, + 53.79548158286415 + ], + [ + -1.5366036375618302, + 53.79550103339312 + ], + [ + -1.5365786708889848, + 53.795490734361415 + ], + [ + -1.5365857202666695, + 53.79543353750353 + ], + [ + -1.5367263880861712, + 53.79540721255975 + ], + [ + -1.5367826186729212, + 53.79546978196527 + ], + [ + -1.5367761356815213, + 53.79547467877173 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320943570", + "osm_node_id": 320943570, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535200570840651, + 53.79641247431675 + ], + [ + -1.5352099116467193, + 53.7964125633496 + ], + [ + -1.535207006633194, + 53.79651935959594 + ], + [ + -1.5349577449013843, + 53.796511743240764 + ], + [ + -1.534939654036233, + 53.79645539893981 + ], + [ + -1.5349456087049425, + 53.79643319288927 + ], + [ + -1.5351703407339707, + 53.79645421273454 + ], + [ + -1.535170119965123, + 53.7964125300747 + ], + [ + -1.535200570840651, + 53.79641247431675 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/320943571", + "osm_node_id": 320943571, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5356139247279623, + 53.79540464049979 + ], + [ + -1.5356053467163262, + 53.795461763613304 + ], + [ + -1.535600567451412, + 53.795462010027435 + ], + [ + -1.5355251497679918, + 53.79545588025097 + ], + [ + -1.5355227715546131, + 53.795455654521234 + ], + [ + -1.5355383806734086, + 53.795399053014286 + ], + [ + -1.5356139247279623, + 53.79540464049979 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/320943572", + "osm_node_id": 320943572, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535838720703829, + 53.795559902089984 + ], + [ + -1.5358083337751396, + 53.795558736569106 + ], + [ + -1.5358108002960575, + 53.795536300292206 + ], + [ + -1.5357727367016474, + 53.79553640731149 + ], + [ + -1.5357725905374449, + 53.79551842087819 + ], + [ + -1.5358126243035015, + 53.795513843330916 + ], + [ + -1.5358430416830664, + 53.79551470488107 + ], + [ + -1.535838720703829, + 53.795559902089984 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320943573", + "osm_node_id": 320943573, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5355843005937049, + 53.79559139993197 + ], + [ + -1.5355777110242408, + 53.79561354303 + ], + [ + -1.5355477199569332, + 53.7956104295784 + ], + [ + -1.5355540217656236, + 53.79558925325116 + ], + [ + -1.5355465080120871, + 53.795588720852734 + ], + [ + -1.53555013775645, + 53.795570862123114 + ], + [ + -1.5355755733727787, + 53.79557266526305 + ], + [ + -1.5355958643136867, + 53.79556343012887 + ], + [ + -1.535614451528109, + 53.795577677182685 + ], + [ + -1.5355843005937049, + 53.79559139993197 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320943575", + "osm_node_id": 320943575, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5345857996371597, + 53.79560190041173 + ], + [ + -1.5345568621701455, + 53.79561650539557 + ], + [ + -1.5345370812814025, + 53.79560283031033 + ], + [ + -1.534562277858358, + 53.79558422424441 + ], + [ + -1.5345862183366983, + 53.79557310862863 + ], + [ + -1.5345934778254242, + 53.79557856481317 + ], + [ + -1.5346036697334633, + 53.7955751123173 + ], + [ + -1.5346188190440386, + 53.79559071554819 + ], + [ + -1.5345857996371597, + 53.79560190041173 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320943606", + "osm_node_id": 320943606, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5348728996269005, + 53.795819399557736 + ], + [ + -1.5347983300003638, + 53.79584018288141 + ], + [ + -1.5347853366117759, + 53.79582391595114 + ], + [ + -1.5347933604174775, + 53.79580656533826 + ], + [ + -1.5349053754856512, + 53.79579792735367 + ], + [ + -1.5349104333760764, + 53.79581566377554 + ], + [ + -1.5348728996269005, + 53.795819399557736 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320943615", + "osm_node_id": 320943615, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5344137323973575, + 53.795443555946875 + ], + [ + -1.5343658605759398, + 53.79546579257436 + ], + [ + -1.534340173739888, + 53.795461805881416 + ], + [ + -1.5342920369958535, + 53.79541200324626 + ], + [ + -1.5342980632241203, + 53.79540948244764 + ], + [ + -1.5343507341035212, + 53.79539142226996 + ], + [ + -1.534383439866382, + 53.79538907234245 + ], + [ + -1.5344137323973575, + 53.795443555946875 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/320943617", + "osm_node_id": 320943617, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5341785328798665, + 53.795439035056866 + ], + [ + -1.5340816686448118, + 53.795442945307464 + ], + [ + -1.5340800654062152, + 53.79542907686807 + ], + [ + -1.5340775623442469, + 53.795410005852844 + ], + [ + -1.5340663077006518, + 53.7954033499732 + ], + [ + -1.5341502957829893, + 53.79538222310865 + ], + [ + -1.5341743093434308, + 53.79540517379754 + ], + [ + -1.5341785328798665, + 53.795439035056866 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320943620", + "osm_node_id": 320943620, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533083123534497, + 53.79562438435267 + ], + [ + -1.5330844420574075, + 53.795633157235514 + ], + [ + -1.5330398802461598, + 53.79563549727049 + ], + [ + -1.5330356627998991, + 53.79563665020086 + ], + [ + -1.5330036619748069, + 53.795595849775566 + ], + [ + -1.5330316889606428, + 53.79558818125973 + ], + [ + -1.5330302943105436, + 53.79558137339473 + ], + [ + -1.5330747099575888, + 53.7955782005879 + ], + [ + -1.5330763801881115, + 53.795577828268726 + ], + [ + -1.5331032469955899, + 53.795619900334856 + ], + [ + -1.533083123534497, + 53.79562438435267 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/320943623", + "osm_node_id": 320943623, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5328748304106228, + 53.79569529316799 + ], + [ + -1.5328066158818088, + 53.79573610168717 + ], + [ + -1.5328031642750677, + 53.79573408810597 + ], + [ + -1.532800403903201, + 53.795735672710734 + ], + [ + -1.532747340207506, + 53.79570343023041 + ], + [ + -1.5328114971571558, + 53.79566038509824 + ], + [ + -1.532819143372001, + 53.79566436099932 + ], + [ + -1.5328243519942601, + 53.795661634256035 + ], + [ + -1.5328748304106228, + 53.79569529316799 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/320943624", + "osm_node_id": 320943624, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5370095888413007, + 53.79531897831257 + ], + [ + -1.5370654601077194, + 53.79538165923397 + ], + [ + -1.5369475756332878, + 53.79541831918232 + ], + [ + -1.536891704366869, + 53.795355638260915 + ], + [ + -1.5370095888413007, + 53.79531897831257 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/320951154", + "osm_node_id": 320951154, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5378200069200596, + 53.7953951931257 + ], + [ + -1.537873898879569, + 53.79541072261221 + ], + [ + -1.5378071399026052, + 53.79549154824752 + ], + [ + -1.5377532479430958, + 53.79547601876101 + ], + [ + -1.5378200069200596, + 53.7953951931257 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/320951155", + "osm_node_id": 320951155, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5375903159659516, + 53.79572717951694 + ], + [ + -1.537556765191295, + 53.79573779690851 + ], + [ + -1.5375017237112343, + 53.795723648780076 + ], + [ + -1.5375221227527505, + 53.7956903415029 + ], + [ + -1.5375522615068042, + 53.79569678064602 + ], + [ + -1.5375739410076366, + 53.795693106017694 + ], + [ + -1.5375996065280753, + 53.795725603905375 + ], + [ + -1.5375903159659516, + 53.79572717951694 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320951161", + "osm_node_id": 320951161, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5385942356557971, + 53.79632309793105 + ], + [ + -1.5385743634144275, + 53.7963571012832 + ], + [ + -1.5384304419188757, + 53.796327758215924 + ], + [ + -1.5384503141602452, + 53.79629375486377 + ], + [ + -1.5385942356557971, + 53.79632309793105 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320959866", + "osm_node_id": 320959866, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5378808051381387, + 53.7961776425443 + ], + [ + -1.5378609328967692, + 53.79621164589645 + ], + [ + -1.5378563424272833, + 53.79621640150941 + ], + [ + -1.537771692038403, + 53.79619763626355 + ], + [ + -1.5377982117059004, + 53.796155590277756 + ], + [ + -1.5378830143491582, + 53.796174114505405 + ], + [ + -1.5378808051381387, + 53.7961776425443 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320959867", + "osm_node_id": 320959867, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5386100655434403, + 53.796485167386244 + ], + [ + -1.5386054065594845, + 53.79652047835209 + ], + [ + -1.5385680265872301, + 53.79651875705043 + ], + [ + -1.5385671100158766, + 53.79653025757588 + ], + [ + -1.5385366926363118, + 53.796529412213516 + ], + [ + -1.5385376457487159, + 53.79651745483266 + ], + [ + -1.5385295930146825, + 53.79651710949314 + ], + [ + -1.5385339292193576, + 53.796481784138145 + ], + [ + -1.5386100655434403, + 53.796485167386244 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/320959868", + "osm_node_id": 320959868, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5385937408290697, + 53.79667419400834 + ], + [ + -1.5385557000728163, + 53.79667339990731 + ], + [ + -1.5385926659131637, + 53.79669216964978 + ], + [ + -1.5385161900618187, + 53.79669026308785 + ], + [ + -1.538525285738339, + 53.79667251857208 + ], + [ + -1.5385176821547197, + 53.79667229823827 + ], + [ + -1.5385270732047325, + 53.79665009668433 + ], + [ + -1.5385574905842974, + 53.796650942046696 + ], + [ + -1.5385937408290697, + 53.79667419400834 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320959869", + "osm_node_id": 320959869, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5371217394158703, + 53.796163016876065 + ], + [ + -1.5371099777651975, + 53.79618437306764 + ], + [ + -1.5370529554556838, + 53.796173415732476 + ], + [ + -1.5370540943184285, + 53.79617134729264 + ], + [ + -1.5370675596955872, + 53.796136263855175 + ], + [ + -1.5370732631445736, + 53.79613702827859 + ], + [ + -1.5370769751063003, + 53.79613050010263 + ], + [ + -1.5371338177556486, + 53.796141779394944 + ], + [ + -1.5371217394158703, + 53.796163016876065 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320998072", + "osm_node_id": 320998072, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536420926218487, + 53.796212157610476 + ], + [ + -1.5363616749048845, + 53.79620384248236 + ], + [ + -1.5363968654591886, + 53.79611634567894 + ], + [ + -1.536456116772791, + 53.79612466080705 + ], + [ + -1.536420926218487, + 53.796212157610476 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/320998081", + "osm_node_id": 320998081, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532933463571452, + 53.79566461460803 + ], + [ + -1.532909147024799, + 53.79567733821094 + ], + [ + -1.5328586686084364, + 53.79564367839967 + ], + [ + -1.5328610376865524, + 53.79564243913442 + ], + [ + -1.5328591527773572, + 53.79564093816656 + ], + [ + -1.53292029509033, + 53.79561414737416 + ], + [ + -1.5329245125365907, + 53.7956175072399 + ], + [ + -1.5329309391938708, + 53.795615749066044 + ], + [ + -1.5329629369738755, + 53.79565654949134 + ], + [ + -1.532933463571452, + 53.79566461460803 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342529324", + "osm_node_id": 342529324, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5328219098340428, + 53.79680305331309 + ], + [ + -1.5328824888058181, + 53.79679934630919 + ], + [ + -1.5328981770968901, + 53.796888800036555 + ], + [ + -1.5328375981251148, + 53.796892507040454 + ], + [ + -1.5328219098340428, + 53.79680305331309 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342529328", + "osm_node_id": 342529328, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5379633011275755, + 53.7987662967892 + ], + [ + -1.5379740502866368, + 53.79876697577706 + ], + [ + -1.5379676738733012, + 53.798802193213454 + ], + [ + -1.5378915680000942, + 53.79879670914995 + ], + [ + -1.5378997136092978, + 53.79876161941722 + ], + [ + -1.5379329324694113, + 53.79876430928832 + ], + [ + -1.5379633711645893, + 53.79876479851931 + ], + [ + -1.5379633011275755, + 53.7987662967892 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342529363", + "osm_node_id": 342529363, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5379372214752296, + 53.798708513573594 + ], + [ + -1.5379750110117598, + 53.79871120344469 + ], + [ + -1.5379678367854854, + 53.79874636872043 + ], + [ + -1.537964231401823, + 53.79874611241376 + ], + [ + -1.537933792706645, + 53.79874562318277 + ], + [ + -1.5378924495529407, + 53.798741122077836 + ], + [ + -1.5378993101351972, + 53.79870593521838 + ], + [ + -1.5379372214752296, + 53.798708513573594 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342529365", + "osm_node_id": 342529365, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537371383306168, + 53.795658134096115 + ], + [ + -1.5373509873097393, + 53.79569144137329 + ], + [ + -1.537294901364648, + 53.79570397252137 + ], + [ + -1.537247311213829, + 53.79567749918952 + ], + [ + -1.5372919917834913, + 53.79562658499279 + ], + [ + -1.537371383306168, + 53.795658134096115 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579502", + "osm_node_id": 342579502, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536545665185, + 53.79781304280409 + ], + [ + -1.5365153482933243, + 53.79781902059519 + ], + [ + -1.5364846081344787, + 53.79776462242633 + ], + [ + -1.5365452312600236, + 53.797754175905865 + ], + [ + -1.5365755633771372, + 53.79775576051064 + ], + [ + -1.5365779872668293, + 53.79775576590657 + ], + [ + -1.5365776249014105, + 53.797813113850495 + ], + [ + -1.536545665185, + 53.79781304280409 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579512", + "osm_node_id": 342579512, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5348219233387228, + 53.796755098783954 + ], + [ + -1.53482277291815, + 53.79680521798034 + ], + [ + -1.534767087402072, + 53.796805547132074 + ], + [ + -1.5347202722260351, + 53.7967877360665 + ], + [ + -1.5347704400434676, + 53.796741733065375 + ], + [ + -1.5347903427357128, + 53.796722726801306 + ], + [ + -1.5348377029824214, + 53.79674002975014 + ], + [ + -1.5348219233387228, + 53.796755098783954 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579517", + "osm_node_id": 342579517, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5349635792891354, + 53.79667928776625 + ], + [ + -1.5349587223744887, + 53.79670562709917 + ], + [ + -1.5349033596376913, + 53.79670206758402 + ], + [ + -1.5348698880353109, + 53.796675778613114 + ], + [ + -1.534968212389847, + 53.79664470974756 + ], + [ + -1.5349816625415678, + 53.79667662847209 + ], + [ + -1.5349635792891354, + 53.79667928776625 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579521", + "osm_node_id": 342579521, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363132169041132, + 53.797843129610385 + ], + [ + -1.5362865602076758, + 53.797774063505166 + ], + [ + -1.5363849759148387, + 53.79774801375382 + ], + [ + -1.536426163769078, + 53.79777015145592 + ], + [ + -1.5364224898709453, + 53.79782745803105 + ], + [ + -1.5363132169041132, + 53.797843129610385 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579538", + "osm_node_id": 342579538, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5361690913876953, + 53.79658009798255 + ], + [ + -1.5361758423467997, + 53.79658347313676 + ], + [ + -1.536139861592276, + 53.79660857860035 + ], + [ + -1.536085113963164, + 53.796581122309924 + ], + [ + -1.5360855585459467, + 53.79656313767527 + ], + [ + -1.5360817674119436, + 53.796579439679086 + ], + [ + -1.5361178821503196, + 53.796554400765295 + ], + [ + -1.536134461129501, + 53.79656274377238 + ], + [ + -1.5361746243117786, + 53.79656241012404 + ], + [ + -1.5361690913876953, + 53.79658009798255 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579554", + "osm_node_id": 342579554, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5334575551127085, + 53.79619286086551 + ], + [ + -1.5334280573495844, + 53.79612419945504 + ], + [ + -1.5335028660154941, + 53.79612429927975 + ], + [ + -1.5335282894514726, + 53.79616668430981 + ], + [ + -1.5334575551127085, + 53.79619286086551 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579557", + "osm_node_id": 342579557, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5333211519383245, + 53.79621330514492 + ], + [ + -1.5332702593900547, + 53.79622261492279 + ], + [ + -1.533234781074977, + 53.79615494816208 + ], + [ + -1.533233228080325, + 53.796150663793675 + ], + [ + -1.5333504944019833, + 53.79613582678485 + ], + [ + -1.533379993687651, + 53.796204486396675 + ], + [ + -1.5333211519383245, + 53.79621330514492 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579559", + "osm_node_id": 342579559, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5326951702450076, + 53.79632781397386 + ], + [ + -1.5326965268315123, + 53.796331310536495 + ], + [ + -1.5325796259203603, + 53.79634712780594 + ], + [ + -1.5325495374102511, + 53.79627855452899 + ], + [ + -1.5325644141854902, + 53.79627627744654 + ], + [ + -1.5326426577101595, + 53.79626027491683 + ], + [ + -1.5326442396331432, + 53.79626297378115 + ], + [ + -1.5326596934524737, + 53.796260147213154 + ], + [ + -1.5326951702450076, + 53.79632781397386 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579565", + "osm_node_id": 342579565, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.537057932651289, + 53.79919760066782 + ], + [ + -1.537053416786448, + 53.7992199245295 + ], + [ + -1.536993876189528, + 53.79921572289869 + ], + [ + -1.5369962894214138, + 53.79920379249748 + ], + [ + -1.5370034057910247, + 53.79916861642988 + ], + [ + -1.5370629463879446, + 53.7991728180607 + ], + [ + -1.537057932651289, + 53.79919760066782 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579576", + "osm_node_id": 342579576, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5364510893332413, + 53.799122861641536 + ], + [ + -1.536472146113669, + 53.79912460542624 + ], + [ + -1.536463817799212, + 53.79915968076982 + ], + [ + -1.5364448712644585, + 53.799158111453515 + ], + [ + -1.536442587448794, + 53.79916933049128 + ], + [ + -1.536383052942049, + 53.79916510367946 + ], + [ + -1.5363875322658391, + 53.79914309817764 + ], + [ + -1.5363914025721188, + 53.79911945411175 + ], + [ + -1.5364510893332413, + 53.799122861641536 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579578", + "osm_node_id": 342579578, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363417463293954, + 53.799607752500876 + ], + [ + -1.5363364813730165, + 53.79964168120932 + ], + [ + -1.536276767206106, + 53.79963844904726 + ], + [ + -1.5362739459324883, + 53.79963821702227 + ], + [ + -1.5362904076757988, + 53.799568050147336 + ], + [ + -1.536349823424129, + 53.79957284622977 + ], + [ + -1.5363417463293954, + 53.799607752500876 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579580", + "osm_node_id": 342579580, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535811887392314, + 53.79967119784569 + ], + [ + -1.5358067868706629, + 53.79968571199804 + ], + [ + -1.5356893622044516, + 53.79967131205954 + ], + [ + -1.5357153352787334, + 53.799602155122834 + ], + [ + -1.5357565246555163, + 53.79960755195214 + ], + [ + -1.535776471501531, + 53.79960347712568 + ], + [ + -1.5358156739586857, + 53.79967042442905 + ], + [ + -1.535811887392314, + 53.79967119784569 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579586", + "osm_node_id": 342579586, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5351380536706483, + 53.79969366020291 + ], + [ + -1.535063147561937, + 53.799638339330016 + ], + [ + -1.535182050618155, + 53.79958216859815 + ], + [ + -1.5352569567268664, + 53.799637489471046 + ], + [ + -1.5351380536706483, + 53.79969366020291 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579596", + "osm_node_id": 342579596, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535580384611112, + 53.79997845019317 + ], + [ + -1.5355556371845704, + 53.79998893088786 + ], + [ + -1.5355378036293175, + 53.79999358307882 + ], + [ + -1.5354893562863523, + 53.79992878155694 + ], + [ + -1.5355125080870162, + 53.79992274351128 + ], + [ + -1.5355294920628422, + 53.79991166206973 + ], + [ + -1.5356183994841213, + 53.79995920381022 + ], + [ + -1.535580384611112, + 53.79997845019317 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579601", + "osm_node_id": 342579601, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535346295028034, + 53.80004353500138 + ], + [ + -1.5352978476850692, + 53.7999787334795 + ], + [ + -1.5353857761107002, + 53.799955798978395 + ], + [ + -1.535434223453665, + 53.80002060050028 + ], + [ + -1.535346295028034, + 53.80004353500138 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579609", + "osm_node_id": 342579609, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5387393919343515, + 53.79981146234779 + ], + [ + -1.5387628756495588, + 53.79981417919854 + ], + [ + -1.5387511672879184, + 53.79984948117118 + ], + [ + -1.5387509145456515, + 53.79985086792518 + ], + [ + -1.5386316841425214, + 53.79984323628153 + ], + [ + -1.5386809262533379, + 53.799801192993705 + ], + [ + -1.5387405612479719, + 53.79980490359489 + ], + [ + -1.5387393919343515, + 53.79981146234779 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579616", + "osm_node_id": 342579616, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5371276788591421, + 53.79557627783818 + ], + [ + -1.5370829982894798, + 53.795627192034914 + ], + [ + -1.537077182172254, + 53.79562541227734 + ], + [ + -1.5370226294287455, + 53.79560942053949 + ], + [ + -1.5370157871170143, + 53.795606876358505 + ], + [ + -1.5370595632956734, + 53.79555568876798 + ], + [ + -1.5371276788591421, + 53.79557627783818 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579620", + "osm_node_id": 342579620, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5361720177168334, + 53.79584887842259 + ], + [ + -1.5361627819662858, + 53.7958133210426 + ], + [ + -1.5363132762833203, + 53.7957996846282 + ], + [ + -1.536322512033868, + 53.79583524200819 + ], + [ + -1.5361720177168334, + 53.79584887842259 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579626", + "osm_node_id": 342579626, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358849542681432, + 53.79642030291184 + ], + [ + -1.5360674905189522, + 53.79642135331955 + ], + [ + -1.5360657274132592, + 53.79652815855911 + ], + [ + -1.5360296172425143, + 53.7965531974729 + ], + [ + -1.5358830800167544, + 53.79649280172786 + ], + [ + -1.5358828638155382, + 53.79652710545344 + ], + [ + -1.5358524129400102, + 53.79652703890364 + ], + [ + -1.5358425377210765, + 53.796526431861516 + ], + [ + -1.5358477691814922, + 53.79641966619211 + ], + [ + -1.5358849542681432, + 53.79642030291184 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579666", + "osm_node_id": 342579666, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535912643249261, + 53.79784772244613 + ], + [ + -1.5358823842142486, + 53.79781714371087 + ], + [ + -1.5358882003314747, + 53.797784429086676 + ], + [ + -1.5359814013262032, + 53.79778672775285 + ], + [ + -1.535987817325677, + 53.79785746479772 + ], + [ + -1.535912643249261, + 53.79784772244613 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342579667", + "osm_node_id": 342579667, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5388649698224854, + 53.79911172084475 + ], + [ + -1.5388352284523572, + 53.79910785915752 + ], + [ + -1.538843399944805, + 53.79908590042043 + ], + [ + -1.5388510157087747, + 53.79906387153625 + ], + [ + -1.538880851476617, + 53.79906747062155 + ], + [ + -1.5388649698224854, + 53.79911172084475 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342605802", + "osm_node_id": 342605802, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.538968444942617, + 53.79883094452708 + ], + [ + -1.5389591087041803, + 53.79886593173713 + ], + [ + -1.5389507925700736, + 53.798865156521856 + ], + [ + -1.5389466192775825, + 53.79887722811657 + ], + [ + -1.5389167835097401, + 53.79887362903126 + ], + [ + -1.5389206690414574, + 53.79886239200706 + ], + [ + -1.5388845786637817, + 53.79886011222664 + ], + [ + -1.5388909550771173, + 53.79882489479024 + ], + [ + -1.538968444942617, + 53.79883094452708 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342605804", + "osm_node_id": 342605804, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5320908193311218, + 53.795946902685415 + ], + [ + -1.5320288152583716, + 53.795902772971324 + ], + [ + -1.5321313326984682, + 53.79585251977601 + ], + [ + -1.5321933367712184, + 53.7958966494901 + ], + [ + -1.5320908193311218, + 53.795946902685415 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/342620651", + "osm_node_id": 342620651, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5333768998786974, + 53.79553499987308 + ], + [ + -1.5334147716325917, + 53.79553725357317 + ], + [ + -1.5334101918209122, + 53.79556409652623 + ], + [ + -1.533341276921961, + 53.79554292019898 + ], + [ + -1.533325186679332, + 53.79551767084392 + ], + [ + -1.5333984469182211, + 53.79550226816176 + ], + [ + -1.533412984166198, + 53.795527844869916 + ], + [ + -1.5333768998786974, + 53.79553499987308 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342626328", + "osm_node_id": 342626328, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5341945698334634, + 53.79655635049466 + ], + [ + -1.5340647029395114, + 53.796576365797634 + ], + [ + -1.5340552372848535, + 53.79655493945897 + ], + [ + -1.5340245808659156, + 53.79655686041005 + ], + [ + -1.534018253173981, + 53.796521639376365 + ], + [ + -1.5340122802347462, + 53.79651830828892 + ], + [ + -1.534078937201277, + 53.796476612139244 + ], + [ + -1.5341756400466913, + 53.796481726581554 + ], + [ + -1.5341826270000813, + 53.7964994369231 + ], + [ + -1.5341945698334634, + 53.79655635049466 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/342628235", + "osm_node_id": 342628235, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5364211591676848, + 53.80026745800204 + ], + [ + -1.5363985524376929, + 53.80030923329202 + ], + [ + -1.5363626021340444, + 53.80030244521209 + ], + [ + -1.5363263549343595, + 53.80029590984155 + ], + [ + -1.536348032912648, + 53.800253961881815 + ], + [ + -1.5364211591676848, + 53.80026745800204 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/358163080", + "osm_node_id": 358163080, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363100561032332, + 53.800337877586365 + ], + [ + -1.5362876747097203, + 53.80037969604378 + ], + [ + -1.5362503038727284, + 53.800372091379785 + ], + [ + -1.5362745336343862, + 53.80033063444967 + ], + [ + -1.5363100561032332, + 53.800337877586365 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/358163085", + "osm_node_id": 358163085, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533513041175552, + 53.79989948975099 + ], + [ + -1.5334373387764455, + 53.79989471525228 + ], + [ + -1.5334463522356017, + 53.79985006573026 + ], + [ + -1.5334705804747157, + 53.79980860880015 + ], + [ + -1.5335218323433168, + 53.7998559409987 + ], + [ + -1.533513041175552, + 53.79989948975099 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/358204009", + "osm_node_id": 358204009, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532965010678499, + 53.79979537348321 + ], + [ + -1.5330010508122303, + 53.799799978909455 + ], + [ + -1.532984954479426, + 53.799843928759216 + ], + [ + -1.532908801407362, + 53.79983270252688 + ], + [ + -1.5329295536790342, + 53.79978943975886 + ], + [ + -1.532965010678499, + 53.79979537348321 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/358204012", + "osm_node_id": 358204012, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5320476232416416, + 53.799576072995904 + ], + [ + -1.5320723767583584, + 53.79953355126895 + ], + [ + -1.5322163561105737, + 53.79956279541085 + ], + [ + -1.532191602593857, + 53.799605317137804 + ], + [ + -1.5320476232416416, + 53.799576072995904 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/358204014", + "osm_node_id": 358204014, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5361872781731043, + 53.80037026036087 + ], + [ + -1.5360724935978014, + 53.800349739639124 + ], + [ + -1.53611660016846, + 53.800263663763936 + ], + [ + -1.5362313847437628, + 53.80028418448568 + ], + [ + -1.5361872781731043, + 53.80037026036087 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/369772541", + "osm_node_id": 369772541, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353318476101399, + 53.800107506449365 + ], + [ + -1.5352595892050558, + 53.800093352925 + ], + [ + -1.5352829602520235, + 53.80005172332514 + ], + [ + -1.5353637098837487, + 53.80004452965114 + ], + [ + -1.5353552201796514, + 53.80006587774882 + ], + [ + -1.5353318476101399, + 53.800107506449365 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/370191920", + "osm_node_id": 370191920, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5362923656670953, + 53.80016517904841 + ], + [ + -1.5361775810917924, + 53.800144658326666 + ], + [ + -1.536180982454589, + 53.80013801953413 + ], + [ + -1.5361868290226903, + 53.800120367648496 + ], + [ + -1.5361893731933407, + 53.80010807841795 + ], + [ + -1.5363088928797881, + 53.80011390782098 + ], + [ + -1.5362923656670953, + 53.80016517904841 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/370191923", + "osm_node_id": 370191923, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5324027474422244, + 53.797994819994244 + ], + [ + -1.532404344590646, + 53.79799548549227 + ], + [ + -1.532335297230386, + 53.79805340360613 + ], + [ + -1.5323290654587094, + 53.798050811761094 + ], + [ + -1.5323218470786655, + 53.798052253373726 + ], + [ + -1.5322834363442743, + 53.79798514778974 + ], + [ + -1.5324029940943162, + 53.797993673359116 + ], + [ + -1.5324027474422244, + 53.797994819994244 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/394143337", + "osm_node_id": 394143337, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5322577601660292, + 53.79863179603965 + ], + [ + -1.5321386211155257, + 53.7986236913528 + ], + [ + -1.5321797556807328, + 53.79855715054282 + ], + [ + -1.532208067382255, + 53.79856325693692 + ], + [ + -1.5322336050090166, + 53.79856009312331 + ], + [ + -1.5322582214967935, + 53.798629421830455 + ], + [ + -1.5322577601660292, + 53.79863179603965 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/394143340", + "osm_node_id": 394143340, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532067606628707, + 53.79678700222002 + ], + [ + -1.5320552892495558, + 53.796759267139876 + ], + [ + -1.5322025603414158, + 53.796736448651274 + ], + [ + -1.5322148777205669, + 53.79676418373142 + ], + [ + -1.532067606628707, + 53.79678700222002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/474665273", + "osm_node_id": 474665273, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532745507064799, + 53.79580024310695 + ], + [ + -1.5327507948593346, + 53.79580049491702 + ], + [ + -1.5327446864137038, + 53.79584531531015 + ], + [ + -1.5326747970867356, + 53.79582993241308 + ], + [ + -1.5326568523857869, + 53.79580512192699 + ], + [ + -1.5326691956481822, + 53.79580022601984 + ], + [ + -1.5327451401317491, + 53.795797116165524 + ], + [ + -1.532745507064799, + 53.79580024310695 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/475070618", + "osm_node_id": 475070618, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5327478258989706, + 53.79575445414439 + ], + [ + -1.5327464099332586, + 53.79576329897296 + ], + [ + -1.532670620749157, + 53.79575906676521 + ], + [ + -1.5326717276384823, + 53.795752150981606 + ], + [ + -1.5326611718424805, + 53.795749095086585 + ], + [ + -1.5326946678055613, + 53.79570871554383 + ], + [ + -1.5327135001495316, + 53.795714167231765 + ], + [ + -1.5327329049699618, + 53.79570947547064 + ], + [ + -1.5327617449941744, + 53.79575108888272 + ], + [ + -1.5327478258989706, + 53.79575445414439 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/475070619", + "osm_node_id": 475070619, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5320778822766539, + 53.79541717254719 + ], + [ + -1.5321270178094057, + 53.79538282745281 + ], + [ + -1.532243311225591, + 53.795440873270344 + ], + [ + -1.532194175692839, + 53.79547521836473 + ], + [ + -1.5320778822766539, + 53.79541717254719 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/475070635", + "osm_node_id": 475070635, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5325185643022077, + 53.79592043115221 + ], + [ + -1.5325206821606008, + 53.795942568854315 + ], + [ + -1.5324380110786298, + 53.79594532617454 + ], + [ + -1.5324366103383553, + 53.795930689714446 + ], + [ + -1.532425711970004, + 53.79591389578167 + ], + [ + -1.53243817246827, + 53.79591107460961 + ], + [ + -1.5324529533232514, + 53.79585876826294 + ], + [ + -1.5325346256165049, + 53.79586682078913 + ], + [ + -1.5325750826497315, + 53.795879342044664 + ], + [ + -1.5325185643022077, + 53.79592043115221 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/478743247", + "osm_node_id": 478743247, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5337036545210947, + 53.799640006672384 + ], + [ + -1.5337046822381437, + 53.79964213446745 + ], + [ + -1.5336680772406714, + 53.799648296619495 + ], + [ + -1.5336532552770081, + 53.799651533278166 + ], + [ + -1.53363246037411, + 53.799618312335866 + ], + [ + -1.5336549209398995, + 53.79961340833482 + ], + [ + -1.5336537013823346, + 53.79959890317569 + ], + [ + -1.5336917193004314, + 53.799597786218186 + ], + [ + -1.533692267416191, + 53.79960430989754 + ], + [ + -1.5337021121842491, + 53.79960178370298 + ], + [ + -1.5337260100313634, + 53.799634269000165 + ], + [ + -1.5337036545210947, + 53.799640006672384 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/615978081", + "osm_node_id": 615978081, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5348132357039348, + 53.799354065550396 + ], + [ + -1.5347607718904874, + 53.79931658542069 + ], + [ + -1.5347890729342033, + 53.79930276374602 + ], + [ + -1.5349583356483696, + 53.79920644369775 + ], + [ + -1.5350154584457725, + 53.799241466880666 + ], + [ + -1.5350384716949528, + 53.79926671443708 + ], + [ + -1.5348132357039348, + 53.799354065550396 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/659971029", + "osm_node_id": 659971029, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533101754902689, + 53.795508542729024 + ], + [ + -1.533067585975259, + 53.795543406732 + ], + [ + -1.5330231703282138, + 53.795546579538836 + ], + [ + -1.5329441929374443, + 53.79548248128649 + ], + [ + -1.533009659274742, + 53.79545087462658 + ], + [ + -1.5330695424440117, + 53.79544904810428 + ], + [ + -1.533101754902689, + 53.795508542729024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/659985459", + "osm_node_id": 659985459, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5354848054030048, + 53.79875409839014 + ], + [ + -1.535447624883985, + 53.79879408403001 + ], + [ + -1.535438133346083, + 53.79879214779046 + ], + [ + -1.5353914460637235, + 53.798784291316395 + ], + [ + -1.5353910639052355, + 53.79873842771013 + ], + [ + -1.5354863507849377, + 53.79874942821274 + ], + [ + -1.5354848054030048, + 53.79875409839014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/682218116", + "osm_node_id": 682218116, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534181211034369, + 53.79559492167561 + ], + [ + -1.5340841580038862, + 53.79559332268169 + ], + [ + -1.5340133795113526, + 53.79555406729102 + ], + [ + -1.5340835352834818, + 53.79545908363474 + ], + [ + -1.5341803995185364, + 53.79545517518278 + ], + [ + -1.5342447026323889, + 53.79549814027532 + ], + [ + -1.534181211034369, + 53.79559492167561 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/682264890", + "osm_node_id": 682264890, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5321972299156545, + 53.79541643240546 + ], + [ + -1.5322615208491568, + 53.79537345921903 + ], + [ + -1.5323756111444977, + 53.79543301050103 + ], + [ + -1.5323113202109953, + 53.79547598368747 + ], + [ + -1.5321972299156545, + 53.79541643240546 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/762669698", + "osm_node_id": 762669698, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5364338480475173, + 53.79920925857456 + ], + [ + -1.5363744353442745, + 53.79920447238466 + ], + [ + -1.5363755468012315, + 53.79919966011443 + ], + [ + -1.5363846698835395, + 53.799164093741226 + ], + [ + -1.5363795373884692, + 53.799182378749315 + ], + [ + -1.5364390718952141, + 53.79918660556114 + ], + [ + -1.5364338480475173, + 53.79920925857456 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/800488938", + "osm_node_id": 800488938, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5327449056600075, + 53.795795118772105 + ], + [ + -1.5326689611764406, + 53.79579823042507 + ], + [ + -1.532668610991372, + 53.795795251871716 + ], + [ + -1.532662198036986, + 53.79576003623396 + ], + [ + -1.5326705507121432, + 53.7957595065335 + ], + [ + -1.5327463398962449, + 53.79576373514397 + ], + [ + -1.5327505238465424, + 53.79575985636963 + ], + [ + -1.5327449056600075, + 53.795795118772105 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/1020737577", + "osm_node_id": 1020737577, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5326761886917473, + 53.79570085817045 + ], + [ + -1.5326265141784983, + 53.795734931669685 + ], + [ + -1.532569345704782, + 53.79579116175678 + ], + [ + -1.532503806285383, + 53.79576127190193 + ], + [ + -1.5324479867854526, + 53.79571434889474 + ], + [ + -1.5325256745816436, + 53.79568210461577 + ], + [ + -1.532511283497869, + 53.795653579931205 + ], + [ + -1.5325850233380476, + 53.795642408557484 + ], + [ + -1.5325923970175568, + 53.79563892908196 + ], + [ + -1.5326761886917473, + 53.79570085817045 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1020737601", + "osm_node_id": 1020737601, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5329013348526825, + 53.79559905046138 + ], + [ + -1.5328401925397097, + 53.795625841253774 + ], + [ + -1.5327588856569623, + 53.79556276912745 + ], + [ + -1.5327616825698795, + 53.79556151097644 + ], + [ + -1.5327605954736232, + 53.79556060266156 + ], + [ + -1.5328227883418017, + 53.79553467162067 + ], + [ + -1.5329013348526825, + 53.79559905046138 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1020737603", + "osm_node_id": 1020737603, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53206, + 53.79598112547205 + ], + [ + -1.5320437605480808, + 53.79596591074813 + ], + [ + -1.5321725570937579, + 53.79591795082306 + ], + [ + -1.532188796545677, + 53.79593316554699 + ], + [ + -1.53206, + 53.79598112547205 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1020737635", + "osm_node_id": 1020737635, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533179372661866, + 53.795848438654296 + ], + [ + -1.5332095616598647, + 53.79586017480202 + ], + [ + -1.5331561843201515, + 53.79590807806982 + ], + [ + -1.5330920562988333, + 53.795881372712984 + ], + [ + -1.5331505128445844, + 53.79583558464974 + ], + [ + -1.533179372661866, + 53.795848438654296 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1020737641", + "osm_node_id": 1020737641, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5335297998148987, + 53.79600223345085 + ], + [ + -1.5334895924788516, + 53.79602850983125 + ], + [ + -1.5334215941512537, + 53.79601125724444 + ], + [ + -1.5334749714909668, + 53.79596335397663 + ], + [ + -1.5335297998148987, + 53.79600223345085 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1020737673", + "osm_node_id": 1020737673, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5355554483891423, + 53.7984123858351 + ], + [ + -1.5355630809010932, + 53.79843396415913 + ], + [ + -1.5354680437185704, + 53.79844569131364 + ], + [ + -1.5355570470601074, + 53.79844122618157 + ], + [ + -1.5354599666238364, + 53.798441963625336 + ], + [ + -1.5354595189959663, + 53.798421352072104 + ], + [ + -1.5354531776011375, + 53.79840107506652 + ], + [ + -1.535548653276268, + 53.798390657324354 + ], + [ + -1.5355554483891423, + 53.7984123858351 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1022749752", + "osm_node_id": 1022749752, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536727370126907, + 53.80024709016497 + ], + [ + -1.5367044314823717, + 53.800288802502436 + ], + [ + -1.536637984626882, + 53.80026530952258 + ], + [ + -1.5366482648424602, + 53.80024423841597 + ], + [ + -1.536727370126907, + 53.80024709016497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1152092776", + "osm_node_id": 1152092776, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5343263003209975, + 53.79959262051454 + ], + [ + -1.5343679951823144, + 53.79963103234149 + ], + [ + -1.5342927784746725, + 53.79965152428495 + ], + [ + -1.5342891609106597, + 53.799653982131055 + ], + [ + -1.5341598390873799, + 53.79958759060847 + ], + [ + -1.5342073424532034, + 53.79955245501034 + ], + [ + -1.5342430902585296, + 53.799569317291564 + ], + [ + -1.534316994533436, + 53.79953280663061 + ], + [ + -1.5343719583637643, + 53.799571621353664 + ], + [ + -1.5343263003209975, + 53.79959262051454 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/1152092781", + "osm_node_id": 1152092781, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534166743823406, + 53.79952043106518 + ], + [ + -1.5341368075676742, + 53.79952372258247 + ], + [ + -1.534087646151678, + 53.79945910991814 + ], + [ + -1.5341134075923748, + 53.799448613934985 + ], + [ + -1.5341433682088068, + 53.79944539796072 + ], + [ + -1.5341772036991497, + 53.79944062885792 + ], + [ + -1.534205044934645, + 53.7995095312866 + ], + [ + -1.534166743823406, + 53.79952043106518 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/1152092841", + "osm_node_id": 1152092841, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5334187272013227, + 53.79960662834879 + ], + [ + -1.5334050669385608, + 53.799641115536 + ], + [ + -1.5333121795878502, + 53.799627089715315 + ], + [ + -1.533328747909225, + 53.7995930503903 + ], + [ + -1.5333581071208653, + 53.799598036229604 + ], + [ + -1.5334031637588403, + 53.79958611122433 + ], + [ + -1.5334187272013227, + 53.79960662834879 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1152092910", + "osm_node_id": 1152092910, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5360079194711567, + 53.8001351039333 + ], + [ + -1.5359976209850532, + 53.800156171442616 + ], + [ + -1.5359615169044833, + 53.800150012887855 + ], + [ + -1.5359249012492047, + 53.80014493172045 + ], + [ + -1.535933390953302, + 53.80012358362277 + ], + [ + -1.5360079194711567, + 53.8001351039333 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1152092921", + "osm_node_id": 1152092921, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5341929605046918, + 53.795302538712534 + ], + [ + -1.5342456313840924, + 53.79528447853486 + ], + [ + -1.534312515209646, + 53.79535253380253 + ], + [ + -1.534259844330245, + 53.7953705939802 + ], + [ + -1.5341929605046918, + 53.795302538712534 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1277537020", + "osm_node_id": 1277537020, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533917619120536, + 53.80012819084766 + ], + [ + -1.5338010348984894, + 53.80009764448799 + ], + [ + -1.533808732879823, + 53.80008739222101 + ], + [ + -1.5338138547170868, + 53.80006966299371 + ], + [ + -1.5338203575015557, + 53.800070318599204 + ], + [ + -1.5338308630536128, + 53.800052985972755 + ], + [ + -1.5339509399910825, + 53.800078379219286 + ], + [ + -1.5339499396798215, + 53.80009635755869 + ], + [ + -1.533917619120536, + 53.80012819084766 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1284137007", + "osm_node_id": 1284137007, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533775789600133, + 53.80006582558816 + ], + [ + -1.533770667762869, + 53.80008355661411 + ], + [ + -1.5337599627575773, + 53.80010698124551 + ], + [ + -1.5336651509115333, + 53.8000946353577 + ], + [ + -1.5336721089365914, + 53.800075991520266 + ], + [ + -1.5336735462179163, + 53.80005802217408 + ], + [ + -1.5336790806645435, + 53.80005822991738 + ], + [ + -1.5336821516353405, + 53.80005050204632 + ], + [ + -1.533776674198067, + 53.80006360156569 + ], + [ + -1.533775789600133, + 53.80006582558816 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/1284137095", + "osm_node_id": 1284137095, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5321980185933308, + 53.79890818636556 + ], + [ + -1.5321810848614497, + 53.79897831367034 + ], + [ + -1.5321538084896953, + 53.798976015004165 + ], + [ + -1.5320933391410718, + 53.79897172973643 + ], + [ + -1.5320791231498316, + 53.798898912560546 + ], + [ + -1.5321980185933308, + 53.79890818636556 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1296601030", + "osm_node_id": 1296601030, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5337575723638484, + 53.79911143306182 + ], + [ + -1.5336603823044255, + 53.79915293405869 + ], + [ + -1.5336435094742955, + 53.799139148356886 + ], + [ + -1.5335962893016142, + 53.79911864112496 + ], + [ + -1.5336673281491335, + 53.79906156837347 + ], + [ + -1.533772083728581, + 53.79909605016474 + ], + [ + -1.5337575723638484, + 53.79911143306182 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1296601330", + "osm_node_id": 1296601330, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390433662767662, + 53.795551840570575 + ], + [ + -1.5390566337232339, + 53.79557291347583 + ], + [ + -1.5389139272176156, + 53.79560425843314 + ], + [ + -1.5389006597711479, + 53.79558318552788 + ], + [ + -1.5390433662767662, + 53.795551840570575 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1305300599", + "osm_node_id": 1305300599, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5337465811203266, + 53.7994373319447 + ], + [ + -1.5337932866732114, + 53.79948365150705 + ], + [ + -1.5336906489521567, + 53.79952081687417 + ], + [ + -1.5336527893786127, + 53.79951847414124 + ], + [ + -1.533655994333262, + 53.79950036719884 + ], + [ + -1.5336234073288157, + 53.79948874976157 + ], + [ + -1.5336281211243474, + 53.79942535567809 + ], + [ + -1.5337473972037907, + 53.79943272292117 + ], + [ + -1.5337465811203266, + 53.7994373319447 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1569761300", + "osm_node_id": 1569761300, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5338822336806286, + 53.79961605773645 + ], + [ + -1.5338529673441588, + 53.79960168297896 + ], + [ + -1.5338399191439949, + 53.79960503205284 + ], + [ + -1.5338160212968805, + 53.79957254675566 + ], + [ + -1.5338610094203857, + 53.79950688188497 + ], + [ + -1.5339362870297784, + 53.799499290710806 + ], + [ + -1.5339638374594124, + 53.799491977427024 + ], + [ + -1.5340130003979524, + 53.799556590091356 + ], + [ + -1.5338822336806286, + 53.79961605773645 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1569783677", + "osm_node_id": 1569783677, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5331893803421084, + 53.79602974999583 + ], + [ + -1.5333066466637668, + 53.796014912987005 + ], + [ + -1.5333272329781675, + 53.79607168176778 + ], + [ + -1.533209966656509, + 53.796086518776605 + ], + [ + -1.5331893803421084, + 53.79602974999583 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1591164975", + "osm_node_id": 1591164975, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5342026986946855, + 53.79955026426277 + ], + [ + -1.5341551861935991, + 53.79958539716293 + ], + [ + -1.5341343121184248, + 53.79958435664776 + ], + [ + -1.5340974696041234, + 53.79954500592899 + ], + [ + -1.5341392299348224, + 53.79953140998406 + ], + [ + -1.534169166190554, + 53.79952811846677 + ], + [ + -1.5342026986946855, + 53.79955026426277 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1591373154", + "osm_node_id": 1591373154, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5334743685636314, + 53.799857508516354 + ], + [ + -1.5334822842687248, + 53.79986480831031 + ], + [ + -1.5334181760404757, + 53.79988905761968 + ], + [ + -1.5334330162746643, + 53.79989234643901 + ], + [ + -1.5333726565491927, + 53.79986494590653 + ], + [ + -1.5334097563733922, + 53.799825679723995 + ], + [ + -1.533415776511484, + 53.79982766362759 + ], + [ + -1.5334818168477855, + 53.79985003964993 + ], + [ + -1.5334743685636314, + 53.799857508516354 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1591373158", + "osm_node_id": 1591373158, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5335853787529126, + 53.80007273237855 + ], + [ + -1.5335907700804248, + 53.8000923978454 + ], + [ + -1.5335531967451106, + 53.80009599153477 + ], + [ + -1.5335639489492596, + 53.80013522174443 + ], + [ + -1.5335392258834184, + 53.8000929581228 + ], + [ + -1.5335249048366577, + 53.80007212623575 + ], + [ + -1.5335444421183964, + 53.80006743987055 + ], + [ + -1.5335384280704796, + 53.80005280251114 + ], + [ + -1.5335754167489835, + 53.8000475001106 + ], + [ + -1.5335782684734767, + 53.80005444197453 + ], + [ + -1.5336058204256544, + 53.800055477093764 + ], + [ + -1.5336038867950583, + 53.800073427554196 + ], + [ + -1.5335853787529126, + 53.80007273237855 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/1591373161", + "osm_node_id": 1591373161, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53438145142421, + 53.80005627659073 + ], + [ + -1.534417193139361, + 53.8000602479952 + ], + [ + -1.5343992453933248, + 53.80011660668529 + ], + [ + -1.5342126606986146, + 53.80012325357172 + ], + [ + -1.5341992744937325, + 53.800088728613005 + ], + [ + -1.5342225968192993, + 53.80003305880331 + ], + [ + -1.53438145142421, + 53.80005627659073 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1591373171", + "osm_node_id": 1591373171, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340709331886444, + 53.80014242351233 + ], + [ + -1.5340807657763524, + 53.80015159479466 + ], + [ + -1.5340550408767064, + 53.80016121753648 + ], + [ + -1.5340421144800447, + 53.80014916123024 + ], + [ + -1.5340327325652945, + 53.8001515381374 + ], + [ + -1.5340090996407973, + 53.80011898629042 + ], + [ + -1.5340388775519762, + 53.80011144367962 + ], + [ + -1.5340649800424788, + 53.800102178867824 + ], + [ + -1.5340691959661956, + 53.80010632294206 + ], + [ + -1.5340882612593636, + 53.80010374458684 + ], + [ + -1.5341016474642457, + 53.800138269545556 + ], + [ + -1.5340709331886444, + 53.80014242351233 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1591373175", + "osm_node_id": 1591373175, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5338335396855718, + 53.80022422221368 + ], + [ + -1.5337407132366123, + 53.8002074156904 + ], + [ + -1.5337559036558694, + 53.8001577398596 + ], + [ + -1.533872487877916, + 53.800188286219274 + ], + [ + -1.533845202370899, + 53.80016053405201 + ], + [ + -1.5338688931520599, + 53.80019307150985 + ], + [ + -1.5338335396855718, + 53.80022422221368 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1591373192", + "osm_node_id": 1591373192, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5328845838260545, + 53.80023161283912 + ], + [ + -1.5328498896210216, + 53.800254633675095 + ], + [ + -1.532760312280481, + 53.80020753260222 + ], + [ + -1.5327944705501044, + 53.80016734641362 + ], + [ + -1.5328148406632889, + 53.80017338715725 + ], + [ + -1.53283018181438, + 53.80016523300771 + ], + [ + -1.5329104046459585, + 53.80021788829119 + ], + [ + -1.5328845838260545, + 53.80023161283912 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1591373193", + "osm_node_id": 1591373193, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5336861574480163, + 53.800304725891834 + ], + [ + -1.5336779631174116, + 53.800326681930954 + ], + [ + -1.5335831512713676, + 53.8003143342445 + ], + [ + -1.5335850453158255, + 53.80021218389387 + ], + [ + -1.5336226186511395, + 53.8002085902045 + ], + [ + -1.5337174304971835, + 53.800220936092316 + ], + [ + -1.5336861574480163, + 53.800304725891834 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1591373207", + "osm_node_id": 1591373207, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5325740001211066, + 53.80043485054217 + ], + [ + -1.5325087987064259, + 53.80040470348131 + ], + [ + -1.5325880151365683, + 53.80034492646957 + ], + [ + -1.5326532165512488, + 53.800375073530425 + ], + [ + -1.5325740001211066, + 53.80043485054217 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1591373213", + "osm_node_id": 1591373213, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5356070169468488, + 53.797762390309956 + ], + [ + -1.5356359102600936, + 53.79776514043561 + ], + [ + -1.535627049055315, + 53.797797614940926 + ], + [ + -1.535475549859388, + 53.797770931167804 + ], + [ + -1.5354938203847048, + 53.79773985780564 + ], + [ + -1.5355407116879303, + 53.797722112390545 + ], + [ + -1.5356070169468488, + 53.797762390309956 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1601683577", + "osm_node_id": 1601683577, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5330443747953877, + 53.79532945810793 + ], + [ + -1.5331062448842856, + 53.79532772241711 + ], + [ + -1.5330789532870936, + 53.795404993933204 + ], + [ + -1.5330202531343382, + 53.795397761588376 + ], + [ + -1.5330443747953877, + 53.79532945810793 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1606819521", + "osm_node_id": 1606819521, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532554522218575, + 53.795802502202974 + ], + [ + -1.5325527682481446, + 53.79580261281954 + ], + [ + -1.532547446957646, + 53.7958214446152 + ], + [ + -1.5324657746643924, + 53.79581339388766 + ], + [ + -1.5324494941037914, + 53.79577930420063 + ], + [ + -1.532488792481204, + 53.79577275803823 + ], + [ + -1.532548107741645, + 53.79576728656522 + ], + [ + -1.532554522218575, + 53.795802502202974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1606819527", + "osm_node_id": 1606819527, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353404362795826, + 53.79738845775763 + ], + [ + -1.5352847842594677, + 53.79738963586901 + ], + [ + -1.5352581884647813, + 53.797360736167306 + ], + [ + -1.5352824425871394, + 53.79735294804169 + ], + [ + -1.5352815640793804, + 53.797340736152805 + ], + [ + -1.5353372008740578, + 53.79733933860694 + ], + [ + -1.5353404362795826, + 53.79738845775763 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1606819535", + "osm_node_id": 1606819535, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532889463578858, + 53.79528876650056 + ], + [ + -1.5329652314473468, + 53.79529313720385 + ], + [ + -1.5329522822125283, + 53.79537145553036 + ], + [ + -1.5328765143440395, + 53.79536708482706 + ], + [ + -1.532889463578858, + 53.79528876650056 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1606959376", + "osm_node_id": 1606959376, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5340731941661525, + 53.79745467661046 + ], + [ + -1.5340148974874979, + 53.79747438524474 + ], + [ + -1.5339846445426608, + 53.797443164393826 + ], + [ + -1.5339783290310762, + 53.79743719559593 + ], + [ + -1.534004559415256, + 53.79742805848782 + ], + [ + -1.5340503407840687, + 53.79743294180446 + ], + [ + -1.534037571209416, + 53.797421092342205 + ], + [ + -1.5340889479266069, + 53.79740177491284 + ], + [ + -1.5341036100231735, + 53.79744956216815 + ], + [ + -1.5340776567419612, + 53.7974589708714 + ], + [ + -1.5340731941661525, + 53.79745467661046 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1606959629", + "osm_node_id": 1606959629, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533416600207667, + 53.79769120000696 + ], + [ + -1.533394179228016, + 53.79770936990188 + ], + [ + -1.5333695718755016, + 53.79769877409402 + ], + [ + -1.5334357492407429, + 53.79766472307783 + ], + [ + -1.533450143369605, + 53.79768057272285 + ], + [ + -1.533416600207667, + 53.79769120000696 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1606959650", + "osm_node_id": 1606959650, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.53440523051291, + 53.79777147435809 + ], + [ + -1.5343956506674687, + 53.79778854708058 + ], + [ + -1.5343205679436793, + 53.79776171671803 + ], + [ + -1.5343628794352255, + 53.79773584323373 + ], + [ + -1.53440523051291, + 53.79777147435809 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1606959655", + "osm_node_id": 1606959655, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5352610249638368, + 53.798257852695464 + ], + [ + -1.5351870019305158, + 53.79824735401434 + ], + [ + -1.535170951274025, + 53.79823206914333 + ], + [ + -1.535208728630205, + 53.798218226784265 + ], + [ + -1.5352197914332844, + 53.79820278543128 + ], + [ + -1.535247833644558, + 53.79820979474433 + ], + [ + -1.5352610249638368, + 53.798257852695464 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1675168026", + "osm_node_id": 1675168026, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5326705004681986, + 53.7983432001201 + ], + [ + -1.5326746052462197, + 53.79832537736335 + ], + [ + -1.5328254695413919, + 53.79833749842075 + ], + [ + -1.5328213647633708, + 53.7983553211775 + ], + [ + -1.5326705004681986, + 53.7983432001201 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1675168030", + "osm_node_id": 1675168030, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533176309303788, + 53.79836589540164 + ], + [ + -1.5332139907397102, + 53.798369076302365 + ], + [ + -1.533209681940823, + 53.79838688107269 + ], + [ + -1.5331720005049008, + 53.79838370017196 + ], + [ + -1.5331343205915224, + 53.79838051567394 + ], + [ + -1.5331386324354972, + 53.798362710903625 + ], + [ + -1.533176309303788, + 53.79836589540164 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1675168031", + "osm_node_id": 1675168031, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.533526795836028, + 53.79839548488305 + ], + [ + -1.5335644955424754, + 53.79839858304619 + ], + [ + -1.5335602994118276, + 53.798416398608374 + ], + [ + -1.53352259970538, + 53.79841330044523 + ], + [ + -1.5334849197920017, + 53.798410119544506 + ], + [ + -1.533489228590889, + 53.79839231477418 + ], + [ + -1.533526795836028, + 53.79839548488305 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1675168033", + "osm_node_id": 1675168033, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534449448229264, + 53.79850566167954 + ], + [ + -1.534452752149259, + 53.79846073876374 + ], + [ + -1.5344898306578456, + 53.79846571650915 + ], + [ + -1.534489154648409, + 53.79848369934516 + ], + [ + -1.534449448229264, + 53.79850566167954 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1675168038", + "osm_node_id": 1675168038, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5364440749740633, + 53.79885106505069 + ], + [ + -1.5364218580152782, + 53.79890689134236 + ], + [ + -1.5364184718779195, + 53.79890642099713 + ], + [ + -1.536359132256778, + 53.7989115255469 + ], + [ + -1.5363558801032715, + 53.79889832980011 + ], + [ + -1.5363206606206359, + 53.798894154249616 + ], + [ + -1.5363397685450297, + 53.79883792865913 + ], + [ + -1.5363989680921437, + 53.79883228991229 + ], + [ + -1.5364440749740633, + 53.79885106505069 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1675168064", + "osm_node_id": 1675168064, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532074946812253, + 53.79912376456049 + ], + [ + -1.532045053187747, + 53.79909242320047 + ], + [ + -1.5320823022212366, + 53.799026055959565 + ], + [ + -1.5321427715698603, + 53.79903034212662 + ], + [ + -1.532074946812253, + 53.79912376456049 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1675168080", + "osm_node_id": 1675168080, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390558541808204, + 53.7998480791287 + ], + [ + -1.5390441458191797, + 53.79988338110133 + ], + [ + -1.5388947309856826, + 53.79986609254165 + ], + [ + -1.5389064393473233, + 53.79983079056902 + ], + [ + -1.5390558541808204, + 53.7998480791287 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1675168086", + "osm_node_id": 1675168086, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363993395928253, + 53.800201864177765 + ], + [ + -1.536435914139422, + 53.800208090181656 + ], + [ + -1.5364256339238436, + 53.800229161288264 + ], + [ + -1.536389059377247, + 53.800222935284374 + ], + [ + -1.5363524802630188, + 53.80021669579067 + ], + [ + -1.5363627787491225, + 53.800195628281344 + ], + [ + -1.5363993395928253, + 53.800201864177765 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1743212076", + "osm_node_id": 1743212076, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5357815187341497, + 53.80032653803949 + ], + [ + -1.5357496945241353, + 53.80038071677387 + ], + [ + -1.53560585220086, + 53.80035123790902 + ], + [ + -1.5356376764108743, + 53.80029705917464 + ], + [ + -1.5357815187341497, + 53.80032653803949 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1743212077", + "osm_node_id": 1743212077, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5372071328061134, + 53.800339143831266 + ], + [ + -1.5371841941615783, + 53.80038085616873 + ], + [ + -1.5370393880680924, + 53.80035307162589 + ], + [ + -1.5370623267126275, + 53.80031135928843 + ], + [ + -1.5372071328061134, + 53.800339143831266 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1743296708", + "osm_node_id": 1743296708, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5345819308534239, + 53.79630256102151 + ], + [ + -1.5346123786838644, + 53.796302864992235 + ], + [ + -1.5346102471225773, + 53.79637750419381 + ], + [ + -1.5345797992921368, + 53.79637720022309 + ], + [ + -1.5345819308534239, + 53.79630256102151 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1877939939", + "osm_node_id": 1877939939, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5345632005198866, + 53.79653206791039 + ], + [ + -1.5345625427809753, + 53.7965354763395 + ], + [ + -1.5345322867910505, + 53.79653343847661 + ], + [ + -1.534502793595558, + 53.79653533964261 + ], + [ + -1.5344922515024502, + 53.79647833164227 + ], + [ + -1.534578075772582, + 53.796472814303854 + ], + [ + -1.53460852664811, + 53.796472888048235 + ], + [ + -1.5346147310139988, + 53.796530119080344 + ], + [ + -1.5345632005198866, + 53.79653206791039 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1877939942", + "osm_node_id": 1877939942, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.534555312220581, + 53.79657291689905 + ], + [ + -1.5345628366319242, + 53.796573093166096 + ], + [ + -1.5345616246870781, + 53.79659106521025 + ], + [ + -1.5345564175873627, + 53.796590943801824 + ], + [ + -1.5345530969193864, + 53.7965992490374 + ], + [ + -1.5344790068941392, + 53.796588914032824 + ], + [ + -1.5345291153323644, + 53.79654986188885 + ], + [ + -1.534559371322289, + 53.79655189975174 + ], + [ + -1.534555312220581, + 53.79657291689905 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1877939944", + "osm_node_id": 1877939944, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535883500238837, + 53.79665249967182 + ], + [ + -1.5358838778296933, + 53.79667498181412 + ], + [ + -1.5358534269541653, + 53.79667515987981 + ], + [ + -1.5358530493633087, + 53.79665267773751 + ], + [ + -1.5358527159262219, + 53.79663017491081 + ], + [ + -1.5358831668017499, + 53.79663001842884 + ], + [ + -1.535883500238837, + 53.79665249967182 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1877939950", + "osm_node_id": 1877939950, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5359007993812244, + 53.797677999763565 + ], + [ + -1.5359006806228097, + 53.79770048280518 + ], + [ + -1.5358702297472817, + 53.797700427047246 + ], + [ + -1.5358703469831525, + 53.79767812386996 + ], + [ + -1.535869967869752, + 53.797655697485595 + ], + [ + -1.5359004187452803, + 53.797655517621266 + ], + [ + -1.5359007993812244, + 53.797677999763565 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1877939967", + "osm_node_id": 1877939967, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535747599503899, + 53.79773470019589 + ], + [ + -1.5357454024732298, + 53.797757145466 + ], + [ + -1.53571500336419, + 53.7977561076488 + ], + [ + -1.535785663098309, + 53.7977167137626 + ], + [ + -1.535785663098309, + 53.79773470019589 + ], + [ + -1.535747599503899, + 53.79773470019589 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1877939969", + "osm_node_id": 1877939969, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5357482998740362, + 53.79783730020735 + ], + [ + -1.535768047266816, + 53.797856520509974 + ], + [ + -1.5357420148133272, + 53.79786585187157 + ], + [ + -1.5357121592524157, + 53.79784435538581 + ], + [ + -1.535702603767675, + 53.797827277267395 + ], + [ + -1.535715991495101, + 53.79782466383864 + ], + [ + -1.535714840452006, + 53.79781636130103 + ], + [ + -1.5357451908396447, + 53.79781489180943 + ], + [ + -1.5357482998740362, + 53.79783730020735 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1877939971", + "osm_node_id": 1877939971, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5354408236809358, + 53.79791838664594 + ], + [ + -1.5354286250601994, + 53.797901907475755 + ], + [ + -1.5354900855848213, + 53.79786876657308 + ], + [ + -1.535499641069562, + 53.7978858446915 + ], + [ + -1.5354408236809358, + 53.79791838664594 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1877939975", + "osm_node_id": 1877939975, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358478498763124, + 53.79795969338933 + ], + [ + -1.535793473747882, + 53.79792822432564 + ], + [ + -1.535803790504511, + 53.797922004617 + ], + [ + -1.535800753029677, + 53.79791935161809 + ], + [ + -1.5358259785349644, + 53.79790927561815 + ], + [ + -1.5358478498763124, + 53.79795969338933 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1877939977", + "osm_node_id": 1877939977, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5354663811007665, + 53.797913699381425 + ], + [ + -1.5353826351028894, + 53.797942713296976 + ], + [ + -1.5353762419415722, + 53.79793627505318 + ], + [ + -1.5353740814519534, + 53.797936884793266 + ], + [ + -1.5353609723500388, + 53.797920650238574 + ], + [ + -1.5353444755882213, + 53.7979009505975 + ], + [ + -1.535431501145393, + 53.797875524975396 + ], + [ + -1.535415607310911, + 53.79790526824082 + ], + [ + -1.5354278059316475, + 53.79792174920965 + ], + [ + -1.5354663811007665, + 53.797913699381425 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2014304851", + "osm_node_id": 2014304851, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535926037066862, + 53.798192474708394 + ], + [ + -1.5359537534537675, + 53.79820497707818 + ], + [ + -1.5359075503403288, + 53.798240714322496 + ], + [ + -1.5358469272147839, + 53.798212856934605 + ], + [ + -1.5358502143867971, + 53.79821040628307 + ], + [ + -1.5358466013904157, + 53.79820812200604 + ], + [ + -1.5359022260047428, + 53.79817742276168 + ], + [ + -1.535926037066862, + 53.798192474708394 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2014304855", + "osm_node_id": 2014304855, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358853394717187, + 53.79825662332274 + ], + [ + -1.5358927146737715, + 53.798261403217396 + ], + [ + -1.5358209541405023, + 53.79830003088154 + ], + [ + -1.5357649625931251, + 53.79826956725947 + ], + [ + -1.5357696779112007, + 53.798266543740034 + ], + [ + -1.5357612993527991, + 53.79826101650908 + ], + [ + -1.5358336354076159, + 53.798222764761384 + ], + [ + -1.5358932993305818, + 53.798250692296364 + ], + [ + -1.5358853394717187, + 53.79825662332274 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2014304856", + "osm_node_id": 2014304856, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358792614769634, + 53.798433086421184 + ], + [ + -1.5358048029961222, + 53.79844245375565 + ], + [ + -1.5357449228719402, + 53.79837656585319 + ], + [ + -1.5357511637788797, + 53.79837458644621 + ], + [ + -1.5358211140075988, + 53.79835684282976 + ], + [ + -1.535822392944371, + 53.79835860280225 + ], + [ + -1.5358511309581506, + 53.79835499202577 + ], + [ + -1.5358774770556574, + 53.79842813565542 + ], + [ + -1.5358792614769634, + 53.798433086421184 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2014304862", + "osm_node_id": 2014304862, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5358956455705413, + 53.79847909571756 + ], + [ + -1.535898900769135, + 53.79849697962819 + ], + [ + -1.535865828073224, + 53.7984990804436 + ], + [ + -1.535835467027779, + 53.79850709250031 + ], + [ + -1.535823046115651, + 53.79849067088671 + ], + [ + -1.5358126410514832, + 53.79846419305825 + ], + [ + -1.5358870995323242, + 53.798454827522434 + ], + [ + -1.5358956455705413, + 53.79847909571756 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2014304864", + "osm_node_id": 2014304864, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5360970994277718, + 53.79863489959871 + ], + [ + -1.536133909968654, + 53.79864061838518 + ], + [ + -1.536126166311007, + 53.79865801306482 + ], + [ + -1.5360788395602616, + 53.79865462711875 + ], + [ + -1.5360521219620733, + 53.79864599722806 + ], + [ + -1.5360680751757623, + 53.79862876262767 + ], + [ + -1.5360742780191075, + 53.798609456889494 + ], + [ + -1.5361041960043136, + 53.7986128113593 + ], + [ + -1.5360970994277718, + 53.79863489959871 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2014304895", + "osm_node_id": 2014304895, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535806669634792, + 53.79867434744422 + ], + [ + -1.5358358659342484, + 53.7986836698126 + ], + [ + -1.5358213834978471, + 53.79869949247797 + ], + [ + -1.5357914137461526, + 53.79872052851103 + ], + [ + -1.535734184370685, + 53.7986908760771 + ], + [ + -1.535761742413038, + 53.79867246696262 + ], + [ + -1.5357838649741091, + 53.79866010668566 + ], + [ + -1.535806669634792, + 53.79867434744422 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2014304901", + "osm_node_id": 2014304901, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5362909222955952, + 53.79879333579438 + ], + [ + -1.5362452703430036, + 53.798829319452835 + ], + [ + -1.536208613579043, + 53.798813093891354 + ], + [ + -1.5361985754479253, + 53.79881672175495 + ], + [ + -1.5361655392930649, + 53.79878482821143 + ], + [ + -1.5361410369960713, + 53.79876421845684 + ], + [ + -1.536203336442314, + 53.798738375549476 + ], + [ + -1.5363018221864906, + 53.79878536780443 + ], + [ + -1.5362909222955952, + 53.79879333579438 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2014304908", + "osm_node_id": 2014304908, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536394493335985, + 53.79881590067427 + ], + [ + -1.5363352937888708, + 53.79882153942111 + ], + [ + -1.536344506701262, + 53.79884433632599 + ], + [ + -1.5363287240124757, + 53.79880034690608 + ], + [ + -1.5363284377742457, + 53.79879941880612 + ], + [ + -1.5363874211201436, + 53.798793040816875 + ], + [ + -1.5364056002928337, + 53.79879080240525 + ], + [ + -1.5364211241491779, + 53.798834824200746 + ], + [ + -1.536394493335985, + 53.79881590067427 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2014304911", + "osm_node_id": 2014304911, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363298004509256, + 53.79885403820811 + ], + [ + -1.536256148918286, + 53.79884266538634 + ], + [ + -1.5362493172643612, + 53.79883111000227 + ], + [ + -1.5362949631267777, + 53.79879512454517 + ], + [ + -1.5363116045302538, + 53.798802489989605 + ], + [ + -1.5363176977504471, + 53.79880172826415 + ], + [ + -1.5363334865294083, + 53.79884571588543 + ], + [ + -1.5363298004509256, + 53.79885403820811 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2014304912", + "osm_node_id": 2014304912, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5363336250808919, + 53.79883719930926 + ], + [ + -1.5363145080212355, + 53.79889342489975 + ], + [ + -1.5363119501476912, + 53.79889485122391 + ], + [ + -1.5362381950820747, + 53.79888371402441 + ], + [ + -1.5362387492880094, + 53.79888243159172 + ], + [ + -1.5362648365530742, + 53.798827188060486 + ], + [ + -1.5362476744396265, + 53.79886181374323 + ], + [ + -1.5363213259722661, + 53.798873186565004 + ], + [ + -1.5363336250808919, + 53.79883719930926 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2014304914", + "osm_node_id": 2014304914, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.536557117759286, + 53.798866415572185 + ], + [ + -1.5365363350367383, + 53.79892243431869 + ], + [ + -1.536535336248021, + 53.798923270687844 + ], + [ + -1.5364612705834741, + 53.798912878126686 + ], + [ + -1.5364836824278627, + 53.79885656440267 + ], + [ + -1.5364788696669855, + 53.79886912792633 + ], + [ + -1.5365529322864446, + 53.79887952588342 + ], + [ + -1.536557117759286, + 53.798866415572185 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2014304915", + "osm_node_id": 2014304915, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5368064982495102, + 53.79889869762267 + ], + [ + -1.536843684858705, + 53.79890349550375 + ], + [ + -1.5368229630379082, + 53.79895952144483 + ], + [ + -1.53661695829733, + 53.7989659956615 + ], + [ + -1.5366048632095701, + 53.7989313052276 + ], + [ + -1.5366256474546618, + 53.79887528648109 + ], + [ + -1.5368064982495102, + 53.79889869762267 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2014304918", + "osm_node_id": 2014304918, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5365293678764174, + 53.79893810769667 + ], + [ + -1.536541184338666, + 53.79894899848203 + ], + [ + -1.536477088290767, + 53.798973260381906 + ], + [ + -1.536470449999902, + 53.79896714049798 + ], + [ + -1.5364583655699486, + 53.79896850566826 + ], + [ + -1.5364440627937133, + 53.798924339981305 + ], + [ + -1.536460366192471, + 53.79891512553152 + ], + [ + -1.53653442881193, + 53.79892552528725 + ], + [ + -1.5365293678764174, + 53.79893810769667 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2014304919", + "osm_node_id": 2014304919, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5364388541714542, + 53.79897367586852 + ], + [ + -1.5363805011586797, + 53.79898182911873 + ], + [ + -1.5363534607812108, + 53.798939794824115 + ], + [ + -1.5363654371105562, + 53.79893710765098 + ], + [ + -1.5363641216327333, + 53.79893177107622 + ], + [ + -1.5364234612538747, + 53.798926668325095 + ], + [ + -1.5364409354887965, + 53.79892469341472 + ], + [ + -1.5364552352199443, + 53.79896885910168 + ], + [ + -1.5364388541714542, + 53.79897367586852 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2014304920", + "osm_node_id": 2014304920, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5365333752116368, + 53.79898323475849 + ], + [ + -1.5365070184563236, + 53.79899714007007 + ], + [ + -1.536467139989732, + 53.798970689221264 + ], + [ + -1.5364910515397405, + 53.79898613057425 + ], + [ + -1.5365551475876393, + 53.798961868674375 + ], + [ + -1.5365390177588722, + 53.79894213845637 + ], + [ + -1.536565446073743, + 53.79897393127587 + ], + [ + -1.5365333752116368, + 53.79898323475849 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2014304923", + "osm_node_id": 2014304923, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.539065934943164, + 53.7960044188025 + ], + [ + -1.5390340650568362, + 53.796035073080766 + ], + [ + -1.538904323011474, + 53.7959880097794 + ], + [ + -1.5389361928978016, + 53.79595735550113 + ], + [ + -1.539065934943164, + 53.7960044188025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/2142487689", + "osm_node_id": 2142487689, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5333887924681349, + 53.79969092986234 + ], + [ + -1.5334250198747506, + 53.79969782945815 + ], + [ + -1.533402233484593, + 53.799739570573905 + ], + [ + -1.5333660060779772, + 53.79973267097809 + ], + [ + -1.533329777148818, + 53.79972576958363 + ], + [ + -1.5333525696291506, + 53.79968402846788 + ], + [ + -1.5333887924681349, + 53.79969092986234 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2165840661", + "osm_node_id": 2165840661, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353482469291555, + 53.79751714888923 + ], + [ + -1.535392341319464, + 53.797580097808485 + ], + [ + -1.535340882384909, + 53.797592673922644 + ], + [ + -1.5352853034468954, + 53.79759062167061 + ], + [ + -1.5352927258478053, + 53.79752048267464 + ], + [ + -1.5352914103699824, + 53.7974988207137 + ], + [ + -1.5353470623900976, + 53.797497642602316 + ], + [ + -1.5353482469291555, + 53.79751714888923 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2275824794", + "osm_node_id": 2275824794, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5323195191092314, + 53.795837760108846 + ], + [ + -1.5322519181655592, + 53.79586793325002 + ], + [ + -1.532189914092809, + 53.79582380353593 + ], + [ + -1.5322636996093009, + 53.79579083710166 + ], + [ + -1.5323032385486302, + 53.79580367042182 + ], + [ + -1.5323195191092314, + 53.795837760108846 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2377604550", + "osm_node_id": 2377604550, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5320478851191712, + 53.79956490432015 + ], + [ + -1.5320721148808287, + 53.799523447390044 + ], + [ + -1.532216034853837, + 53.79955279405461 + ], + [ + -1.5321918050921792, + 53.79959425098472 + ], + [ + -1.5320478851191712, + 53.79956490432015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/3174228063", + "osm_node_id": 3174228063, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5325961074567398, + 53.79699930148816 + ], + [ + -1.5324765238234537, + 53.79699393433646 + ], + [ + -1.5324830631489734, + 53.79692275572465 + ], + [ + -1.5325314221843995, + 53.79690181412037 + ], + [ + -1.5325890413310734, + 53.796911621223124 + ], + [ + -1.5325961074567398, + 53.79699930148816 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3181227677", + "osm_node_id": 3181227677, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5323281427971809, + 53.79679902165407 + ], + [ + -1.5323033938480954, + 53.796831283020154 + ], + [ + -1.5322540649522838, + 53.79681808007879 + ], + [ + -1.5322242550676857, + 53.796823347405784 + ], + [ + -1.5322103390175694, + 53.79679587672621 + ], + [ + -1.5323193942606417, + 53.79678208382983 + ], + [ + -1.5323281427971809, + 53.79679902165407 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/3181227681", + "osm_node_id": 3181227681, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390433662767662, + 53.79550875856622 + ], + [ + -1.5390566337232339, + 53.79552983147147 + ], + [ + -1.5389139287401594, + 53.79556117912674 + ], + [ + -1.5389006612936917, + 53.795540106221495 + ], + [ + -1.5390433662767662, + 53.79550875856622 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/3193482754", + "osm_node_id": 3193482754, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.535450634953031, + 53.7959827172714 + ], + [ + -1.5354142370215123, + 53.79598788387437 + ], + [ + -1.5354053423207705, + 53.79596602316334 + ], + [ + -1.535481093441278, + 53.79595681590813 + ], + [ + -1.535487533801452, + 53.795978975193954 + ], + [ + -1.535450634953031, + 53.7959827172714 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3193487666", + "osm_node_id": 3193487666, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5343994646396286, + 53.79615047943273 + ], + [ + -1.5343892179200136, + 53.79612882736433 + ], + [ + -1.5344256219417072, + 53.79612281629832 + ], + [ + -1.5344619224304241, + 53.796116330390475 + ], + [ + -1.5344729426022778, + 53.796137851157916 + ], + [ + -1.5343994646396286, + 53.79615047943273 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3193487669", + "osm_node_id": 3193487669, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5320651888291899, + 53.7965376805769 + ], + [ + -1.53205481117081, + 53.796516050092215 + ], + [ + -1.5322012966300813, + 53.79649152828838 + ], + [ + -1.5322116742884613, + 53.79651315877307 + ], + [ + -1.5320651888291899, + 53.7965376805769 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/3193487681", + "osm_node_id": 3193487681, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5320651888291899, + 53.79657969508644 + ], + [ + -1.53205481117081, + 53.796558064601754 + ], + [ + -1.5322012966300813, + 53.796533543697244 + ], + [ + -1.5322116742884613, + 53.796555174181925 + ], + [ + -1.5320651888291899, + 53.79657969508644 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/3193487683", + "osm_node_id": 3193487683, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5384592712852818, + 53.80021523978889 + ], + [ + -1.5384382997673056, + 53.80020219962475 + ], + [ + -1.5385486841910947, + 53.8001402597444 + ], + [ + -1.5385696587541584, + 53.800153299908544 + ], + [ + -1.5384592712852818, + 53.80021523978889 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3219472259", + "osm_node_id": 3219472259, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5376639142095592, + 53.799453771544734 + ], + [ + -1.5376589598521107, + 53.79947151875847 + ], + [ + -1.5375756005803527, + 53.79946339968248 + ], + [ + -1.5375805549378012, + 53.79944565246875 + ], + [ + -1.5376639142095592, + 53.799453771544734 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3219472271", + "osm_node_id": 3219472271, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5385410532016874, + 53.79945572756936 + ], + [ + -1.5385461993996516, + 53.7994380001407 + ], + [ + -1.5386962643593414, + 53.79945319507955 + ], + [ + -1.538691118161377, + 53.799470922508206 + ], + [ + -1.5385410532016874, + 53.79945572756936 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3219472273", + "osm_node_id": 3219472273, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5375425370197044, + 53.79976572464656 + ], + [ + -1.5375688343958105, + 53.79977479160759 + ], + [ + -1.537463545926041, + 53.799881328849295 + ], + [ + -1.5374372363695847, + 53.799872272680126 + ], + [ + -1.5375425370197044, + 53.79976572464656 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3219472282", + "osm_node_id": 3219472282, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5334820893831214, + 53.79634251518512 + ], + [ + -1.5331300087475477, + 53.79640145133111 + ], + [ + -1.5331196310891677, + 53.79637982084642 + ], + [ + -1.5331131069890858, + 53.79635767055382 + ], + [ + -1.5334727181261778, + 53.79632071922525 + ], + [ + -1.5335084994274668, + 53.796314862842564 + ], + [ + -1.5335186639297183, + 53.79633652930012 + ], + [ + -1.5334820893831214, + 53.79634251518512 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3371780106", + "osm_node_id": 3371780106, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5326087247770148, - 53.79563122009665 + -1.5328310329163508, + 53.796409475079 ], [ - -1.5326730187556048, - 53.795588246910214 + -1.5327953673283887, + 53.796415445675535 ], [ - -1.5326865435119705, - 53.795595305685964 + -1.5327849896700088, + 53.79639381519085 ], [ - -1.532707880440453, - 53.7955857099238 + -1.5328216114154625, + 53.79638768451506 ], [ - -1.532789188845744, - 53.79564878384876 + -1.5328583351713494, + 53.79638162038907 + ], + [ + -1.5328685818909644, + 53.796403272457475 + ], + [ + -1.5328610392090962, + 53.79638357101776 + ], + [ + -1.5328675617866343, + 53.79640572131037 + ], + [ + -1.5328310329163508, + 53.796409475079 ] ] ], @@ -18326,8 +41344,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/643851", - "osm_node_id": 643851, + "osm_link": "https://www.openstreetmap.org/node/3371780107", + "osm_node_id": 3371780107, "type": "intersection" }, "type": "Feature" @@ -18337,36 +41355,126 @@ "coordinates": [ [ [ - -1.5342417960963197, - 53.796654597789264 + -1.5331927116678912, + 53.800067827478195 ], [ - -1.5341161146752091, - 53.79668241830497 + -1.5331643771282124, + 53.80008288841811 ], [ - -1.5340896300262186, - 53.79663960339914 + -1.5330841542966338, + 53.800030233134635 ], [ - -1.534092454344924, - 53.79663899365906 + -1.5331406924372266, + 53.800000122046654 ], [ - -1.5340892417775558, - 53.79663176131423 + -1.5332210066214318, + 53.80005278542402 ], [ - -1.5342190569050191, - 53.796611630898084 + -1.5331927116678912, + 53.800067827478195 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3381506663", + "osm_node_id": 3381506663, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5329405738508879, + 53.79993627020845 ], [ - -1.5342452431354294, - 53.79665385315093 + -1.5329970845856928, + 53.79990614113403 ], [ - -1.5342417960963197, - 53.796654597789264 + -1.5331101547767034, + 53.79998013552197 + ], + [ + -1.5330536440418985, + 53.80001026459639 + ], + [ + -1.5329405738508879, + 53.79993627020845 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3381506664", + "osm_node_id": 3381506664, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5338148717763294, + 53.79997272780942 + ], + [ + -1.5337907090065979, + 53.80002827171408 + ], + [ + -1.5337894331149133, + 53.800031482292425 + ], + [ + -1.5336949105521867, + 53.800018382773054 + ], + [ + -1.5336579203511391, + 53.80002519693331 + ], + [ + -1.533646589580355, + 53.800003733722455 + ], + [ + -1.5336699362666224, + 53.79996093500443 + ], + [ + -1.533689563378444, + 53.79996467078662 + ], + [ + -1.5337003368982058, + 53.7999550975075 + ], + [ + -1.5338430266558425, + 53.80001112344858 + ], + [ + -1.5338148717763294, + 53.79997272780942 ] ] ], @@ -18374,9 +41482,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/643852", - "osm_node_id": 643852, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3381506666", + "osm_node_id": 3381506666, "type": "intersection" }, "type": "Feature" @@ -18386,36 +41494,40 @@ "coordinates": [ [ [ - -1.5344319191827664, - 53.796693772240985 + -1.5335385194231062, + 53.799914031782315 ], [ - -1.5344435803455498, - 53.79671436580779 + -1.5335968541653553, + 53.799945430698926 ], [ - -1.5343515060332158, - 53.796732557286425 + -1.533545574890966, + 53.79997866603037 ], [ - -1.53435044329766, - 53.79673067860347 + -1.5335087415119273, + 53.79998433085754 ], [ - -1.5343455178685432, - 53.79668486715786 + -1.5334496226596335, + 53.79991808052845 ], [ - -1.5342889705926877, - 53.79659650250903 + -1.5335137461133204, + 53.799893843809585 ], [ - -1.534382957220005, - 53.796582122355616 + -1.5335148499575582, + 53.79989486274103 + ], + [ + -1.5335459281211221, + 53.79990784265062 ], [ - -1.5344319191827664, - 53.796693772240985 + -1.5335385194231062, + 53.799914031782315 ] ] ], @@ -18424,8 +41536,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/643906", - "osm_node_id": 643906, + "osm_link": "https://www.openstreetmap.org/node/3381506667", + "osm_node_id": 3381506667, "type": "intersection" }, "type": "Feature" @@ -18435,28 +41547,28 @@ "coordinates": [ [ [ - -1.536064734714717, - 53.79835530139243 + -1.5340991520149962, + 53.796685420240685 ], [ - -1.5360294299696298, - 53.79842711582465 + -1.53406332351485, + 53.79671450969926 ], [ - -1.5359232264510507, - 53.79842238629202 + -1.5339972588178483, + 53.79666205316587 ], [ - -1.5358968833986313, - 53.79834924266237 + -1.5340657854681365, + 53.79664246953729 ], [ - -1.5359686408868132, - 53.798310614098895 + -1.5340730358215997, + 53.7966431835987 ], [ - -1.536064734714717, - 53.79835530139243 + -1.5340991520149962, + 53.796685420240685 ] ] ], @@ -18465,8 +41577,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/643907", - "osm_node_id": 643907, + "osm_link": "https://www.openstreetmap.org/node/3672602007", + "osm_node_id": 3672602007, "type": "intersection" }, "type": "Feature" @@ -18476,32 +41588,40 @@ "coordinates": [ [ [ - -1.5347815850639108, - 53.79655502039792 + -1.5336122074967964, + 53.79613878105651 ], [ - -1.5347458509614789, - 53.796526576652305 + -1.533568842404957, + 53.796164037606154 ], [ - -1.5347379611396295, - 53.79646941756593 + -1.5336106803853886, + 53.79615585018171 ], [ - -1.5348722464556204, - 53.796462950543834 + -1.5335664626690344, + 53.79616261128199 ], [ - -1.5349065234836585, - 53.796459110440324 + -1.5335648898813135, + 53.796159024787194 ], [ - -1.5349246143488098, - 53.796515454741275 + -1.5335365781797914, + 53.79616494951832 + ], + [ + -1.5335111577889005, + 53.79612256448825 ], [ - -1.5347815850639108, - 53.79655502039792 + -1.5335797894947094, + 53.796103112160644 + ], + [ + -1.5336122074967964, + 53.79613878105651 ] ] ], @@ -18510,8 +41630,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/643911", - "osm_node_id": 643911, + "osm_link": "https://www.openstreetmap.org/node/3672604268", + "osm_node_id": 3672604268, "type": "intersection" }, "type": "Feature" @@ -18521,48 +41641,101 @@ "coordinates": [ [ [ - -1.5343666066223902, - 53.79654483917735 + -1.5347497669440717, + 53.798404760486704 ], [ - -1.5342726215176168, - 53.79655922112942 + -1.5346844315455388, + 53.79842783887927 ], [ - -1.5342707289957027, - 53.79655490528475 + -1.5347042763811203, + 53.798447180590315 ], [ - -1.5342195882727971, - 53.79657482256166 + -1.5346648181366112, + 53.79840872559593 ], [ - -1.5341986350253463, - 53.79655605191987 + -1.5346915570504123, + 53.79842609149728 ], [ - -1.5341866921919642, - 53.79649913924763 + -1.5347170992448051, + 53.79841629968299 ], [ - -1.5342500924373574, - 53.79649449874784 + -1.5346974051410576, + 53.79839705959529 ], [ - -1.53434583912528, - 53.796484996515126 + -1.534736793348553, + 53.798435539770686 + ], + [ + -1.5347497669440717, + 53.798404760486704 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4029217614", + "osm_node_id": 4029217614, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.532429367597611, + 53.79787071450381 + ], + [ + -1.5324312311911934, + 53.79787088627425 + ], + [ + -1.53242181578048, + 53.797906427466444 + ], + [ + -1.5324210712565733, + 53.79790987906299 + ], + [ + -1.5323021057760606, + 53.7979009254165 + ], + [ + -1.5323025701519124, + 53.79789876794382 + ], + [ + -1.532306365853547, + 53.79786286522432 + ], + [ + -1.5323101432846562, + 53.797863004619174 ], [ - -1.534346764831896, - 53.79648825565684 + -1.5323114892133545, + 53.79785649173168 ], [ - -1.5343587152779972, - 53.796487680090976 + -1.5324305338661437, + 53.79786507305901 ], [ - -1.5343666066223902, - 53.79654483917735 + -1.532429367597611, + 53.79787071450381 ] ] ], @@ -18570,9 +41743,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/643914", - "osm_node_id": 643914, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4361246652", + "osm_node_id": 4361246652, "type": "intersection" }, "type": "Feature" @@ -18582,28 +41755,73 @@ "coordinates": [ [ [ - -1.5360389489133197, - 53.79890133982972 + -1.5320581029104545, + 53.79788975584142 ], [ - -1.5359626542446843, - 53.7988658723819 + -1.5320618970895454, + 53.797853853121914 ], [ - -1.5359539848804216, - 53.79882883381914 + -1.5322138560936929, + 53.79785945499656 ], [ - -1.536049909705966, - 53.79880376882501 + -1.532210061914602, + 53.79789535771607 ], [ - -1.5361030891149883, - 53.798871631637844 + -1.5320581029104545, + 53.79788975584142 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/4361246653", + "osm_node_id": 4361246653, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5321826409011892, + 53.798107147068826 ], [ - -1.5360389489133197, - 53.79890133982972 + -1.5321772221678889, + 53.79812071333614 + ], + [ + -1.5320604978718149, + 53.7981044518018 + ], + [ + -1.5320678228299232, + 53.798086111935085 + ], + [ + -1.5320717479477788, + 53.79806827478919 + ], + [ + -1.5321065928846453, + 53.79805062470219 + ], + [ + -1.5321979363759668, + 53.798096527878606 + ], + [ + -1.5321826409011892, + 53.798107147068826 ] ] ], @@ -18612,8 +41830,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/643945", - "osm_node_id": 643945, + "osm_link": "https://www.openstreetmap.org/node/4361246654", + "osm_node_id": 4361246654, "type": "intersection" }, "type": "Feature" @@ -18623,38 +41841,157 @@ "coordinates": [ [ [ - -1.5363789527316591, - 53.79876571942469 + -1.5324063573935183, + 53.7980843897341 ], [ - -1.5363199693857614, - 53.79877209741394 + -1.5325160079512072, + 53.7980556977757 ], [ - -1.5362214866866726, - 53.798725106058306 + -1.532518386164586, + 53.79805886878389 ], [ - -1.5362707318425763, - 53.79866247639824 + -1.5325315165821136, + 53.79807509614401 + ], + [ + -1.5324063573935183, + 53.7980843897341 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4361246658", + "osm_node_id": 4361246658, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5324384967700944, + 53.798534709769314 + ], + [ + -1.5324631132578712, + 53.79860403847646 + ], + [ + -1.532283710402154, + 53.798626264312084 + ], + [ + -1.5322590908692897, + 53.79855693560494 + ], + [ + -1.5324384967700944, + 53.798534709769314 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4361246660", + "osm_node_id": 4361246660, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5322386628994418, + 53.79872642716183 + ], + [ + -1.5321197674559426, + 53.79871715155818 + ], + [ + -1.5321203307971398, + 53.79871463525616 + ], + [ + -1.5321250034839897, + 53.798678769408845 + ], + [ + -1.5321278567310266, + 53.79867889891117 + ], + [ + -1.532128984935965, + 53.79867311177625 + ], + [ + -1.5322481239864683, + 53.798681216463095 + ], + [ + -1.5322386628994418, + 53.79872642716183 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4361248196", + "osm_node_id": 4361248196, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5377065180295104, + 53.79660568997917 + ], + [ + -1.537653259448212, + 53.796604603598595 + ], + [ + -1.537665351490884, + 53.79656023196697 ], [ - -1.5363946516805376, - 53.79867779364484 + -1.5376957993213245, + 53.796559933392174 ], [ - -1.5363789527316591, - 53.79876571942469 + -1.5377065180295104, + 53.79660568997917 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/643946", - "osm_node_id": 643946, + "complexity": "Connection", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/4364076651", + "osm_node_id": 4364076651, "type": "intersection" }, "type": "Feature" @@ -18664,48 +42001,40 @@ "coordinates": [ [ [ - -1.5344696706557024, - 53.7996258729331 - ], - [ - -1.53447581411984, - 53.7996293308249 - ], - [ - -1.534423301584992, - 53.79966188626917 + -1.536017899745611, + 53.79565270039461 ], [ - -1.5344165856443943, - 53.79965810731953 + -1.5360523533887271, + 53.79566225838527 ], [ - -1.534367574960232, - 53.7996340090962 + -1.5360394087215403, + 53.79567853790605 ], [ - -1.5343701176083386, - 53.799632205056945 + -1.5360109082245899, + 53.79567063106997 ], [ - -1.5343681976806365, - 53.7996311447567 + -1.5359794159291187, + 53.79567037296465 ], [ - -1.5344202321367388, - 53.799598321314576 + -1.5359798391962887, + 53.79565238833 ], [ - -1.5344231021317574, - 53.79959990951664 + -1.5360265645422426, + 53.79562436726556 ], [ - -1.5344274779225706, - 53.79959762883689 + -1.5360465829478147, + 53.79563792004305 ], [ - -1.5344696706557024, - 53.7996258729331 + -1.536017899745611, + 53.79565270039461 ] ] ], @@ -18713,9 +42042,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/643950", - "osm_node_id": 643950, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4365671268", + "osm_node_id": 4365671268, "type": "intersection" }, "type": "Feature" @@ -18725,28 +42054,40 @@ "coordinates": [ [ [ - -1.5344364548406764, - 53.79953975838708 + -1.5363163487766611, + 53.79566598787221 ], [ - -1.5343814910103484, - 53.79950094186538 + -1.5362841850393847, + 53.79567116706568 ], [ - -1.5344181782251844, - 53.799433499935084 + -1.5362761764591208, + 53.79565381375483 ], [ - -1.5344924874967354, - 53.79944760399676 + -1.5363129002150075, + 53.79564789981557 ], [ - -1.5345449513101828, - 53.799485085025786 + -1.536281430757693, + 53.79563525085635 ], [ - -1.5344364548406764, - 53.79953975838708 + -1.5362985624202652, + 53.79562038147194 + ], + [ + -1.5363509303134546, + 53.79564884500264 + ], + [ + -1.5363496513766823, + 53.79566681524815 + ], + [ + -1.5363163487766611, + 53.79566598787221 ] ] ], @@ -18754,9 +42095,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/643951", - "osm_node_id": 643951, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4365671270", + "osm_node_id": 4365671270, "type": "intersection" }, "type": "Feature" @@ -18766,40 +42107,44 @@ "coordinates": [ [ [ - -1.536464301968133, - 53.79904213673025 + -1.5358286871403426, + 53.795651149964065 ], [ - -1.5364609143082304, - 53.79906283371905 + -1.5358362602730864, + 53.79565121201726 ], [ - -1.536401227547108, - 53.79905942528994 + -1.5358358370059166, + 53.795669196651914 ], [ - -1.536404230003435, - 53.79904108272526 + -1.5358267078334333, + 53.795669121108894 ], [ - -1.536384435411798, - 53.79899165240927 + -1.5358261140413605, + 53.79567450444838 ], [ - -1.5364427884245724, - 53.79898349915906 + -1.535795727112671, + 53.795673335330214 ], [ - -1.5364363039106286, - 53.79899055523684 + -1.535798199723764, + 53.79565089995264 ], [ - -1.5364904501349488, - 53.79900585539633 + -1.5358006662446817, + 53.79562846457507 ], [ - -1.536464301968133, - 53.79904213673025 + -1.5358310531733712, + 53.795629630095945 + ], + [ + -1.5358286871403426, + 53.795651149964065 ] ] ], @@ -18808,8 +42153,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9791699", - "osm_node_id": 9791699, + "osm_link": "https://www.openstreetmap.org/node/4365671272", + "osm_node_id": 4365671272, "type": "intersection" }, "type": "Feature" @@ -18819,38 +42164,34 @@ "coordinates": [ [ [ - -1.5363105981288177, - 53.79980847300258 - ], - [ - -1.5363497320715025, - 53.799810064801925 + -1.53905, + 53.798073257031206 ], [ - -1.5363414920645846, - 53.799880735296995 + -1.5390497472577331, + 53.798091243464505 ], [ - -1.5362219723781372, - 53.799874905893965 + -1.5388974989702682, + 53.79809049343024 ], [ - -1.5362508839619071, - 53.79980523994119 + -1.538897751712535, + 53.79807250699694 ], [ - -1.5363105981288177, - 53.79980847300258 + -1.53905, + 53.798073257031206 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9791722", - "osm_node_id": 9791722, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/4457095865", + "osm_node_id": 4457095865, "type": "intersection" }, "type": "Feature" @@ -18860,34 +42201,50 @@ "coordinates": [ [ [ - -1.532023693421108, - 53.79685879776649 + -1.5378609998886954, + 53.79831130028133 ], [ - -1.5320097773709915, - 53.79683132708691 + -1.5378568174609415, + 53.798333647525375 ], [ - -1.532137407648136, - 53.796808767602954 + -1.5378265523357542, + 53.79833167081636 ], [ - -1.5321513236982522, - 53.79683623828253 + -1.537834697944958, + 53.79828705906585 ], [ - -1.532023693421108, - 53.79685879776649 + -1.5378649813406706, + 53.798288940446774 + ], + [ + -1.5378641941855382, + 53.798293358814114 + ], + [ + -1.5378998871792884, + 53.79829393797726 + ], + [ + -1.5378990497802114, + 53.79831191721599 + ], + [ + -1.5378609998886954, + 53.79831130028133 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/9823004", - "osm_node_id": 9823004, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4457095867", + "osm_node_id": 4457095867, "type": "intersection" }, "type": "Feature" @@ -18897,34 +42254,50 @@ "coordinates": [ [ [ - -1.5320750427325107, - 53.79642436514781 + -1.537903300722435, + 53.79807370039679 ], [ - -1.5320449572674892, - 53.79635579187086 + -1.5379413627943013, + 53.79807346387519 ], [ - -1.5321923425501323, - 53.79633323148757 + -1.5379416825284944, + 53.798091448509844 ], [ - -1.532222428015154, - 53.79640180476452 + -1.5378993192704598, + 53.798096060231344 ], [ - -1.5320750427325107, - 53.79642436514781 + -1.537869035874747, + 53.79809417885042 + ], + [ + -1.5378729427220774, + 53.7980722398984 + ], + [ + -1.5378751153920462, + 53.79805020831626 + ], + [ + -1.537905514501086, + 53.79805125512668 + ], + [ + -1.537903300722435, + 53.79807370039679 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/9823016", - "osm_node_id": 9823016, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4457095868", + "osm_node_id": 4457095868, "type": "intersection" }, "type": "Feature" @@ -18934,34 +42307,46 @@ "coordinates": [ [ [ - -1.532055628776818, - 53.79941994176167 + -1.537826438144971, + 53.79870097905668 ], [ - -1.5320619595138403, - 53.799384720727986 + -1.5378195775627146, + 53.79873616591614 ], [ - -1.5322154441068516, - 53.79940399409058 + -1.5377428581043655, + 53.79873025197688 ], [ - -1.5321988757854768, - 53.7994380334156 + -1.5377515152882781, + 53.79869520361295 ], [ - -1.532055628776818, - 53.79941994176167 + -1.537758392618516, + 53.798695796265925 + ], + [ + -1.5377604176017388, + 53.79868497562766 + ], + [ + -1.537790682726926, + 53.79868695233667 + ], + [ + -1.537826438144971, + 53.79870097905668 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/9823073", - "osm_node_id": 9823073, + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/4457095870", + "osm_node_id": 4457095870, "type": "intersection" }, "type": "Feature" @@ -18971,38 +42356,34 @@ "coordinates": [ [ [ - -1.5342984727883962, - 53.79986418687904 - ], - [ - -1.5343347032400996, - 53.799870871536974 + -1.5383768864415408, + 53.79850726157278 ], [ - -1.534312562408503, - 53.79991273496047 + -1.5383467004886298, + 53.79850489995409 ], [ - -1.5342396797604705, - 53.7998990706671 + -1.538366697578589, + 53.79841574660016 ], [ - -1.5342624661506281, - 53.799857329551344 + -1.5383968835315, + 53.798418108218854 ], [ - -1.5342984727883962, - 53.79986418687904 + -1.5383768864415408, + 53.79850726157278 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9823112", - "osm_node_id": 9823112, + "osm_link": "https://www.openstreetmap.org/node/4457095874", + "osm_node_id": 4457095874, "type": "intersection" }, "type": "Feature" @@ -19012,36 +42393,40 @@ "coordinates": [ [ [ - -1.5339883184407932, - 53.79999880364109 + -1.5384161863414971, + 53.798332049430776 ], [ - -1.5339649473938255, - 53.80005446625621 + -1.5383860003885863, + 53.798329687812085 ], [ - -1.533957257025211, - 53.80006414655462 + -1.538391000422348, + 53.79830739992327 ], [ - -1.5338392081160515, - 53.80003563086327 + -1.5383529885944265, + 53.798308576236 ], [ - -1.533863370885783, - 53.799980088757245 + -1.5383513960136364, + 53.79829061498371 ], [ - -1.5339229251855968, - 53.79998912693998 + -1.538387984263127, + 53.79828948273774 ], [ - -1.5339348238652093, - 53.79997829820781 + -1.538424223850093, + 53.798286331514625 + ], + [ + -1.5384286574975696, + 53.79830412549308 ], [ - -1.5339883184407932, - 53.79999880364109 + -1.5384161863414971, + 53.798332049430776 ] ] ], @@ -19050,8 +42435,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9823132", - "osm_node_id": 9823132, + "osm_link": "https://www.openstreetmap.org/node/4457095875", + "osm_node_id": 4457095875, "type": "intersection" }, "type": "Feature" @@ -19061,32 +42446,44 @@ "coordinates": [ [ [ - -1.538158565844355, - 53.79598497726674 + -1.5384804376888614, + 53.79807045024829 ], [ - -1.5381885721371005, - 53.795995278996415 + -1.5384879621002043, + 53.7980704880198 ], [ - -1.5381694428970938, - 53.79601471693488 + -1.5384877093579374, + 53.7980884744531 ], [ - -1.5381021830032273, - 53.79601717028438 + -1.538449805630624, + 53.798088287394194 ], [ - -1.53810449422468, - 53.795981778379584 + -1.5384121576906649, + 53.79808852121783 ], [ - -1.5381337301102744, - 53.79596738203837 + -1.5384118379564717, + 53.79807053658317 ], [ - -1.538158565844355, - 53.79598497726674 + -1.538449900028338, + 53.798070300061575 + ], + [ + -1.53845311411825, + 53.79804789705958 + ], + [ + -1.5384834553706261, + 53.798049416913194 + ], + [ + -1.5384804376888614, + 53.79807045024829 ] ] ], @@ -19095,8 +42492,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/10440056", - "osm_node_id": 10440056, + "osm_link": "https://www.openstreetmap.org/node/4457095876", + "osm_node_id": 4457095876, "type": "intersection" }, "type": "Feature" @@ -19106,38 +42503,38 @@ "coordinates": [ [ [ - -1.5359413949659344, - 53.800262707785 + -1.5376829932056213, + 53.79669768518955 ], [ - -1.535917165204277, - 53.800304164715115 + -1.5376806698038183, + 53.7967184217485 ], [ - -1.535881769106563, - 53.80029694765875 + -1.5376502859202166, + 53.79671723284526 ], [ - -1.5358459741023798, - 53.800290417684145 + -1.537640266059624, + 53.79666964883665 ], [ - -1.5358678865524098, - 53.80024851289185 + -1.5376918437525935, + 53.796677561068655 ], [ - -1.5359413949659344, - 53.800262707785 + -1.5376829932056213, + 53.79669768518955 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/21099344", - "osm_node_id": 21099344, + "osm_link": "https://www.openstreetmap.org/node/4457813299", + "osm_node_id": 4457813299, "type": "intersection" }, "type": "Feature" @@ -19147,34 +42544,34 @@ "coordinates": [ [ [ - -1.5368006623392154, - 53.80033911235501 + -1.5367626611691, + 53.79662187417185 ], [ - -1.5367780556092234, - 53.800380887644984 + -1.5367018385903206, + 53.796620032361076 ], [ - -1.5366330302694335, - 53.80035350509893 + -1.5367162509897079, + 53.7965757083935 ], [ - -1.5366556369994255, - 53.80031172980896 + -1.5367466896848858, + 53.79657621561092 ], [ - -1.5368006623392154, - 53.80033911235501 + -1.5367626611691, + 53.79662187417185 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/21133749", - "osm_node_id": 21133749, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4457813307", + "osm_node_id": 4457813307, "type": "intersection" }, "type": "Feature" @@ -19184,34 +42581,34 @@ "coordinates": [ [ [ - -1.5390464494279135, - 53.79769910774236 + -1.5367400118078824, + 53.7968827206221 ], [ - -1.5390515925807902, - 53.79773439532585 + -1.5366791892291027, + 53.79688087881133 ], [ - -1.5388998984992597, - 53.79774210700912 + -1.5366869876983256, + 53.79679106445598 ], [ - -1.5388947553463832, - 53.797706819425635 + -1.536747810277105, + 53.79679290626675 ], [ - -1.5390464494279135, - 53.79769910774236 + -1.5367400118078824, + 53.7968827206221 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/26109188", - "osm_node_id": 26109188, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4457813308", + "osm_node_id": 4457813308, "type": "intersection" }, "type": "Feature" @@ -19221,46 +42618,34 @@ "coordinates": [ [ [ - -1.5368439558714972, - 53.79780223475632 - ], - [ - -1.5368468182537969, - 53.79780499297586 - ], - [ - -1.5368208558373218, - 53.7978143926859 - ], - [ - -1.5367724983244395, - 53.797813544625576 + -1.5372512896207167, + 53.79698387902093 ], [ - -1.5367728606898583, - 53.79775619668165 + -1.5372522001018951, + 53.7969658997822 ], [ - -1.5368478444483022, - 53.79776675741596 + -1.5374043859650652, + 53.796968587854664 ], [ - -1.5368491629712127, - 53.79780216730719 + -1.5374034754838868, + 53.796986567093384 ], [ - -1.5368439558714972, - 53.79780223475632 + -1.5372512896207167, + 53.79698387902093 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26109191", - "osm_node_id": 26109191, + "osm_link": "https://www.openstreetmap.org/node/4457813310", + "osm_node_id": 4457813310, "type": "intersection" }, "type": "Feature" @@ -19270,42 +42655,34 @@ "coordinates": [ [ [ - -1.5356197240972067, - 53.79859212875965 - ], - [ - -1.5356204945043574, - 53.798609177200454 - ], - [ - -1.5354939376205756, - 53.79861117189591 + -1.5367862590750907, + 53.79887892603587 ], [ - -1.53547847771107, - 53.798475192661535 + -1.536756063986917, + 53.79887659319547 ], [ - -1.535573514893593, - 53.79846346370838 + -1.5367349097636878, + 53.79882997775629 ], [ - -1.5356825198927206, - 53.79850149782023 + -1.5367651779339626, + 53.79883195266667 ], [ - -1.5356197240972067, - 53.79859212875965 + -1.5367862590750907, + 53.79887892603587 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298420", - "osm_node_id": 26298420, + "osm_link": "https://www.openstreetmap.org/node/4500478004", + "osm_node_id": 4500478004, "type": "intersection" }, "type": "Feature" @@ -19315,32 +42692,28 @@ "coordinates": [ [ [ - -1.536415737389297, - 53.79851207204437 - ], - [ - -1.5363840532533102, - 53.798542141763555 + -1.536398435201822, + 53.798667110602786 ], [ - -1.5362624187535572, - 53.79856288461775 + -1.5362745153638608, + 53.79865179695347 ], [ - -1.5361936591540712, - 53.79848549349188 + -1.5362753253571497, + 53.798624989973284 ], [ - -1.5361713949964289, - 53.79847311432917 + -1.5364019066016321, + 53.798626322767994 ], [ - -1.5362581708564211, - 53.79841866399965 + -1.5364097629275184, + 53.79866143498376 ], [ - -1.536415737389297, - 53.79851207204437 + -1.536398435201822, + 53.798667110602786 ] ] ], @@ -19348,9 +42721,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298423", - "osm_node_id": 26298423, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/4540786888", + "osm_node_id": 4540786888, "type": "intersection" }, "type": "Feature" @@ -19360,36 +42733,40 @@ "coordinates": [ [ [ - -1.5373732194939622, - 53.79987316660586 + -1.5335727020534302, + 53.80004089279433 + ], + [ + -1.5335357133749263, + 53.80004619519487 ], [ - -1.5373974644810577, - 53.79987649859263 + -1.5335315385598913, + 53.80003603196073 ], [ - -1.5373702840295613, - 53.799945492752116 + -1.5335219891653258, + 53.80001437539572 ], [ - -1.5373357070603992, - 53.79994074073644 + -1.5335588225443646, + 53.80000870966923 ], [ - -1.5372969126449765, - 53.79993743213203 + -1.5335633856080624, + 53.80001905906295 ], [ - -1.5373140534428114, - 53.79986732101504 + -1.533580671047556, + 53.800015875464254 ], [ - -1.5373734493980724, - 53.79987218094932 + -1.5335920018183398, + 53.80003733867511 ], [ - -1.5373732194939622, - 53.79987316660586 + -1.5335727020534302, + 53.80004089279433 ] ] ], @@ -19398,8 +42775,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298424", - "osm_node_id": 26298424, + "osm_link": "https://www.openstreetmap.org/node/4833244387", + "osm_node_id": 4833244387, "type": "intersection" }, "type": "Feature" @@ -19409,46 +42786,42 @@ "coordinates": [ [ [ - -1.5369290949969299, - 53.79983448768038 - ], - [ - -1.536949841178427, - 53.799836257545415 + -1.5356622441772503, + 53.799093142657796 ], [ - -1.53693270342568, - 53.79990636866241 + -1.535631100544304, + 53.79910606860809 ], [ - -1.53689724033604, - 53.79990334424365 + -1.5355752810443735, + 53.79905914739955 ], [ - -1.5368611286427514, - 53.79990187475205 + -1.5356064246773198, + 53.79904622144925 ], [ - -1.5368693686496693, - 53.79983120425698 + -1.535637589625879, + 53.799033293700326 ], [ - -1.53686955440001, - 53.79983028604956 + -1.5356933847651089, + 53.79908022570073 ], [ - -1.5369290949969299, - 53.79983448768038 + -1.5356622441772503, + 53.799093142657796 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298425", - "osm_node_id": 26298425, + "osm_link": "https://www.openstreetmap.org/node/4833244388", + "osm_node_id": 4833244388, "type": "intersection" }, "type": "Feature" @@ -19458,36 +42831,28 @@ "coordinates": [ [ [ - -1.5387112005137877, - 53.80006733285128 - ], - [ - -1.5387198348595437, - 53.800068364373224 - ], - [ - -1.5387079529279126, - 53.80010308178677 + -1.5346222813085861, + 53.7995417144117 ], [ - -1.5386410751925343, - 53.80012456388339 + -1.5346173482667504, + 53.79956400859577 ], [ - -1.5385681986346769, - 53.80011013786456 + -1.5345615790107647, + 53.79957796876597 ], [ - -1.5385953790861733, - 53.80004114370507 + -1.5345193862776332, + 53.79954972466977 ], [ - -1.5387146064442156, - 53.800048773550074 + -1.5345915030861461, + 53.79951954073673 ], [ - -1.5387112005137877, - 53.80006733285128 + -1.5346222813085861, + 53.7995417144117 ] ] ], @@ -19496,8 +42861,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298426", - "osm_node_id": 26298426, + "osm_link": "https://www.openstreetmap.org/node/4833244389", + "osm_node_id": 4833244389, "type": "intersection" }, "type": "Feature" @@ -19507,50 +42872,34 @@ "coordinates": [ [ [ - -1.5388201841973026, - 53.799145181006615 - ], - [ - -1.5388619673661583, - 53.799149643440714 - ], - [ - -1.5388512973793733, - 53.79918449755116 - ], - [ - -1.5388495814725374, - 53.79919412299094 + -1.538554599273666, + 53.79669070015818 ], [ - -1.5387899495229909, - 53.79919040879246 - ], - [ - -1.5387921663467292, - 53.79917798916027 + -1.5385534025542578, + 53.79671317240794 ], [ - -1.5387714323455821, - 53.79917553671009 + -1.5385229669041676, + 53.79671260583529 ], [ - -1.5387832076991488, - 53.799140806706035 + -1.5385241697137508, + 53.79669002386829 ], [ - -1.5388201841973026, - 53.799145181006615 + -1.538554599273666, + 53.79669070015818 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298428", - "osm_node_id": 26298428, + "osm_link": "https://www.openstreetmap.org/node/5071469689", + "osm_node_id": 5071469689, "type": "intersection" }, "type": "Feature" @@ -19560,36 +42909,32 @@ "coordinates": [ [ [ - -1.5375999521455126, - 53.79900083628212 - ], - [ - -1.537588176791946, - 53.79903556628617 + -1.5384307372923682, + 53.797766020871514 ], [ - -1.5375701818470526, - 53.79903343759179 + -1.5384249775092622, + 53.79776624660125 ], [ - -1.5375676635596465, - 53.79904417459315 + -1.5383869778616908, + 53.79776755151699 ], [ - -1.5375082660818413, - 53.79903931465887 + -1.538383497326618, + 53.79773219198777 ], [ - -1.537511161960104, - 53.79902696787173 + -1.5384267756334622, + 53.79773067932873 ], [ - -1.5375217025306682, - 53.79899210117078 + -1.538457151904345, + 53.79773191679534 ], [ - -1.5375999521455126, - 53.79900083628212 + -1.5384307372923682, + 53.797766020871514 ] ] ], @@ -19598,8 +42943,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298429", - "osm_node_id": 26298429, + "osm_link": "https://www.openstreetmap.org/node/5071469690", + "osm_node_id": 5071469690, "type": "intersection" }, "type": "Feature" @@ -19609,36 +42954,44 @@ "coordinates": [ [ [ - -1.5371298469614796, - 53.79895077823961 + -1.5377853538237085, + 53.79779967798482 ], [ - -1.5371193079134595, - 53.79898564494055 + -1.5377549090383558, + 53.797799278686 ], [ - -1.537101197255239, - 53.79898373478134 + -1.53775530185465, + 53.79778885284994 ], [ - -1.5370990154500075, - 53.79899452394335 + -1.5377488554043008, + 53.797788994043444 ], [ - -1.5370394748530876, - 53.798990322312534 + -1.537746620310037, + 53.79775360034 + ], + [ + -1.5377888830801822, + 53.79775050397551 + ], + [ + -1.5378192791441343, + 53.79775156877236 ], [ - -1.5370400397168287, - 53.79898753171741 + -1.5378217974315405, + 53.797751482437484 ], [ - -1.537060711293681, - 53.79893149948108 + -1.5378252779666135, + 53.7977868419667 ], [ - -1.5371298469614796, - 53.79895077823961 + -1.5377853538237085, + 53.79779967798482 ] ] ], @@ -19646,9 +42999,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298430", - "osm_node_id": 26298430, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/5071469692", + "osm_node_id": 5071469692, "type": "intersection" }, "type": "Feature" @@ -19658,38 +43011,34 @@ "coordinates": [ [ [ - -1.5353424536500864, - 53.798999964839425 - ], - [ - -1.53527273028039, - 53.79897410034834 + -1.5390507612718882, + 53.797176038879705 ], [ - -1.5352962033377906, - 53.79890582654551 + -1.53905, + 53.79719401991707 ], [ - -1.5353340294153714, - 53.79890331923671 + -1.5390387468789486, + 53.79726108233363 ], [ - -1.5353807182202748, - 53.79891117481145 + -1.5390083081837709, + 53.797260584109424 ], [ - -1.5353424536500864, - 53.798999964839425 + -1.5390507612718882, + 53.797176038879705 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298432", - "osm_node_id": 26298432, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/5071469694", + "osm_node_id": 5071469694, "type": "intersection" }, "type": "Feature" @@ -19699,42 +43048,34 @@ "coordinates": [ [ [ - -1.5327191822829052, - 53.80028533471809 - ], - [ - -1.532668618604091, - 53.80032406490491 - ], - [ - -1.532703038751244, - 53.800337477388226 + -1.5390682233264599, + 53.79747415771636 ], [ - -1.5326378373365634, - 53.80030733032737 + -1.539066533302868, + 53.79749211717001 ], [ - -1.5326745367317498, - 53.80026433645654 + -1.5389335162658426, + 53.797487746466714 ], [ - -1.5327639770433508, - 53.80031152746158 + -1.5389352062894346, + 53.79746978701307 ], [ - -1.5327191822829052, - 53.80028533471809 + -1.5390682233264599, + 53.79747415771636 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298441", - "osm_node_id": 26298441, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/5071469695", + "osm_node_id": 5071469695, "type": "intersection" }, "type": "Feature" @@ -19744,24 +43085,32 @@ "coordinates": [ [ [ - -1.5332893231606788, - 53.80001646631859 + -1.5385473930739724, + 53.797457040927114 ], [ - -1.5332090942389252, - 53.7999638146324 + -1.538585397289175, + 53.797458290084904 ], [ - -1.53327042686987, - 53.799943580794256 + -1.5385837042204957, + 53.797476249538555 ], [ - -1.5333308627225304, - 53.799970921971514 + -1.538545700005293, + 53.797475000380764 ], [ - -1.5332893231606788, - 53.80001646631859 + -1.5385076957900903, + 53.79747374043111 + ], + [ + -1.5385094010391198, + 53.797455782776105 + ], + [ + -1.5385473930739724, + 53.797457040927114 ] ] ], @@ -19770,8 +43119,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26298442", - "osm_node_id": 26298442, + "osm_link": "https://www.openstreetmap.org/node/5071469697", + "osm_node_id": 5071469697, "type": "intersection" }, "type": "Feature" @@ -19781,34 +43130,38 @@ "coordinates": [ [ [ - -1.5336328866863675, - 53.80044743834751 + -1.5377211070439758, + 53.79742989849994 ], [ - -1.5335380748403236, - 53.80043509066105 + -1.5377194048400338, + 53.79744785615495 ], [ - -1.5335667595650708, - 53.80035824632275 + -1.5376814006248312, + 53.79744659980258 ], [ - -1.5336615714111148, - 53.80037059400921 + -1.5376433553009463, + 53.797445901928974 ], [ - -1.5336328866863675, - 53.80044743834751 + -1.5376442992780877, + 53.79742792448889 + ], + [ + -1.5377211070439758, + 53.79742989849994 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/26298445", - "osm_node_id": 26298445, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5071469698", + "osm_node_id": 5071469698, "type": "intersection" }, "type": "Feature" @@ -19818,32 +43171,48 @@ "coordinates": [ [ [ - -1.535681550032335, - 53.798122423845946 + -1.5376282379637904, + 53.79746840025906 ], [ - -1.5356092139775182, - 53.79816067559364 + -1.5375978205842256, + 53.797467558493985 ], [ - -1.5355063722355975, - 53.79807142241501 + -1.5375996004379002, + 53.79744509973405 ], [ - -1.5355888027556517, - 53.79804112067084 + -1.537561599267785, + 53.79744381460339 ], [ - -1.5355880825924455, - 53.79804816146015 + -1.5375633380127776, + 53.79742585694839 ], [ - -1.5356480327536413, - 53.79804923075361 + -1.5376008078151149, + 53.79742712409261 ], [ - -1.535681550032335, - 53.798122423845946 + -1.5376011108013263, + 53.79742263467886 + ], + [ + -1.537631537316154, + 53.79742334874026 + ], + [ + -1.5376385882163826, + 53.79742782016758 + ], + [ + -1.5376376472843287, + 53.79744579760766 + ], + [ + -1.5376282379637904, + 53.79746840025906 ] ] ], @@ -19851,9 +43220,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/26300437", - "osm_node_id": 26300437, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5071469699", + "osm_node_id": 5071469699, "type": "intersection" }, "type": "Feature" @@ -19863,46 +43232,42 @@ "coordinates": [ [ [ - -1.5353450663352066, - 53.79777138802321 - ], - [ - -1.5352588416360615, - 53.79779774714121 + -1.5377317404897102, + 53.79673772928532 ], [ - -1.5352423235586314, - 53.79777889556047 + -1.5377694462863327, + 53.7967384631318 ], [ - -1.535223587134919, - 53.797760777826205 + -1.537768444452528, + 53.79675644057188 ], [ - -1.535306440922143, - 53.79773088257542 + -1.537730400651187, + 53.796755700430154 ], [ - -1.5352796837378166, - 53.79773795753896 + -1.5376924010036155, + 53.79675439011849 ], [ - -1.535317534176098, - 53.797740326352226 + -1.5376941762896588, + 53.79673643426212 ], [ - -1.5353450663352066, - 53.79777138802321 + -1.5377317404897102, + 53.79673772928532 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26660391", - "osm_node_id": 26660391, + "osm_link": "https://www.openstreetmap.org/node/5071469702", + "osm_node_id": 5071469702, "type": "intersection" }, "type": "Feature" @@ -19912,28 +43277,36 @@ "coordinates": [ [ [ - -1.5369050494630692, - 53.795506514758664 + -1.5376752130069238, + 53.796775979234376 ], [ - -1.5368594036006527, - 53.79555713038061 + -1.5376447864920961, + 53.79677526517297 ], [ - -1.5367994351689316, - 53.79554277900548 + -1.53764629990061, + 53.79675280011778 ], [ - -1.5368005983923767, - 53.795524805162685 + -1.5376488136203847, + 53.79673036563953 ], [ - -1.5368310325199233, - 53.79549428488335 + -1.5376791975039865, + 53.796731554542774 + ], + [ + -1.5376860733116808, + 53.79673615457309 ], [ - -1.5369050494630692, - 53.795506514758664 + -1.5376842980256376, + 53.79675411042945 + ], + [ + -1.5376752130069238, + 53.796775979234376 ] ] ], @@ -19942,8 +43315,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26660405", - "osm_node_id": 26660405, + "osm_link": "https://www.openstreetmap.org/node/5071469703", + "osm_node_id": 5071469703, "type": "intersection" }, "type": "Feature" @@ -19953,24 +43326,24 @@ "coordinates": [ [ [ - -1.533161948670889, - 53.79536602452682 + -1.539083719777016, + 53.796765988669996 ], [ - -1.5332540442988358, - 53.795423692629264 + -1.5390824743362068, + 53.79678396071415 ], [ - -1.5331571328649243, - 53.79547768790202 + -1.5389493629014674, + 53.796780740243264 ], [ - -1.5330650372369772, - 53.795420019799586 + -1.5389506083422766, + 53.796762768199116 ], [ - -1.533161948670889, - 53.79536602452682 + -1.539083719777016, + 53.796765988669996 ] ] ], @@ -19979,8 +43352,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/26661419", - "osm_node_id": 26661419, + "osm_link": "https://www.openstreetmap.org/node/5071469704", + "osm_node_id": 5071469704, "type": "intersection" }, "type": "Feature" @@ -19990,24 +43363,24 @@ "coordinates": [ [ [ - -1.534582338895156, - 53.795350488745065 + -1.5320469746379928, + 53.799671143886385 ], [ - -1.5346126314261312, - 53.79540497324881 + -1.5320730253620072, + 53.799628891955926 ], [ - -1.5344860608394553, - 53.7954295265289 + -1.532216088142869, + 53.799659665843976 ], [ - -1.5344557652633923, - 53.79537504202516 + -1.5321900374188548, + 53.799701917774435 ], [ - -1.534582338895156, - 53.795350488745065 + -1.5320469746379928, + 53.799671143886385 ] ] ], @@ -20016,8 +43389,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/26661423", - "osm_node_id": 26661423, + "osm_link": "https://www.openstreetmap.org/node/5335915830", + "osm_node_id": 5335915830, "type": "intersection" }, "type": "Feature" @@ -20027,40 +43400,36 @@ "coordinates": [ [ [ - -1.5340694365281122, - 53.7956025838962 + -1.5353362081755155, + 53.79763684680418 ], [ - -1.5340224675751541, - 53.79563797130439 + -1.535332704802286, + 53.79768474287741 ], [ - -1.5340169057227389, - 53.79563539564714 + -1.5352770680076089, + 53.79768332194918 ], [ - -1.5340051608200478, - 53.795642663065514 + -1.5352345616304592, + 53.797662070978234 ], [ - -1.5339326786010283, - 53.79560445808254 + -1.535281186488524, + 53.7976295335204 ], [ - -1.53396491694295, - 53.795563725106376 + -1.5352829846127238, + 53.79761253454229 ], [ - -1.5339879286695863, - 53.795570079713265 + -1.5353385635507377, + 53.79761458679433 ], [ - -1.5339986580355787, - 53.79556332940484 - ], - [ - -1.5340694365281122, - 53.7956025838962 + -1.5353362081755155, + 53.79763684680418 ] ] ], @@ -20069,8 +43438,8 @@ "properties": { "complexity": "Crossing", "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/26661426", - "osm_node_id": 26661426, + "osm_link": "https://www.openstreetmap.org/node/5452444895", + "osm_node_id": 5452444895, "type": "intersection" }, "type": "Feature" @@ -20080,77 +43449,48 @@ "coordinates": [ [ [ - -1.5345021145410336, - 53.79708531171287 - ], - [ - -1.5344166846097398, - 53.79711255936067 - ], - [ - -1.5343898558658557, - 53.79711800655199 + -1.535271618823433, + 53.79768999311729 ], [ - -1.5343604555455335, - 53.79706750424458 + -1.5352459061041372, + 53.797719170709385 ], [ - -1.5343594948204107, - 53.79706599068622 + -1.5352765244594806, + 53.79770195499475 ], [ - -1.5344851747189774, - 53.7970381692712 + -1.5351936706722564, + 53.79773185024553 ], [ - -1.5345021145410336, - 53.79708531171287 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26661432", - "osm_node_id": 26661432, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -1.5341759049693084, - 53.79568778832869 + -1.5351771784780706, + 53.79771590347377 ], [ - -1.5340789463365396, - 53.79568481876856 + -1.5351622773421307, + 53.79770019502225 ], [ - -1.5340806911717075, - 53.7956649329679 + -1.5351541408681897, + 53.79769134299911 ], [ - -1.5340364460495652, - 53.795644445521056 + -1.5352394642214193, + 53.79766397843949 ], [ - -1.5340834165250672, - 53.795609059012186 + -1.535228338994045, + 53.79766641290323 ], [ - -1.5341804680330062, - 53.795610658905424 + -1.535270842326107, + 53.79768766567282 ], [ - -1.5341759049693084, - 53.79568778832869 + -1.535271618823433, + 53.79768999311729 ] ] ], @@ -20159,8 +43499,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26661443", - "osm_node_id": 26661443, + "osm_link": "https://www.openstreetmap.org/node/5452444896", + "osm_node_id": 5452444896, "type": "intersection" }, "type": "Feature" @@ -20170,34 +43510,50 @@ "coordinates": [ [ [ - -1.533232588611939, - 53.79780399472882 + -1.5351121369304863, + 53.797705288780165 + ], + [ + -1.5351106935589864, + 53.79772325542839 + ], + [ + -1.5350264770950823, + 53.79775179180413 + ], + [ + -1.5349828790540452, + 53.79770689946527 + ], + [ + -1.5349449540111186, + 53.79766937077219 ], [ - -1.5332194125180978, - 53.797874404420604 + -1.5349733022536916, + 53.79764505311437 ], [ - -1.5330680792794424, - 53.797864523573466 + -1.535028323940683, + 53.797639979141536 ], [ - -1.5330812553732835, - 53.79779411388168 + -1.5350419476623942, + 53.7976915129709 ], [ - -1.533232588611939, - 53.79780399472882 + -1.5351121369304863, + 53.797705288780165 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26661446", - "osm_node_id": 26661446, + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/5452444899", + "osm_node_id": 5452444899, "type": "intersection" }, "type": "Feature" @@ -20207,28 +43563,32 @@ "coordinates": [ [ [ - -1.5324601290720694, - 53.79772308006066 + -1.534910224787579, + 53.79762986626942 ], [ - -1.532473649260804, - 53.79772502709206 + -1.5348443747692497, + 53.79765243024999 ], [ - -1.532445247729199, - 53.79779385038044 + -1.5348092740450285, + 53.7976036474456 ], [ - -1.5323262045989534, - 53.79778526995243 + -1.5348639440244078, + 53.797587795102615 ], [ - -1.532341154456294, - 53.79771416148771 + -1.5348821825763053, + 53.797590709804126 ], [ - -1.5324601290720694, - 53.79772308006066 + -1.5348933671828866, + 53.79761270181612 + ], + [ + -1.534910224787579, + 53.79762986626942 ] ] ], @@ -20237,8 +43597,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26661448", - "osm_node_id": 26661448, + "osm_link": "https://www.openstreetmap.org/node/5452444904", + "osm_node_id": 5452444904, "type": "intersection" }, "type": "Feature" @@ -20248,36 +43608,36 @@ "coordinates": [ [ [ - -1.5325685935681566, - 53.79721321054208 + -1.5348274288570183, + 53.79744117959091 ], [ - -1.532565301828512, - 53.79724857636655 + -1.5348462977420392, + 53.797459852206636 ], [ - -1.5325621014414939, - 53.79724847204524 + -1.5347629293350187, + 53.79748924563593 ], [ - -1.5324430217701979, - 53.79724004540124 + -1.5348227059262238, + 53.79747376381347 ], [ - -1.5324476228974901, - 53.7972186244585 + -1.534749797394947, + 53.79748670145494 ], [ - -1.5324503924046193, - 53.79719709829513 + -1.5347245475289593, + 53.79744933643841 ], [ - -1.5325699760379055, - 53.79720246544683 + -1.5348099774602533, + 53.797422088790604 ], [ - -1.5325685935681566, - 53.79721321054208 + -1.5348274288570183, + 53.79744117959091 ] ] ], @@ -20286,8 +43646,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26661450", - "osm_node_id": 26661450, + "osm_link": "https://www.openstreetmap.org/node/5452444905", + "osm_node_id": 5452444905, "type": "intersection" }, "type": "Feature" @@ -20297,40 +43657,36 @@ "coordinates": [ [ [ - -1.5328548211403135, - 53.797257982371846 - ], - [ - -1.5328581128799579, - 53.79722261744669 + -1.5353660043572197, + 53.798172965723516 ], [ - -1.5328661777943415, - 53.7972228791493 + -1.5352930927808555, + 53.798185899767695 ], [ - -1.5328678053936384, - 53.79721094515081 + -1.5352839651309158, + 53.798167947508624 ], [ - -1.5329285092140037, - 53.79721383377199 + -1.5352705408624394, + 53.798151802886096 ], [ - -1.5329275698044935, - 53.7972207162807 + -1.535272571935837, + 53.79815121472973 ], [ - -1.532929853620158, - 53.79722050583943 + -1.535268773189115, + 53.79814586736311 ], [ - -1.5329390802354432, - 53.797255503841335 + -1.5353389715924697, + 53.79812846908618 ], [ - -1.5328548211403135, - 53.797257982371846 + -1.5353660043572197, + 53.798172965723516 ] ] ], @@ -20339,8 +43695,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26661452", - "osm_node_id": 26661452, + "osm_link": "https://www.openstreetmap.org/node/5452444908", + "osm_node_id": 5452444908, "type": "intersection" }, "type": "Feature" @@ -20350,32 +43706,32 @@ "coordinates": [ [ [ - -1.5339796673470556, - 53.79716035560919 + -1.5353443781454197, + 53.79870862868676 ], [ - -1.5339237778101116, - 53.79717464762909 + -1.5353178219368717, + 53.79875077089998 ], [ - -1.533917107545827, - 53.797165546493844 + -1.5353493157548865, + 53.798753610058476 ], [ - -1.5338999606578174, - 53.79716712390404 + -1.535311514038006, + 53.79875097144871 ], [ - -1.5338907340425323, - 53.79713212590213 + -1.5353013069045292, + 53.79870321836763 ], [ - -1.5339716557217042, - 53.79712525508461 + -1.5353759328651857, + 53.79871210186703 ], [ - -1.5339796673470556, - 53.79716035560919 + -1.5353443781454197, + 53.79870862868676 ] ] ], @@ -20384,8 +43740,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26661454", - "osm_node_id": 26661454, + "osm_link": "https://www.openstreetmap.org/node/5452444913", + "osm_node_id": 5452444913, "type": "intersection" }, "type": "Feature" @@ -20395,28 +43751,44 @@ "coordinates": [ [ [ - -1.5343160870973453, - 53.79713294518417 + -1.5354984306472597, + 53.79871324220691 ], [ - -1.5341877640627828, - 53.797144179510404 + -1.5354639663463372, + 53.79874290183541 ], [ - -1.5341799412328596, - 53.797109062798036 + -1.5354896486147573, + 53.79873945923208 ], [ - -1.5342868040128939, - 53.79708241769575 + -1.5353943617350552, + 53.79872846052812 ], [ - -1.534319759472934, - 53.79711509005183 + -1.5354142354989686, + 53.79873570546345 ], [ - -1.5343160870973453, - 53.79713294518417 + -1.535391394297235, + 53.79870235861612 + ], + [ + -1.5354041790973254, + 53.7986993027211 + ], + [ + -1.535409582605188, + 53.79868409249378 + ], + [ + -1.5355046015171854, + 53.798695870010306 + ], + [ + -1.5354984306472597, + 53.79871324220691 ] ] ], @@ -20425,8 +43797,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/26661455", - "osm_node_id": 26661455, + "osm_link": "https://www.openstreetmap.org/node/5452444914", + "osm_node_id": 5452444914, "type": "intersection" }, "type": "Feature" @@ -20436,34 +43808,46 @@ "coordinates": [ [ [ - -1.5390582034658673, - 53.80010876909699 + -1.535638943167296, + 53.798833235998686 ], [ - -1.5390463215342363, - 53.800143486510535 + -1.5356281513770091, + 53.79885169187789 ], [ - -1.5388970863609048, - 53.80012566645175 + -1.5355561959581363, + 53.79883700955239 ], [ - -1.5389089682925359, - 53.80009094903819 + -1.5355636868735163, + 53.79882419601731 ], [ - -1.5390582034658673, - 53.80010876909699 + -1.535633096599195, + 53.798805725748956 + ], + [ + -1.5355943691756984, + 53.79879188249057 + ], + [ + -1.5356574481643546, + 53.79881705630261 + ], + [ + -1.535638943167296, + 53.798833235998686 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/30822588", - "osm_node_id": 30822588, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5452444915", + "osm_node_id": 5452444915, "type": "intersection" }, "type": "Feature" @@ -20473,38 +43857,42 @@ "coordinates": [ [ [ - -1.5359378657094607, - 53.800180002567416 + -1.5354174541565118, + 53.798091822627654 ], [ - -1.5359738449414408, - 53.80018649027391 + -1.5353250540198096, + 53.79810942954721 ], [ - -1.5359521669631524, - 53.800228438233646 + -1.5353180152999313, + 53.79809653956979 ], [ - -1.535878786443305, - 53.8002146381427 + -1.535232984275107, + 53.798065584918085 ], [ - -1.535902157490273, - 53.80017300854283 + -1.535272926688537, + 53.79802730619074 ], [ - -1.5359378657094607, - 53.800180002567416 + -1.5353633033645604, + 53.798006348398665 + ], + [ + -1.5354174541565118, + 53.798091822627654 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/50021952", - "osm_node_id": 50021952, + "osm_link": "https://www.openstreetmap.org/node/5452456321", + "osm_node_id": 5452456321, "type": "intersection" }, "type": "Feature" @@ -20514,38 +43902,46 @@ "coordinates": [ [ [ - -1.534418501004465, - 53.796189237498524 + -1.5352645496526793, + 53.79802425569165 ], [ - -1.5344083365022139, - 53.796167571040975 + -1.5352246041941615, + 53.798062534418996 ], [ - -1.5344447740198706, - 53.79616160673969 + -1.5352845269495694, + 53.79805183159186 ], [ - -1.534481030354818, - 53.79615513612031 + -1.5352143285462148, + 53.798069231667434 ], [ - -1.534492041391409, - 53.7961766586864 + -1.5351998263167443, + 53.798048815267 + ], + [ + -1.5351842918025937, + 53.798028641683416 + ], + [ + -1.535253588860033, + 53.79801002572495 ], [ - -1.534418501004465, - 53.796189237498524 + -1.5352645496526793, + 53.79802425569165 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/60197210", - "osm_node_id": 60197210, + "osm_link": "https://www.openstreetmap.org/node/5452456322", + "osm_node_id": 5452456322, "type": "intersection" }, "type": "Feature" @@ -20555,38 +43951,34 @@ "coordinates": [ [ [ - -1.535464525119903, - 53.79602231890091 - ], - [ - -1.535428142413822, - 53.796027487302524 + -1.532062076749711, + 53.79881885584526 ], [ - -1.5354192416229053, - 53.796005628390134 + -1.5320017657456402, + 53.79881385921409 ], [ - -1.5354949957885002, - 53.795996417537644 + -1.5320202707426986, + 53.798735931193185 ], [ - -1.5355014361486743, - 53.796018576823464 + -1.5320805817467693, + 53.79874092782436 ], [ - -1.535464525119903, - 53.79602231890091 + -1.532062076749711, + 53.79881885584526 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/60197213", - "osm_node_id": 60197213, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/5506378690", + "osm_node_id": 5506378690, "type": "intersection" }, "type": "Feature" @@ -20596,32 +43988,32 @@ "coordinates": [ [ [ - -1.5357107904855607, - 53.798777085051896 + -1.5321012883421283, + 53.79867769112217 ], [ - -1.5356702969112836, - 53.79880582377502 + -1.5320966141327348, + 53.79871355786881 ], [ - -1.5356604978195387, - 53.7988143907132 + -1.5320911558132964, + 53.798696397912124 ], [ - -1.5355974157857948, - 53.798789218699795 + -1.5320308448092257, + 53.798691401280955 ], [ - -1.5355849933511232, - 53.798778641777695 + -1.5320563733007246, + 53.79871167738721 ], [ - -1.5356890104968393, - 53.79873601393078 + -1.5320656273217976, + 53.79867612180587 ], [ - -1.5357107904855607, - 53.798777085051896 + -1.5321012883421283, + 53.79867769112217 ] ] ], @@ -20629,9 +44021,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/250348721", - "osm_node_id": 250348721, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5506378693", + "osm_node_id": 5506378693, "type": "intersection" }, "type": "Feature" @@ -20641,24 +44033,24 @@ "coordinates": [ [ [ - -1.539060363955486, - 53.79632437496782 + -1.5318602194183795, + 53.79807017055926 ], [ - -1.539039636044514, - 53.79634323194448 + -1.531864144536235, + 53.79805233341335 ], [ - -1.5389119387754435, - 53.79629425668526 + -1.5319962556597133, + 53.79806247776173 ], [ - -1.5389326666864154, - 53.79627539970859 + -1.531992330541858, + 53.79808031490764 ], [ - -1.539060363955486, - 53.79632437496782 + -1.5318602194183795, + 53.79807017055926 ] ] ], @@ -20667,8 +44059,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/301688528", - "osm_node_id": 301688528, + "osm_link": "https://www.openstreetmap.org/node/5506378735", + "osm_node_id": 5506378735, "type": "intersection" }, "type": "Feature" @@ -20678,50 +44070,34 @@ "coordinates": [ [ [ - -1.5377053334904522, - 53.796625922018656 - ], - [ - -1.5377135095505317, - 53.79662616303686 - ], - [ - -1.5377097245067035, - 53.79667107336216 - ], - [ - -1.5376948873176024, - 53.796670637191156 - ], - [ - -1.5376935048478535, - 53.79667378391766 + -1.5320014977779355, + 53.798380011154485 ], [ - -1.537641927154884, - 53.796665869887015 + -1.5321207007752775, + 53.79838778848825 ], [ - -1.5376508629643078, - 53.79664554881467 + -1.5321039847671565, + 53.79847717656513 ], [ - -1.5376520916571355, - 53.79662456404294 + -1.5319847817698145, + 53.79846939923137 ], [ - -1.5377053334904522, - 53.796625922018656 + -1.5320014977779355, + 53.798380011154485 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/301689294", - "osm_node_id": 301689294, + "osm_link": "https://www.openstreetmap.org/node/5506378741", + "osm_node_id": 5506378741, "type": "intersection" }, "type": "Feature" @@ -20731,50 +44107,34 @@ "coordinates": [ [ [ - -1.5344886004424743, - 53.796809778440505 - ], - [ - -1.5345184940669803, - 53.79681506015664 - ], - [ - -1.5345075835182784, - 53.796836600709156 - ], - [ - -1.5344126346432945, - 53.79684857517713 - ], - [ - -1.5344045605936483, - 53.796826244120865 + -1.5321418352054377, + 53.79827270769072 ], [ - -1.5343741340788206, - 53.796772514147996 + -1.5320225652161696, + 53.79826529188427 ], [ - -1.5344662083911549, - 53.79675432087072 + -1.5320385062495085, + 53.7981758543447 ], [ - -1.5345205571137972, - 53.79676928738186 + -1.5321577762387766, + 53.79818327015115 ], [ - -1.5344886004424743, - 53.796809778440505 + -1.5321418352054377, + 53.79827270769072 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/301689321", - "osm_node_id": 301689321, + "osm_link": "https://www.openstreetmap.org/node/5506378742", + "osm_node_id": 5506378742, "type": "intersection" }, "type": "Feature" @@ -20784,32 +44144,40 @@ "coordinates": [ [ [ - -1.534873292443195, - 53.79730234770822 + -1.5328474368029978, + 53.79777884609778 ], [ - -1.5347907005335002, - 53.79733249656771 + -1.532881421502631, + 53.797781065623646 ], [ - -1.534741458422684, - 53.797347856082425 + -1.5328682454087899, + 53.79785147531543 ], [ - -1.5346815661181517, - 53.797227721097144 + -1.532860414966148, + 53.797850963601405 ], [ - -1.5347643681388874, - 53.79719777728299 + -1.5327999121215612, + 53.797846852802074 ], [ - -1.5348198953104126, - 53.797200269303325 + -1.5328002790546114, + 53.79784496872319 ], [ - -1.534873292443195, - 53.79730234770822 + -1.5327858179338232, + 53.79784288679353 + ], + [ + -1.5328142194654282, + 53.797774063505166 + ], + [ + -1.5328474368029978, + 53.79777884609778 ] ] ], @@ -20817,9 +44185,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/319558919", - "osm_node_id": 319558919, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5506378752", + "osm_node_id": 5506378752, "type": "intersection" }, "type": "Feature" @@ -20829,40 +44197,40 @@ "coordinates": [ [ [ - -1.5367761341589776, - 53.795474677872406 + -1.5328347144272023, + 53.79798294175369 ], [ - -1.536745107761902, - 53.79550498681116 + -1.5328463969055985, + 53.79798488608713 ], [ - -1.5366266325404851, - 53.79548158286415 + -1.5328298773056246, + 53.798019509971226 ], [ - -1.5366036375618302, - 53.79550103339312 + -1.532793240334733, + 53.79801341167102 ], [ - -1.5365786708889848, - 53.795490734361415 + -1.5327565363719153, + 53.79800721714339 ], [ - -1.5365857202666695, - 53.79543353750353 + -1.5327732660829305, + 53.79797262923216 ], [ - -1.5367278147096897, - 53.79540681146229 + -1.532775598619996, + 53.7979717092261 ], [ - -1.5367812133650156, - 53.795470240619316 + -1.5328361014645826, + 53.79797581912611 ], [ - -1.5367761341589776, - 53.795474677872406 + -1.5328347144272023, + 53.79798294175369 ] ] ], @@ -20871,8 +44239,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/320943570", - "osm_node_id": 320943570, + "osm_link": "https://www.openstreetmap.org/node/5506378754", + "osm_node_id": 5506378754, "type": "intersection" }, "type": "Feature" @@ -20882,28 +44250,40 @@ "coordinates": [ [ [ - -1.5352101948398618, - 53.79641263709397 + -1.5336693668352501, + 53.798226503241544 ], [ - -1.5352067173498765, - 53.79651942794439 + -1.5336884062451739, + 53.79824597175695 ], [ - -1.5349577449013843, - 53.796511743240764 + -1.5336620388320543, + 53.79825496857088 ], [ - -1.534939654036233, - 53.79645539893981 + -1.5336024906224155, + 53.79825151607501 ], [ - -1.5349456087049425, - 53.79643319288927 + -1.5336050728566601, + 53.798233594392876 ], [ - -1.5352101948398618, - 53.79641263709397 + -1.5336429994221303, + 53.79823550005548 + ], + [ + -1.5336237240179211, + 53.79821313392568 + ], + [ + -1.533653453207699, + 53.798209239862864 + ], + [ + -1.5336693668352501, + 53.798226503241544 ] ] ], @@ -20911,9 +44291,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/320943571", - "osm_node_id": 320943571, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5506378757", + "osm_node_id": 5506378757, "type": "intersection" }, "type": "Feature" @@ -20923,32 +44303,32 @@ "coordinates": [ [ [ - -1.5356139247279623, - 53.79540463960047 + -1.5330845836539788, + 53.79837646962577 ], [ - -1.5356053467163262, - 53.79546176271398 + -1.5330886884319999, + 53.79835864686902 ], [ - -1.535600567451412, - 53.795462010027435 + -1.5331272712138377, + 53.798361751327405 ], [ - -1.5355251497679918, - 53.79545588025097 + -1.533122959369863, + 53.79837955609773 ], [ - -1.5355227715546131, - 53.795455654521234 + -1.5331285136095592, + 53.79835731857092 ], [ - -1.5355383806734086, - 53.795399053014286 + -1.5331585564433552, + 53.79836025395683 ], [ - -1.5356139247279623, - 53.79540463960047 + -1.5330845836539788, + 53.79837646962577 ] ] ], @@ -20956,9 +44336,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/320943572", - "osm_node_id": 320943572, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5506378761", + "osm_node_id": 5506378761, "type": "intersection" }, "type": "Feature" @@ -20968,46 +44348,42 @@ "coordinates": [ [ [ - -1.5344137323973575, - 53.795443555946875 - ], - [ - -1.5343658605759398, - 53.79546579257436 + -1.5351049992452626, + 53.79827740035117 ], [ - -1.534340173739888, - 53.795461805881416 + -1.5350724472593231, + 53.7982890537613 ], [ - -1.5342920369958535, - 53.79541200324626 + -1.535056664570537, + 53.798273671763546 ], [ - -1.5342980632241203, - 53.79540948244764 + -1.5350890901853431, + 53.7982620633195 ], [ - -1.5343507341035212, - 53.79539142226996 + -1.5351212935087577, + 53.798250264219256 ], [ - -1.534383439866382, - 53.79538907234245 + -1.5351373441652485, + 53.79826554909027 ], [ - -1.5344137323973575, - 53.795443555946875 + -1.5351049992452626, + 53.79827740035117 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/320943617", - "osm_node_id": 320943617, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5506378763", + "osm_node_id": 5506378763, "type": "intersection" }, "type": "Feature" @@ -21017,50 +44393,42 @@ "coordinates": [ [ [ - -1.5341775371362367, - 53.79543042585057 - ], - [ - -1.53417959866051, - 53.795448246808675 - ], - [ - -1.5340827344254553, - 53.795452155260634 + -1.534960299729841, + 53.79832920037975 ], [ - -1.5340598049161827, - 53.79540927830162 + -1.534927752311533, + 53.79834085738717 ], [ - -1.5340769990030496, - 53.7954060686226 + -1.5349119635325716, + 53.79832547718805 ], [ - -1.5341737444796897, - 53.79540123746661 + -1.5349445109508797, + 53.79831382018063 ], [ - -1.5341512686884624, - 53.79538715498866 + -1.5349770690269944, + 53.79830216587118 ], [ - -1.534191290274169, - 53.79542540493771 + -1.5349928517157805, + 53.79831754786893 ], [ - -1.5341775371362367, - 53.79543042585057 + -1.534960299729841, + 53.79832920037975 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/320943620", - "osm_node_id": 320943620, + "osm_link": "https://www.openstreetmap.org/node/5506378764", + "osm_node_id": 5506378764, "type": "intersection" }, "type": "Feature" @@ -21070,58 +44438,42 @@ "coordinates": [ [ [ - -1.533083123534497, - 53.79562438435267 - ], - [ - -1.5330844420574075, - 53.795633157235514 - ], - [ - -1.5330398802461598, - 53.79563549727049 - ], - [ - -1.5330356627998991, - 53.79563665020086 - ], - [ - -1.5330036619748069, - 53.795595849775566 + -1.5348824003000652, + 53.79835710003575 ], [ - -1.5330316889606428, - 53.79558818125973 + -1.5348498574493885, + 53.798368762439104 ], [ - -1.5330302943105436, - 53.79558137339473 + -1.5348340625802521, + 53.798353384038634 ], [ - -1.5330747099575888, - 53.7955782005879 + -1.5348666054309288, + 53.79834172163528 ], [ - -1.5330763801881115, - 53.795577828268726 + -1.534899158939412, + 53.79833006282922 ], [ - -1.5331032469955899, - 53.795619900334856 + -1.5349149477183734, + 53.79834544302833 ], [ - -1.533083123534497, - 53.79562438435267 + -1.5348824003000652, + 53.79835710003575 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/320943623", - "osm_node_id": 320943623, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5506378765", + "osm_node_id": 5506378765, "type": "intersection" }, "type": "Feature" @@ -21131,50 +44483,34 @@ "coordinates": [ [ [ - -1.5328748304106228, - 53.79569529316799 - ], - [ - -1.5328066158818088, - 53.79573610168717 - ], - [ - -1.5328031642750677, - 53.79573408810597 - ], - [ - -1.532800403903201, - 53.795735672710734 - ], - [ - -1.532747340207506, - 53.79570343023041 + -1.5347675944091494, + 53.7984245401674 ], [ - -1.5328114971571558, - 53.79566038509824 + -1.534728206201654, + 53.798386059992005 ], [ - -1.532819143372001, - 53.79566436099932 + -1.5347646482869421, + 53.798378259275886 ], [ - -1.5328243519942601, - 53.795661634256035 + -1.5347804431560785, + 53.798393637676355 ], [ - -1.5328748304106228, - 53.79569529316799 + -1.5347675944091494, + 53.7984245401674 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/320943624", - "osm_node_id": 320943624, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5506378766", + "osm_node_id": 5506378766, "type": "intersection" }, "type": "Feature" @@ -21184,34 +44520,34 @@ "coordinates": [ [ [ - -1.5369152657318088, - 53.795351752292 + -1.5345273994255284, + 53.79848420026733 ], [ - -1.5369686643871348, - 53.79541518144902 + -1.534528075434965, + 53.79846621743132 ], [ - -1.536912377466265, - 53.79543171457851 + -1.5345076855287114, + 53.7984649673742 ], [ - -1.536858978810939, - 53.79536828542149 + -1.5345471133223452, + 53.798503433160455 ], [ - -1.5369152657318088, - 53.795351752292 + -1.5345273994255284, + 53.79848420026733 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/320951154", - "osm_node_id": 320951154, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5506378768", + "osm_node_id": 5506378768, "type": "intersection" }, "type": "Feature" @@ -21221,34 +44557,34 @@ "coordinates": [ [ [ - -1.5378200069200596, - 53.7953951931257 + -1.5334763570058032, + 53.79812217473385 ], [ - -1.537873898879569, - 53.79541072261221 + -1.533471089004337, + 53.798139889572 ], [ - -1.5378071399026052, - 53.79549154824752 + -1.5333947258212315, + 53.7981533722024 ], [ - -1.5377532479430958, - 53.79547601876101 + -1.5333963732135976, + 53.79811741192631 ], [ - -1.5378200069200596, - 53.7953951931257 + -1.5334763570058032, + 53.79812217473385 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/320951155", - "osm_node_id": 320951155, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5506378774", + "osm_node_id": 5506378774, "type": "intersection" }, "type": "Feature" @@ -21258,36 +44594,32 @@ "coordinates": [ [ [ - -1.5375903159659516, - 53.79572717951694 - ], - [ - -1.537556765191295, - 53.79573779690851 + -1.532770164661258, + 53.79797210582695 ], [ - -1.5375017237112343, - 53.795723648780076 + -1.532753434950243, + 53.79800669373818 ], [ - -1.5375221227527505, - 53.7956903415029 + -1.5327131667124445, + 53.797987455449125 ], [ - -1.5375522615068042, - 53.79569678064602 + -1.5327543362961584, + 53.797960947043734 ], [ - -1.5375739410076366, - 53.795693106017694 + -1.5327354902492942, + 53.79800564692776 ], [ - -1.5375996065280753, - 53.795725603905375 + -1.5327134834015501, + 53.797993214705066 ], [ - -1.5375903159659516, - 53.79572717951694 + -1.532770164661258, + 53.79797210582695 ] ] ], @@ -21296,8 +44628,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/320951161", - "osm_node_id": 320951161, + "osm_link": "https://www.openstreetmap.org/node/5506378775", + "osm_node_id": 5506378775, "type": "intersection" }, "type": "Feature" @@ -21307,34 +44639,46 @@ "coordinates": [ [ [ - -1.5385942356557971, - 53.79632309793105 + -1.5333760000553256, + 53.79772410079075 ], [ - -1.5385743634144275, - 53.7963571012832 + -1.5333786888676348, + 53.79774652627579 ], [ - -1.5384304419188757, - 53.796327758215924 + -1.5333483141192956, + 53.79774779791662 ], [ - -1.5384503141602452, - 53.79629375486377 + -1.533347316853122, + 53.797739477392575 ], [ - -1.5385942356557971, - 53.79632309793105 + -1.5333333931902868, + 53.79773808614196 + ], + [ + -1.5333384693512373, + 53.79772035151873 + ], + [ + -1.5333513927028115, + 53.797713504982895 + ], + [ + -1.5333760000553256, + 53.79772410079075 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/320959866", - "osm_node_id": 320959866, + "osm_link": "https://www.openstreetmap.org/node/5506378777", + "osm_node_id": 5506378777, "type": "intersection" }, "type": "Feature" @@ -21344,42 +44688,38 @@ "coordinates": [ [ [ - -1.5378808051381387, - 53.7961776425443 - ], - [ - -1.5378609328967692, - 53.79621164589645 + -1.5332968993385103, + 53.79771620024992 ], [ - -1.5378563424272833, - 53.79621640150941 + -1.5333344300425986, + 53.79771994862262 ], [ - -1.537771692038403, - 53.79619763626355 + -1.5333293569267357, + 53.797737683245856 ], [ - -1.5377982117059004, - 53.796155590277756 + -1.533293319838092, + 53.79773408416055 ], [ - -1.5378830143491582, - 53.796174114505405 + -1.5332953661369275, + 53.79771613909605 ], [ - -1.5378808051381387, - 53.7961776425443 + -1.5332968993385103, + 53.79771620024992 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/320959867", - "osm_node_id": 320959867, + "osm_link": "https://www.openstreetmap.org/node/5506378778", + "osm_node_id": 5506378778, "type": "intersection" }, "type": "Feature" @@ -21389,40 +44729,36 @@ "coordinates": [ [ [ - -1.5371217394158703, - 53.796163016876065 - ], - [ - -1.5371099777651975, - 53.79618437306764 + -1.5332641996658245, + 53.797714899830794 ], [ - -1.5370529554556838, - 53.796173415732476 + -1.533262153366989, + 53.7977328448953 ], [ - -1.5370540943184285, - 53.79617134729264 + -1.5332574015078628, + 53.79773702134511 ], [ - -1.5370675596955872, - 53.796136263855175 + -1.5332274408914308, + 53.797733808968125 ], [ - -1.5370732631445736, - 53.79613702827859 + -1.533233942153356, + 53.79771265332528 ], [ - -1.5370769751063003, - 53.79613050010263 + -1.5332364939367253, + 53.797691211698144 ], [ - -1.5371338177556486, - 53.796141779394944 + -1.5332668686850646, + 53.79769247254712 ], [ - -1.5371217394158703, - 53.796163016876065 + -1.5332641996658245, + 53.797714899830794 ] ] ], @@ -21431,8 +44767,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/320998072", - "osm_node_id": 320998072, + "osm_link": "https://www.openstreetmap.org/node/5506378779", + "osm_node_id": 5506378779, "type": "intersection" }, "type": "Feature" @@ -21442,34 +44778,50 @@ "coordinates": [ [ [ - -1.536420926218487, - 53.796212157610476 + -1.5338615270852696, + 53.79842299513278 ], [ - -1.5363616749048845, - 53.79620384248236 + -1.5338844961806803, + 53.79842488280896 ], [ - -1.5363968654591886, - 53.79611634567894 + -1.5338803000500327, + 53.79844269837114 ], [ - -1.536456116772791, - 53.79612466080705 + -1.5338426003435852, + 53.798439600208006 ], [ - -1.536420926218487, - 53.796212157610476 + -1.5338049006371377, + 53.798436502044865 + ], + [ + -1.5338090967677855, + 53.798418686482684 + ], + [ + -1.5338232883983254, + 53.79841985290289 + ], + [ + -1.533849655811445, + 53.79841085608895 + ], + [ + -1.5338615270852696, + 53.79842299513278 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/320998081", - "osm_node_id": 320998081, + "osm_link": "https://www.openstreetmap.org/node/5506378781", + "osm_node_id": 5506378781, "type": "intersection" }, "type": "Feature" @@ -21479,44 +44831,32 @@ "coordinates": [ [ [ - -1.532933463571452, - 53.79566461460803 - ], - [ - -1.532909147024799, - 53.79567733821094 - ], - [ - -1.5328586686084364, - 53.79564367839967 - ], - [ - -1.5328610376865524, - 53.79564243913442 + -1.5336392691898781, + 53.798171455762436 ], [ - -1.5328591527773572, - 53.79564093816656 + -1.5336095400001002, + 53.79817534982525 ], [ - -1.53292029509033, - 53.79561414737416 + -1.5336012999931823, + 53.798153400081375 ], [ - -1.5329245125365907, - 53.7956175072399 + -1.5335428678081315, + 53.79814733685471 ], [ - -1.5329309391938708, - 53.795615749066044 + -1.533548135809598, + 53.79812962201655 ], [ - -1.5329629369738755, - 53.79565654949134 + -1.5335755750935363, + 53.79812182309907 ], - [ - -1.532933463571452, - 53.79566461460803 + [ + -1.5336392691898781, + 53.798171455762436 ] ] ], @@ -21525,8 +44865,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342529324", - "osm_node_id": 342529324, + "osm_link": "https://www.openstreetmap.org/node/5506378782", + "osm_node_id": 5506378782, "type": "intersection" }, "type": "Feature" @@ -21536,34 +44876,38 @@ "coordinates": [ [ [ - -1.5328219098340428, - 53.79680305331309 + -1.533273796259247, + 53.797225401746566 ], [ - -1.5328824888058181, - 53.79679934630919 + -1.533243625531774, + 53.79722297177943 ], [ - -1.5328981770968901, - 53.796888800036555 + -1.5332331093219105, + 53.7971881014812 ], [ - -1.5328375981251148, - 53.796892507040454 + -1.5333160651195676, + 53.797180174860046 ], [ - -1.5328219098340428, - 53.79680305331309 + -1.5333245213277018, + 53.797215239411756 + ], + [ + -1.533273796259247, + 53.797225401746566 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342529328", - "osm_node_id": 342529328, + "osm_link": "https://www.openstreetmap.org/node/5506378793", + "osm_node_id": 5506378793, "type": "intersection" }, "type": "Feature" @@ -21573,28 +44917,40 @@ "coordinates": [ [ [ - -1.537371383306168, - 53.795658134096115 + -1.5365342613321147, + 53.79659291331627 ], [ - -1.5373509873097393, - 53.79569144137329 + -1.5365354489162604, + 53.79661489723437 ], [ - -1.537294901364648, - 53.79570397252137 + -1.5365050132661702, + 53.79661547100159 ], [ - -1.537247311213829, - 53.79567749918952 + -1.5365037997987803, + 53.79659299965115 ], [ - -1.5372919917834913, - 53.79562658499279 + -1.5364657422945454, + 53.79659258776183 ], [ - -1.537371383306168, - 53.795658134096115 + -1.5364662995455676, + 53.796574604925816 + ], + [ + -1.536504693531977, + 53.79657052290478 + ], + [ + -1.5365351352722423, + 53.79657094558596 + ], + [ + -1.5365342613321147, + 53.79659291331627 ] ] ], @@ -21603,8 +44959,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579502", - "osm_node_id": 342579502, + "osm_link": "https://www.openstreetmap.org/node/5518536453", + "osm_node_id": 5518536453, "type": "intersection" }, "type": "Feature" @@ -21614,32 +44970,40 @@ "coordinates": [ [ [ - -1.5348226130510536, - 53.79679575531778 + -1.5365988872252478, + 53.797434584865144 + ], + [ + -1.536568612964798, + 53.79743265312221 + ], + [ + -1.5365726994722937, + 53.7974102995829 ], [ - -1.5347669275349756, - 53.79679608446951 + -1.5365700319755975, + 53.797387871399906 ], [ - -1.534734928232427, - 53.79678390945281 + -1.5366004067239367, + 53.79738661055093 ], [ - -1.5347779218235849, - 53.7967444822917 + -1.5366011862663502, + 53.79739316300858 ], [ - -1.5347978366961803, - 53.79672546523578 + -1.5366122917006553, + 53.79739350385149 ], [ - -1.534830209021954, - 53.79673729131567 + -1.5366107113002154, + 53.797411466902425 ], [ - -1.5348226130510536, - 53.79679575531778 + -1.5365988872252478, + 53.797434584865144 ] ] ], @@ -21648,8 +45012,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579517", - "osm_node_id": 342579517, + "osm_link": "https://www.openstreetmap.org/node/5518536456", + "osm_node_id": 5518536456, "type": "intersection" }, "type": "Feature" @@ -21659,32 +45023,44 @@ "coordinates": [ [ [ - -1.5349645948258344, - 53.79667377402512 + -1.5379477072342176, + 53.79607078964069 + ], + [ + -1.5378629045909595, + 53.79605226541303 + ], + [ + -1.5378659877421068, + 53.79604734162692 + ], + [ + -1.5378609831407137, + 53.79604611765013 ], [ - -1.5349600302395927, - 53.79669853235056 + -1.5378842811055802, + 53.79601288052004 ], [ - -1.534904667502795, - 53.79669497283541 + -1.5379013275057007, + 53.79601704977528 ], [ - -1.5348817897600109, - 53.79667700438854 + -1.5379044852614931, + 53.79600987049043 ], [ - -1.5349703409060464, - 53.79664976033803 + -1.5379339586639167, + 53.796014394078405 ], [ - -1.5349795340253682, - 53.79667157788162 + -1.5379675825206747, + 53.7960437209579 ], [ - -1.5349645948258344, - 53.79667377402512 + -1.5379477072342176, + 53.79607078964069 ] ] ], @@ -21693,8 +45069,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579521", - "osm_node_id": 342579521, + "osm_link": "https://www.openstreetmap.org/node/5728993687", + "osm_node_id": 5728993687, "type": "intersection" }, "type": "Feature" @@ -21704,28 +45080,48 @@ "coordinates": [ [ [ - -1.5363132169041132, - 53.797843129610385 + -1.5326469604188715, + 53.79674745454981 ], [ - -1.5362865602076758, - 53.797774063505166 + -1.5326451211859897, + 53.796762225908154 + ], + [ + -1.5325853187115401, + 53.79675963046583 ], [ - -1.5363864938909837, - 53.797754763162914 + -1.532586204832018, + 53.796752515932134 ], [ - -1.5364146487704968, - 53.797769893350605 + -1.5325768122594614, + 53.79675420845551 ], [ - -1.536410971827277, - 53.797827199925734 + -1.5325680637229222, + 53.796737270631276 ], [ - -1.5363132169041132, - 53.797843129610385 + -1.5325709793942541, + 53.79670189311562 + ], + [ + -1.5326281646159519, + 53.79671378754396 + ], + [ + -1.5326547147343248, + 53.796709336801044 + ], + [ + -1.5326710851250087, + 53.79674341030028 + ], + [ + -1.5326469604188715, + 53.79674745454981 ] ] ], @@ -21734,8 +45130,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579538", - "osm_node_id": 342579538, + "osm_link": "https://www.openstreetmap.org/node/5728993689", + "osm_node_id": 5728993689, "type": "intersection" }, "type": "Feature" @@ -21745,34 +45141,46 @@ "coordinates": [ [ [ - -1.5334575551127085, - 53.79619286086551 + -1.537633579047358, + 53.79648440656012 ], [ - -1.5334280573495844, - 53.79612419945504 + -1.5376370260864678, + 53.79648666385749 ], [ - -1.5335028660154941, - 53.79612429927975 + -1.5376144163113883, + 53.79649871117052 ], [ - -1.5335282894514726, - 53.79616668430981 + -1.5375649930178625, + 53.796500680684964 ], [ - -1.5334575551127085, - 53.79619286086551 + -1.5375510708775713, + 53.796447912086954 + ], + [ + -1.5376308780546988, + 53.796457647243976 + ], + [ + -1.5376375376611768, + 53.79648405852263 + ], + [ + -1.537633579047358, + 53.79648440656012 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579557", - "osm_node_id": 342579557, + "osm_link": "https://www.openstreetmap.org/node/5728993691", + "osm_node_id": 5728993691, "type": "intersection" }, "type": "Feature" @@ -21782,32 +45190,44 @@ "coordinates": [ [ [ - -1.5333211519383245, - 53.79621330514492 + -1.5340621222278104, + 53.7964672331136 ], [ - -1.5332702593900547, - 53.79622261492279 + -1.5339954652612797, + 53.796508931061915 ], [ - -1.533234781074977, - 53.79615494816208 + -1.5339464667574674, + 53.79651977328391 ], [ - -1.533233228080325, - 53.796150663793675 + -1.533899377523551, + 53.79644553607912 ], [ - -1.5333504944019833, - 53.79613582678485 + -1.5338818210712653, + 53.7964373162791 ], [ - -1.533379993687651, - 53.796204486396675 + -1.5339190746723863, + 53.79640956141388 ], [ - -1.5333211519383245, - 53.79621330514492 + -1.5339758351043704, + 53.796398140928055 + ], + [ + -1.5339986032240027, + 53.79643761845118 + ], + [ + -1.5340243037629484, + 53.79649292133764 + ], + [ + -1.5340621222278104, + 53.7964672331136 ] ] ], @@ -21816,8 +45236,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579559", - "osm_node_id": 342579559, + "osm_link": "https://www.openstreetmap.org/node/5728993707", + "osm_node_id": 5728993707, "type": "intersection" }, "type": "Feature" @@ -21827,40 +45247,32 @@ "coordinates": [ [ [ - -1.5326951702450076, - 53.79632781397386 - ], - [ - -1.5326965268315123, - 53.796331310536495 - ], - [ - -1.5325796259203603, - 53.79634712780594 + -1.5324892203160052, + 53.796699541389465 ], [ - -1.5325495374102511, - 53.79627855452899 + -1.5324863031221296, + 53.796734918905116 ], [ - -1.5325644141854902, - 53.79627627744654 + -1.532421088004555, + 53.796732233530626 ], [ - -1.5326426577101595, - 53.79626027491683 + -1.532408770625404, + 53.79670449845048 ], [ - -1.5326442396331432, - 53.79626297378115 + -1.5324737832446562, + 53.796685242174995 ], [ - -1.5326596934524737, - 53.796260147213154 + -1.532505659221159, + 53.79672763260099 ], [ - -1.5326951702450076, - 53.79632781397386 + -1.5324892203160052, + 53.796699541389465 ] ] ], @@ -21868,9 +45280,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579565", - "osm_node_id": 342579565, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/5728993713", + "osm_node_id": 5728993713, "type": "intersection" }, "type": "Feature" @@ -21880,32 +45292,28 @@ "coordinates": [ [ [ - -1.537057932651289, - 53.79919760066782 - ], - [ - -1.537053416786448, - 53.7992199245295 + -1.5377325215546676, + 53.796418073493435 ], [ - -1.536993876189528, - 53.79921572289869 + -1.5376569242110816, + 53.7964127836834 ], [ - -1.5369962894214138, - 53.79920379249748 + -1.537623958093235, + 53.79639451306446 ], [ - -1.5370034057910247, - 53.79916861642988 + -1.5376881394035855, + 53.79632913777535 ], [ - -1.5370629463879446, - 53.7991728180607 + -1.5377727897924658, + 53.796347903021214 ], [ - -1.537057932651289, - 53.79919760066782 + -1.5377325215546676, + 53.796418073493435 ] ] ], @@ -21913,9 +45321,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579576", - "osm_node_id": 342579576, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/5728993720", + "osm_node_id": 5728993720, "type": "intersection" }, "type": "Feature" @@ -21925,40 +45333,48 @@ "coordinates": [ [ [ - -1.5364510893332413, - 53.799122861641536 + -1.5343245189447792, + 53.79641319107612 ], [ - -1.536472146113669, - 53.79912460542624 + -1.5343322717376886, + 53.79641324503542 ], [ - -1.536463817799212, - 53.79915968076982 + -1.5343318241098183, + 53.796435726278396 ], [ - -1.5364448712644585, - 53.799158111453515 + -1.5343338186421653, + 53.796442738289414 ], [ - -1.536442587448794, - 53.79916933049128 + -1.5342380719542426, + 53.79645224052213 ], [ - -1.536383052942049, - 53.79916510367946 + -1.5342348609094183, + 53.796440953135914 ], [ - -1.5363875322658391, - 53.79914309817764 + -1.5342329775227668, + 53.79644113389957 ], [ - -1.5363914025721188, - 53.79911945411175 + -1.5342268873476612, + 53.79641894043952 ], [ - -1.5364510893332413, - 53.799122861641536 + -1.5342235149131964, + 53.79641093917467 + ], + [ + -1.5343177299220803, + 53.7963970842251 + ], + [ + -1.5343245189447792, + 53.79641319107612 ] ] ], @@ -21966,9 +45382,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579578", - "osm_node_id": 342579578, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/5728993833", + "osm_node_id": 5728993833, "type": "intersection" }, "type": "Feature" @@ -21978,32 +45394,32 @@ "coordinates": [ [ [ - -1.5363417463293954, - 53.799607752500876 + -1.5339374532983112, + 53.79652176708004 ], [ - -1.5363364813730165, - 53.79964168120932 + -1.533887848822076, + 53.79654263673859 ], [ - -1.536276767206106, - 53.79963844904726 + -1.5338575578136446, + 53.79654263224199 ], [ - -1.5362739459324883, - 53.79963821702227 + -1.5337950086702226, + 53.796472490548055 ], [ - -1.5362904076757988, - 53.799568050147336 + -1.5338405768829064, + 53.79644862165175 ], [ - -1.536349823424129, - 53.79957284622977 + -1.5338903701545699, + 53.796447528975925 ], [ - -1.5363417463293954, - 53.799607752500876 + -1.5339374532983112, + 53.79652176708004 ] ] ], @@ -22011,9 +45427,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579580", - "osm_node_id": 342579580, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/5728993834", + "osm_node_id": 5728993834, "type": "intersection" }, "type": "Feature" @@ -22023,36 +45439,44 @@ "coordinates": [ [ [ - -1.535811887392314, - 53.79967119784569 + -1.5341780304404202, + 53.79646595068091 ], [ - -1.5358067868706629, - 53.79968571199804 + -1.534081327595006, + 53.79646083893657 ], [ - -1.5356893622044516, - 53.79967131205954 + -1.5341008663992886, + 53.79648050710138 ], [ - -1.5357153352787334, - 53.799602155122834 + -1.5340751658603429, + 53.79642520421492 ], [ - -1.5357565246555163, - 53.79960755195214 + -1.534077691760468, + 53.79642479502356 ], [ - -1.535776471501531, - 53.79960347712568 + -1.5340771162389204, + 53.79642328596181 ], [ - -1.5358156739586857, - 53.79967042442905 + -1.5341718306421628, + 53.796410681069354 ], [ - -1.535811887392314, - 53.79967119784569 + -1.5341768093603116, + 53.79642373562264 + ], + [ + -1.5341828995354172, + 53.79644592908269 + ], + [ + -1.5341780304404202, + 53.79646595068091 ] ] ], @@ -22061,8 +45485,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579586", - "osm_node_id": 342579586, + "osm_link": "https://www.openstreetmap.org/node/5728993836", + "osm_node_id": 5728993836, "type": "intersection" }, "type": "Feature" @@ -22072,34 +45496,58 @@ "coordinates": [ [ [ - -1.5351380536706483, - 53.79969366020291 + -1.534609140233252, + 53.796416261360285 ], [ - -1.535063147561937, - 53.799638339330016 + -1.5346177547859388, + 53.796416634578776 ], [ - -1.535182050618155, - 53.79958216859815 + -1.5346149685308281, + 53.796439056466525 ], [ - -1.5352569567268664, - 53.799637489471046 + -1.5346087641649393, + 53.79643878756934 ], [ - -1.5351380536706483, - 53.79969366020291 + -1.5346086941279256, + 53.79644875655 + ], + [ + -1.5345782432523976, + 53.796448682805625 + ], + [ + -1.534540115711149, + 53.79643717598492 + ], + [ + -1.534540563339019, + 53.79641469474194 + ], + [ + -1.53457904258788, + 53.79640372031967 + ], + [ + -1.5346094904183205, + 53.79640402429039 + ], + [ + -1.534609140233252, + 53.796416261360285 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579596", - "osm_node_id": 342579596, + "osm_link": "https://www.openstreetmap.org/node/5728993838", + "osm_node_id": 5728993838, "type": "intersection" }, "type": "Feature" @@ -22109,34 +45557,34 @@ "coordinates": [ [ [ - -1.5354342219311214, - 53.80002060050028 + -1.533765649458582, + 53.8003639893909 ], [ - -1.5353857776332438, - 53.799955798978395 + -1.5336701798736267, + 53.800353555460944 ], [ - -1.535504590859379, - 53.7999279083156 + -1.5337114956215432, + 53.800263715924594 ], [ - -1.5355934982806583, - 53.799975450056095 + -1.5338043220705027, + 53.80028052244786 ], [ - -1.5354342219311214, - 53.80002060050028 + -1.533765649458582, + 53.8003639893909 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579609", - "osm_node_id": 342579609, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/5851965030", + "osm_node_id": 5851965030, "type": "intersection" }, "type": "Feature" @@ -22146,36 +45594,40 @@ "coordinates": [ [ [ - -1.5387393934568954, - 53.79981146234779 + -1.5389088617144715, + 53.7969041568533 ], [ - -1.5387628756495588, - 53.79981417919854 + -1.5389077380771645, + 53.796922130696096 ], [ - -1.5387511672879184, - 53.79984948117118 + -1.5388697003659986, + 53.796921299722875 ], [ - -1.5387509145456515, - 53.79985086792518 + -1.538831661132289, + 53.79692050112524 ], [ - -1.5386316841425214, - 53.79984323628153 + -1.5388327421383703, + 53.7969025254838 ], [ - -1.5386809308209692, - 53.79980119119506 + -1.53883971691141, + 53.79690267207323 ], [ - -1.5387405627705157, - 53.799804905393536 + -1.5388398204443867, + 53.79689855138137 ], [ - -1.5387393934568954, - 53.79981146234779 + -1.5388702682748272, + 53.79689881937922 + ], + [ + -1.5389088617144715, + 53.7969041568533 ] ] ], @@ -22184,8 +45636,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579616", - "osm_node_id": 342579616, + "osm_link": "https://www.openstreetmap.org/node/5924236779", + "osm_node_id": 5924236779, "type": "intersection" }, "type": "Feature" @@ -22195,36 +45647,32 @@ "coordinates": [ [ [ - -1.5370941950764114, - 53.7955660255712 + -1.538873299659486, + 53.79677890023114 ], [ - -1.5371276788591421, - 53.79557627783818 - ], - [ - -1.5370829982894798, - 53.795627192034914 + -1.5388727317506574, + 53.7968013805748 ], [ - -1.537077182172254, - 53.79562541227734 + -1.538842283920217, + 53.796801112576944 ], [ - -1.5370226294287455, - 53.79560942053949 + -1.5388352649934078, + 53.79677801709727 ], [ - -1.537015013664776, - 53.79560609035137 + -1.538836461712816, + 53.79676004505311 ], [ - -1.5370606595271925, - 53.795555474729426 + -1.5388744963788943, + 53.79676092818699 ], [ - -1.5370941950764114, - 53.7955660255712 + -1.538873299659486, + 53.79677890023114 ] ] ], @@ -22233,8 +45681,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579620", - "osm_node_id": 342579620, + "osm_link": "https://www.openstreetmap.org/node/5924236780", + "osm_node_id": 5924236780, "type": "intersection" }, "type": "Feature" @@ -22244,34 +45692,50 @@ "coordinates": [ [ [ - -1.5361720177168334, - 53.79584887842259 + -1.5385359115713546, + 53.79693713767672 ], [ - -1.5361627819662858, - 53.7958133210426 + -1.5385055063721398, + 53.79693614842289 ], [ - -1.5363132762833203, - 53.7957996846282 + -1.5385075998698323, + 53.79691369955549 ], [ - -1.536322512033868, - 53.79583524200819 + -1.5385097070704188, + 53.79689125068809 ], [ - -1.5361720177168334, - 53.79584887842259 + -1.5385401122696336, + 53.79689224533785 + ], + [ + -1.5385397240209706, + 53.79689637502294 + ], + [ + -1.5385467201096232, + 53.79689652251169 + ], + [ + -1.538545639103542, + 53.79691449815313 + ], + [ + -1.5385359115713546, + 53.79693713767672 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579626", - "osm_node_id": 342579626, + "osm_link": "https://www.openstreetmap.org/node/5924236781", + "osm_node_id": 5924236781, "type": "intersection" }, "type": "Feature" @@ -22281,42 +45745,34 @@ "coordinates": [ [ [ - -1.5358846345339503, - 53.7964203011132 - ], - [ - -1.5360544073002815, - 53.796421410876135 + -1.5391180683646115, + 53.796908724508036 ], [ - -1.5360524066777594, - 53.79652821431706 + -1.5391169447273045, + 53.79692669835083 ], [ - -1.5360277627841945, - 53.79654534999206 + -1.53905, + 53.79692523695313 ], [ - -1.535843405571029, - 53.79652666298718 + -1.539051123637307, + 53.796907263110334 ], [ - -1.5358468830610144, - 53.79641987213677 - ], - [ - -1.5358846345339503, - 53.7964203011132 + -1.5391180683646115, + 53.796908724508036 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342579666", - "osm_node_id": 342579666, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/5924236782", + "osm_node_id": 5924236782, "type": "intersection" }, "type": "Feature" @@ -22326,32 +45782,48 @@ "coordinates": [ [ [ - -1.5359244536213343, - 53.7978446206857 + -1.5384834919116768, + 53.79749544645881 + ], + [ + -1.5384530867124622, + 53.797494448211765 + ], + [ + -1.5384552000032237, + 53.79747200024369 ], [ - -1.5358922609557262, - 53.79781473802542 + -1.5384171942654772, + 53.79747075468318 ], [ - -1.5358937758867837, - 53.797814167855485 + -1.5384188812439814, + 53.79745279522953 ], [ - -1.5359164389508955, - 53.79779610587917 + -1.5384568854591842, + 53.797454040790036 ], [ - -1.5359814013262032, - 53.79778672775285 + -1.5384573056812665, + 53.79744955137629 ], [ - -1.535987817325677, - 53.79785746479772 + -1.5384877108804813, + 53.79745054602605 + ], + [ + -1.538494909467456, + 53.79745530253833 + ], + [ + -1.5384932042184265, + 53.79747326019334 ], [ - -1.5359244536213343, - 53.7978446206857 + -1.5384834919116768, + 53.79749544645881 ] ] ], @@ -22359,9 +45831,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/342579667", - "osm_node_id": 342579667, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5931863419", + "osm_node_id": 5931863419, "type": "intersection" }, "type": "Feature" @@ -22371,38 +45843,42 @@ "coordinates": [ [ [ - -1.538968444942617, - 53.79883094452708 + -1.5385492992987804, + 53.79679434338277 ], [ - -1.5389591087041803, - 53.79886593173713 + -1.5385188940995658, + 53.79679334873301 ], [ - -1.538921978429105, - 53.79886247474465 + -1.5384829544537237, + 53.79677017051574 ], [ - -1.5388845786637817, - 53.79886011222664 + -1.5384839441071785, + 53.79675219307566 ], [ - -1.5388909550771173, - 53.79882489479024 + -1.5385219863859756, + 53.796752922425526 ], [ - -1.538968444942617, - 53.79883094452708 + -1.5385209997776084, + 53.79677089986561 + ], + [ + -1.5385492992987804, + 53.79679434338277 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342605804", - "osm_node_id": 342605804, + "osm_link": "https://www.openstreetmap.org/node/5931863420", + "osm_node_id": 5931863420, "type": "intersection" }, "type": "Feature" @@ -22412,34 +45888,42 @@ "coordinates": [ [ [ - -1.5320908193311218, - 53.795946902685415 + -1.5385502996100415, + 53.796771399888456 ], [ - -1.5320288152583716, - 53.795902772971324 + -1.5385511796403442, + 53.79675342064973 ], [ - -1.5321313326984682, - 53.79585251977601 + -1.5385210622019032, + 53.79674836196536 ], [ - -1.5321933367712184, - 53.7958966494901 + -1.5385514978519936, + 53.79674892673937 ], [ - -1.5320908193311218, - 53.795946902685415 + -1.538589530995528, + 53.79675431097818 + ], + [ + -1.5385883342761197, + 53.79677228302233 + ], + [ + -1.5385502996100415, + 53.796771399888456 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/342620651", - "osm_node_id": 342620651, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5931863421", + "osm_node_id": 5931863421, "type": "intersection" }, "type": "Feature" @@ -22449,32 +45933,40 @@ "coordinates": [ [ [ - -1.5335565402512437, - 53.79552309375356 + -1.5378979413683422, + 53.7967816548534 ], [ - -1.5335489092618364, - 53.79556783320774 + -1.5378675209436896, + 53.79678086165169 ], [ - -1.5333819592916664, - 53.79555789750199 + -1.537869200309475, + 53.79675840019379 ], [ - -1.5333546859649998, - 53.79556396162798 + -1.5378311580306778, + 53.79675766005206 ], [ - -1.5333278678789222, - 53.79552187876999 + -1.5378321598644826, + 53.79673968261198 ], [ - -1.5335323089670423, - 53.79548046680596 + -1.53787020214328, + 53.79674042275371 ], [ - -1.5335565402512437, - 53.79552309375356 + -1.5379082322417268, + 53.79674115210358 + ], + [ + -1.5379072425882723, + 53.79675912954366 + ], + [ + -1.5378979413683422, + 53.7967816548534 ] ] ], @@ -22483,8 +45975,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342626328", - "osm_node_id": 342626328, + "osm_link": "https://www.openstreetmap.org/node/5931863422", + "osm_node_id": 5931863422, "type": "intersection" }, "type": "Feature" @@ -22494,44 +45986,56 @@ "coordinates": [ [ [ - -1.5341945698334634, - 53.79655635049466 + -1.5378479029671308, + 53.7974520964566 ], [ - -1.5340647029395114, - 53.796576365797634 + -1.537846083527318, + 53.79747442211693 ], [ - -1.5340552372848535, - 53.79655493945897 + -1.5378156691928406, + 53.797473556969486 ], [ - -1.5340245808659156, - 53.79655686041005 + -1.5378174992904599, + 53.797451100008196 ], [ - -1.534018253173981, - 53.796521639376365 + -1.537779495075257, + 53.797449843655826 ], [ - -1.5340122802347462, - 53.79651830828892 + -1.537781197279199, + 53.79743188600082 ], [ - -1.534078937201277, - 53.796476612139244 + -1.5378188406515267, + 53.79743313066201 ], [ - -1.5341756400466913, - 53.796481726581554 + -1.5378191756111577, + 53.797428638550294 ], [ - -1.5341826270000813, - 53.7964994369231 + -1.53784959603581, + 53.79742942995336 ], [ - -1.5341945698334634, - 53.79655635049466 + -1.5378492458507416, + 53.79743412531177 + ], + [ + -1.5378571920067106, + 53.79743438611505 + ], + [ + -1.5378555050282063, + 53.7974523455687 + ], + [ + -1.5378479029671308, + 53.7974520964566 ] ] ], @@ -22540,8 +46044,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/342628235", - "osm_node_id": 342628235, + "osm_link": "https://www.openstreetmap.org/node/5931863423", + "osm_node_id": 5931863423, "type": "intersection" }, "type": "Feature" @@ -22551,38 +46055,50 @@ "coordinates": [ [ [ - -1.5364211591676848, - 53.80026745800204 + -1.5385237890778067, + 53.797066847739764 ], [ - -1.5363985524376929, - 53.80030923329202 + -1.5384933838785921, + 53.79706584769407 ], [ - -1.5363626021340444, - 53.80030244521209 + -1.5384955002144414, + 53.797043399726 ], [ - -1.5363263549343595, - 53.80029590984155 + -1.5384975952346776, + 53.797020950858595 ], [ - -1.536348032912648, - 53.800253961881815 + -1.5385280004338924, + 53.79702194011243 ], [ - -1.5364211591676848, - 53.80026745800204 + -1.5385275984823354, + 53.79702623797066 + ], + [ + -1.5385348777641303, + 53.79702642952618 + ], + [ + -1.5385335257452568, + 53.797044397973046 + ], + [ + -1.5385237890778067, + 53.797066847739764 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/358163080", - "osm_node_id": 358163080, + "osm_link": "https://www.openstreetmap.org/node/5981573959", + "osm_node_id": 5981573959, "type": "intersection" }, "type": "Feature" @@ -22592,34 +46108,34 @@ "coordinates": [ [ [ - -1.5363100561032332, - 53.800337877586365 + -1.5390513520188736, + 53.79703998230367 ], [ - -1.5362876747097203, - 53.80037969604378 + -1.53905, + 53.797057950750535 ], [ - -1.5362503038727284, - 53.800372091379785 + -1.5388978963541937, + 53.797053959560984 ], [ - -1.5362745336343862, - 53.80033063444967 + -1.5388992483730672, + 53.79703599111412 ], [ - -1.5363100561032332, - 53.800337877586365 + -1.5390513520188736, + 53.79703998230367 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/358163085", - "osm_node_id": 358163085, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/6001482087", + "osm_node_id": 6001482087, "type": "intersection" }, "type": "Feature" @@ -22629,38 +46145,42 @@ "coordinates": [ [ [ - -1.533513041175552, - 53.79989948975099 + -1.5376997000784796, + 53.79719369975856 ], [ - -1.5334373387764455, - 53.79989471525228 + -1.5377377058162263, + 53.797194950714996 ], [ - -1.5334463522356017, - 53.79985006573026 + -1.537736011225003, + 53.797212910168646 ], [ - -1.5334705804747157, - 53.79980860880015 + -1.5376980070098003, + 53.79721165921221 ], [ - -1.5335218323433168, - 53.7998559409987 + -1.5376599632084593, + 53.79721037588019 ], [ - -1.533513041175552, - 53.79989948975099 + -1.5376616989083645, + 53.79719241822519 + ], + [ + -1.5376997000784796, + 53.79719369975856 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/358204009", - "osm_node_id": 358204009, + "osm_link": "https://www.openstreetmap.org/node/6001482089", + "osm_node_id": 6001482089, "type": "intersection" }, "type": "Feature" @@ -22670,38 +46190,58 @@ "coordinates": [ [ [ - -1.532965010678499, - 53.79979537348321 + -1.537874402841559, + 53.79719946441043 ], [ - -1.5330010508122303, - 53.799799978909455 + -1.5378726915023544, + 53.79721742206544 ], [ - -1.532984954479426, - 53.799843928759216 + -1.5378654578968727, + 53.79721718104723 ], [ - -1.532908801407362, - 53.79983270252688 + -1.5378651366401357, + 53.7972214555231 ], [ - -1.5329295536790342, - 53.79978943975886 + -1.5378347162154833, + 53.797220660522754 ], [ - -1.532965010678499, - 53.79979537348321 + -1.537796701342474, + 53.797214908461385 + ], + [ + -1.537798397456241, + 53.797196949007734 + ], + [ + -1.5378364001489, + 53.79719819996417 + ], + [ + -1.5378380627667039, + 53.79717573850627 + ], + [ + -1.5378684831913563, + 53.797176524513404 + ], + [ + -1.537874402841559, + 53.79719946441043 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/358204012", - "osm_node_id": 358204012, + "osm_link": "https://www.openstreetmap.org/node/6001482090", + "osm_node_id": 6001482090, "type": "intersection" }, "type": "Feature" @@ -22711,71 +46251,62 @@ "coordinates": [ [ [ - -1.5320476232416416, - 53.799576072995904 + -1.5385093172992121, + 53.79722037633711 ], [ - -1.5320723767583584, - 53.79953355126895 + -1.5385169178377438, + 53.79722059487227 ], [ - -1.5322163561105737, - 53.79956279541085 + -1.5385154348801058, + 53.79723855972185 ], [ - -1.532191602593857, - 53.799605317137804 + -1.538507628798164, + 53.79723833489143 ], [ - -1.5320476232416416, - 53.799576072995904 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/358204014", - "osm_node_id": 358204014, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5385071963957315, + 53.797242945713606 + ], [ - -1.5361872781731043, - 53.80037026036087 + -1.538476791196517, + 53.79724194926521 ], [ - -1.5360724935978014, - 53.800349739639124 + -1.53843919654559, + 53.79723620259976 ], [ - -1.53611660016846, - 53.800263663763936 + -1.5384408957044444, + 53.79721824494476 ], [ - -1.5362313847437628, - 53.80028418448568 + -1.5384788999196473, + 53.7972195003978 ], [ - -1.5361872781731043, - 53.80037026036087 + -1.5384810162554963, + 53.79719705242973 + ], + [ + -1.538511421454711, + 53.797198052475416 + ], + [ + -1.5385093172992121, + 53.79722037633711 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/369772541", - "osm_node_id": 369772541, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6001482091", + "osm_node_id": 6001482091, "type": "intersection" }, "type": "Feature" @@ -22785,28 +46316,36 @@ "coordinates": [ [ [ - -1.5353318476101399, - 53.800107506449365 + -1.5376546997746243, + 53.79719218260291 ], [ - -1.5352595892050558, - 53.800093352925 + -1.5376529671198067, + 53.79721014025792 ], [ - -1.5352829602520235, - 53.80005172332514 + -1.5376456284588045, + 53.79721407389088 ], [ - -1.5353637098837487, - 53.80004452965114 + -1.537615201943977, + 53.79721336702405 ], [ - -1.5353552201796514, - 53.80006587774882 + -1.5376167001270529, + 53.79719090017022 ], [ - -1.5353318476101399, - 53.800107506449365 + -1.5376182363737234, + 53.79716843511503 + ], + [ + -1.5376486628885508, + 53.79716916176694 + ], + [ + -1.5376546997746243, + 53.79719218260291 ] ] ], @@ -22815,8 +46354,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/370191920", - "osm_node_id": 370191920, + "osm_link": "https://www.openstreetmap.org/node/6001482092", + "osm_node_id": 6001482092, "type": "intersection" }, "type": "Feature" @@ -22826,28 +46365,32 @@ "coordinates": [ [ [ - -1.5362923656670953, - 53.80016517904841 + -1.5376929993633197, + 53.797287099709386 ], [ - -1.5361775810917924, - 53.800144658326666 + -1.5377310035785223, + 53.79728835336379 ], [ - -1.536186763553308, - 53.80012673754385 + -1.537729304419668, + 53.797306311018794 ], [ - -1.5361893731933407, - 53.80010807841795 + -1.5376913002044652, + 53.79730505736439 ], [ - -1.5363088928797881, - 53.80011390782098 + -1.5376533096921565, + 53.79730381719982 ], [ - -1.5362923656670953, - 53.80016517904841 + -1.5376549936255732, + 53.79728585774617 + ], + [ + -1.5376929993633197, + 53.797287099709386 ] ] ], @@ -22856,8 +46399,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/370191923", - "osm_node_id": 370191923, + "osm_link": "https://www.openstreetmap.org/node/6001482093", + "osm_node_id": 6001482093, "type": "intersection" }, "type": "Feature" @@ -22867,36 +46410,36 @@ "coordinates": [ [ [ - -1.5324027474422244, - 53.797994819994244 + -1.537648404056109, + 53.79728564280829 ], [ - -1.532404344590646, - 53.79799548549227 + -1.5376467231677797, + 53.79730360226194 ], [ - -1.532335297230386, - 53.79805340360613 + -1.5376393159923076, + 53.79730757906234 ], [ - -1.5323290654587094, - 53.798050811761094 + -1.53760888947748, + 53.79730686500094 ], [ - -1.5323218470786655, - 53.798052253373726 + -1.537610399840906, + 53.79728439994575 ], [ - -1.5322834363442743, - 53.79798514778974 + -1.5376119299974014, + 53.797261934890564 ], [ - -1.5324029940943162, - 53.797993673359116 + -1.537642356512229, + 53.79726265794518 ], [ - -1.5324027474422244, - 53.797994819994244 + -1.537648404056109, + 53.79728564280829 ] ] ], @@ -22905,8 +46448,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/394143337", - "osm_node_id": 394143337, + "osm_link": "https://www.openstreetmap.org/node/6001482094", + "osm_node_id": 6001482094, "type": "intersection" }, "type": "Feature" @@ -22916,32 +46459,40 @@ "coordinates": [ [ [ - -1.5322577601660292, - 53.79863179603965 + -1.5376543084808738, + 53.79708659414556 ], [ - -1.5321386211155257, - 53.7986236913528 + -1.5376527905047288, + 53.797108792102215 ], [ - -1.5321797556807328, - 53.79855715054282 + -1.5376223639899012, + 53.79710806545031 ], [ - -1.532208067382255, - 53.79856325693692 + -1.5376239002365715, + 53.79708560039512 ], [ - -1.5322336050090166, - 53.79856009312331 + -1.5376254380057857, + 53.79706313623925 ], [ - -1.5322582214967935, - 53.798629421830455 + -1.5376558645206133, + 53.79706386109252 ], [ - -1.5322577601660292, - 53.79863179603965 + -1.5376635868626471, + 53.79706888290469 + ], + [ + -1.537661905974318, + 53.79708684235834 + ], + [ + -1.5376543084808738, + 53.79708659414556 ] ] ], @@ -22950,8 +46501,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/394143340", - "osm_node_id": 394143340, + "osm_link": "https://www.openstreetmap.org/node/6001482097", + "osm_node_id": 6001482097, "type": "intersection" }, "type": "Feature" @@ -22961,34 +46512,54 @@ "coordinates": [ [ [ - -1.532067606628707, - 53.79678700222002 + -1.537874620565319, + 53.7970935863715 ], [ - -1.5320552892495558, - 53.796759267139876 + -1.5378729579475152, + 53.797116047829405 ], [ - -1.5322025603414158, - 53.796736448651274 + -1.5378425375228626, + 53.79711526182227 ], [ - -1.5322148777205669, - 53.79676418373142 + -1.5378442001406665, + 53.79709280036437 ], [ - -1.532067606628707, - 53.79678700222002 + -1.5378061928803761, + 53.79709155840115 + ], + [ + -1.5378078768137928, + 53.797073598947506 + ], + [ + -1.5378455430242772, + 53.79707483011886 + ], + [ + -1.5378458795064518, + 53.797070338906465 + ], + [ + -1.5378762999311044, + 53.79707113210818 + ], + [ + -1.537874620565319, + 53.7970935863715 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/474665273", - "osm_node_id": 474665273, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6001482098", + "osm_node_id": 6001482098, "type": "intersection" }, "type": "Feature" @@ -22998,44 +46569,40 @@ "coordinates": [ [ [ - -1.532745507064799, - 53.79580024310695 - ], - [ - -1.5327507948593346, - 53.79580049491702 + -1.537839341703476, + 53.797551908570895 ], [ - -1.5327446864137038, - 53.79584531531015 + -1.5378089456395239, + 53.79755084377405 ], [ - -1.532716112834652, - 53.795843955535794 + -1.5378112005268567, + 53.797528400302575 ], [ - -1.5326897499891636, - 53.79585060781815 + -1.537813030624476, + 53.797505943341285 ], [ - -1.5326598441843076, - 53.795809257008 + -1.5378434449589533, + 53.79750680848873 ], [ - -1.5326699553975265, - 53.79580670563244 + -1.5378430628004656, + 53.797511493055275 ], [ - -1.5326691956481822, - 53.79580022601984 + -1.5378509922084531, + 53.79751176914703 ], [ - -1.5327451401317491, - 53.795797116165524 + -1.5378491986518845, + 53.79752972500339 ], [ - -1.532745507064799, - 53.79580024310695 + -1.537839341703476, + 53.797551908570895 ] ] ], @@ -23044,8 +46611,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/475070618", - "osm_node_id": 475070618, + "osm_link": "https://www.openstreetmap.org/node/6001482100", + "osm_node_id": 6001482100, "type": "intersection" }, "type": "Feature" @@ -23055,44 +46622,40 @@ "coordinates": [ [ [ - -1.5327478258989706, - 53.79575445414439 - ], - [ - -1.5327464099332586, - 53.79576329897296 + -1.5384755594586017, + 53.79757426750613 ], [ - -1.532670620749157, - 53.79575906676521 + -1.538445181665175, + 53.797573030039516 ], [ - -1.5326717276384823, - 53.795752150981606 + -1.5384478004404705, + 53.797550600057875 ], [ - -1.5326611718424805, - 53.795749095086585 + -1.5384098023154429, + 53.79754927535706 ], [ - -1.5326946678055613, - 53.79570871554383 + -1.5384115958720115, + 53.7975313195007 ], [ - -1.5327135001495316, - 53.795714167231765 + -1.5384494904640622, + 53.797532640604224 ], [ - -1.5327329049699618, - 53.79570947547064 + -1.538449913731232, + 53.79752815119048 ], [ - -1.5327617449941744, - 53.79575108888272 + -1.5384803189304468, + 53.79752914943752 ], [ - -1.5327478258989706, - 53.79575445414439 + -1.5384755594586017, + 53.79757426750613 ] ] ], @@ -23101,8 +46664,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/475070619", - "osm_node_id": 475070619, + "osm_link": "https://www.openstreetmap.org/node/6001482101", + "osm_node_id": 6001482101, "type": "intersection" }, "type": "Feature" @@ -23112,34 +46675,58 @@ "coordinates": [ [ [ - -1.5320778822766539, - 53.79541717254719 + -1.5378674082754502, + 53.79729281130128 ], [ - -1.5321270178094057, - 53.79538282745281 + -1.5378657669732592, + 53.797310770754926 ], [ - -1.532243311225591, - 53.795440873270344 + -1.5378584663758514, + 53.79731053872994 ], [ - -1.532194175692839, - 53.79547521836473 + -1.5378581435965708, + 53.79731485277597 ], [ - -1.5320778822766539, - 53.79541717254719 + -1.5378277231719184, + 53.7973140613729 + ], + [ + -1.5377896961185589, + 53.7973083039156 + ], + [ + -1.5377913952774134, + 53.797290346260596 + ], + [ + -1.5378293994926162, + 53.797291599915 + ], + [ + -1.537831083426033, + 53.7972691384571 + ], + [ + -1.5378615038506853, + 53.79726993345745 + ], + [ + -1.5378674082754502, + 53.79729281130128 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/475070635", - "osm_node_id": 475070635, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6001482128", + "osm_node_id": 6001482128, "type": "intersection" }, "type": "Feature" @@ -23149,28 +46736,36 @@ "coordinates": [ [ [ - -1.5325207110889325, - 53.79594288001961 + -1.538827699473383, + 53.79732499982231 + ], + [ + -1.538865694553323, + 53.797326353301415 + ], + [ + -1.538863861410616, + 53.79734430735913 ], [ - -1.5324380400069615, - 53.79594563913848 + -1.5388571804885254, + 53.79734406903889 ], [ - -1.5324489368527692, - 53.79587298114253 + -1.5388569764676592, + 53.797348018859644 ], [ - -1.532530609146023, - 53.79588103366872 + -1.538826540817569, + 53.797347472072076 ], [ - -1.532598039564792, - 53.7959019042266 + -1.538825854150326, + 53.797342953880026 ], [ - -1.5325207110889325, - 53.79594288001961 + -1.538827699473383, + 53.79732499982231 ] ] ], @@ -23179,8 +46774,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/478743247", - "osm_node_id": 478743247, + "osm_link": "https://www.openstreetmap.org/node/6001482131", + "osm_node_id": 6001482131, "type": "intersection" }, "type": "Feature" @@ -23190,52 +46785,44 @@ "coordinates": [ [ [ - -1.5337036545210947, - 53.799640006672384 - ], - [ - -1.5337046822381437, - 53.79964213446745 - ], - [ - -1.5336680772406714, - 53.799648296619495 + -1.5388195005751468, + 53.79748399989266 ], [ - -1.5336532552770081, - 53.799651533278166 + -1.5387814963599442, + 53.79748275073487 ], [ - -1.53363246037411, - 53.799618312335866 + -1.5387831894286235, + 53.79746479128122 ], [ - -1.5336549209398995, - 53.79961340833482 + -1.5388204278043067, + 53.79746601525801 ], [ - -1.5336537013823346, - 53.79959890317569 + -1.5388206592309608, + 53.7974615276429 ], [ - -1.5336917193004314, - 53.799597786218186 + -1.538851094881051, + 53.79746207443047 ], [ - -1.533692267416191, - 53.79960430989754 + -1.5388508406162404, + 53.797467014404376 ], [ - -1.5337021121842491, - 53.79960178370298 + -1.5388591963364853, + 53.7974672895968 ], [ - -1.5337260100313634, - 53.799634269000165 + -1.5388575063128935, + 53.79748524905045 ], [ - -1.5337036545210947, - 53.799640006672384 + -1.5388195005751468, + 53.79748399989266 ] ] ], @@ -23243,9 +46830,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/615978081", - "osm_node_id": 615978081, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6001482132", + "osm_node_id": 6001482132, "type": "intersection" }, "type": "Feature" @@ -23255,42 +46842,34 @@ "coordinates": [ [ [ - -1.5348132357039348, - 53.799354065550396 - ], - [ - -1.5347607718904874, - 53.79931658542069 - ], - [ - -1.5347890729342033, - 53.79930276374602 + -1.5392443618483203, + 53.79733991956873 ], [ - -1.5349583356483696, - 53.79920644369775 + -1.5392425104350882, + 53.797357871827806 ], [ - -1.5350154584457725, - 53.799241466880666 + -1.539109534506745, + 53.79735308833587 ], [ - -1.5350384716949528, - 53.79926671443708 + -1.539111385919977, + 53.79733513427815 ], [ - -1.5348132357039348, - 53.799354065550396 + -1.5392443618483203, + 53.79733991956873 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/659971029", - "osm_node_id": 659971029, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/6001482135", + "osm_node_id": 6001482135, "type": "intersection" }, "type": "Feature" @@ -23300,32 +46879,52 @@ "coordinates": [ [ [ - -1.533101754902689, - 53.795508542729024 + -1.5385081921393613, + 53.797313472317214 ], [ - -1.533067585975259, - 53.795543406732 + -1.5385063315908667, + 53.797331424576285 ], [ - -1.5330231703282138, - 53.795546579538836 + -1.5384989107125004, + 53.79733115657843 ], [ - -1.5329441929374443, - 53.79548248128649 + -1.5384984996256807, + 53.79733554346951 ], [ - -1.533009659274742, - 53.79545087462658 + -1.5384680944264661, + 53.79733454881975 ], [ - -1.5330695424440117, - 53.79544904810428 + -1.538468516171092, + 53.797330058506674 ], [ - -1.533101754902689, - 53.795508542729024 + -1.5384305393616773, + 53.7973288390265 + ], + [ + -1.5384321928442186, + 53.79731087957285 + ], + [ + -1.5384702001045087, + 53.79731209995235 + ], + [ + -1.538472308827639, + 53.79728965108495 + ], + [ + -1.538502714026854, + 53.79729064753336 + ], + [ + -1.5385081921393613, + 53.797313472317214 ] ] ], @@ -23333,9 +46932,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/659985459", - "osm_node_id": 659985459, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6001482136", + "osm_node_id": 6001482136, "type": "intersection" }, "type": "Feature" @@ -23345,32 +46944,32 @@ "coordinates": [ [ [ - -1.5354848054030048, - 53.79875409839014 + -1.5388026003392288, + 53.797324099601326 ], [ - -1.535447624883985, - 53.79879408403001 + -1.538800755016172, + 53.797342053659044 ], [ - -1.535438133346083, - 53.79879214779046 + -1.5387627508009691, + 53.79734068129418 ], [ - -1.5353914460637235, - 53.798784291316395 + -1.5387646083043764, + 53.79732272903511 ], [ - -1.5353910639052355, - 53.79873842771013 + -1.5388040650263417, + 53.79730163274749 ], [ - -1.5354863507849377, - 53.79874942821274 + -1.5388344945862569, + 53.797302325225175 ], [ - -1.5354848054030048, - 53.79875409839014 + -1.5388026003392288, + 53.797324099601326 ] ] ], @@ -23378,9 +46977,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/682218116", - "osm_node_id": 682218116, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6022850276", + "osm_node_id": 6022850276, "type": "intersection" }, "type": "Feature" @@ -23390,32 +46989,40 @@ "coordinates": [ [ [ - -1.534181211034369, - 53.795594922574935 + -1.538146199743803, + 53.79730170019662 ], [ - -1.5340841580038862, - 53.79559332358101 + -1.5381842070040934, + 53.797302919676795 ], [ - -1.5340133795113526, - 53.79555406819034 + -1.5381825535215523, + 53.797320879130446 ], [ - -1.5340835352834818, - 53.79545908273542 + -1.538144546261262, + 53.79731965965026 ], [ - -1.5341803995185364, - 53.79545517608211 + -1.5381065496587782, + 53.79731844736466 ], [ - -1.5342447026323889, - 53.79549814027532 + -1.538108190960969, + 53.797300487911016 ], [ - -1.534181211034369, - 53.795594922574935 + -1.5381179245833316, + 53.79727824678692 + ], + [ + -1.5381483267374587, + 53.79727925222854 + ], + [ + -1.538146199743803, + 53.79730170019662 ] ] ], @@ -23424,8 +47031,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/682264890", - "osm_node_id": 682264890, + "osm_link": "https://www.openstreetmap.org/node/6022850278", + "osm_node_id": 6022850278, "type": "intersection" }, "type": "Feature" @@ -23435,34 +47042,50 @@ "coordinates": [ [ [ - -1.5321972299156545, - 53.79541643240546 + -1.5381550000468307, + 53.797208800268635 ], [ - -1.5322615208491568, - 53.79537345921903 + -1.5381930042620335, + 53.79721005572168 ], [ - -1.5323756111444977, - 53.79543301050103 + -1.538191305103179, + 53.79722801337668 + ], + [ + -1.538152873053175, + 53.79723124823671 + ], + [ + -1.538122470899048, + 53.79723024279509 + ], + [ + -1.5381228972113055, + 53.79722574708609 + ], + [ + -1.5381152860149672, + 53.79722549347738 ], [ - -1.5323113202109953, - 53.79547598368747 + -1.5381169973541717, + 53.79720753582237 ], [ - -1.5321972299156545, - 53.79541643240546 + -1.5381550000468307, + 53.797208800268635 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/762669698", - "osm_node_id": 762669698, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6022850279", + "osm_node_id": 6022850279, "type": "intersection" }, "type": "Feature" @@ -23472,42 +47095,34 @@ "coordinates": [ [ [ - -1.5364338480475173, - 53.79920925857456 - ], - [ - -1.5363744353442745, - 53.79920447238466 - ], - [ - -1.5363755468012315, - 53.79919966011443 + -1.5388377650102887, + 53.79725215836474 ], [ - -1.5363846698835395, - 53.799164093741226 + -1.5388073354503735, + 53.79725146588706 ], [ - -1.5363795373884692, - 53.799182378749315 + -1.5387692992617514, + 53.79724587030766 ], [ - -1.5364390718952141, - 53.79918660556114 + -1.5387707822193897, + 53.79722790545809 ], [ - -1.5364338480475173, - 53.79920925857456 + -1.5388377650102887, + 53.79725215836474 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/800488938", - "osm_node_id": 800488938, + "osm_link": "https://www.openstreetmap.org/node/6022850280", + "osm_node_id": 6022850280, "type": "intersection" }, "type": "Feature" @@ -23517,36 +47132,44 @@ "coordinates": [ [ [ - -1.5327449056600075, - 53.795795118772105 + -1.5373744420966147, + 53.79572320361586 ], [ - -1.5326689611764406, - 53.79579823042507 + -1.5373627657083935, + 53.79572124039666 ], [ - -1.532668610991372, - 53.795795251871716 + -1.5373641603584927, + 53.79572971200674 ], [ - -1.532662198036986, - 53.79576003623396 + -1.5373041355926518, + 53.79573106908313 ], [ - -1.5326705507121432, - 53.7957595065335 + -1.5372974379225794, + 53.79570793313398 ], [ - -1.5327463398962449, - 53.79576373514397 + -1.5373083454261935, + 53.79569114099986 ], [ - -1.5327505238465424, - 53.79575985636963 + -1.537353522345127, + 53.7956954019859 ], [ - -1.5327449056600075, - 53.795795118772105 + -1.5373575296803463, + 53.795701660365374 + ], + [ + -1.5373827765012467, + 53.79570590426431 + ], + [ + -1.5373744420966147, + 53.79572320361586 ] ] ], @@ -23554,9 +47177,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/1020737577", - "osm_node_id": 1020737577, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6047091983", + "osm_node_id": 6047091983, "type": "intersection" }, "type": "Feature" @@ -23566,44 +47189,48 @@ "coordinates": [ [ [ - -1.5326761886917473, - 53.79570085817045 + -1.5370901131365469, + 53.795621191760766 ], [ - -1.5326265141784983, - 53.795734931669685 + -1.5370750673589486, + 53.79563682916587 ], [ - -1.532569345704782, - 53.79579116175678 + -1.5370700064234357, + 53.79563512944792 ], [ - -1.532503806285383, - 53.79576127190193 + -1.5370622109993006, + 53.795645696477486 ], [ - -1.5324479867854526, - 53.79571434889474 + -1.53700637931902, + 53.79563132711593 ], [ - -1.5325256745816436, - 53.79568210461577 + -1.5370162697633916, + 53.7956179182299 ], [ - -1.532511283497869, - 53.795653579931205 + -1.5370086859728411, + 53.7956156141678 ], [ - -1.5325850233380476, - 53.795642408557484 + -1.5370226142033077, + 53.79559961883267 ], [ - -1.5325923970175568, - 53.79563892908196 + -1.5370225411212064, + 53.79560952576013 ], [ - -1.5326761886917473, - 53.79570085817045 + -1.5370771304057655, + 53.795625474330535 + ], + [ + -1.5370901131365469, + 53.795621191760766 ] ] ], @@ -23612,8 +47239,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1020737601", - "osm_node_id": 1020737601, + "osm_link": "https://www.openstreetmap.org/node/6047609624", + "osm_node_id": 6047609624, "type": "intersection" }, "type": "Feature" @@ -23623,42 +47250,34 @@ "coordinates": [ [ [ - -1.5329013348526825, - 53.79559905046138 - ], - [ - -1.5328401925397097, - 53.795625841253774 - ], - [ - -1.5327588856569623, - 53.79556276912745 + -1.536895416328596, + 53.797918685220736 ], [ - -1.5327616825698795, - 53.79556151097644 + -1.53683466378683, + 53.79791617071736 ], [ - -1.5327605954736232, - 53.79556060266156 + -1.5368508773555047, + 53.79787373442596 ], [ - -1.5328227883418017, - 53.79553467162067 + -1.5368810054517523, + 53.79787112279585 ], [ - -1.5329013348526825, - 53.79559905046138 + -1.536895416328596, + 53.797918685220736 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1020737603", - "osm_node_id": 1020737603, + "osm_link": "https://www.openstreetmap.org/node/6101189538", + "osm_node_id": 6101189538, "type": "intersection" }, "type": "Feature" @@ -23668,38 +47287,38 @@ "coordinates": [ [ [ - -1.533179372661866, - 53.795848438654296 + -1.5362424110057915, + 53.7983915431562 ], [ - -1.5332095616598647, - 53.79586017480202 + -1.5362417349963549, + 53.798409525992206 ], [ - -1.5331561843201515, - 53.79590807806982 + -1.536154957613819, + 53.79846397542241 ], [ - -1.5330920562988333, - 53.795881372712984 + -1.5360513530774662, + 53.798430875888535 ], [ - -1.5331505128445844, - 53.79583558464974 + -1.5360866623901845, + 53.79835906235563 ], [ - -1.533179372661866, - 53.795848438654296 + -1.5362424110057915, + 53.7983915431562 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1020737641", - "osm_node_id": 1020737641, + "osm_link": "https://www.openstreetmap.org/node/6111971409", + "osm_node_id": 6111971409, "type": "intersection" }, "type": "Feature" @@ -23709,24 +47328,24 @@ "coordinates": [ [ [ - -1.5335297998148987, - 53.79600223345085 + -1.5376531970239171, + 53.796043301874 ], [ - -1.5334895924788516, - 53.79602850983125 + -1.5376774526688188, + 53.796007096982414 ], [ - -1.5334215941512537, - 53.79601125724444 + -1.5377831202519887, + 53.79600611492315 ], [ - -1.5334749714909668, - 53.79596335397663 + -1.5377840794545679, + 53.796042084192464 ], [ - -1.5335297998148987, - 53.79600223345085 + -1.5376531970239171, + 53.796043301874 ] ] ], @@ -23735,8 +47354,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1020737673", - "osm_node_id": 1020737673, + "osm_link": "https://www.openstreetmap.org/node/6146456169", + "osm_node_id": 6146456169, "type": "intersection" }, "type": "Feature" @@ -23746,87 +47365,66 @@ "coordinates": [ [ [ - -1.5355554483891423, - 53.7984123858351 + -1.5337167225143276, + 53.799677897792094 ], [ - -1.5355630809010932, - 53.79843396415913 + -1.5337162063719874, + 53.79969202073951 ], [ - -1.5354680437185704, - 53.79844569131364 + -1.53367815191284, + 53.799691535105815 ], [ - -1.5355570470601074, - 53.79844122618157 + -1.5336784198805447, + 53.79968417505731 ], [ - -1.5354599666238364, - 53.798441963625336 + -1.5336664100552364, + 53.79968614367244 ], [ - -1.5354595189959663, - 53.798421352072104 + -1.533656233372635, + 53.79966447901353 ], [ - -1.5354531776011375, - 53.79840107506652 + -1.5336744445187445, + 53.79966149416492 ], [ - -1.535548653276268, - 53.798390657324354 + -1.5336692633022733, + 53.79965075806289 ], [ - -1.5355554483891423, - 53.7984123858351 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1022749752", - "osm_node_id": 1022749752, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -1.536727370126907, - 53.80024709016497 + -1.533705871344833, + 53.79964459770948 ], [ - -1.5367044314823717, - 53.800288802502436 + -1.5337111225983178, + 53.7996554821996 ], [ - -1.536637984626882, - 53.80026530952258 + -1.5337295864866942, + 53.79965245508287 ], [ - -1.5366482648424602, - 53.80024423841597 + -1.5337397662143832, + 53.79967411974177 ], [ - -1.536727370126907, - 53.80024709016497 + -1.5337167225143276, + 53.799677897792094 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1152092776", - "osm_node_id": 1152092776, + "osm_link": "https://www.openstreetmap.org/node/6211582994", + "osm_node_id": 6211582994, "type": "intersection" }, "type": "Feature" @@ -23836,44 +47434,40 @@ "coordinates": [ [ [ - -1.5343263003209975, - 53.79959262051454 - ], - [ - -1.5343679951823144, - 53.79963103234149 + -1.5335092759247928, + 53.7998897186211 ], [ - -1.5342927784746725, - 53.79965152428495 + -1.5334451555161934, + 53.79991395713862 ], [ - -1.5342891609106597, - 53.799653982131055 + -1.5334684138949217, + 53.79991393375625 ], [ - -1.5341598390873799, - 53.79958759060847 + -1.53340415950247, + 53.79988981934513 ], [ - -1.5342073424532034, - 53.79955245501034 + -1.5334246453289817, + 53.79989502461893 ], [ - -1.5342430902585296, - 53.799569317291564 + -1.5334887535572308, + 53.79987077530956 ], [ - -1.534316994533436, - 53.79953280663061 + -1.5334453519243407, + 53.79985181850818 ], [ - -1.5343719583637643, - 53.799571621353664 + -1.5335093200785623, + 53.799876197319875 ], [ - -1.5343263003209975, - 53.79959262051454 + -1.5335092759247928, + 53.7998897186211 ] ] ], @@ -23882,8 +47476,8 @@ "properties": { "complexity": "Crossing", "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/1152092781", - "osm_node_id": 1152092781, + "osm_link": "https://www.openstreetmap.org/node/6211582997", + "osm_node_id": 6211582997, "type": "intersection" }, "type": "Feature" @@ -23893,32 +47487,44 @@ "coordinates": [ [ [ - -1.5334187272013227, - 53.79960662834879 + -1.5333665694191745, + 53.79992476428706 ], [ - -1.5334050669385608, - 53.799641115536 + -1.533344885350711, + 53.79996817544315 ], [ - -1.5333121795878502, - 53.799627089715315 + -1.5333317625459022, + 53.79997022949383 ], [ - -1.533328747909225, - 53.7995930503903 + -1.5332713480088547, + 53.79994287033014 ], [ - -1.5333581071208653, - 53.799598036229604 + -1.5332741708050162, + 53.79994966290668 ], [ - -1.5334031637588403, - 53.79958611122433 + -1.5333061381341455, + 53.79990885348817 ], [ - -1.5334187272013227, - 53.79960662834879 + -1.533313065708328, + 53.79991074656027 + ], + [ + -1.5333177140344774, + 53.7999071735553 + ], + [ + -1.5333780737599492, + 53.799934574087786 + ], + [ + -1.5333665694191745, + 53.79992476428706 ] ] ], @@ -23927,8 +47533,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1152092910", - "osm_node_id": 1152092910, + "osm_link": "https://www.openstreetmap.org/node/6211582998", + "osm_node_id": 6211582998, "type": "intersection" }, "type": "Feature" @@ -23938,38 +47544,38 @@ "coordinates": [ [ [ - -1.5360079194711567, - 53.8001351039333 + -1.533137367201619, + 53.79999794388958 ], [ - -1.5359976209850532, - 53.800156171442616 + -1.5330808321061136, + 53.800028056776206 ], [ - -1.5359615169044833, - 53.800150012887855 + -1.5330539074419718, + 53.800010437266145 ], [ - -1.5359249012492047, - 53.80014493172045 + -1.533110402951339, + 53.79998029739987 ], [ - -1.535933390953302, - 53.80012358362277 + -1.5331644456426823, + 53.800011976904834 ], [ - -1.5360079194711567, - 53.8001351039333 + -1.533137367201619, + 53.79999794388958 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1152092921", - "osm_node_id": 1152092921, + "osm_link": "https://www.openstreetmap.org/node/6211583000", + "osm_node_id": 6211583000, "type": "intersection" }, "type": "Feature" @@ -23979,34 +47585,50 @@ "coordinates": [ [ [ - -1.5341929605046918, - 53.795302538712534 + -1.5337087261144138, + 53.79972623363361 ], [ - -1.5342456313840924, - 53.79528447853486 + -1.5337050689642628, + 53.79973677548217 ], [ - -1.534312515209646, - 53.79535253380253 + -1.5336677788220914, + 53.79973226268606 ], [ - -1.534259844330245, - 53.7953705939802 + -1.5336495752887007, + 53.79968860061923 ], [ - -1.5341929605046918, - 53.795302538712534 + -1.533677708852601, + 53.79970363727746 + ], + [ + -1.5337157633117484, + 53.79970412291116 + ], + [ + -1.5337214149942464, + 53.79967665403023 + ], + [ + -1.533744521118597, + 53.79971949951299 + ], + [ + -1.5337087261144138, + 53.79972623363361 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1277537020", - "osm_node_id": 1277537020, + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/6211583002", + "osm_node_id": 6211583002, "type": "intersection" }, "type": "Feature" @@ -24016,28 +47638,32 @@ "coordinates": [ [ [ - -1.5321980185933308, - 53.79890818636556 + -1.5336483846594675, + 53.799748889345 ], [ - -1.5321810848614497, - 53.79897831367034 + -1.5336120933060131, + 53.79978211298526 ], [ - -1.5321538084896953, - 53.798976015004165 + -1.5335481251517915, + 53.79975773417357 ], [ - -1.5320933391410718, - 53.79897172973643 + -1.5335394146788468, + 53.79973584738221 ], [ - -1.5320791231498316, - 53.798898912560546 + -1.5336049540982457, + 53.79970563017427 ], [ - -1.5321980185933308, - 53.79890818636556 + -1.5336662243048955, + 53.79973248841579 + ], + [ + -1.5336483846594675, + 53.799748889345 ] ] ], @@ -24046,8 +47672,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1296601030", - "osm_node_id": 1296601030, + "osm_link": "https://www.openstreetmap.org/node/6211583003", + "osm_node_id": 6211583003, "type": "intersection" }, "type": "Feature" @@ -24057,32 +47683,32 @@ "coordinates": [ [ [ - -1.5337575723638484, - 53.79911143306182 + -1.5335535773810547, + 53.79977808312488 ], [ - -1.5336603823044255, - 53.79915293405869 + -1.5334879831500798, + 53.79975526013967 ], [ - -1.5336435094742955, - 53.799139148356886 + -1.5335425800473579, + 53.799722206471195 ], [ - -1.5335962893016142, - 53.79911864112496 + -1.53357557661608, + 53.79973341561643 ], [ - -1.5336673281491335, - 53.79906156837347 + -1.5335357468708894, + 53.79973635639827 ], [ - -1.533772083728581, - 53.79909605016474 + -1.5335444527762028, + 53.799758244088956 ], [ - -1.5337575723638484, - 53.79911143306182 + -1.5335535773810547, + 53.79977808312488 ] ] ], @@ -24091,8 +47717,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1296601330", - "osm_node_id": 1296601330, + "osm_link": "https://www.openstreetmap.org/node/6211583004", + "osm_node_id": 6211583004, "type": "intersection" }, "type": "Feature" @@ -24102,34 +47728,46 @@ "coordinates": [ [ [ - -1.5390433662767662, - 53.795551840570575 + -1.534502248524886, + 53.79967537249686 ], [ - -1.5390566337232339, - 53.79557291347583 + -1.5344780172406844, + 53.799692008149016 ], [ - -1.5389139272176156, - 53.79560425843314 + -1.534449161991034, + 53.799677345608586 ], [ - -1.5389006597711479, - 53.79558318552788 + -1.534437485602813, + 53.799669868648266 ], [ - -1.5390433662767662, - 53.795551840570575 + -1.534489998137661, + 53.799637313203995 + ], + [ + -1.5345028925609034, + 53.79964456983051 + ], + [ + -1.5345296695382988, + 53.7996605714609 + ], + [ + -1.534502248524886, + 53.79967537249686 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1305300599", - "osm_node_id": 1305300599, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6211583005", + "osm_node_id": 6211583005, "type": "intersection" }, "type": "Feature" @@ -24139,40 +47777,28 @@ "coordinates": [ [ [ - -1.5337465811203266, - 53.7994373319447 - ], - [ - -1.5337932866732114, - 53.79948365150705 - ], - [ - -1.5336906489521567, - 53.79952081687417 - ], - [ - -1.5336527893786127, - 53.79951847414124 + -1.5338173352521596, + 53.79965128866267 ], [ - -1.533655994333262, - 53.79950036719884 + -1.5338120307096426, + 53.79967355226981 ], [ - -1.5336234073288157, - 53.79948874976157 + -1.533766372666876, + 53.799669758031705 ], [ - -1.5336281211243474, - 53.79942535567809 + -1.533756192939187, + 53.799648093372795 ], [ - -1.5337473972037907, - 53.79943272292117 + -1.5337962617237504, + 53.79963256478561 ], [ - -1.5337465811203266, - 53.7994373319447 + -1.5338173352521596, + 53.79965128866267 ] ] ], @@ -24181,8 +47807,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1569761300", - "osm_node_id": 1569761300, + "osm_link": "https://www.openstreetmap.org/node/6211583008", + "osm_node_id": 6211583008, "type": "intersection" }, "type": "Feature" @@ -24192,40 +47818,36 @@ "coordinates": [ [ [ - -1.5338822336806286, - 53.79961605773645 - ], - [ - -1.5338529673441588, - 53.79960168297896 + -1.5338608404180265, + 53.79968319569602 ], [ - -1.5338399191439949, - 53.79960503205284 + -1.5338291882554589, + 53.79969568277733 ], [ - -1.5338160212968805, - 53.79957254675566 + -1.5337869072147883, + 53.79965829078115 ], [ - -1.5338610094203857, - 53.79950688188497 + -1.5338370476264327, + 53.79967563150149 ], [ - -1.5339362870297784, - 53.799499290710806 + -1.5338423521689497, + 53.79965336789436 ], [ - -1.5339638374594124, - 53.799491976527705 + -1.5338501643410662, + 53.799633310323266 ], [ - -1.5340130003979524, - 53.799556589192036 + -1.5338925032384005, + 53.79967068073573 ], [ - -1.5338822336806286, - 53.79961605773645 + -1.5338608404180265, + 53.79968319569602 ] ] ], @@ -24234,8 +47856,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1569783677", - "osm_node_id": 1569783677, + "osm_link": "https://www.openstreetmap.org/node/6211583009", + "osm_node_id": 6211583009, "type": "intersection" }, "type": "Feature" @@ -24245,24 +47867,24 @@ "coordinates": [ [ [ - -1.5331893803421084, - 53.79602974999583 + -1.5340759834663509, + 53.799326949203554 ], [ - -1.5333066466637668, - 53.796014912987005 + -1.534105944082783, + 53.79932373322928 ], [ - -1.5333272329781675, - 53.79607168176778 + -1.5341406002242213, + 53.79943639934814 ], [ - -1.533209966656509, - 53.796086518776605 + -1.5341106396077893, + 53.799439615322406 ], [ - -1.5331893803421084, - 53.79602974999583 + -1.5340759834663509, + 53.799326949203554 ] ] ], @@ -24271,8 +47893,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1591164975", - "osm_node_id": 1591164975, + "osm_link": "https://www.openstreetmap.org/node/6211583011", + "osm_node_id": 6211583011, "type": "intersection" }, "type": "Feature" @@ -24282,34 +47904,42 @@ "coordinates": [ [ [ - -1.5342026986946855, - 53.79955026426277 + -1.5356409574927123, + 53.79868488749413 ], [ - -1.5341551861935991, - 53.79958539716293 + -1.5356178955221311, + 53.79870945965998 ], [ - -1.5341343121184248, - 53.79958435664776 + -1.5355208211760354, + 53.798708479399366 ], [ - -1.5340974696041234, - 53.79954500592899 + -1.5354951054116521, + 53.79863702199784 ], [ - -1.5342026986946855, - 53.79955026426277 + -1.535621662295434, + 53.79863502730239 + ], + [ + -1.5356224281349535, + 53.798651963327984 + ], + [ + -1.5356409574927123, + 53.79868488749413 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1591373154", - "osm_node_id": 1591373154, + "osm_link": "https://www.openstreetmap.org/node/6211583013", + "osm_node_id": 6211583013, "type": "intersection" }, "type": "Feature" @@ -24319,40 +47949,40 @@ "coordinates": [ [ [ - -1.5334743685636314, - 53.799857508516354 + -1.5356075315666453, + 53.79878257181337 ], [ - -1.5334822842687248, - 53.79986480831031 + -1.535551751652853, + 53.79879701132202 ], [ - -1.5334181760404757, - 53.79988905761968 + -1.5356042291691943, + 53.79878966836063 ], [ - -1.5334330162746643, - 53.79989234643901 + -1.5355106140425585, + 53.79877446622721 ], [ - -1.5333726565491927, - 53.79986494590653 + -1.5355155684000068, + 53.79876382185598 ], [ - -1.5334097563733922, - 53.799825679723995 + -1.535485961013731, + 53.79875181860972 ], [ - -1.533415776511484, - 53.79982766362759 + -1.5355204253146537, + 53.798722158981214 ], [ - -1.5334818168477855, - 53.79985003964993 + -1.5356174996607495, + 53.79872313924183 ], [ - -1.5334743685636314, - 53.799857508516354 + -1.5356075315666453, + 53.79878257181337 ] ] ], @@ -24361,8 +47991,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1591373158", - "osm_node_id": 1591373158, + "osm_link": "https://www.openstreetmap.org/node/6211583020", + "osm_node_id": 6211583020, "type": "intersection" }, "type": "Feature" @@ -24372,40 +48002,44 @@ "coordinates": [ [ [ - -1.5335907700804248, - 53.8000923978454 + -1.5355844680735204, + 53.79883213073236 ], [ - -1.5335531967451106, - 53.80009599153477 + -1.5355504605357306, + 53.798872360987716 ], [ - -1.5335639489492596, - 53.80013522174443 + -1.535535184854022, + 53.7988678562855 ], [ - -1.5335392258834184, - 53.8000929581228 + -1.5354888447116435, + 53.79885931452832 ], [ - -1.5335249048366577, - 53.80007212623575 + -1.5354904159768208, + 53.79885634047157 ], [ - -1.5335444421183964, - 53.80006743987055 + -1.5354719292502876, + 53.79885298240448 ], [ - -1.5335384280704796, - 53.80005280251114 + -1.53551748071499, + 53.79881421174819 ], [ - -1.5335754167489835, - 53.8000475001106 + -1.5354937929789167, + 53.79881060816628 ], [ - -1.5335907700804248, - 53.8000923978454 + -1.5355874081055525, + 53.7988258102997 + ], + [ + -1.5355844680735204, + 53.79883213073236 ] ] ], @@ -24414,8 +48048,8 @@ "properties": { "complexity": "Crossing", "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/1591373161", - "osm_node_id": 1591373161, + "osm_link": "https://www.openstreetmap.org/node/6211583022", + "osm_node_id": 6211583022, "type": "intersection" }, "type": "Feature" @@ -24425,335 +48059,248 @@ "coordinates": [ [ [ - -1.5343814468565788, - 53.800056275691404 + -1.5347099143607243, + 53.79748616725787 ], [ - -1.534417193139361, - 53.8000602479952 + -1.5347101640579037, + 53.79748334698513 ], [ - -1.5343992453933248, - 53.80011660668529 + -1.5347109131494416, + 53.79748055818865 ], [ - -1.5342126606986146, - 53.80012325357172 + -1.5347121494549882, + 53.797477829646716 ], [ - -1.5341992744937325, - 53.800088728613005 + -1.5347138638392803, + 53.79747519373492 ], [ - -1.5342225968192993, - 53.80003305880331 + -1.5347160334641616, + 53.7974726774329 ], [ - -1.5343814468565788, - 53.800056275691404 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1591373171", - "osm_node_id": 1591373171, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5347186370140193, + 53.79747030861964 + ], [ - -1.5338335396855718, - 53.80022422221368 + -1.5347216470830654, + 53.79746811427477 ], [ - -1.5337407132366123, - 53.8002074156904 + -1.5347250271302488, + 53.79746611778068 ], [ - -1.533754014179043, - 53.80015867875142 + -1.5347287421370635, + 53.797464339821744 ], [ - -1.5338720630882023, - 53.80018719444277 + -1.5347327525173704, + 53.7974628019817 ], [ - -1.5338441107070113, - 53.800160811043085 + -1.5347370125948567, + 53.79746152044832 ], [ - -1.5338678014881721, - 53.800193348500926 + -1.5347414751706654, + 53.79746050781213 ], [ - -1.5338335396855718, - 53.80022422221368 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1591373192", - "osm_node_id": 1591373192, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.534746094568483, + 53.79745977756294 + ], [ - -1.5328845838260545, - 53.80023161283912 + -1.5347508159767336, + 53.79745933509668 ], [ - -1.532850839688338, - 53.80025400235129 + -1.5347555906740165, + 53.79745918760793 ], [ - -1.5327612653928848, - 53.800206901278415 + -1.5347603653712991, + 53.79745933509668 ], [ - -1.5327967300050687, - 53.800167112589996 + -1.53476508677955, + 53.79745977756294 ], [ - -1.532815603457721, - 53.8001729824625 + -1.5347697061773675, + 53.79746050781213 ], [ - -1.53283018181438, - 53.80016523300771 + -1.534774168753176, + 53.79746152044832 ], [ - -1.5329104046459585, - 53.80021788829119 + -1.5347784288306625, + 53.7974628019817 ], [ - -1.5328845838260545, - 53.80023161283912 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1591373193", - "osm_node_id": 1591373193, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5347824392109695, + 53.797464339821744 + ], [ - -1.5336779631174116, - 53.800326681930954 + -1.5347861542177839, + 53.79746611778068 ], [ - -1.5335831512713676, - 53.8003143342445 + -1.5347895342649676, + 53.79746811427477 ], [ - -1.5335852676072168, - 53.80021299598133 + -1.5347925443340134, + 53.79747030861964 ], [ - -1.5336228409425308, - 53.80020940229196 + -1.534795147883871, + 53.7974726774329 ], [ - -1.5337175797064735, - 53.80022194962783 + -1.5347973175087524, + 53.79747519373492 ], [ - -1.5336779631174116, - 53.800326681930954 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1591373207", - "osm_node_id": 1591373207, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5347990318930447, + 53.797477829646716 + ], [ - -1.5325740001211066, - 53.80043485054217 + -1.534800268198591, + 53.79748055818865 ], [ - -1.5325087987064259, - 53.80040470348131 + -1.5348010172901292, + 53.79748334698513 ], [ - -1.5325880151365683, - 53.80034492646957 + -1.5348012669873083, + 53.79748616725787 ], [ - -1.5326532165512488, - 53.800375073530425 + -1.5348010172901292, + 53.79748898753061 ], [ - -1.5325740001211066, - 53.80043485054217 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1591373213", - "osm_node_id": 1591373213, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.534800268198591, + 53.7974917763271 + ], [ - -1.535602938052072, - 53.79776730870014 + -1.5347990318930447, + 53.79749450486903 ], [ - -1.5356346282782338, - 53.79777051208391 + -1.5347973175087524, + 53.79749714078083 ], [ - -1.5356282092336726, - 53.797792673168374 + -1.534795147883871, + 53.797499657082845 ], [ - -1.535506810728205, - 53.79777183408676 + -1.5347925443340134, + 53.797502025896115 ], [ - -1.535519298632259, - 53.79775059570632 + -1.5347895342649676, + 53.797504220240974 ], [ - -1.5355458502731758, - 53.79773448525801 + -1.5347861542177839, + 53.79750621673507 ], [ - -1.535602938052072, - 53.79776730870014 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1601683577", - "osm_node_id": 1601683577, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5347824392109695, + 53.797507994694 + ], [ - -1.5330443747953877, - 53.79532945810793 + -1.5347784288306625, + 53.79750953253405 ], [ - -1.5331062448842856, - 53.79532772241711 + -1.534774168753176, + 53.79751081406742 ], [ - -1.5330789532870936, - 53.795404993933204 + -1.5347697061773675, + 53.79751182670361 ], [ - -1.5330202531343382, - 53.795397761588376 + -1.53476508677955, + 53.79751255695281 ], [ - -1.5330443747953877, - 53.79532945810793 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1606819521", - "osm_node_id": 1606819521, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.5347603653712991, + 53.79751299941907 + ], [ - -1.532554522218575, - 53.795802502202974 + -1.5347555906740165, + 53.79751314690782 ], [ - -1.5325527682481446, - 53.79580261281954 + -1.5347508159767336, + 53.79751299941907 ], [ - -1.532547446957646, - 53.79582144551453 + -1.534746094568483, + 53.79751255695281 ], [ - -1.5324657746643924, - 53.795813392988336 + -1.5347414751706654, + 53.79751182670361 ], [ - -1.5324494941037914, - 53.79577930420063 + -1.5347370125948567, + 53.79751081406742 ], [ - -1.532488792481204, - 53.79577275803823 + -1.5347327525173704, + 53.79750953253405 ], [ - -1.532548107741645, - 53.79576728656522 + -1.5347287421370635, + 53.797507994694 ], [ - -1.532554522218575, - 53.795802502202974 + -1.5347250271302488, + 53.79750621673507 + ], + [ + -1.5347216470830654, + 53.797504220240974 + ], + [ + -1.5347186370140193, + 53.797502025896115 + ], + [ + -1.5347160334641616, + 53.797499657082845 + ], + [ + -1.5347138638392803, + 53.79749714078083 + ], + [ + -1.5347121494549882, + 53.79749450486903 + ], + [ + -1.5347109131494416, + 53.7974917763271 + ], + [ + -1.5347101640579037, + 53.79748898753061 + ], + [ + -1.5347099143607243, + 53.79748616725787 ] ] ], @@ -24762,8 +48309,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1606819527", - "osm_node_id": 1606819527, + "osm_link": "https://www.openstreetmap.org/node/6216919223", + "osm_node_id": 6216919223, "type": "intersection" }, "type": "Feature" @@ -24773,40 +48320,48 @@ "coordinates": [ [ [ - -1.5353300190350645, - 53.797362096840985 + -1.5327904464669033, + 53.796627239524895 + ], + [ + -1.5327918000083207, + 53.796630321500245 + ], + [ + -1.5327181088895427, + 53.796641606188494 ], [ - -1.535331473064371, - 53.797386054770136 + -1.5327157078380074, + 53.79663613921209 ], [ - -1.5352934338306614, - 53.79738686056235 + -1.5327133037413845, + 53.79663642969299 ], [ - -1.535290854641504, - 53.79738768703896 + -1.5327011203460856, + 53.7966011834783 ], [ - -1.535264258846818, - 53.79735878643794 + -1.5326996373884476, + 53.796597457588646 ], [ - -1.5352910632300014, - 53.79735018082893 + -1.53277374568422, + 53.7965871693488 ], [ - -1.5352903674274956, - 53.797340514919675 + -1.5327757813252492, + 53.796592285589746 ], [ - -1.5353283975259426, - 53.79733955984007 + -1.532778546264747, + 53.79659196003531 ], [ - -1.5353300190350645, - 53.797362096840985 + -1.5327904464669033, + 53.796627239524895 ] ] ], @@ -24815,8 +48370,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1606819535", - "osm_node_id": 1606819535, + "osm_link": "https://www.openstreetmap.org/node/6264559092", + "osm_node_id": 6264559092, "type": "intersection" }, "type": "Feature" @@ -24826,34 +48381,34 @@ "coordinates": [ [ [ - -1.532953762125079, - 53.79540950043407 + -1.5328342226455625, + 53.79667886598439 ], [ - -1.532995543771391, - 53.795447090281016 + -1.5328270514643756, + 53.796632676823684 ], [ - -1.5328841773068662, - 53.795490276606685 + -1.5328921280304666, + 53.79660990869709 ], [ - -1.5328423956605541, - 53.79545268855838 + -1.5329221769544377, + 53.79668717301861 ], [ - -1.532953762125079, - 53.79540950043407 + -1.5328342226455625, + 53.79667886598439 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1606959376", - "osm_node_id": 1606959376, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6264559102", + "osm_node_id": 6264559102, "type": "intersection" }, "type": "Feature" @@ -24863,28 +48418,32 @@ "coordinates": [ [ [ - -1.5340659301097952, - 53.79745721179823 + -1.534409648934949, + 53.797119786309565 ], [ - -1.5340355157753178, - 53.79742604490661 + -1.5344285604511958, + 53.797139240435826 ], [ - -1.5340409238508117, - 53.797424203095844 + -1.53437574645268, + 53.79715715492339 ], [ - -1.534037571209416, - 53.797421092342205 + -1.5343328975031807, + 53.79713415117452 ], [ - -1.5340889479266069, - 53.79740177491284 + -1.5343365698787694, + 53.797116296042184 + ], + [ + -1.534389726449635, + 53.797098740383966 ], [ - -1.5340659301097952, - 53.79745721179823 + -1.534409648934949, + 53.797119786309565 ] ] ], @@ -24893,8 +48452,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1606959629", - "osm_node_id": 1606959629, + "osm_link": "https://www.openstreetmap.org/node/6264670253", + "osm_node_id": 6264670253, "type": "intersection" }, "type": "Feature" @@ -24904,40 +48463,40 @@ "coordinates": [ [ [ - -1.5364440749740633, - 53.79885106505069 + -1.5343750247669299, + 53.797083209998135 ], [ - -1.5364218580152782, - 53.79890689134236 + -1.5343218666735206, + 53.79710076475703 ], [ - -1.5364184718779195, - 53.79890642099713 + -1.5343300259856183, + 53.79713012671007 ], [ - -1.536359132256778, - 53.7989115255469 + -1.5343007444237107, + 53.797079599221654 ], [ - -1.5363558801032715, - 53.79889832980011 + -1.534304622342709, + 53.7970777250353 ], [ - -1.5363206606206359, - 53.798894154249616 + -1.534360499699303, + 53.79706341682761 ], [ - -1.5363397685450297, - 53.79883792865913 + -1.5343367129978844, + 53.797072326407346 ], [ - -1.5363989680921437, - 53.79883228991229 + -1.5343661133182067, + 53.79712282871476 ], [ - -1.5364440749740633, - 53.79885106505069 + -1.5343750247669299, + 53.797083209998135 ] ] ], @@ -24946,8 +48505,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1675168064", - "osm_node_id": 1675168064, + "osm_link": "https://www.openstreetmap.org/node/6264670255", + "osm_node_id": 6264670255, "type": "intersection" }, "type": "Feature" @@ -24957,34 +48516,38 @@ "coordinates": [ [ [ - -1.532074946812253, - 53.79912376456049 + -1.533515082906756, + 53.795877700782626 ], [ - -1.532045053187747, - 53.79909242320047 + -1.5334863646860455, + 53.79590879392987 ], [ - -1.5320823022212366, - 53.799026055959565 + -1.5334212881199547, + 53.795934753749044 ], [ - -1.5321427715698603, - 53.79903034212662 + -1.5333258657338562, + 53.79585161505842 ], [ - -1.532074946812253, - 53.79912376456049 + -1.5333548092910456, + 53.795831464857194 + ], + [ + -1.533515082906756, + 53.795877700782626 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1675168080", - "osm_node_id": 1675168080, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6264670261", + "osm_node_id": 6264670261, "type": "intersection" }, "type": "Feature" @@ -24994,79 +48557,50 @@ "coordinates": [ [ [ - -1.5390558541808204, - 53.7998480791287 - ], - [ - -1.5390441458191797, - 53.79988338110133 - ], - [ - -1.5388947309856826, - 53.79986609254165 + -1.5338181300200109, + 53.796428165681164 ], [ - -1.5389064393473233, - 53.79983079056902 + -1.5337641893391005, + 53.79645989554814 ], [ - -1.5390558541808204, - 53.7998480791287 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1675168086", - "osm_node_id": 1675168086, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -1.5363993395928253, - 53.800201864177765 + -1.5337572998285123, + 53.7964558090305 ], [ - -1.536435914139422, - 53.800208090181656 + -1.5337560300270028, + 53.796456475427846 ], [ - -1.5364256339238436, - 53.800229161288264 + -1.5337156186700895, + 53.7964295623277 ], [ - -1.536389059377247, - 53.800222935284374 + -1.5337288084668246, + 53.796422652839354 ], [ - -1.5363524802630188, - 53.80021669579067 + -1.533722983214336, + 53.796412822354235 ], [ - -1.5363627787491225, - 53.800195628281344 + -1.5337804653320704, + 53.79640093691911 ], [ - -1.5363993395928253, - 53.800201864177765 + -1.5338181300200109, + 53.796428165681164 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1743212076", - "osm_node_id": 1743212076, + "osm_link": "https://www.openstreetmap.org/node/6264670275", + "osm_node_id": 6264670275, "type": "intersection" }, "type": "Feature" @@ -25076,34 +48610,34 @@ "coordinates": [ [ [ - -1.535781503508712, - 53.80032653714017 + -1.5337225173159406, + 53.79641103899937 ], [ - -1.535749682343785, - 53.80038071767319 + -1.5336782995995861, + 53.796417800099654 ], [ - -1.5356058384979658, - 53.800351241506306 + -1.5336401446525496, + 53.7963307376686 ], [ - -1.5356376596628927, - 53.80029706097328 + -1.5336843623689038, + 53.79632397656832 ], [ - -1.535781503508712, - 53.80032653714017 + -1.5337225173159406, + 53.79641103899937 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1743212077", - "osm_node_id": 1743212077, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6264670280", + "osm_node_id": 6264670280, "type": "intersection" }, "type": "Feature" @@ -25113,24 +48647,24 @@ "coordinates": [ [ [ - -1.5372071328061134, - 53.800339143831266 + -1.5340599312873162, + 53.79528678889222 ], [ - -1.5371841941615783, - 53.80038085616873 + -1.5341566767639563, + 53.795281959534876 ], [ - -1.5370393880680924, - 53.80035307162589 + -1.5341678963890446, + 53.795360370491515 ], [ - -1.5370623267126275, - 53.80031135928843 + -1.5340711509124045, + 53.79536519984886 ], [ - -1.5372071328061134, - 53.800339143831266 + -1.5340599312873162, + 53.79528678889222 ] ] ], @@ -25139,8 +48673,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1743296708", - "osm_node_id": 1743296708, + "osm_link": "https://www.openstreetmap.org/node/6264670282", + "osm_node_id": 6264670282, "type": "intersection" }, "type": "Feature" @@ -25150,34 +48684,38 @@ "coordinates": [ [ [ - -1.535820112173794, - 53.79791216513866 + -1.5346724399907559, + 53.79539166958342 + ], + [ + -1.534672287736378, + 53.795427642450015 ], [ - -1.5358744883022244, - 53.79794363420236 + -1.5346572313009734, + 53.79542762086629 ], [ - -1.5357927124759938, - 53.798002280766774 + -1.5346306385513748, + 53.79544132293118 ], [ - -1.5357186924877604, - 53.79799177489108 + -1.534580595582532, + 53.795407438289494 ], [ - -1.535820112173794, - 53.79791216513866 + -1.5346724399907559, + 53.79539166958342 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1877939977", - "osm_node_id": 1877939977, + "osm_link": "https://www.openstreetmap.org/node/6264671914", + "osm_node_id": 6264671914, "type": "intersection" }, "type": "Feature" @@ -25187,36 +48725,44 @@ "coordinates": [ [ [ - -1.535926037066862, - 53.798192474708394 + -1.5358441927261615, + 53.79550051808181 ], [ - -1.5359537534537675, - 53.79820497707818 + -1.5358137753465966, + 53.79549965653165 ], [ - -1.5359075503403288, - 53.798240714322496 + -1.5358569379401137, + 53.795461942578314 ], [ - -1.5358469272147839, - 53.798212856934605 + -1.5358498733369912, + 53.79549767262806 ], [ - -1.5358502143867971, - 53.79821040628307 + -1.535812281731152, + 53.79549507898437 ], [ - -1.5358466013904157, - 53.79820812200604 + -1.5357746886027688, + 53.7954928549619 ], [ - -1.5359022260047428, - 53.79817742276168 + -1.535780760507349, + 53.79545706195964 ], [ - -1.535926037066862, - 53.798192474708394 + -1.5358155993540406, + 53.79547719867104 + ], + [ + -1.5358460441393935, + 53.795477599768496 + ], + [ + -1.5358441927261615, + 53.79550051808181 ] ] ], @@ -25225,8 +48771,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2014304855", - "osm_node_id": 2014304855, + "osm_link": "https://www.openstreetmap.org/node/6264671916", + "osm_node_id": 6264671916, "type": "intersection" }, "type": "Feature" @@ -25236,40 +48782,32 @@ "coordinates": [ [ [ - -1.5358853394717187, - 53.79825662332274 - ], - [ - -1.5358927146737715, - 53.798261403217396 - ], - [ - -1.5358209541405023, - 53.79830003088154 + -1.5367858175373954, + 53.79552447151435 ], [ - -1.5357649625931251, - 53.79826956725947 + -1.5367846543139503, + 53.79554244535714 ], [ - -1.5357696779112007, - 53.798266543740034 + -1.5367881713900737, + 53.7955334314561 ], [ - -1.5357612993527991, - 53.79826101650908 + -1.5367758966421485, + 53.79554989263985 ], [ - -1.5358336354076159, - 53.798222764761384 + -1.5367039214302067, + 53.795545848390326 ], [ - -1.5358932993305818, - 53.798250692296364 + -1.5367158185872754, + 53.79551056800141 ], [ - -1.5358853394717187, - 53.79825662332274 + -1.5367858175373954, + 53.79552447151435 ] ] ], @@ -25277,9 +48815,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2014304856", - "osm_node_id": 2014304856, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6264671921", + "osm_node_id": 6264671921, "type": "intersection" }, "type": "Feature" @@ -25289,40 +48827,52 @@ "coordinates": [ [ [ - -1.5358318951400796, - 53.79843386253578 + -1.536930816993941, + 53.795571729968515 ], [ - -1.5358063042242858, - 53.79844197711516 + -1.5369379135704828, + 53.79557388564255 ], [ - -1.5357464225775599, - 53.79837608921271 + -1.5369239853400163, + 53.79558988097768 ], [ - -1.5357511637788797, - 53.79837458644621 + -1.5369153814451357, + 53.7955872666496 ], [ - -1.5358211140075988, - 53.79835684282976 + -1.5368990415053274, + 53.795600369766255 ], [ - -1.535822392944371, - 53.79835860280225 + -1.53687452550544, + 53.79558970201267 + ], + [ + -1.5368878477634833, + 53.79557901986993 + ], + [ + -1.5368561286089897, + 53.79557076679502 + ], + [ + -1.5368684033569149, + 53.79555430561126 ], [ - -1.5358339597094404, - 53.79835714949844 + -1.536913671628475, + 53.79555135943349 ], [ - -1.5358603027618596, - 53.79843029312809 + -1.5369410835066253, + 53.79555919072654 ], [ - -1.5358318951400796, - 53.79843386253578 + -1.536930816993941, + 53.795571729968515 ] ] ], @@ -25330,9 +48880,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2014304862", - "osm_node_id": 2014304862, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6264671922", + "osm_node_id": 6264671922, "type": "intersection" }, "type": "Feature" @@ -25342,32 +48892,32 @@ "coordinates": [ [ [ - -1.5362909222955952, - 53.79879333579438 + -1.5337229679888982, + 53.79614082341602 ], [ - -1.5362452703430036, - 53.798829319452835 + -1.5336661283846378, + 53.79615210450698 ], [ - -1.536208613579043, - 53.798813093891354 + -1.5336549894543696, + 53.79613252357637 ], [ - -1.5362003492114247, - 53.79881608143793 + -1.5336150592212896, + 53.79610175598357 ], [ - -1.5361673130565643, - 53.798784187894405 + -1.5336626508946525, + 53.79608020823648 ], [ - -1.5361924395965063, - 53.79874634533807 + -1.5336833635801865, + 53.796078870945166 ], [ - -1.5362909222955952, - 53.79879333579438 + -1.5337229679888982, + 53.79614082341602 ] ] ], @@ -25375,9 +48925,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2014304908", - "osm_node_id": 2014304908, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6309354601", + "osm_node_id": 6309354601, "type": "intersection" }, "type": "Feature" @@ -25387,40 +48937,32 @@ "coordinates": [ [ [ - -1.536394493335985, - 53.79881590067427 - ], - [ - -1.5363352937888708, - 53.79882153942111 - ], - [ - -1.536344506701262, - 53.79884433632599 + -1.5331451199945285, + 53.7956105707719 ], [ - -1.5363287240124757, - 53.79880034690608 + -1.53311825318705, + 53.79556849870578 ], [ - -1.5363284377742457, - 53.79879941880612 + -1.5331654870626252, + 53.79555282712644 ], [ - -1.5363874211201436, - 53.798793040816875 + -1.5332144246646864, + 53.79557423997528 ], [ - -1.5364056002928337, - 53.79879080240525 + -1.5331868346489141, + 53.795548430342826 ], [ - -1.5364211241491779, - 53.798834824200746 + -1.5332029248915433, + 53.79557367969789 ], [ - -1.536394493335985, - 53.79881590067427 + -1.5331451199945285, + 53.7956105707719 ] ] ], @@ -25428,9 +48970,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2014304911", - "osm_node_id": 2014304911, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6309354609", + "osm_node_id": 6309354609, "type": "intersection" }, "type": "Feature" @@ -25440,46 +48982,34 @@ "coordinates": [ [ [ - -1.5363298004509256, - 53.79885403820811 - ], - [ - -1.536256148918286, - 53.79884266538634 - ], - [ - -1.5362493172643612, - 53.79883111000227 - ], - [ - -1.5362949631267777, - 53.79879512454517 + -1.5347732521818227, + 53.796721462355045 ], [ - -1.5363116045302538, - 53.798802489989605 + -1.5347426871155114, + 53.796730697489224 ], [ - -1.5363176977504471, - 53.79880172826415 + -1.534633551177619, + 53.79665297001705 ], [ - -1.5363334865294083, - 53.79884571588543 + -1.5346610574534834, + 53.79664525203852 ], [ - -1.5363298004509256, - 53.79885403820811 + -1.5347732521818227, + 53.796721462355045 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2014304912", - "osm_node_id": 2014304912, + "osm_link": "https://www.openstreetmap.org/node/6309354657", + "osm_node_id": 6309354657, "type": "intersection" }, "type": "Feature" @@ -25489,40 +49019,40 @@ "coordinates": [ [ [ - -1.5363336250808919, - 53.79883719930926 + -1.5353311137440397, + 53.797706479482045 ], [ - -1.5363145080212355, - 53.79889342489975 + -1.5353474917474423, + 53.79770983934779 ], [ - -1.5363119501476912, - 53.79889485122391 + -1.5353292212221257, + 53.797740912709955 ], [ - -1.5362381950820747, - 53.79888371402441 + -1.5353263953808767, + 53.79774033894273 ], [ - -1.5362387492880094, - 53.79888243159172 + -1.5352710174186415, + 53.79773686216517 ], [ - -1.5362648365530742, - 53.798827188060486 + -1.5352507584511526, + 53.79772066268402 ], [ - -1.5362476744396265, - 53.79886181374323 + -1.5352764711704485, + 53.79769148509193 ], [ - -1.5363213259722661, - 53.798873186565004 + -1.5353321079651256, + 53.79769290512084 ], [ - -1.5363336250808919, - 53.79883719930926 + -1.5353311137440397, + 53.797706479482045 ] ] ], @@ -25531,8 +49061,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2014304914", - "osm_node_id": 2014304914, + "osm_link": "https://www.openstreetmap.org/node/6309354662", + "osm_node_id": 6309354662, "type": "intersection" }, "type": "Feature" @@ -25542,50 +49072,34 @@ "coordinates": [ [ [ - -1.5365581546115978, - 53.798866549571116 - ], - [ - -1.5365373703665062, - 53.79892256831762 + -1.5350057842026172, + 53.79804042279722 ], [ - -1.5365357047036148, - 53.798922352480425 + -1.5349927146868407, + 53.79802417745067 ], [ - -1.536535336248021, - 53.798923270687844 - ], - [ - -1.5364612705834741, - 53.798912878126686 - ], - [ - -1.5364836824278627, - 53.79885656440267 - ], - [ - -1.536469333975314, - 53.79887352201199 + -1.5351305003309736, + 53.797985500323826 ], [ - -1.53652418818249, - 53.798842342529866 + -1.5351435698467502, + 53.79800174567038 ], [ - -1.5365581546115978, - 53.798866549571116 + -1.5350057842026172, + 53.79804042279722 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2014304915", - "osm_node_id": 2014304915, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6309394776", + "osm_node_id": 6309394776, "type": "intersection" }, "type": "Feature" @@ -25595,42 +49109,34 @@ "coordinates": [ [ [ - -1.5368064982495102, - 53.79889869762267 - ], - [ - -1.536843684858705, - 53.79890349550375 - ], - [ - -1.5368229630379082, - 53.79895952144483 + -1.536185149656905, + 53.79872307898727 ], [ - -1.53661695829733, - 53.7989659956615 + -1.536122850210662, + 53.798748921894635 ], [ - -1.5366048632095701, - 53.7989313052276 + -1.5361060474175459, + 53.79873082934138 ], [ - -1.5366256474546618, - 53.79887528648109 + -1.5361333999164888, + 53.798721998901954 ], [ - -1.5368064982495102, - 53.79889869762267 + -1.536185149656905, + 53.79872307898727 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2014304918", - "osm_node_id": 2014304918, + "osm_link": "https://www.openstreetmap.org/node/6309394782", + "osm_node_id": 6309394782, "type": "intersection" }, "type": "Feature" @@ -25640,40 +49146,40 @@ "coordinates": [ [ [ - -1.5365293678764174, - 53.79893810769667 + -1.5352287790091965, + 53.79797780482834 ], [ - -1.536541184338666, - 53.79894899848203 + -1.535232206255237, + 53.7979822573699 ], [ - -1.536477088290767, - 53.798973260381906 + -1.535162909197798, + 53.79800087512701 ], [ - -1.536470449999902, - 53.79896714049798 + -1.5351600239773417, + 53.79799712675431 ], [ - -1.5364583655699486, - 53.79896850566826 + -1.5351469544615652, + 53.79798088140776 ], [ - -1.5364440627937133, - 53.798924339981305 + -1.5351313910190827, + 53.797959943400755 ], [ - -1.536460366192471, - 53.79891512553152 + -1.5352006880765219, + 53.79794132564365 ], [ - -1.53653442881193, - 53.79892552528725 + -1.5352161693016404, + 53.797961429979466 ], [ - -1.5365293678764174, - 53.79893810769667 + -1.5352287790091965, + 53.79797780482834 ] ] ], @@ -25682,8 +49188,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2014304919", - "osm_node_id": 2014304919, + "osm_link": "https://www.openstreetmap.org/node/6309407701", + "osm_node_id": 6309407701, "type": "intersection" }, "type": "Feature" @@ -25693,50 +49199,71 @@ "coordinates": [ [ [ - -1.5364388541714542, - 53.79897367586852 + -1.5350501998496624, + 53.79785740004656 ], [ - -1.5363805011586797, - 53.79898182911873 + -1.5350448800817076, + 53.797875109488785 ], [ - -1.5363534607812108, - 53.798939794824115 + -1.5348949688989395, + 53.79785939474201 ], [ - -1.5363654371105562, - 53.79893710765098 + -1.5349002886668943, + 53.79784168529979 ], [ - -1.5363641216327333, - 53.79893177107622 + -1.5350501998496624, + 53.79785740004656 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6309407702", + "osm_node_id": 6309407702, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5360865497219451, + 53.79730202575106 ], [ - -1.5364234612538747, - 53.798926668325095 + -1.5360561049365922, + 53.79730242504988 ], [ - -1.5364409354887965, - 53.79892469341472 + -1.5360522742164509, + 53.79720058946184 ], [ - -1.5364552352199443, - 53.79896885910168 + -1.5360827190018038, + 53.79720019016302 ], [ - -1.5364388541714542, - 53.79897367586852 + -1.5360865497219451, + 53.79730202575106 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2014304920", - "osm_node_id": 2014304920, + "osm_link": "https://www.openstreetmap.org/node/6428423986", + "osm_node_id": 6428423986, "type": "intersection" }, "type": "Feature" @@ -25746,36 +49273,36 @@ "coordinates": [ [ [ - -1.5365333752116368, - 53.79898323475849 + -1.5360593997213243, + 53.796580900177474 ], [ - -1.5365070184563236, - 53.79899714007007 + -1.536060246255664, + 53.79660337782316 ], [ - -1.536467139989732, - 53.798970689221264 + -1.536029801470311, + 53.79660377712198 ], [ - -1.5364910515397405, - 53.79898613057425 + -1.5360289671163216, + 53.796581605245656 ], [ - -1.5365551475876393, - 53.798961868674375 + -1.5360213650552461, + 53.7965817815127 ], - [ - -1.5365390177588722, - 53.79894213845637 + [ + -1.5360201713809254, + 53.79656380946855 ], [ - -1.536565446073743, - 53.79897393127587 + -1.5360598443041071, + 53.796562915542815 ], [ - -1.5365333752116368, - 53.79898323475849 + -1.5360593997213243, + 53.796580900177474 ] ] ], @@ -25783,9 +49310,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2014304923", - "osm_node_id": 2014304923, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6500031458", + "osm_node_id": 6500031458, "type": "intersection" }, "type": "Feature" @@ -25795,34 +49322,50 @@ "coordinates": [ [ [ - -1.539065934943164, - 53.7960044188025 + -1.5358824999275758, + 53.79658500108426 ], [ - -1.5390340650568362, - 53.796035073080766 + -1.5358828333646628, + 53.796607483226566 ], [ - -1.538904323011474, - 53.7959880097794 + -1.5358523824891348, + 53.79660763970853 ], [ - -1.5389361928978016, - 53.79595735550113 + -1.5358521906486189, + 53.79656245059352 ], [ - -1.539065934943164, - 53.7960044188025 + -1.5358826415241469, + 53.79656251714332 + ], + [ + -1.5358826125958152, + 53.79656699756385 + ], + [ + -1.5359193409193332, + 53.79656614680556 + ], + [ + -1.535920534593654, + 53.79658411884971 + ], + [ + -1.5358824999275758, + 53.79658500108426 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/2142487689", - "osm_node_id": 2142487689, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6500031459", + "osm_node_id": 6500031459, "type": "intersection" }, "type": "Feature" @@ -25832,42 +49375,46 @@ "coordinates": [ [ [ - -1.5333887924681349, - 53.79969092986234 + -1.5361044609269308, + 53.79827289385031 ], [ - -1.5334250198747506, - 53.79969782945815 + -1.5361348585134267, + 53.79828255975956 ], [ - -1.533402233484593, - 53.799739570573905 + -1.536098774225926, + 53.79832215329518 ], [ - -1.5333660060779772, - 53.79973267097809 + -1.5360299476345136, + 53.79829592278018 ], [ - -1.533329777148818, - 53.79972576958363 + -1.5360761507479523, + 53.79826018553586 ], [ - -1.5333525696291506, - 53.79968402846788 + -1.5360801626508032, + 53.79826199497105 ], [ - -1.5333887924681349, - 53.79969092986234 + -1.536105522139943, + 53.79827195046188 + ], + [ + -1.5361044609269308, + 53.79827289385031 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2165840661", - "osm_node_id": 2165840661, + "osm_link": "https://www.openstreetmap.org/node/6584827765", + "osm_node_id": 6584827765, "type": "intersection" }, "type": "Feature" @@ -25877,36 +49424,52 @@ "coordinates": [ [ [ - -1.5353394968700727, - 53.79751827483995 + -1.5363911346044141, + 53.79840595028927 + ], + [ + -1.536452914863229, + 53.798417138750104 + ], + [ + -1.5364479361450805, + 53.79843488236655 + ], + [ + -1.5363864680077395, + 53.7984614096577 + ], + [ + -1.5363189218756432, + 53.79841053952772 ], [ - -1.5353696356241264, - 53.79756129928772 + -1.5363195978850799, + 53.79839255669172 ], [ - -1.5353344648628915, - 53.797569895004195 + -1.5363232489450558, + 53.79837522226662 ], [ - -1.5352964743505828, - 53.797568492062396 + -1.5363990107233696, + 53.798379627144136 ], [ - -1.5353015474664458, - 53.7975205474258 + -1.536397917536938, + 53.798386178702465 ], [ - -1.5353002167631853, - 53.79749863455412 + -1.5364004936810076, + 53.79838575781993 ], [ - -1.5353382559968949, - 53.797497828761905 + -1.536408614929511, + 53.79840309314434 ], [ - -1.5353394968700727, - 53.79751827483995 + -1.5363911346044141, + 53.79840595028927 ] ] ], @@ -25914,9 +49477,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2275824794", - "osm_node_id": 2275824794, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/6584937015", + "osm_node_id": 6584937015, "type": "intersection" }, "type": "Feature" @@ -25926,38 +49489,34 @@ "coordinates": [ [ [ - -1.5323195191092314, - 53.795837760108846 - ], - [ - -1.5322519181655592, - 53.79586793325002 + -1.5361421880391661, + 53.79816079070682 ], [ - -1.532189914092809, - 53.79582380353593 + -1.5361664665222248, + 53.79817206640185 ], [ - -1.5322636996093009, - 53.79579083710166 + -1.5361210444737434, + 53.79825815576686 ], [ - -1.5323032385486302, - 53.79580367042182 + -1.5360956849846037, + 53.798248200276035 ], [ - -1.5323195191092314, - 53.795837760108846 + -1.5361421880391661, + 53.79816079070682 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2377604550", - "osm_node_id": 2377604550, + "osm_link": "https://www.openstreetmap.org/node/6584937053", + "osm_node_id": 6584937053, "type": "intersection" }, "type": "Feature" @@ -25967,34 +49526,34 @@ "coordinates": [ [ [ - -1.5320478851191712, - 53.79956490432015 + -1.5324225968454375, + 53.79830702580546 ], [ - -1.5320721148808287, - 53.799523447390044 + -1.5324188331172222, + 53.79832487374321 ], [ - -1.532216034853837, - 53.79955279405461 + -1.5322642005262033, + 53.79831350002212 ], [ - -1.5321918050921792, - 53.79959425098472 + -1.5322679642544186, + 53.798295652084356 ], [ - -1.5320478851191712, - 53.79956490432015 + -1.5324225968454375, + 53.79830702580546 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/3174228063", - "osm_node_id": 3174228063, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6584937059", + "osm_node_id": 6584937059, "type": "intersection" }, "type": "Feature" @@ -26004,38 +49563,34 @@ "coordinates": [ [ [ - -1.5325961074567398, - 53.79699930148816 - ], - [ - -1.5324765238234537, - 53.79699393433646 + -1.5320177722483614, + 53.79731743562779 ], [ - -1.5324830631489734, - 53.79692275572465 + -1.5320211857915083, + 53.79729956250902 ], [ - -1.5325314221843995, - 53.79690181412037 + -1.5321535679277787, + 53.79730838485455 ], [ - -1.5325890413310734, - 53.796911621223124 + -1.532150154384632, + 53.79732625797332 ], [ - -1.5325961074567398, - 53.79699930148816 + -1.5320177722483614, + 53.79731743562779 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3181227677", - "osm_node_id": 3181227677, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/6584937066", + "osm_node_id": 6584937066, "type": "intersection" }, "type": "Feature" @@ -26045,42 +49600,34 @@ "coordinates": [ [ [ - -1.5323281427971809, - 53.79679902165407 - ], - [ - -1.5323033938480954, - 53.796831283020154 - ], - [ - -1.5322540649522838, - 53.79681808007879 + -1.5324227399645525, + 53.7973263236238 ], [ - -1.5322242550676857, - 53.796823347405784 + -1.5324193264214057, + 53.79734419674257 ], [ - -1.5322103390175694, - 53.79679587672621 + -1.5322258019721624, + 53.79733129957057 ], [ - -1.5323193942606417, - 53.79678208382983 + -1.5322292155153092, + 53.79731342645181 ], [ - -1.5323281427971809, - 53.79679902165407 + -1.5324227399645525, + 53.7973263236238 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/3181227681", - "osm_node_id": 3181227681, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6584937067", + "osm_node_id": 6584937067, "type": "intersection" }, "type": "Feature" @@ -26090,34 +49637,46 @@ "coordinates": [ [ [ - -1.5390433662767662, - 53.79550875856622 + -1.5367323640704935, + 53.79833919993734 ], [ - -1.5390566337232339, - 53.79552983147147 + -1.5367056434272177, + 53.79834827049565 ], [ - -1.5389139287401594, - 53.79556117912674 + -1.536698825476187, + 53.79834325048211 ], [ - -1.5389006612936917, - 53.795540106221495 + -1.5366903997189285, + 53.798348907215384 ], [ - -1.5390433662767662, - 53.79550875856622 + -1.5366600219255016, + 53.7983476625542 + ], + [ + -1.536669382524639, + 53.798303747777986 + ], + [ + -1.5367295778153827, + 53.79830920845914 + ], + [ + -1.5367323640704935, + 53.79833919993734 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/3193482754", - "osm_node_id": 3193482754, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6584937084", + "osm_node_id": 6584937084, "type": "intersection" }, "type": "Feature" @@ -26127,38 +49686,258 @@ "coordinates": [ [ [ - -1.535450634953031, - 53.7959827172714 + -1.5345670236273092, + 53.7973467301317 ], [ - -1.5354142370215123, - 53.79598788387437 + -1.5345672733244884, + 53.79734390985896 ], [ - -1.5354053423207705, - 53.79596602316334 + -1.5345680224160265, + 53.79734112106247 ], [ - -1.535481093441278, - 53.79595681590813 + -1.534569258721573, + 53.797338392520544 ], [ - -1.535487533801452, - 53.795978975193954 + -1.5345709731058652, + 53.797335756608746 ], [ - -1.535450634953031, - 53.7959827172714 + -1.5345731427307465, + 53.79733324030673 + ], + [ + -1.5345757462806042, + 53.79733087149346 + ], + [ + -1.53457875634965, + 53.7973286771486 + ], + [ + -1.5345821363968337, + 53.7973266806545 + ], + [ + -1.5345858514036481, + 53.79732490269557 + ], + [ + -1.534589861783955, + 53.79732336485552 + ], + [ + -1.5345941218614416, + 53.79732208332215 + ], + [ + -1.5345985844372503, + 53.79732107068596 + ], + [ + -1.5346032038350679, + 53.79732034043676 + ], + [ + -1.5346079252433185, + 53.7973198979705 + ], + [ + -1.5346126999406011, + 53.797319750481755 + ], + [ + -1.534617474637884, + 53.7973198979705 + ], + [ + -1.5346221960461346, + 53.79732034043676 + ], + [ + -1.5346268154439522, + 53.79732107068596 + ], + [ + -1.5346312780197608, + 53.79732208332215 + ], + [ + -1.5346355380972472, + 53.79732336485552 + ], + [ + -1.5346395484775543, + 53.79732490269557 + ], + [ + -1.5346432634843687, + 53.7973266806545 + ], + [ + -1.5346466435315522, + 53.7973286771486 + ], + [ + -1.5346496536005982, + 53.79733087149346 + ], + [ + -1.534652257150456, + 53.79733324030673 + ], + [ + -1.5346544267753373, + 53.797335756608746 + ], + [ + -1.5346561411596296, + 53.797338392520544 + ], + [ + -1.534657377465176, + 53.79734112106247 + ], + [ + -1.5346581265567139, + 53.79734390985896 + ], + [ + -1.5346583762538932, + 53.7973467301317 + ], + [ + -1.5346581265567139, + 53.79734955040444 + ], + [ + -1.534657377465176, + 53.79735233920092 + ], + [ + -1.5346561411596296, + 53.797355067742856 + ], + [ + -1.5346544267753373, + 53.797357703654654 + ], + [ + -1.534652257150456, + 53.79736021995667 + ], + [ + -1.5346496536005982, + 53.797362588769936 + ], + [ + -1.5346466435315522, + 53.7973647831148 + ], + [ + -1.5346432634843687, + 53.79736677960889 + ], + [ + -1.5346395484775543, + 53.79736855756783 + ], + [ + -1.5346355380972472, + 53.79737009540788 + ], + [ + -1.5346312780197608, + 53.79737137694125 + ], + [ + -1.5346268154439522, + 53.79737238957744 + ], + [ + -1.5346221960461346, + 53.79737311982663 + ], + [ + -1.534617474637884, + 53.79737356229289 + ], + [ + -1.5346126999406011, + 53.797373709781645 + ], + [ + -1.5346079252433185, + 53.79737356229289 + ], + [ + -1.5346032038350679, + 53.79737311982663 + ], + [ + -1.5345985844372503, + 53.79737238957744 + ], + [ + -1.5345941218614416, + 53.79737137694125 + ], + [ + -1.534589861783955, + 53.79737009540788 + ], + [ + -1.5345858514036481, + 53.79736855756783 + ], + [ + -1.5345821363968337, + 53.79736677960889 + ], + [ + -1.53457875634965, + 53.7973647831148 + ], + [ + -1.5345757462806042, + 53.797362588769936 + ], + [ + -1.5345731427307465, + 53.79736021995667 + ], + [ + -1.5345709731058652, + 53.797357703654654 + ], + [ + -1.534569258721573, + 53.797355067742856 + ], + [ + -1.5345680224160265, + 53.79735233920092 + ], + [ + -1.5345672733244884, + 53.79734955040444 + ], + [ + -1.5345670236273092, + 53.7973467301317 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3193487666", - "osm_node_id": 3193487666, + "osm_link": "https://www.openstreetmap.org/node/6596024418", + "osm_node_id": 6596024418, "type": "intersection" }, "type": "Feature" @@ -26168,38 +49947,50 @@ "coordinates": [ [ [ - -1.5343994646396286, - 53.79615047943273 + -1.5340016955104125, + 53.797239504908916 ], [ - -1.5343892179200136, - 53.79612882736433 + -1.5340167854417806, + 53.79724186382965 ], [ - -1.5344256219417072, - 53.79612281629832 + -1.5340089961078205, + 53.79725925131471 ], [ - -1.5344619224304241, - 53.796116330390475 + -1.5340039625780957, + 53.79725846440826 ], [ - -1.5344729426022778, - 53.796137851157916 + -1.534007202551252, + 53.797273538838006 ], [ - -1.5343994646396286, - 53.79615047943273 + -1.5339467849691168, + 53.79727806962055 + ], + [ + -1.533940199967284, + 53.79723177973582 + ], + [ + -1.5340010499518515, + 53.79723029225778 + ], + [ + -1.5340016955104125, + 53.797239504908916 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3193487669", - "osm_node_id": 3193487669, + "osm_link": "https://www.openstreetmap.org/node/6596024419", + "osm_node_id": 6596024419, "type": "intersection" }, "type": "Feature" @@ -26209,34 +50000,50 @@ "coordinates": [ [ [ - -1.5320651888291899, - 53.7965376805769 + -1.5333810000890873, + 53.797765799638384 ], [ - -1.53205481117081, - 53.796516050092215 + -1.5334003896840798, + 53.79778514674536 ], [ - -1.5322012966300813, - 53.79649152828838 + -1.5333741867056878, + 53.79779430903449 ], [ - -1.5322116742884613, - 53.79651315877307 + -1.5333570032766275, + 53.79777716346694 ], [ - -1.5320651888291899, - 53.7965376805769 + -1.5333513028727286, + 53.79777986323058 + ], + [ + -1.533332255850086, + 53.79776583021532 + ], + [ + -1.5333494971358097, + 53.79775766527393 + ], + [ + -1.533379871884149, + 53.79775639453241 + ], + [ + -1.5333810000890873, + 53.797765799638384 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/3193487681", - "osm_node_id": 3193487681, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6596024421", + "osm_node_id": 6596024421, "type": "intersection" }, "type": "Feature" @@ -26246,34 +50053,34 @@ "coordinates": [ [ [ - -1.5320651888291899, - 53.79657969508644 + -1.533566199268961, + 53.79795060034798 ], [ - -1.53205481117081, - 53.796558064601754 + -1.5335399962905694, + 53.7979597626371 ], [ - -1.5322012966300813, - 53.796533543697244 + -1.5334624394331433, + 53.79788237241055 ], [ - -1.5322116742884613, - 53.796555174181925 + -1.533488642411535, + 53.79787321012143 ], [ - -1.5320651888291899, - 53.79657969508644 + -1.533566199268961, + 53.79795060034798 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/3193487683", - "osm_node_id": 3193487683, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6596024422", + "osm_node_id": 6596024422, "type": "intersection" }, "type": "Feature" @@ -26283,36 +50090,44 @@ "coordinates": [ [ [ - -1.5334820893831214, - 53.79634251518512 + -1.5339996994555218, + 53.7972110197945 ], [ - -1.5331300087475477, - 53.79640145133111 + -1.533938849470954, + 53.79721250727254 ], [ - -1.5331196310891677, - 53.79637982084642 + -1.533937680157334, + 53.79719581676176 ], [ - -1.5331131069890858, - 53.79635767055382 + -1.533931972140716, + 53.79719705512769 ], [ - -1.5334727181261778, - 53.79632071922525 + -1.5339214696337464, + 53.7971801730614 ], [ - -1.5335084994274668, - 53.796314862842564 + -1.5339246289120825, + 53.79717580865336 ], [ - -1.5335186639297183, - 53.79633652930012 + -1.5339805245392018, + 53.797161527425324 ], [ - -1.5334820893831214, - 53.79634251518512 + -1.5339923760199572, + 53.79716447000581 + ], + [ + -1.534003253072696, + 53.79718126933451 + ], + [ + -1.5339996994555218, + 53.7972110197945 ] ] ], @@ -26321,8 +50136,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3371780106", - "osm_node_id": 3371780106, + "osm_link": "https://www.openstreetmap.org/node/6596024424", + "osm_node_id": 6596024424, "type": "intersection" }, "type": "Feature" @@ -26332,50 +50147,34 @@ "coordinates": [ [ [ - -1.5328310329163508, - 53.796409475079 - ], - [ - -1.5327953673283887, - 53.796415445675535 - ], - [ - -1.5327849896700088, - 53.79639381519085 - ], - [ - -1.5328216114154625, - 53.79638768451506 - ], - [ - -1.5328583351713494, - 53.79638162038907 + -1.5355670212443866, + 53.79527600962274 ], [ - -1.5328685818909644, - 53.796403272457475 + -1.5356424389278067, + 53.79528213400328 ], [ - -1.5328610392090962, - 53.79638357101776 + -1.5356242947736234, + 53.795360090802475 ], [ - -1.5328675617866343, - 53.79640572131037 + -1.5355488770902033, + 53.79535396642194 ], [ - -1.5328310329163508, - 53.796409475079 + -1.5355670212443866, + 53.79527600962274 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3371780107", - "osm_node_id": 3371780107, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/6665254427", + "osm_node_id": 6665254427, "type": "intersection" }, "type": "Feature" @@ -26385,28 +50184,32 @@ "coordinates": [ [ [ - -1.5331927116678912, - 53.800067827478195 + -1.5356030096116293, + 53.79544654439277 ], [ - -1.5331643771282124, - 53.80008288841811 + -1.535596937707049, + 53.79548233739503 ], [ - -1.5330841542966338, - 53.800030233134635 + -1.5355206247678883, + 53.79547732637471 ], [ - -1.5331406924372266, - 53.800000122046654 + -1.5355280121502914, + 53.79544161970733 ], [ - -1.5332210066214318, - 53.80005278542402 + -1.5355243915411911, + 53.79545913489608 ], [ - -1.5331927116678912, - 53.800067827478195 + -1.5355998092246115, + 53.79546526467254 + ], + [ + -1.5356030096116293, + 53.79544654439277 ] ] ], @@ -26415,8 +50218,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3381506663", - "osm_node_id": 3381506663, + "osm_link": "https://www.openstreetmap.org/node/6665254428", + "osm_node_id": 6665254428, "type": "intersection" }, "type": "Feature" @@ -26426,24 +50229,24 @@ "coordinates": [ [ [ - -1.5329405738508879, - 53.79993627020845 + -1.5386089632217461, + 53.795759076657745 ], [ - -1.5329970845856928, - 53.79990614113403 + -1.5385898370268272, + 53.7957249240182 ], [ - -1.5331101547767034, - 53.79998013552197 + -1.5387541195003007, + 53.79572827489072 ], [ - -1.5330536440418985, - 53.80001026459639 + -1.538719907941645, + 53.79575803524325 ], [ - -1.5329405738508879, - 53.79993627020845 + -1.5386089632217461, + 53.795759076657745 ] ] ], @@ -26452,8 +50255,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3381506664", - "osm_node_id": 3381506664, + "osm_link": "https://www.openstreetmap.org/node/6665254444", + "osm_node_id": 6665254444, "type": "intersection" }, "type": "Feature" @@ -26463,58 +50266,34 @@ "coordinates": [ [ [ - -1.533815243277011, - 53.79997278446668 - ], - [ - -1.5337910805072794, - 53.80002832837135 - ], - [ - -1.5337901243497878, - 53.800030842874726 - ], - [ - -1.533695385585845, - 53.800018295538855 - ], - [ - -1.5336579203511391, - 53.80002519693331 - ], - [ - -1.533646589580355, - 53.800003733722455 - ], - [ - -1.5336699362666224, - 53.79996093500443 + -1.5344548410793202, + 53.79547438469355 ], [ - -1.533689563378444, - 53.79996467078662 + -1.5344783643806656, + 53.795492060860866 ], [ - -1.5337003368982058, - 53.7999550975075 + -1.5344544239023254, + 53.79550317647665 ], [ - -1.5338430266558425, - 53.80001112344858 + -1.5344069920960592, + 53.795496639307466 ], [ - -1.533815243277011, - 53.79997278446668 + -1.5344548410793202, + 53.79547438469355 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/3381506666", - "osm_node_id": 3381506666, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6665254450", + "osm_node_id": 6665254450, "type": "intersection" }, "type": "Feature" @@ -26524,40 +50303,24 @@ "coordinates": [ [ [ - -1.5335385194231062, - 53.799914031782315 - ], - [ - -1.5335968541653553, - 53.799945430698926 - ], - [ - -1.533545574890966, - 53.79997866603037 - ], - [ - -1.5335087415119273, - 53.79998433085754 - ], - [ - -1.5334496226596335, - 53.79991808052845 + -1.5344607774775043, + 53.795478891194406 ], [ - -1.5335137461133204, - 53.799893843809585 + -1.5343854922553926, + 53.7954805387517 ], [ - -1.5335148499575582, - 53.79989486274103 + -1.5344254696873296, + 53.795439053043296 ], [ - -1.5335459281211221, - 53.79990784265062 + -1.5344333366710223, + 53.795458281439814 ], [ - -1.5335385194231062, - 53.799914031782315 + -1.5344607774775043, + 53.795478891194406 ] ] ], @@ -26566,8 +50329,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3381506667", - "osm_node_id": 3381506667, + "osm_link": "https://www.openstreetmap.org/node/6665254454", + "osm_node_id": 6665254454, "type": "intersection" }, "type": "Feature" @@ -26577,28 +50340,28 @@ "coordinates": [ [ [ - -1.5340991520149962, - 53.796685420240685 + -1.5329031847433707, + 53.79547682455322 ], [ - -1.53406332351485, - 53.79671450969926 + -1.5328399900413874, + 53.79545175146521 ], [ - -1.5339972588178483, - 53.79666205316587 + -1.5328421672789878, + 53.795433811796634 ], [ - -1.5340657854681365, - 53.79664246953729 + -1.5328691147812863, + 53.79541183777108 ], [ - -1.5340730358215997, - 53.7966431835987 + -1.5329448826497751, + 53.795416208474364 ], [ - -1.5340991520149962, - 53.796685420240685 + -1.5329031847433707, + 53.79547682455322 ] ] ], @@ -26607,8 +50370,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3672602007", - "osm_node_id": 3672602007, + "osm_link": "https://www.openstreetmap.org/node/6665254462", + "osm_node_id": 6665254462, "type": "intersection" }, "type": "Feature" @@ -26618,32 +50381,32 @@ "coordinates": [ [ [ - -1.5336122074967964, - 53.79613878105651 + -1.532805735851506, + 53.79552040208382 ], [ - -1.533568842404957, - 53.796164037606154 + -1.5327310900977804, + 53.7955298242769 ], [ - -1.533561617934738, - 53.79615970917098 + -1.5327128134822885, + 53.79548617120329 ], [ - -1.5335365781797914, - 53.79616494951832 + -1.5327538094960118, + 53.79548018262032 ], [ - -1.5335111577889005, - 53.79612256448825 + -1.532778757898332, + 53.79547736684419 ], [ - -1.5335797894947094, - 53.796103112160644 + -1.532820539544644, + 53.79551495489249 ], [ - -1.5336122074967964, - 53.79613878105651 + -1.532805735851506, + 53.79552040208382 ] ] ], @@ -26652,8 +50415,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3672604268", - "osm_node_id": 3672604268, + "osm_link": "https://www.openstreetmap.org/node/6665254467", + "osm_node_id": 6665254467, "type": "intersection" }, "type": "Feature" @@ -26663,58 +50426,34 @@ "coordinates": [ [ [ - -1.532429367597611, - 53.79787071450381 - ], - [ - -1.5324312311911934, - 53.79787088627425 - ], - [ - -1.53242181578048, - 53.797906427466444 - ], - [ - -1.5324210712565733, - 53.79790987906299 - ], - [ - -1.5323021057760606, - 53.7979009254165 - ], - [ - -1.5323025701519124, - 53.79789876794382 - ], - [ - -1.532306365853547, - 53.79786286522432 + -1.5323313721125305, + 53.795418731071635 ], [ - -1.5323101432846562, - 53.797863004619174 + -1.5323734795832107, + 53.79538126892837 ], [ - -1.5323114892133545, - 53.79785649173168 + -1.5325003257503103, + 53.79543101040965 ], [ - -1.5324305338661437, - 53.79786507305901 + -1.53245821827963, + 53.79546847255292 ], [ - -1.532429367597611, - 53.79787071450381 + -1.5323313721125305, + 53.795418731071635 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4361246652", - "osm_node_id": 4361246652, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/6665254468", + "osm_node_id": 6665254468, "type": "intersection" }, "type": "Feature" @@ -26724,24 +50463,24 @@ "coordinates": [ [ [ - -1.5320581029104545, - 53.79788975584142 + -1.5338181878766743, + 53.800361922749715 ], [ - -1.5320618970895454, - 53.797853853121914 + -1.533781004312567, + 53.80035711677474 ], [ - -1.5322138560936929, - 53.79785945499656 + -1.5338135547759628, + 53.80026926294062 ], [ - -1.532210061914602, - 53.79789535771607 + -1.5338507383400701, + 53.80027407071424 ], [ - -1.5320581029104545, - 53.79788975584142 + -1.5338181878766743, + 53.800361922749715 ] ] ], @@ -26750,8 +50489,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/4361246653", - "osm_node_id": 4361246653, + "osm_link": "https://www.openstreetmap.org/node/6740071784", + "osm_node_id": 6740071784, "type": "intersection" }, "type": "Feature" @@ -26761,34 +50500,58 @@ "coordinates": [ [ [ - -1.5325379127885181, - 53.798084905045414 + -1.534129380599133, + 53.7999313617108 + ], + [ + -1.5341344247866642, + 53.79993228171686 + ], + [ + -1.5341125123366341, + 53.79997418650916 + ], + [ + -1.5340858465049343, + 53.79996932207827 + ], + [ + -1.5340832764510397, + 53.799972552441695 + ], + [ + -1.5340488273755548, + 53.79996299085375 + ], + [ + -1.5340403650772456, + 53.799961577120094 ], [ - -1.5324551640568147, - 53.79814946464977 + -1.5340605844585962, + 53.79991937735029 ], [ - -1.5323417299778415, - 53.79805607998741 + -1.534089567601924, + 53.7999242219961 ], [ - -1.5324107773381013, - 53.797998160074904 + -1.5341005253494826, + 53.799916699170375 ], [ - -1.5325379127885181, - 53.798084905045414 + -1.534129380599133, + 53.7999313617108 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4361246658", - "osm_node_id": 4361246658, + "osm_link": "https://www.openstreetmap.org/node/6740104094", + "osm_node_id": 6740104094, "type": "intersection" }, "type": "Feature" @@ -26798,34 +50561,42 @@ "coordinates": [ [ [ - -1.5324384967700944, - 53.798534709769314 + -1.533001795336137, + 53.79576934241455 ], [ - -1.5324631132578712, - 53.79860403847646 + -1.5330289955807024, + 53.795781457176695 ], [ - -1.532283710402154, - 53.798626264312084 + -1.5329705390349513, + 53.79582724523994 ], [ - -1.5322590908692897, - 53.79855693560494 + -1.5328519267845944, + 53.7958010668856 ], [ - -1.5324384967700944, - 53.798534709769314 + -1.5328575449711295, + 53.79576580448312 + ], + [ + -1.5329257594999435, + 53.79572499686326 + ], + [ + -1.533001795336137, + 53.79576934241455 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4361246660", - "osm_node_id": 4361246660, + "osm_link": "https://www.openstreetmap.org/node/6905250281", + "osm_node_id": 6905250281, "type": "intersection" }, "type": "Feature" @@ -26835,36 +50606,32 @@ "coordinates": [ [ [ - -1.5322386628994418, - 53.79872642716183 - ], - [ - -1.5321197674559426, - 53.79871715155818 + -1.5340567948471369, + 53.796631494215696 ], [ - -1.5321203307971398, - 53.79871463525616 + -1.5339882681968486, + 53.79665107694495 ], [ - -1.5321250034839897, - 53.798678769408845 + -1.5339828357606544, + 53.79664444534699 ], [ - -1.5321278567310266, - 53.79867889891117 + -1.533964256158951, + 53.796625904032226 ], [ - -1.532128984935965, - 53.79867311177625 + -1.5340297681725619, + 53.796603000108064 ], [ - -1.5322481239864683, - 53.798681216463095 + -1.5340385456374328, + 53.796611758601756 ], [ - -1.5322386628994418, - 53.79872642716183 + -1.5340567948471369, + 53.796631494215696 ] ] ], @@ -26873,8 +50640,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4361248196", - "osm_node_id": 4361248196, + "osm_link": "https://www.openstreetmap.org/node/6905278494", + "osm_node_id": 6905278494, "type": "intersection" }, "type": "Feature" @@ -26884,34 +50651,54 @@ "coordinates": [ [ [ - -1.5377065180295104, - 53.79660568997917 + -1.5339809264907587, + 53.796562286017654 ], [ - -1.537653259448212, - 53.796604603598595 + -1.5339277257661237, + 53.796579794011826 ], [ - -1.537665351490884, - 53.79656023196697 + -1.5339130332186814, + 53.79656421776059 ], [ - -1.5376957993213245, - 53.796559933392174 + -1.5339004691874387, + 53.79656518992731 ], [ - -1.5377065180295104, - 53.79660568997917 + -1.5338926828985662, + 53.79653007141629 + ], + [ + -1.533888917647807, + 53.79654352257044 + ], + [ + -1.5339385190789547, + 53.796522651113236 + ], + [ + -1.5339722038374637, + 53.79652452619891 + ], + [ + -1.5339785315293986, + 53.79655974723259 + ], + [ + -1.5339809264907587, + 53.796562286017654 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/4364076651", - "osm_node_id": 4364076651, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6905278495", + "osm_node_id": 6905278495, "type": "intersection" }, "type": "Feature" @@ -26921,34 +50708,34 @@ "coordinates": [ [ [ - -1.5376408689869594, - 53.79679346834279 + -1.5340867874369881, + 53.796792581611626 ], [ - -1.5375892912939901, - 53.79678555431214 + -1.5340593846941004, + 53.79680042549519 ], [ - -1.5376306953494456, - 53.79669140882365 + -1.533978596998781, + 53.796701943477636 ], [ - -1.537682273042415, - 53.7966993228543 + -1.5340059997416686, + 53.79669409959407 ], [ - -1.5376408689869594, - 53.79679346834279 + -1.5340867874369881, + 53.796792581611626 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4457813299", - "osm_node_id": 4457813299, + "osm_link": "https://www.openstreetmap.org/node/6905278499", + "osm_node_id": 6905278499, "type": "intersection" }, "type": "Feature" @@ -26958,34 +50745,34 @@ "coordinates": [ [ [ - -1.5367626611691, - 53.79662187417185 + -1.5338873098415793, + 53.796590662314145 ], [ - -1.5367018385903206, - 53.796620032361076 + -1.5339147125844668, + 53.79658281843058 ], [ - -1.5367162509897079, - 53.7965757083935 + -1.5339955002797865, + 53.796681300448135 ], [ - -1.5367466896848858, - 53.79657621561092 + -1.5339680975368988, + 53.7966891443317 ], [ - -1.5367626611691, - 53.79662187417185 + -1.5338873098415793, + 53.796590662314145 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4457813307", - "osm_node_id": 4457813307, + "osm_link": "https://www.openstreetmap.org/node/6905278500", + "osm_node_id": 6905278500, "type": "intersection" }, "type": "Feature" @@ -26995,34 +50782,46 @@ "coordinates": [ [ [ - -1.5367400118078824, - 53.7968827206221 + -1.5342175176132613, + 53.796608165811705 ], [ - -1.5366791892291027, - 53.79688087881133 + -1.5340877024857977, + 53.796628301623784 ], [ - -1.5366869876983256, - 53.79679106445598 + -1.534085229874705, + 53.79662273032607 ], [ - -1.536747810277105, - 53.79679290626675 + -1.534067620133387, + 53.79660279776069 ], [ - -1.5367400118078824, - 53.7968827206221 + -1.534065182540801, + 53.79657745307753 + ], + [ + -1.5341950585700155, + 53.79655745755963 + ], + [ + -1.534216007249835, + 53.79657621651024 + ], + [ + -1.5342175176132613, + 53.796608165811705 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4457813308", - "osm_node_id": 4457813308, + "osm_link": "https://www.openstreetmap.org/node/6905278501", + "osm_node_id": 6905278501, "type": "intersection" }, "type": "Feature" @@ -27032,28 +50831,48 @@ "coordinates": [ [ [ - -1.536398435201822, - 53.798667110602786 + -1.5340546693760249, + 53.80000851541575 ], [ - -1.5362745153638608, - 53.79865179695347 + -1.534064951114147, + 53.80001001818225 ], [ - -1.5362753253571497, - 53.798624989973284 + -1.5340416318336676, + 53.80006568799195 ], [ - -1.5364019066016321, - 53.798626322767994 + -1.5340125421122757, + 53.80006143599912 ], [ - -1.5364097629275184, - 53.79866143498376 + -1.5340093036616633, + 53.80006549733576 ], [ - -1.536398435201822, - 53.798667110602786 + -1.5339748667665287, + 53.80005591956002 + ], + [ + -1.5339677321263925, + 53.80005487364893 + ], + [ + -1.5339910757675723, + 53.79999920743652 + ], + [ + -1.5340169970753654, + 53.800003004372584 + ], + [ + -1.5340202203005402, + 53.79999895472713 + ], + [ + -1.5340546693760249, + 53.80000851541575 ] ] ], @@ -27061,9 +50880,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/4540786888", - "osm_node_id": 4540786888, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6935272506", + "osm_node_id": 6935272506, "type": "intersection" }, "type": "Feature" @@ -27073,40 +50892,40 @@ "coordinates": [ [ [ - -1.5335727020534302, - 53.80004089279433 + -1.5339175825794853, + 53.80018070403831 ], [ - -1.5335357133749263, - 53.80004619519487 + -1.5339059944988032, + 53.80019527304928 ], [ - -1.5335315385598913, - 53.80003603196073 + -1.5338715423782308, + 53.800185713259985 ], [ - -1.5335219891653258, - 53.80001437539572 + -1.533880767470972, + 53.800190055184984 ], [ - -1.5335588225443646, - 53.80000870966923 + -1.5338570766898112, + 53.80015751772715 ], [ - -1.5335633856080624, - 53.80001905906295 + -1.5339215366256727, + 53.800122874957296 ], [ - -1.533580671047556, - 53.800015875464254 + -1.5339559857011575, + 53.80013243834388 ], [ - -1.5335920018183398, - 53.80003733867511 + -1.533979617103111, + 53.800164991090185 ], [ - -1.5335727020534302, - 53.80004089279433 + -1.5339175825794853, + 53.80018070403831 ] ] ], @@ -27115,8 +50934,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4833244387", - "osm_node_id": 4833244387, + "osm_link": "https://www.openstreetmap.org/node/6935272509", + "osm_node_id": 6935272509, "type": "intersection" }, "type": "Feature" @@ -27126,42 +50945,50 @@ "coordinates": [ [ [ - -1.5356622441772503, - 53.799093142657796 + -1.533965187955742, + 53.80012087396659 ], [ - -1.535631100544304, - 53.79910606860809 + -1.5339307388802572, + 53.80011131058001 ], [ - -1.5355752810443735, - 53.79905914739955 + -1.5339558699878306, + 53.80009647267186 ], [ - -1.5356064246773198, - 53.79904622144925 + -1.533956868776548, + 53.80007849523178 ], [ - -1.535637589625879, - 53.799033293700326 + -1.5339638298466935, + 53.80006976461706 ], [ - -1.5356933847651089, - 53.79908022570073 + -1.5339982667418282, + 53.80007934239279 ], [ - -1.5356622441772503, - 53.799093142657796 + -1.5340067138146996, + 53.800079518659835 + ], + [ + -1.5340056388987935, + 53.80009749430127 + ], + [ + -1.533965187955742, + 53.80012087396659 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4833244388", - "osm_node_id": 4833244388, + "osm_link": "https://www.openstreetmap.org/node/6935272510", + "osm_node_id": 6935272510, "type": "intersection" }, "type": "Feature" @@ -27171,28 +50998,32 @@ "coordinates": [ [ [ - -1.5346222813085861, - 53.7995417144117 + -1.5365477799983054, + 53.79642422935023 ], [ - -1.5346173482667504, - 53.79956400859577 + -1.5365451368623095, + 53.796531029193865 ], [ - -1.5345615790107647, - 53.79957796876597 + -1.5365367187177699, + 53.79653111822671 ], [ - -1.5345193862776332, - 53.79954972466977 + -1.5365062769775044, + 53.79653069554553 ], [ - -1.5345915030861461, - 53.79951954073673 + -1.536469455778816, + 53.79653048330562 ], [ - -1.5346222813085861, - 53.7995417144117 + -1.536471218884509, + 53.796423678066056 + ], + [ + -1.5365477799983054, + 53.79642422935023 ] ] ], @@ -27201,8 +51032,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4833244389", - "osm_node_id": 4833244389, + "osm_link": "https://www.openstreetmap.org/node/6979945557", + "osm_node_id": 6979945557, "type": "intersection" }, "type": "Feature" @@ -27212,34 +51043,42 @@ "coordinates": [ [ [ - -1.5320469746379928, - 53.799671143886385 + -1.5376561263981428, + 53.797060025485614 ], [ - -1.5320730253620072, - 53.799628891955926 + -1.5376256998833153, + 53.797059300632355 ], [ - -1.532216088142869, - 53.799659665843976 + -1.5375876469467116, + 53.79705875564343 ], [ - -1.5321900374188548, - 53.799701917774435 + -1.5375883838578994, + 53.79704077460606 ], [ - -1.5320469746379928, - 53.799671143886385 + -1.5376272026340225, + 53.79703683377852 + ], + [ + -1.5376576291488502, + 53.797037544242635 + ], + [ + -1.5376561263981428, + 53.797060025485614 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/5335915830", - "osm_node_id": 5335915830, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6979945558", + "osm_node_id": 6979945558, "type": "intersection" }, "type": "Feature" @@ -27249,36 +51088,44 @@ "coordinates": [ [ [ - -1.5353274033048565, - 53.79763662467173 + -1.5365775777025534, + 53.79704419202838 + ], + [ + -1.5365809075057923, + 53.79706432873978 + ], + [ + -1.5365505997493794, + 53.7970660770211 ], [ - -1.535325011388584, - 53.797669315913566 + -1.5365468999680025, + 53.79704370009943 ], [ - -1.5352869843352246, - 53.79766834464617 + -1.5365432108444324, + 53.797021323177766 ], [ - -1.5352579311548833, - 53.79765381880264 + -1.5365735186008453, + 53.79701958029238 ], [ - -1.5352897979961233, - 53.79763158037651 + -1.5365746011294705, + 53.797026151635784 ], [ - -1.53529178034812, - 53.797612859197415 + -1.5365857750782455, + 53.7970263306008 ], [ - -1.535329770860429, - 53.79761426213921 + -1.5365849498595188, + 53.79704430983952 ], [ - -1.5353274033048565, - 53.79763662467173 + -1.5365775777025534, + 53.79704419202838 ] ] ], @@ -27286,9 +51133,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/5452444895", - "osm_node_id": 5452444895, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6979945559", + "osm_node_id": 6979945559, "type": "intersection" }, "type": "Feature" @@ -27298,62 +51145,75 @@ "coordinates": [ [ [ - -1.5352549149956622, - 53.7976907242658 + -1.5343510325221015, + 53.7977290839321 ], [ - -1.5352695710020539, - 53.79769523166598 + -1.5343087210305553, + 53.797754957416394 ], [ - -1.535251994756699, - 53.79771517322458 - ], - [ - -1.5352765244594806, - 53.79770195499475 + -1.5342962133334321, + 53.797747820399664 ], [ - -1.5351936706722564, - 53.79773185024553 + -1.534280368220351, + 53.797752053506734 ], [ - -1.5351771784780706, - 53.79771590347377 + -1.534267819414546, + 53.79773566606736 ], [ - -1.5351622773421307, - 53.79770019502225 - ], + -1.5343510325221015, + 53.7977290839321 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7105816299", + "osm_node_id": 7105816299, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5351541408681897, - 53.79769134299911 + -1.533580957285786, + 53.79762741022195 ], [ - -1.5352394642214193, - 53.79766397843949 + -1.5335486245461503, + 53.7976289606525 ], [ - -1.5352409913328269, - 53.79766564038592 + -1.533582699075866, + 53.797580173351506 ], [ - -1.5352700445131682, - 53.797680166229455 + -1.5336131956277073, + 53.79761131146483 ], [ - -1.5352549149956622, - 53.7976907242658 + -1.533580957285786, + 53.79762741022195 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5452444896", - "osm_node_id": 5452444896, + "osm_link": "https://www.openstreetmap.org/node/7105816301", + "osm_node_id": 7105816301, "type": "intersection" }, "type": "Feature" @@ -27363,40 +51223,32 @@ "coordinates": [ [ [ - -1.5351121369304863, - 53.797705288780165 - ], - [ - -1.5351106935589864, - 53.79772325542839 - ], - [ - -1.5350264755725385, - 53.79775179180413 + -1.5350156807371638, + 53.79845111961921 ], [ - -1.5349828790540452, - 53.79770689946527 + -1.535015018430621, + 53.79847131388719 ], [ - -1.5349449540111186, - 53.79766937077219 + -1.5349389064672387, + 53.798470443343824 ], [ - -1.5349733022536916, - 53.79764505311437 + -1.5349346555250152, + 53.798467494468085 ], [ - -1.535028323940683, - 53.797639979141536 + -1.534945374233201, + 53.798422976247025 ], [ - -1.5350419476623942, - 53.7976915129709 + -1.5350193455000336, + 53.798433264486874 ], [ - -1.5351121369304863, - 53.797705288780165 + -1.5350156807371638, + 53.79845111961921 ] ] ], @@ -27404,9 +51256,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/5452444899", - "osm_node_id": 5452444899, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7237435065", + "osm_node_id": 7237435065, "type": "intersection" }, "type": "Feature" @@ -27416,32 +51268,32 @@ "coordinates": [ [ [ - -1.534910224787579, - 53.79762986626942 + -1.5349199599324852, + 53.798420841257396 ], [ - -1.5348443747692497, - 53.79765243024999 + -1.5349092412242995, + 53.79846535947845 ], [ - -1.5348092740450285, - 53.7976036474456 + -1.5349415724413913, + 53.7984706169129 ], [ - -1.5348639440244078, - 53.797587795102615 + -1.5348680153064658, + 53.798459031851216 ], [ - -1.5348821825763053, - 53.797590709804126 + -1.5348762294301395, + 53.79844083497665 ], [ - -1.5348933671828866, - 53.79761270181612 + -1.5348792592922547, + 53.7984229375762 ], [ - -1.534910224787579, - 53.79762986626942 + -1.5349199599324852, + 53.798420841257396 ] ] ], @@ -27450,8 +51302,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5452444904", - "osm_node_id": 5452444904, + "osm_link": "https://www.openstreetmap.org/node/7237435066", + "osm_node_id": 7237435066, "type": "intersection" }, "type": "Feature" @@ -27461,46 +51313,34 @@ "coordinates": [ [ [ - -1.5348274288570183, - 53.79744117959091 - ], - [ - -1.5348462977420392, - 53.797459852206636 - ], - [ - -1.5347629293350187, - 53.79748924563593 - ], - [ - -1.5348227059262238, - 53.79747376381347 + -1.534577593126205, + 53.798322362837126 ], [ - -1.534749797394947, - 53.79748670145494 + -1.5346031353205978, + 53.79831257102284 ], [ - -1.5347245475289593, - 53.79744933643841 + -1.5347003999846656, + 53.79840110024753 ], [ - -1.5348099774602533, - 53.797422088790604 + -1.5346748577902727, + 53.79841089206182 ], [ - -1.5348274288570183, - 53.79744117959091 + -1.534577593126205, + 53.798322362837126 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5452444905", - "osm_node_id": 5452444905, + "osm_link": "https://www.openstreetmap.org/node/7237435069", + "osm_node_id": 7237435069, "type": "intersection" }, "type": "Feature" @@ -27510,42 +51350,34 @@ "coordinates": [ [ [ - -1.5353443781454197, - 53.79870862868676 - ], - [ - -1.5353178219368717, - 53.79875077089998 - ], - [ - -1.5353493157548865, - 53.798753610058476 + -1.5354259149322773, + 53.79845396417363 ], [ - -1.535311514038006, - 53.79875097144871 + -1.5354240635190453, + 53.79847191823135 ], [ - -1.5353013069045292, - 53.79870321836763 + -1.535362400496101, + 53.7984696996048 ], [ - -1.5353759328651857, - 53.79871210186703 + -1.5353642519093331, + 53.79845174554709 ], [ - -1.5353443781454197, - 53.79870862868676 + -1.5354259149322773, + 53.79845396417363 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5452444913", - "osm_node_id": 5452444913, + "osm_link": "https://www.openstreetmap.org/node/7237435070", + "osm_node_id": 7237435070, "type": "intersection" }, "type": "Feature" @@ -27555,44 +51387,36 @@ "coordinates": [ [ [ - -1.5354984306472597, - 53.79871324220691 - ], - [ - -1.5354639663463372, - 53.79874290183541 - ], - [ - -1.5354896486147573, - 53.79873945923208 + -1.5347714099038532, + 53.79843464494563 ], [ - -1.5353943617350552, - 53.79872846052812 + -1.5347701690306754, + 53.79848280631875 ], [ - -1.5354142354989686, - 53.79873570546345 + -1.534694050977118, + 53.79848212283429 ], [ - -1.535391394297235, - 53.79870235861612 + -1.5346443429679062, + 53.798448066422154 ], [ - -1.5354041790973254, - 53.7986993027211 + -1.5346951761369687, + 53.79843845177424 ], [ - -1.535409582605188, - 53.79868409249378 + -1.5347605115355016, + 53.79841537338167 ], [ - -1.5355046015171854, - 53.798695870010306 + -1.5347744397659682, + 53.798416748444495 ], [ - -1.5354984306472597, - 53.79871324220691 + -1.5347714099038532, + 53.79843464494563 ] ] ], @@ -27601,8 +51425,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5452444914", - "osm_node_id": 5452444914, + "osm_link": "https://www.openstreetmap.org/node/7237435071", + "osm_node_id": 7237435071, "type": "intersection" }, "type": "Feature" @@ -27612,36 +51436,40 @@ "coordinates": [ [ [ - -1.535638943167296, - 53.798833235998686 + -1.5348891649620637, + 53.798586704950694 ], [ - -1.5356281513770091, - 53.79885169187789 + -1.5348843050023295, + 53.798604461157645 ], [ - -1.5355561959581363, - 53.79883700955239 + -1.5348812279413575, + 53.79860416707946 ], [ - -1.5355636868735163, - 53.79882419601731 + -1.5348318092154631, + 53.7986208602882 ], [ - -1.535633096599195, - 53.798805725748956 + -1.5348353871933376, + 53.79857594456697 ], [ - -1.5355943691756984, - 53.79879188249057 + -1.5348146547147343, + 53.79857723329492 ], [ - -1.5356574481643546, - 53.79881705630261 + -1.534824427923235, + 53.798555583025156 ], [ - -1.535638943167296, - 53.798833235998686 + -1.5348979850581606, + 53.79856716808685 + ], + [ + -1.5348891649620637, + 53.798586704950694 ] ] ], @@ -27650,8 +51478,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5452444915", - "osm_node_id": 5452444915, + "osm_link": "https://www.openstreetmap.org/node/7237436996", + "osm_node_id": 7237436996, "type": "intersection" }, "type": "Feature" @@ -27661,32 +51489,40 @@ "coordinates": [ [ [ - -1.5354174541565118, - 53.798091822627654 + -1.5350109562838257, + 53.79859513699062 ], [ - -1.5353250540198096, - 53.79810942954721 + -1.5350103807622781, + 53.7986126243004 ], [ - -1.5353180152999313, - 53.79809653956979 + -1.534934104364168, + 53.79861674139498 ], [ - -1.535232984275107, - 53.798065584918085 + -1.5349343510162599, + 53.79860923925365 ], [ - -1.535272926688537, - 53.79802730619074 + -1.5349300894162297, + 53.79860883276026 ], [ - -1.5353633033645604, - 53.798006348398665 + -1.534934949375964, + 53.79859107655331 ], [ - -1.5354174541565118, - 53.798091822627654 + -1.5349355812316312, + 53.798571786103594 + ], + [ + -1.5350116931950135, + 53.79857265664697 + ], + [ + -1.5350109562838257, + 53.79859513699062 ] ] ], @@ -27695,8 +51531,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5452456321", - "osm_node_id": 5452456321, + "osm_link": "https://www.openstreetmap.org/node/7237436997", + "osm_node_id": 7237436997, "type": "intersection" }, "type": "Feature" @@ -27706,36 +51542,40 @@ "coordinates": [ [ [ - -1.5352645496526793, - 53.79802425569165 + -1.5351226089865806, + 53.79859821357004 ], [ - -1.5352246041941615, - 53.798062534418996 + -1.5351237645973068, + 53.79861618831215 ], [ - -1.5352845269495694, - 53.79805183249118 + -1.5351152216041775, + 53.79861637896835 ], [ - -1.5352143285462148, - 53.798069230768114 + -1.535111226449308, + 53.798626210352786 ], [ - -1.5351998263167443, - 53.798048815267 + -1.5350381885018103, + 53.798613288899105 ], [ - -1.5351842918025937, - 53.798028642582736 + -1.535046088981466, + 53.79859385185996 ], [ - -1.535253588860033, - 53.79801002482563 + -1.5350549852047517, + 53.798571985753 ], [ - -1.5352645496526793, - 53.79802425569165 + -1.5351290051929851, + 53.79858249342733 + ], + [ + -1.5351226089865806, + 53.79859821357004 ] ] ], @@ -27744,8 +51584,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5452456322", - "osm_node_id": 5452456322, + "osm_link": "https://www.openstreetmap.org/node/7237436998", + "osm_node_id": 7237436998, "type": "intersection" }, "type": "Feature" @@ -27755,34 +51595,34 @@ "coordinates": [ [ [ - -1.532062076749711, - 53.79881885584526 + -1.5351755189053542, + 53.79861502728789 ], [ - -1.5320017657456402, - 53.79881385921409 + -1.535174361772084, + 53.79859705344509 ], [ - -1.5320202707426986, - 53.798735931193185 + -1.5351748002646917, + 53.79857344625139 ], [ - -1.5320805817467693, - 53.79874092782436 + -1.5352509213633367, + 53.79857399124032 ], [ - -1.532062076749711, - 53.79881885584526 + -1.5351755189053542, + 53.79861502728789 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/5506378690", - "osm_node_id": 5506378690, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7237436999", + "osm_node_id": 7237436999, "type": "intersection" }, "type": "Feature" @@ -27792,32 +51632,44 @@ "coordinates": [ [ [ - -1.5321012883421283, - 53.79867769112217 + -1.535186912100433, + 53.798440162284045 ], [ - -1.5320966141327348, - 53.79871355786881 + -1.5351794272752282, + 53.798484910731446 ], [ - -1.5320911558132964, - 53.798696397912124 + -1.5351689597867655, + 53.798484300092035 ], [ - -1.5320308448092257, - 53.798691401280955 + -1.5351678148338457, + 53.79848711496884 ], [ - -1.5320563733007246, - 53.79871167738721 + -1.535093794845612, + 53.79847660729451 ], [ - -1.5320656273217976, - 53.79867612180587 + -1.535101660306761, + 53.79845727637532 ], [ - -1.5321012883421283, - 53.79867769112217 + -1.5351053250696307, + 53.79843942124299 + ], + [ + -1.5351088177850538, + 53.798439672153734 + ], + [ + -1.535112887544568, + 53.79842966360293 + ], + [ + -1.535186912100433, + 53.798440162284045 ] ] ], @@ -27826,8 +51678,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5506378693", - "osm_node_id": 5506378693, + "osm_link": "https://www.openstreetmap.org/node/7237437001", + "osm_node_id": 7237437001, "type": "intersection" }, "type": "Feature" @@ -27837,34 +51689,42 @@ "coordinates": [ [ [ - -1.5320014977779355, - 53.798380011154485 + -1.535253138187075, + 53.79846576866981 ], [ - -1.5321207007752775, - 53.79838778848825 + -1.5352526996944675, + 53.79848715274036 ], [ - -1.5321039847671565, - 53.79847717656513 + -1.5351765785958225, + 53.79848660955007 ], [ - -1.5319847817698145, - 53.79846939923137 + -1.5352113580633069, + 53.798486774125934 ], [ - -1.5320014977779355, - 53.798380011154485 + -1.5352188428885116, + 53.79844202567853 + ], + [ + -1.5352549896003072, + 53.79844781461209 + ], + [ + -1.535253138187075, + 53.79846576866981 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5506378741", - "osm_node_id": 5506378741, + "osm_link": "https://www.openstreetmap.org/node/7237437002", + "osm_node_id": 7237437002, "type": "intersection" }, "type": "Feature" @@ -27874,34 +51734,46 @@ "coordinates": [ [ [ - -1.5321418352054377, - 53.79827270769072 + -1.5358110195423613, + 53.79909656997266 ], [ - -1.5320225652161696, - 53.79826529188427 + -1.5357797373579314, + 53.79905557529389 ], [ - -1.5320385062495085, - 53.7981758543447 + -1.535743126270284, + 53.79907124327594 ], [ - -1.5321577762387766, - 53.79818327015115 + -1.5358041163288791, + 53.799044331974436 ], [ - -1.5321418352054377, - 53.79827270769072 + -1.5358074720153623, + 53.79904698767131 + ], + [ + -1.5358124431207922, + 53.79904544893194 + ], + [ + -1.53584778440693, + 53.799085276291194 + ], + [ + -1.5358110195423613, + 53.79909656997266 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5506378742", - "osm_node_id": 5506378742, + "osm_link": "https://www.openstreetmap.org/node/7237437041", + "osm_node_id": 7237437041, "type": "intersection" }, "type": "Feature" @@ -27911,50 +51783,79 @@ "coordinates": [ [ [ - -1.5328474368029978, - 53.7977788469971 + -1.5356363670232265, + 53.79884858022493 ], [ - -1.532881421502631, - 53.797781065623646 + -1.5355993631192848, + 53.7988878769844 ], [ - -1.5328682454087899, - 53.79785147531543 + -1.535566840061677, + 53.7988771921437 ], [ - -1.532860414966148, - 53.797850963601405 + -1.535600846076923, + 53.79883696188834 ], [ - -1.5327999121215612, - 53.797846852802074 + -1.5355486228253925, + 53.79884995888504 ], [ - -1.5328002790546114, - 53.79784496872319 + -1.5356205782442653, + 53.79886464121054 ], [ - -1.5327858179338232, - 53.79784288679353 + -1.5356363670232265, + 53.79884858022493 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7237437048", + "osm_node_id": 7237437048, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5353286426554906, + 53.79875314960579 ], [ - -1.5328142194654282, - 53.797774063505166 + -1.535355201909126, + 53.79871100919121 ], [ - -1.5328474368029978, - 53.7977788469971 + -1.5353690661927542, + 53.79870769429156 + ], + [ + -1.5353919073944877, + 53.79874104113889 + ], + [ + -1.5353286426554906, + 53.79875314960579 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5506378752", - "osm_node_id": 5506378752, + "osm_link": "https://www.openstreetmap.org/node/7237437070", + "osm_node_id": 7237437070, "type": "intersection" }, "type": "Feature" @@ -27964,36 +51865,36 @@ "coordinates": [ [ [ - -1.5328347144272023, - 53.79798294175369 + -1.5357956753461828, + 53.79903765810836 ], [ - -1.5328463969055985, - 53.79798488608713 + -1.5357346852875877, + 53.79906456761122 ], [ - -1.5328298773056246, - 53.798019509971226 + -1.5357325841771763, + 53.799063966864345 ], [ - -1.532793240334733, - 53.79801341167102 + -1.5356767890379461, + 53.799017034863944 ], [ - -1.5327342950524296, - 53.79799890471324 + -1.535675864853874, + 53.799015529399476 ], [ - -1.5327754646361436, - 53.79797239630785 + -1.5357386606493877, + 53.798990109173296 ], [ - -1.5328361014645826, - 53.79797581912611 + -1.535797872376852, + 53.79903555639363 ], [ - -1.5328347144272023, - 53.79798294175369 + -1.5357956753461828, + 53.79903765810836 ] ] ], @@ -28001,9 +51902,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5506378754", - "osm_node_id": 5506378754, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/7237437075", + "osm_node_id": 7237437075, "type": "intersection" }, "type": "Feature" @@ -28013,34 +51914,34 @@ "coordinates": [ [ [ - -1.5334344231051136, - 53.79811801986776 + -1.535630304253909, + 53.798802064610456 ], [ - -1.5334327757127475, - 53.798153980143844 + -1.5355608945282304, + 53.798820534878814 ], [ - -1.5332792789393859, - 53.79812202994306 + -1.5355524291848335, + 53.79879792503284 ], [ - -1.5333085026446303, - 53.798090469148555 + -1.5356082121437133, + 53.79878348912147 ], [ - -1.5334344231051136, - 53.79811801986776 + -1.535630304253909, + 53.798802064610456 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5506378774", - "osm_node_id": 5506378774, + "osm_link": "https://www.openstreetmap.org/node/7237437077", + "osm_node_id": 7237437077, "type": "intersection" }, "type": "Feature" @@ -28050,44 +51951,40 @@ "coordinates": [ [ [ - -1.5379477072342176, - 53.79607078964069 - ], - [ - -1.5378629045909595, - 53.79605226541303 + -1.5342264777833854, + 53.79893384401266 ], [ - -1.5378659877421068, - 53.79604734162692 + -1.5342260453809529, + 53.798978810095896 ], [ - -1.5378609831407137, - 53.79604611765013 + -1.5342140020596815, + 53.79897877052575 ], [ - -1.5378842811055802, - 53.79601288052004 + -1.5342135650896178, + 53.79898078680492 ], [ - -1.5379013275057007, - 53.79601704977528 + -1.5341833608661815, + 53.79897850072925 ], [ - -1.5379044852614931, - 53.79600987049043 + -1.5341881995103028, + 53.798956200249926 ], [ - -1.5379339586639167, - 53.796014394078405 + -1.5341502105205378, + 53.798954790113555 ], [ - -1.5379675825206747, - 53.7960437209579 + -1.5341521197904335, + 53.79893683965312 ], [ - -1.5379477072342176, - 53.79607078964069 + -1.5342264777833854, + 53.79893384401266 ] ] ], @@ -28096,8 +51993,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5728993687", - "osm_node_id": 5728993687, + "osm_link": "https://www.openstreetmap.org/node/7237437091", + "osm_node_id": 7237437091, "type": "intersection" }, "type": "Feature" @@ -28107,58 +52004,34 @@ "coordinates": [ [ [ - -1.5326469604188715, - 53.79674745454981 - ], - [ - -1.5326451211859897, - 53.796762225908154 - ], - [ - -1.5325853187115401, - 53.79675963046583 - ], - [ - -1.532586204832018, - 53.796752515932134 - ], - [ - -1.5325768122594614, - 53.79675420845551 - ], - [ - -1.5325680637229222, - 53.796737270631276 - ], - [ - -1.5325709793942541, - 53.79670189311562 + -1.5339412733606461, + 53.79894703166555 ], [ - -1.5326281646159519, - 53.79671378754396 + -1.5339431826305419, + 53.79892908120512 ], [ - -1.5326547147343248, - 53.796709336801044 + -1.5340285090288588, + 53.798932249515346 ], [ - -1.5326710851250087, - 53.79674341030028 + -1.5340265997589633, + 53.79895019997578 ], [ - -1.5326469604188715, - 53.79674745454981 + -1.5339412733606461, + 53.79894703166555 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5728993689", - "osm_node_id": 5728993689, + "osm_link": "https://www.openstreetmap.org/node/7237437092", + "osm_node_id": 7237437092, "type": "intersection" }, "type": "Feature" @@ -28168,36 +52041,36 @@ "coordinates": [ [ [ - -1.537633579047358, - 53.79648440656012 + -1.5341780182600702, + 53.79914569541861 ], [ - -1.5376370260864678, - 53.79648666385749 + -1.534147792721021, + 53.799143517261534 ], [ - -1.5376144163113883, - 53.79649871117052 + -1.5341523999384883, + 53.7991211996951 ], [ - -1.5375649930178625, - 53.796500680684964 + -1.534114420083986, + 53.79911971311639 ], [ - -1.5375510708775713, - 53.796447912086954 + -1.5341164328868584, + 53.799101766253244 ], [ - -1.5376308780546988, - 53.796457647243976 + -1.5341572385826097, + 53.79909889921578 ], [ - -1.5376375376611768, - 53.79648405852263 + -1.534187442806046, + 53.79910118529145 ], [ - -1.537633579047358, - 53.79648440656012 + -1.5341780182600702, + 53.79914569541861 ] ] ], @@ -28206,8 +52079,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5728993691", - "osm_node_id": 5728993691, + "osm_link": "https://www.openstreetmap.org/node/7237437093", + "osm_node_id": 7237437093, "type": "intersection" }, "type": "Feature" @@ -28217,54 +52090,71 @@ "coordinates": [ [ [ - -1.5340621222278104, - 53.7964672331136 + -1.5339055270778639, + 53.799111536483814 ], [ - -1.5339954652612797, - 53.796508931061915 + -1.5339075398807362, + 53.79909358962067 ], [ - -1.5339464667574674, - 53.79651977328391 + -1.5339960133770392, + 53.7990970529084 ], [ - -1.533899377523551, - 53.79644553607912 + -1.5339940005741668, + 53.79911499977154 ], [ - -1.5338818210712653, - 53.7964373162791 - ], + -1.5339055270778639, + 53.799111536483814 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7237437094", + "osm_node_id": 7237437094, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5339190746723863, - 53.79640956141388 + -1.5339421412105987, + 53.79928828106993 ], [ - -1.5339758351043704, - 53.796398140928055 + -1.5339622996901983, + 53.79927480023817 ], [ - -1.5339986032240027, - 53.79643761845118 + -1.5340993606034936, + 53.79928747617704 ], [ - -1.5340243037629484, - 53.79649292133764 + -1.534097076787829, + 53.79930541224832 ], [ - -1.5340621222278104, - 53.7964672331136 + -1.5339421412105987, + 53.79928828106993 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5728993707", - "osm_node_id": 5728993707, + "osm_link": "https://www.openstreetmap.org/node/7237437096", + "osm_node_id": 7237437096, "type": "intersection" }, "type": "Feature" @@ -28274,42 +52164,34 @@ "coordinates": [ [ [ - -1.5324892203160052, - 53.796699541389465 - ], - [ - -1.5324863031221296, - 53.796734918905116 - ], - [ - -1.532421088004555, - 53.796732233530626 + -1.5339533836738437, + 53.79882566550891 ], [ - -1.532408770625404, - 53.79670449845048 + -1.5339597996733174, + 53.798754928464035 ], [ - -1.5324737832446562, - 53.796685242174995 + -1.5339981281903445, + 53.79876911436398 ], [ - -1.532505659221159, - 53.79672763260099 + -1.5340436065729457, + 53.798771614478206 ], [ - -1.5324892203160052, - 53.796699541389465 + -1.5339533836738437, + 53.79882566550891 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/5728993713", - "osm_node_id": 5728993713, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7237437098", + "osm_node_id": 7237437098, "type": "intersection" }, "type": "Feature" @@ -28319,38 +52201,34 @@ "coordinates": [ [ [ - -1.5377325215546676, - 53.796418073493435 - ], - [ - -1.5376569242110816, - 53.7964127836834 + -1.5354026824367932, + 53.79759485927429 ], [ - -1.537623958093235, - 53.79639451306446 + -1.5354218801912698, + 53.79761255792466 ], [ - -1.5376881394035855, - 53.79632913777535 + -1.5353749888880441, + 53.797630303339744 ], [ - -1.5377727897924658, - 53.796347903021214 + -1.5353512250247823, + 53.79760743538845 ], [ - -1.5377325215546676, - 53.796418073493435 + -1.5354026824367932, + 53.79759485927429 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/5728993720", - "osm_node_id": 5728993720, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7237437116", + "osm_node_id": 7237437116, "type": "intersection" }, "type": "Feature" @@ -28360,58 +52238,71 @@ "coordinates": [ [ [ - -1.5343245189447792, - 53.79641319107612 - ], - [ - -1.5343322717376886, - 53.79641324503542 + -1.5340195442911033, + 53.796592797303774 ], [ - -1.5343318241098183, - 53.796435726278396 + -1.5339540322774925, + 53.796615699429296 ], [ - -1.5343338186421653, - 53.796442738289414 + -1.5339407998495318, + 53.79659365435732 ], [ - -1.5342380719542426, - 53.79645224052213 + -1.5339940005741668, + 53.79657614636315 ], [ - -1.5342348609094183, - 53.796440953135914 - ], + -1.5340195442911033, + 53.796592797303774 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/7241259893", + "osm_node_id": 7241259893, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5342329775227668, - 53.79644113389957 + -1.5338305813830142, + 53.796441964872784 ], [ - -1.5342268873476612, - 53.79641894043952 + -1.5337850177379617, + 53.79646583466842 ], [ - -1.5342235149131964, - 53.79641093917467 + -1.5337808292200328, + 53.79646976470409 ], [ - -1.5343177299220803, - 53.7963970842251 + -1.5338347699009431, + 53.79643803483711 ], [ - -1.5343245189447792, - 53.79641319107612 + -1.5338305813830142, + 53.796441964872784 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/5728993833", - "osm_node_id": 5728993833, + "osm_link": "https://www.openstreetmap.org/node/7241259894", + "osm_node_id": 7241259894, "type": "intersection" }, "type": "Feature" @@ -28421,42 +52312,34 @@ "coordinates": [ [ [ - -1.5339374532983112, - 53.79652176708004 - ], - [ - -1.533887848822076, - 53.79654263673859 - ], - [ - -1.5338575578136446, - 53.79654263224199 + -1.5327644627348154, + 53.79656384184413 ], [ - -1.5337950086702226, - 53.796472490548055 + -1.532690354439043, + 53.79657413188262 ], [ - -1.5338405768829064, - 53.79644862165175 + -1.5326517503415922, + 53.796533093137086 ], [ - -1.5338903701545699, - 53.796447528975925 + -1.5327686512527443, + 53.79651727586764 ], [ - -1.5339374532983112, - 53.79652176708004 + -1.5327644627348154, + 53.79656384184413 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/5728993834", - "osm_node_id": 5728993834, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7241259895", + "osm_node_id": 7241259895, "type": "intersection" }, "type": "Feature" @@ -28466,54 +52349,71 @@ "coordinates": [ [ [ - -1.5341780304404202, - 53.79646595068091 + -1.5320678867767616, + 53.796730015803405 ], [ - -1.534081327595006, - 53.79646083893657 + -1.5320521132232383, + 53.79669526961156 ], [ - -1.5341008663992886, - 53.79648050710138 + -1.5321991726815132, + 53.79667197718044 ], [ - -1.5340751658603429, - 53.79642520421492 + -1.5322149462350367, + 53.79670672337228 ], [ - -1.534077691760468, - 53.79642479502356 - ], + -1.5320678867767616, + 53.796730015803405 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/7261160050", + "osm_node_id": 7261160050, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5340771162389204, - 53.79642328596181 + -1.5357328125587426, + 53.799107584864416 ], [ - -1.5341718306421628, - 53.796410681069354 + -1.5357184214749682, + 53.79907263092927 ], [ - -1.5341768093603116, - 53.79642373562264 + -1.5357469585129693, + 53.79906430231133 ], [ - -1.5341828995354172, - 53.79644592908269 + -1.5357782406973992, + 53.7991052969901 ], [ - -1.5341780304404202, - 53.79646595068091 + -1.5357328125587426, + 53.799107584864416 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5728993836", - "osm_node_id": 5728993836, + "osm_link": "https://www.openstreetmap.org/node/7261942252", + "osm_node_id": 7261942252, "type": "intersection" }, "type": "Feature" @@ -28523,34 +52423,34 @@ "coordinates": [ [ [ - -1.533765649458582, - 53.8003639893909 + -1.536340038035278, + 53.799196482810984 ], [ - -1.5336701798736267, - 53.800353555460944 + -1.536311881633221, + 53.79915345116864 ], [ - -1.5337114956215432, - 53.800263715924594 + -1.5363491611175863, + 53.799160916437785 ], [ - -1.5338043220705027, - 53.80028052244786 + -1.5363873449929546, + 53.79915937410113 ], [ - -1.533765649458582, - 53.8003639893909 + -1.536340038035278, + 53.799196482810984 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/5851965030", - "osm_node_id": 5851965030, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7261942264", + "osm_node_id": 7261942264, "type": "intersection" }, "type": "Feature" @@ -28560,44 +52460,40 @@ "coordinates": [ [ [ - -1.5373744420966147, - 53.79572320361586 - ], - [ - -1.5373627657083935, - 53.79572124039666 + -1.5362900605358178, + 53.798950331276735 ], [ - -1.5373641603584927, - 53.79572971200674 + -1.5362671340716327, + 53.79899320913508 ], [ - -1.5373041355926518, - 53.79573106908313 + -1.5362377626796422, + 53.798987731366815 ], [ - -1.5372974379225794, - 53.79570793313398 + -1.536207046881497, + 53.79898902728934 ], [ - -1.5373083454261935, - 53.79569114099986 + -1.536201620535478, + 53.79894417631926 ], [ - -1.537353522345127, - 53.7956954019859 + -1.5362122189627054, + 53.798943729356395 ], [ - -1.5373575296803463, - 53.795701660365374 + -1.5362148499183512, + 53.79893764904262 ], [ - -1.5373827765012467, - 53.79570590426431 + -1.5362886049839675, + 53.798948786242114 ], [ - -1.5373744420966147, - 53.79572320361586 + -1.5362900605358178, + 53.798950331276735 ] ] ], @@ -28606,8 +52502,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6047091983", - "osm_node_id": 6047091983, + "osm_link": "https://www.openstreetmap.org/node/7261942265", + "osm_node_id": 7261942265, "type": "intersection" }, "type": "Feature" @@ -28617,48 +52513,32 @@ "coordinates": [ [ [ - -1.5370901131365469, - 53.795621191760766 - ], - [ - -1.5370750673589486, - 53.79563682916587 - ], - [ - -1.5370700064234357, - 53.79563512944792 - ], - [ - -1.5370622109993006, - 53.795645696477486 - ], - [ - -1.53700637931902, - 53.79563132711593 + -1.5363667480207475, + 53.79898491469136 ], [ - -1.5370159211008667, - 53.79561839217242 + -1.5362943754248801, + 53.79899886496903 ], [ - -1.5370085900525834, - 53.79561632373259 + -1.5362823884377286, + 53.79899605458883 ], [ - -1.5370217174250234, - 53.79560009457383 + -1.5362761262151763, + 53.79899488636998 ], [ - -1.5370225411212064, - 53.79560952576013 + -1.5362990465891861, + 53.798952006713 ], [ - -1.5370771304057655, - 53.795625474330535 + -1.5363397091658224, + 53.798942881296064 ], [ - -1.5370901131365469, - 53.795621191760766 + -1.5363667480207475, + 53.79898491469136 ] ] ], @@ -28667,8 +52547,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6047609624", - "osm_node_id": 6047609624, + "osm_link": "https://www.openstreetmap.org/node/7261942266", + "osm_node_id": 7261942266, "type": "intersection" }, "type": "Feature" @@ -28678,34 +52558,46 @@ "coordinates": [ [ [ - -1.536895416328596, - 53.797918685220736 + -1.5365386797541538, + 53.79885188793001 ], [ - -1.53683466378683, - 53.79791617071736 + -1.53656577951083, + 53.798861053816424 ], [ - -1.5368508773555047, - 53.79787373442596 + -1.5365315314111236, + 53.79890128676974 ], [ - -1.5368810054517523, - 53.79787112279585 + -1.5365544319920645, + 53.79887579909444 ], [ - -1.536895416328596, - 53.797918685220736 + -1.5364803693726052, + 53.79886540113735 + ], + [ + -1.536463973098677, + 53.79887447349431 + ], + [ + -1.53651084308629, + 53.79883904022071 + ], + [ + -1.5365386797541538, + 53.79885188793001 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6101189538", - "osm_node_id": 6101189538, + "osm_link": "https://www.openstreetmap.org/node/7261942269", + "osm_node_id": 7261942269, "type": "intersection" }, "type": "Feature" @@ -28715,28 +52607,36 @@ "coordinates": [ [ [ - -1.5362424110057915, - 53.7983915431562 + -1.5364580656288247, + 53.79880327329877 ], [ - -1.5362417349963549, - 53.798409525992206 + -1.5364746963744944, + 53.79881702932296 ], [ - -1.536154957613819, - 53.79846397542241 + -1.5364127471133202, + 53.79884316361054 ], [ - -1.5360513530774662, - 53.798430875888535 + -1.5364293626335521, + 53.79883381066523 ], [ - -1.5360866623901845, - 53.79835906235563 + -1.536413838777208, + 53.79878978886973 ], [ - -1.5362424110057915, - 53.7983915431562 + -1.536378803522369, + 53.79879251381438 + ], + [ + -1.5364542516566648, + 53.7987865207348 + ], + [ + -1.5364580656288247, + 53.79880327329877 ] ] ], @@ -28745,8 +52645,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6111971409", - "osm_node_id": 6111971409, + "osm_link": "https://www.openstreetmap.org/node/7261942271", + "osm_node_id": 7261942271, "type": "intersection" }, "type": "Feature" @@ -28756,24 +52656,20 @@ "coordinates": [ [ [ - -1.5376531970239171, - 53.796043301874 - ], - [ - -1.5376774526688188, - 53.796007096982414 + -1.5367814904679828, + 53.798759789297634 ], [ - -1.5377831202519887, - 53.79600611492315 + -1.5367574068705279, + 53.79874878160046 ], [ - -1.5377840794545679, - 53.796042084192464 + -1.5367708296164606, + 53.798704520585396 ], [ - -1.5376531970239171, - 53.796043301874 + -1.5367814904679828, + 53.798759789297634 ] ] ], @@ -28782,8 +52678,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6146456169", - "osm_node_id": 6146456169, + "osm_link": "https://www.openstreetmap.org/node/7261942276", + "osm_node_id": 7261942276, "type": "intersection" }, "type": "Feature" @@ -28793,56 +52689,24 @@ "coordinates": [ [ [ - -1.5337167225143276, - 53.799677897792094 - ], - [ - -1.5337162063719874, - 53.79969202073951 - ], - [ - -1.53367815191284, - 53.799691535105815 - ], - [ - -1.5336784198805447, - 53.79968417505731 - ], - [ - -1.5336664100552364, - 53.79968614367244 - ], - [ - -1.533656233372635, - 53.79966447901353 - ], - [ - -1.5336744445187445, - 53.79966149416492 - ], - [ - -1.5336692633022733, - 53.79965075806289 - ], - [ - -1.533705871344833, - 53.79964459770948 + -1.536703074895867, + 53.79892617729546 ], [ - -1.5337111225983178, - 53.7996554821996 + -1.5367203953538673, + 53.79888239112224 ], [ - -1.5337295864866942, - 53.79965245508287 + -1.5367537573330958, + 53.798887009138994 ], [ - -1.5337397662143832, - 53.79967411974177 + -1.5367839524212694, + 53.79888934197939 ], [ - -1.5337167225143276, - 53.799677897792094 + -1.536703074895867, + 53.79892617729546 ] ] ], @@ -28851,8 +52715,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6211582994", - "osm_node_id": 6211582994, + "osm_link": "https://www.openstreetmap.org/node/7261942277", + "osm_node_id": 7261942277, "type": "intersection" }, "type": "Feature" @@ -28862,50 +52726,71 @@ "coordinates": [ [ [ - -1.5335092759247928, - 53.7998897186211 + -1.5361330482088764, + 53.79917821758797 ], [ - -1.5334451555161934, - 53.79991395713862 + -1.536142046442595, + 53.799142640422914 ], [ - -1.5334684138949217, - 53.79991393375625 + -1.536332099492028, + 53.79915941097332 ], [ - -1.53340415950247, - 53.79988981934513 + -1.5363231012583094, + 53.79919498813838 ], [ - -1.5334246453289817, - 53.79989502461893 + -1.5361330482088764, + 53.79917821758797 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7261942280", + "osm_node_id": 7261942280, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5392521648851742, + 53.79879820292323 ], [ - -1.5334887535572308, - 53.79987077530956 + -1.539246577149515, + 53.79883346712435 ], [ - -1.5334453519243407, - 53.79985181850818 + -1.5391139346582587, + 53.798826133156176 ], [ - -1.5335093200785623, - 53.799876197319875 + -1.539119522393918, + 53.79879086895505 ], [ - -1.5335092759247928, - 53.7998897186211 + -1.5392521648851742, + 53.79879820292323 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/6211582997", - "osm_node_id": 6211582997, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/7275677007", + "osm_node_id": 7275677007, "type": "intersection" }, "type": "Feature" @@ -28915,54 +52800,71 @@ "coordinates": [ [ [ - -1.5333665694191745, - 53.79992476428706 + -1.5365096692050384, + 53.80037514547615 ], [ - -1.533344885350711, - 53.79996817544315 + -1.5364872908566127, + 53.80041696393357 ], [ - -1.5333317625459022, - 53.79997022949383 + -1.53636026198426, + 53.800393247921946 ], [ - -1.5332713480088547, - 53.79994287033014 + -1.5363826403326857, + 53.800351429464534 ], [ - -1.5332741708050162, - 53.79994966290668 - ], + -1.5365096692050384, + 53.80037514547615 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/7592482435", + "osm_node_id": 7592482435, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -1.5333061381341455, - 53.79990885348817 + -1.5320444654858494, + 53.800012842052276 ], [ - -1.533313065708328, - 53.79991074656027 + -1.5320755345141506, + 53.79997179161556 ], [ - -1.5333177140344774, - 53.7999071735553 + -1.5322145305805859, + 53.80000849653 ], [ - -1.5333780737599492, - 53.799934574087786 + -1.5321834615522845, + 53.80004954696671 ], [ - -1.5333665694191745, - 53.79992476428706 + -1.5320444654858494, + 53.800012842052276 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6211582998", - "osm_node_id": 6211582998, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/7692244823", + "osm_node_id": 7692244823, "type": "intersection" }, "type": "Feature" @@ -28972,38 +52874,42 @@ "coordinates": [ [ [ - -1.533137367201619, - 53.79999794388958 + -1.5328127197598083, + 53.800279295773116 ], [ - -1.5330808321061136, - 53.800028056776206 + -1.5327873633157563, + 53.80029606272623 ], [ - -1.5330539074419718, - 53.800010437266145 + -1.5326979199590678, + 53.800248873519834 ], [ - -1.533110402951339, - 53.79998029739987 + -1.5327232794482075, + 53.80023210476807 ], [ - -1.5331644456426823, - 53.800011976904834 + -1.5327485217014765, + 53.800215356700704 ], [ - -1.533137367201619, - 53.79999794388958 + -1.5328380959969297, + 53.800262457773584 + ], + [ + -1.5328127197598083, + 53.800279295773116 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6211583000", - "osm_node_id": 6211583000, + "osm_link": "https://www.openstreetmap.org/node/7692244824", + "osm_node_id": 7692244824, "type": "intersection" }, "type": "Feature" @@ -29013,40 +52919,32 @@ "coordinates": [ [ [ - -1.5337087261144138, - 53.79972623363361 - ], - [ - -1.5337050689642628, - 53.79973677548217 - ], - [ - -1.5336677788220914, - 53.79973226268606 + -1.5368130939091498, + 53.795460226672574 ], [ - -1.5336495752887007, - 53.79968860061923 + -1.5367568633223996, + 53.79539765726707 ], [ - -1.533677708852601, - 53.79970363727746 + -1.5367919670917083, + 53.79542711994413 ], [ - -1.5337157633117484, - 53.79970412291116 + -1.536818599427445, + 53.795418400121264 ], [ - -1.5337214149942464, - 53.79967665403023 + -1.5368243439851135, + 53.79537658616046 ], [ - -1.533744521118597, - 53.79971949951299 + -1.5368802152515324, + 53.79543926708185 ], [ - -1.5337087261144138, - 53.79972623363361 + -1.5368130939091498, + 53.795460226672574 ] ] ], @@ -29054,9 +52952,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/6211583002", - "osm_node_id": 6211583002, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7924241274", + "osm_node_id": 7924241274, "type": "intersection" }, "type": "Feature" @@ -29066,42 +52964,34 @@ "coordinates": [ [ [ - -1.5336483846594675, - 53.799748889345 - ], - [ - -1.5336120933060131, - 53.79978211298526 - ], - [ - -1.5335481251517915, - 53.79975773417357 + -1.5366904682333984, + 53.795318969319354 ], [ - -1.5335394146788468, - 53.79973584738221 + -1.5367171005691351, + 53.79531024949649 ], [ - -1.5336049540982457, - 53.79970563017427 + -1.5367816899212177, + 53.795379071885534 ], [ - -1.5336662243048955, - 53.79973248841579 + -1.536755057585481, + 53.7953877917084 ], [ - -1.5336483846594675, - 53.799748889345 + -1.5366904682333984, + 53.795318969319354 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6211583003", - "osm_node_id": 6211583003, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/7924269285", + "osm_node_id": 7924269285, "type": "intersection" }, "type": "Feature" @@ -29111,32 +53001,40 @@ "coordinates": [ [ [ - -1.5335535773810547, - 53.79977808312488 + -1.5353304270767965, + 53.797956884807775 ], [ - -1.5334879831500798, - 53.79975526013967 + -1.535240051923317, + 53.79797784080121 ], [ - -1.5335425800473579, - 53.799722206471195 + -1.5352382553216608, + 53.7979751383396 ], [ - -1.53357557661608, - 53.79973341561643 + -1.5352251584000962, + 53.79795890018762 ], [ - -1.5335357468708894, - 53.79973635639827 + -1.5352095568940194, + 53.797940309410166 ], [ - -1.5335444527762028, - 53.799758244088956 + -1.5352937748804671, + 53.79791177393374 ], [ - -1.5335535773810547, - 53.79977808312488 + -1.5353130076534507, + 53.79793416344591 + ], + [ + -1.5353261167553656, + 53.7979503980006 + ], + [ + -1.5353304270767965, + 53.797956884807775 ] ] ], @@ -29144,9 +53042,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6211583004", - "osm_node_id": 6211583004, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/8174077586", + "osm_node_id": 8174077586, "type": "intersection" }, "type": "Feature" @@ -29156,36 +53054,48 @@ "coordinates": [ [ [ - -1.534502248524886, - 53.79967537249686 + -1.5358000222086643, + 53.797886602819666 ], [ - -1.5344780172406844, - 53.799692008149016 + -1.5358109220995595, + 53.79789612483745 ], [ - -1.534449161991034, - 53.799677345608586 + -1.5357856965942722, + 53.79790620083738 ], [ - -1.534437485602813, - 53.799669868648266 + -1.5357758655291078, + 53.79789761321481 ], [ - -1.534489998137661, - 53.799637313203995 + -1.5357708091612265, + 53.79789991637759 ], [ - -1.5345028925609034, - 53.79964456983051 + -1.5357341706677912, + 53.79787187912537 ], [ - -1.5345296695382988, - 53.7996605714609 + -1.5357437276750756, + 53.79786752011326 ], [ - -1.534502248524886, - 53.79967537249686 + -1.5357697631736522, + 53.79785819055031 + ], + [ + -1.5358015721582288, + 53.797845042467564 + ], + [ + -1.5358318311932408, + 53.79787562120281 + ], + [ + -1.5358000222086643, + 53.797886602819666 ] ] ], @@ -29193,9 +53103,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6211583005", - "osm_node_id": 6211583005, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/8174077587", + "osm_node_id": 8174077587, "type": "intersection" }, "type": "Feature" @@ -29205,28 +53115,40 @@ "coordinates": [ [ [ - -1.5338173352521596, - 53.79965128866267 + -1.535782762652415, + 53.797777890118844 ], [ - -1.5338120307096426, - 53.79967355226981 + -1.5357769465351891, + 53.79781060384373 ], [ - -1.533766372666876, - 53.799669758031705 + -1.5357451101448247, + 53.797814310847635 ], [ - -1.533756192939187, - 53.799648093372795 + -1.5357147597571859, + 53.797815773144656 ], [ - -1.5337962617237504, - 53.79963256478561 + -1.5356999910825548, + 53.79780455950282 ], [ - -1.5338173352521596, - 53.79965128866267 + -1.5357088522873334, + 53.797772084997504 + ], + [ + -1.5357137975095192, + 53.797768415765105 + ], + [ + -1.5357441966185588, + 53.79776945538095 + ], + [ + -1.535782762652415, + 53.797777890118844 ] ] ], @@ -29234,9 +53156,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6211583008", - "osm_node_id": 6211583008, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/8174077588", + "osm_node_id": 8174077588, "type": "intersection" }, "type": "Feature" @@ -29246,36 +53168,32 @@ "coordinates": [ [ [ - -1.5338608404180265, - 53.79968319569602 - ], - [ - -1.5338291882554589, - 53.79969568277733 + -1.5361169899396667, + 53.79886783110449 ], [ - -1.5337869072147883, - 53.79965829078115 + -1.5360638105306446, + 53.79879996829166 ], [ - -1.5338370476264327, - 53.79967563150149 + -1.5361184485366046, + 53.79880184697461 ], [ - -1.5338423521689497, - 53.79965336789436 + -1.536151484691465, + 53.79883374051814 ], [ - -1.5338501643410662, - 53.799633310323266 + -1.5361437912777627, + 53.7988062338657 ], [ - -1.5338925032384005, - 53.79967068073573 + -1.5361164859776768, + 53.798861266955655 ], [ - -1.5338608404180265, - 53.79968319569602 + -1.5361169899396667, + 53.79886783110449 ] ] ], @@ -29284,8 +53202,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6211583009", - "osm_node_id": 6211583009, + "osm_link": "https://www.openstreetmap.org/node/8273166694", + "osm_node_id": 8273166694, "type": "intersection" }, "type": "Feature" @@ -29295,32 +53213,36 @@ "coordinates": [ [ [ - -1.5356409574927123, - 53.79868488749413 + -1.5347197545611513, + 53.80010893816946 ], [ - -1.5356178955221311, - 53.79870945965998 + -1.5347557155226061, + 53.8001163081105 ], [ - -1.5355208211760354, - 53.798708479399366 + -1.5347238913125918, + 53.80017048684488 ], [ - -1.5354951054116521, - 53.79863702199784 + -1.5346882729234865, + 53.80016318705093 ], [ - -1.535621662295434, - 53.79863502730239 + -1.5346591101199933, + 53.80015798357577 ], [ - -1.5356224281349535, - 53.798651963327984 + -1.534651977002401, + 53.80015575775465 ], [ - -1.5356409574927123, - 53.79868488749413 + -1.5346837738066275, + 53.8001015718257 + ], + [ + -1.5347197545611513, + 53.80010893816946 ] ] ], @@ -29329,8 +53251,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6211583013", - "osm_node_id": 6211583013, + "osm_link": "https://www.openstreetmap.org/node/8312439326", + "osm_node_id": 8312439326, "type": "intersection" }, "type": "Feature" @@ -29340,40 +53262,32 @@ "coordinates": [ [ [ - -1.5356075315666453, - 53.79878257181337 - ], - [ - -1.535551751652853, - 53.79879701132202 - ], - [ - -1.5356042291691943, - 53.79878966836063 + -1.5345825002847964, + 53.80034910022142 ], [ - -1.5355106140425585, - 53.79877446622721 + -1.5345521011757566, + 53.80034806240422 ], [ - -1.5355155684000068, - 53.79876382185598 + -1.5345368300616793, + 53.80035916632882 ], [ - -1.535485961013731, - 53.79875181860972 + -1.5345463398701067, + 53.80034207921718 ], [ - -1.5355204253146537, - 53.798722158981214 + -1.5345657614385184, + 53.8003220594176 ], [ - -1.5356174996607495, - 53.79872313924183 + -1.5345946258234315, + 53.8003277880966 ], [ - -1.5356075315666453, - 53.79878257181337 + -1.5345825002847964, + 53.80034910022142 ] ] ], @@ -29382,8 +53296,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6211583020", - "osm_node_id": 6211583020, + "osm_link": "https://www.openstreetmap.org/node/8312439329", + "osm_node_id": 8312439329, "type": "intersection" }, "type": "Feature" @@ -29393,54 +53307,75 @@ "coordinates": [ [ [ - -1.5355844680735204, - 53.79883213073236 + -1.5326536961525383, + 53.80012559630465 ], [ - -1.5355504605357306, - 53.798872360987716 + -1.532619536360371, + 53.80016578159393 ], [ - -1.535535184854022, - 53.7988678562855 + -1.5324890832870652, + 53.8001466853977 ], [ - -1.5354888447116435, - 53.79885931452832 + -1.5324841167492667, + 53.800128939982606 ], [ - -1.5354904159768208, - 53.79885634047157 + -1.5325151857775678, + 53.80008788954589 ], [ - -1.5354719292502876, - 53.79885298240448 + -1.5326536961525383, + 53.80012559630465 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8312439358", + "osm_node_id": 8312439358, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5324370183800875, + 53.800401361602006 ], [ - -1.53551748071499, - 53.79881421174819 + -1.5324194421347326, + 53.80041604932344 ], [ - -1.5354937929789167, - 53.79881060816628 + -1.5323106502917336, + 53.800370630881396 ], [ - -1.5355874081055525, - 53.7988258102997 + -1.5323282265370886, + 53.800355943159964 ], [ - -1.5355844680735204, - 53.79883213073236 + -1.5324370183800875, + 53.800401361602006 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/6211583022", - "osm_node_id": 6211583022, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/8312439359", + "osm_node_id": 8312439359, "type": "intersection" }, "type": "Feature" @@ -29450,48 +53385,36 @@ "coordinates": [ [ [ - -1.5327904464669033, - 53.796627239524895 - ], - [ - -1.5327918000083207, - 53.796630321500245 - ], - [ - -1.5327181088895427, - 53.796641606188494 - ], - [ - -1.5327157078380074, - 53.79663613921209 + -1.5322397378153478, + 53.800318999925295 ], [ - -1.5327133037413845, - 53.79663642969299 + -1.5322660595521542, + 53.80032998963604 ], [ - -1.5327011203460856, - 53.7966011834783 + -1.5322484833067995, + 53.80034467735747 ], [ - -1.5326996373884476, - 53.796597457588646 + -1.5322174005756044, + 53.80033170014585 ], [ - -1.53277374568422, - 53.7965871693488 + -1.5321811214025003, + 53.800324895878134 ], [ - -1.5327757813252492, - 53.796592285589746 + -1.532190335837435, + 53.80030775300855 ], [ - -1.532778546264747, - 53.79659196003531 + -1.5322166910702044, + 53.80029809429387 ], [ - -1.5327904464669033, - 53.796627239524895 + -1.5322397378153478, + 53.800318999925295 ] ] ], @@ -29500,8 +53423,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6264559092", - "osm_node_id": 6264559092, + "osm_link": "https://www.openstreetmap.org/node/8312439361", + "osm_node_id": 8312439361, "type": "intersection" }, "type": "Feature" @@ -29511,34 +53434,34 @@ "coordinates": [ [ [ - -1.5328342226455625, - 53.79667886598439 + -1.5319815889955153, + 53.800287471506365 ], [ - -1.5328270514643756, - 53.796632676823684 + -1.5319908034304501, + 53.80027032863679 ], [ - -1.5328921280304666, - 53.79660990869709 + -1.5320692144349348, + 53.80028503524398 ], [ - -1.5329221769544377, - 53.79668717301861 + -1.53206, + 53.800302178113554 ], [ - -1.5328342226455625, - 53.79667886598439 + -1.5319815889955153, + 53.800287471506365 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6264559102", - "osm_node_id": 6264559102, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/8312439365", + "osm_node_id": 8312439365, "type": "intersection" }, "type": "Feature" @@ -29548,32 +53471,44 @@ "coordinates": [ [ [ - -1.534409648934949, - 53.797119786309565 + -1.5321366539889667, + 53.800185372417076 ], [ - -1.5344285604511958, - 53.797139240435826 + -1.532147491455567, + 53.800202620507285 ], [ - -1.53437574645268, - 53.79715715492339 + -1.5321189437597595, + 53.80020887798743 ], [ - -1.5343328975031807, - 53.79713415117452 + -1.5321057006739924, + 53.80018779968625 ], [ - -1.5343365698787694, - 53.797116296042184 + -1.5320676644853704, + 53.80018866573301 ], [ - -1.534389726449635, - 53.797098740383966 + -1.5320664921266625, + 53.80017069189022 ], [ - -1.534409648934949, - 53.797119786309565 + -1.5321031184397476, + 53.800169858219036 + ], + [ + -1.5321394265411834, + 53.800167010966646 + ], + [ + -1.532143433876403, + 53.80018484091797 + ], + [ + -1.5321366539889667, + 53.800185372417076 ] ] ], @@ -29582,8 +53517,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6264670253", - "osm_node_id": 6264670253, + "osm_link": "https://www.openstreetmap.org/node/8312439368", + "osm_node_id": 8312439368, "type": "intersection" }, "type": "Feature" @@ -29593,50 +53528,34 @@ "coordinates": [ [ [ - -1.5343750247669299, - 53.797083209998135 - ], - [ - -1.5343218666735206, - 53.79710076475703 - ], - [ - -1.5343300259856183, - 53.79713012671007 - ], - [ - -1.5343007444237107, - 53.797079599221654 - ], - [ - -1.534304622342709, - 53.7970777250353 + -1.5345704128097555, + 53.800472551005676 ], [ - -1.534360499699303, - 53.79706341682761 + -1.534540013700716, + 53.80047151318848 ], [ - -1.5343367129978844, - 53.797072326407346 + -1.5345477055918741, + 53.80039295384376 ], [ - -1.5343661133182067, - 53.79712282871476 + -1.5345781047009137, + 53.80039399166097 ], [ - -1.5343750247669299, - 53.797083209998135 + -1.5345704128097555, + 53.800472551005676 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6264670255", - "osm_node_id": 6264670255, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/8312439373", + "osm_node_id": 8312439373, "type": "intersection" }, "type": "Feature" @@ -29646,28 +53565,36 @@ "coordinates": [ [ [ - -1.533515082906756, - 53.795877700782626 + -1.5369411565887265, + 53.7955203598157 ], [ - -1.5334863646860455, - 53.79590879392987 + -1.536974014605965, + 53.79553016332117 ], [ - -1.5334212881199547, - 53.795934753749044 + -1.536930238427306, + 53.79558135091169 ], [ - -1.5333258657338562, - 53.79585161505842 + -1.5369507120734671, + 53.795547431196454 ], [ - -1.5333548092910456, - 53.795831464857194 + -1.5369233001953169, + 53.7955395999034 ], [ - -1.533515082906756, - 53.795877700782626 + -1.536859953238956, + 53.79555857828849 + ], + [ + -1.536909524219228, + 53.7955092684816 + ], + [ + -1.5369411565887265, + 53.7955203598157 ] ] ], @@ -29675,9 +53602,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6264670261", - "osm_node_id": 6264670261, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8450014339", + "osm_node_id": 8450014339, "type": "intersection" }, "type": "Feature" @@ -29687,40 +53614,36 @@ "coordinates": [ [ [ - -1.5338181300200109, - 53.796428165681164 - ], - [ - -1.5337641893391005, - 53.79645989554814 + -1.5366153794194337, + 53.79549875181406 ], [ - -1.5337572998285123, - 53.7964558090305 + -1.536603482262365, + 53.795534032202966 ], [ - -1.5337560300270028, - 53.796456475427846 + -1.536566665631308, + 53.79552970017051 ], [ - -1.5337156186700895, - 53.7964295623277 + -1.5365296617273663, + 53.795526164037724 ], [ - -1.5337288084668246, - 53.796422652839354 + -1.53653938773701, + 53.79549065342246 ], [ - -1.533722983214336, - 53.796412822354235 + -1.5365747686092859, + 53.79549403487192 ], [ - -1.5337804653320704, - 53.79640093691911 + -1.5365997352821312, + 53.79550433390363 ], [ - -1.5338181300200109, - 53.796428165681164 + -1.5366153794194337, + 53.79549875181406 ] ] ], @@ -29729,8 +53652,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6264670275", - "osm_node_id": 6264670275, + "osm_link": "https://www.openstreetmap.org/node/8450014342", + "osm_node_id": 8450014342, "type": "intersection" }, "type": "Feature" @@ -29740,24 +53663,24 @@ "coordinates": [ [ [ - -1.5340593633784876, - 53.795282851661966 + -1.5390679751518241, + 53.79917164624457 ], [ - -1.5341561088551277, - 53.79527802050598 + -1.5390573051650391, + 53.79920650035501 ], [ - -1.5341673315253035, - 53.79535643146262 + -1.5389262095782597, + 53.79919249881601 ], [ - -1.5340705860486634, - 53.795361262618606 + -1.5389368795650449, + 53.799157644705566 ], [ - -1.5340593633784876, - 53.795282851661966 + -1.5390679751518241, + 53.79917164624457 ] ] ], @@ -29766,8 +53689,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/6264670282", - "osm_node_id": 6264670282, + "osm_link": "https://www.openstreetmap.org/node/8450268992", + "osm_node_id": 8450268992, "type": "intersection" }, "type": "Feature" @@ -29777,38 +53700,54 @@ "coordinates": [ [ [ - -1.5346724399907559, - 53.79539166958342 + -1.5376160180274412, + 53.79762254758971 ], [ - -1.534672287736378, - 53.795427642450015 + -1.5376142229483287, + 53.79764500545032 ], [ - -1.5346572313009734, - 53.79542762086629 + -1.5375838055687638, + 53.797644158289316 ], [ - -1.5346306385513748, - 53.79544132293118 + -1.537585600647876, + 53.7976217004287 ], [ - -1.534580595582532, - 53.795407438289494 + -1.5375475812072357, + 53.79762062214203 ], [ - -1.5346724399907559, - 53.79539166958342 + -1.537549042849261, + 53.797602657292444 + ], + [ + -1.537587024226307, + 53.797603734679804 + ], + [ + -1.5375873805015507, + 53.79759924166876 + ], + [ + -1.5376177978811156, + 53.79760008343384 + ], + [ + -1.5376160180274412, + 53.79762254758971 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6264671914", - "osm_node_id": 6264671914, + "osm_link": "https://www.openstreetmap.org/node/8481640857", + "osm_node_id": 8481640857, "type": "intersection" }, "type": "Feature" @@ -29818,32 +53757,32 @@ "coordinates": [ [ [ - -1.5367858175373954, - 53.79552447151435 + -1.53688505237311, + 53.79758389114726 ], [ - -1.5367846543139503, - 53.79554244535714 + -1.53688362118196, + 53.797601857795485 ], [ - -1.5367881089657789, - 53.795534176094435 + -1.5368456002187758, + 53.79760080019321 ], [ - -1.536774981593339, - 53.7955504052532 + -1.5368060201707645, + 53.79759359572735 ], [ - -1.5367039214302067, - 53.795545848390326 + -1.5368149879536075, + 53.79757640609305 ], [ - -1.5367158185872754, - 53.79551056800141 + -1.5368454388291355, + 53.79757633594596 ], [ - -1.5367858175373954, - 53.79552447151435 + -1.53688505237311, + 53.79758389114726 ] ] ], @@ -29852,8 +53791,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6264671921", - "osm_node_id": 6264671921, + "osm_link": "https://www.openstreetmap.org/node/8481640858", + "osm_node_id": 8481640858, "type": "intersection" }, "type": "Feature" @@ -29863,32 +53802,44 @@ "coordinates": [ [ [ - -1.5337229679888982, - 53.79614082341602 + -1.5365807689543087, + 53.797533693709894 ], [ - -1.5336661283846378, - 53.79615210450698 + -1.5365931609381047, + 53.79753595640321 ], [ - -1.5336549894543696, - 53.79613252357637 + -1.5365841657494739, + 53.797553140641575 ], [ - -1.5336150592212896, - 53.79610175598357 + -1.5365788307560813, + 53.79755216667621 ], [ - -1.5336626508946525, - 53.79608020823648 + -1.5365803137137195, + 53.7975679524694 ], [ - -1.5336833635801865, - 53.796078870945166 + -1.536549908514505, + 53.79756894891781 ], [ - -1.5337229679888982, - 53.79614082341602 + -1.5365477997913746, + 53.7975465000504 + ], + [ + -1.5365518862988703, + 53.79752414741043 + ], + [ + -1.5365821605593204, + 53.79752607915336 + ], + [ + -1.5365807689543087, + 53.797533693709894 ] ] ], @@ -29897,8 +53848,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6309354601", - "osm_node_id": 6309354601, + "osm_link": "https://www.openstreetmap.org/node/8481640859", + "osm_node_id": 8481640859, "type": "intersection" }, "type": "Feature" @@ -29908,36 +53859,44 @@ "coordinates": [ [ [ - -1.5331807338160022, - 53.795602636056856 + -1.5371618660570974, + 53.79759167657492 ], [ - -1.5331451199945285, - 53.7956105707719 + -1.5371705978456551, + 53.79759192748566 ], [ - -1.53311825318705, - 53.79556849870578 + -1.5371691179331044, + 53.79760989233524 ], [ - -1.5331654870626252, - 53.79555282712644 + -1.5371311000150076, + 53.797608799659415 ], [ - -1.5332144246646864, - 53.79557423997528 + -1.5370930790518234, + 53.797607727667994 + ], + [ + -1.537094531558586, + 53.79758976101977 + ], + [ + -1.5371314304070072, + 53.79759080153494 ], [ - -1.5331895158485045, - 53.795552638268894 + -1.5371315141469148, + 53.79758631841644 ], [ - -1.533216333934582, - 53.79559472112688 + -1.5371619619773553, + 53.79758651446856 ], [ - -1.5331807338160022, - 53.795602636056856 + -1.5371618660570974, + 53.79759167657492 ] ] ], @@ -29946,8 +53905,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6309354609", - "osm_node_id": 6309354609, + "osm_link": "https://www.openstreetmap.org/node/8481640860", + "osm_node_id": 8481640860, "type": "intersection" }, "type": "Feature" @@ -29957,48 +53916,56 @@ "coordinates": [ [ [ - -1.5353220256802385, - 53.797710125332074 + -1.5371653496372577, + 53.79741242018339 + ], + [ + -1.5371741225344975, + 53.797412714261576 + ], + [ + -1.5371724020600301, + 53.79743067191658 ], [ - -1.535344600436811, - 53.79771475683865 + -1.5371648319723739, + 53.79743041830787 ], [ - -1.535332112532757, - 53.79773599521909 + -1.537164434588448, + 53.797452078470165 ], [ - -1.53531880093252, - 53.79773326487852 + -1.5371339867580076, + 53.797451882418045 ], [ - -1.5352809504942386, - 53.79773089606525 + -1.5371343993673712, + 53.797429400275746 ], [ - -1.5352821091500524, - 53.79772443353976 + -1.5370963981972559, + 53.797428119641694 ], [ - -1.5352598480374977, - 53.79771758880258 + -1.537098133897161, + 53.79741016198669 ], [ - -1.53527742732794, - 53.79769764724398 + -1.5371349231224303, + 53.79741140215126 ], [ - -1.5352850293890157, - 53.797695051801654 + -1.537135054061195, + 53.797406920831406 ], [ - -1.535323056442375, - 53.79769602306905 + -1.5371655018916355, + 53.79740723019806 ], [ - -1.5353220256802385, - 53.797710125332074 + -1.5371653496372577, + 53.79741242018339 ] ] ], @@ -30007,8 +53974,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6309354662", - "osm_node_id": 6309354662, + "osm_link": "https://www.openstreetmap.org/node/8481640861", + "osm_node_id": 8481640861, "type": "intersection" }, "type": "Feature" @@ -30018,52 +53985,52 @@ "coordinates": [ [ [ - -1.5363911346044141, - 53.79840595028927 + -1.5371801122217137, + 53.79720650340111 ], [ - -1.536452914863229, - 53.798417138750104 + -1.5371784039275966, + 53.79722446105611 ], [ - -1.5364479361450805, - 53.79843488236655 + -1.5371708277497653, + 53.797224210145366 ], [ - -1.5363864680077395, - 53.7984614096577 + -1.5371701928490105, + 53.79724598901812 ], [ - -1.5363189218756432, - 53.79841053952772 + -1.53713974501857, + 53.79724567965147 ], [ - -1.5363195978850799, - 53.79839255669172 + -1.5371403997123938, + 53.797223200207135 ], [ - -1.5363232489450558, - 53.79837522226662 + -1.5371023970197348, + 53.797221927666975 ], [ - -1.5363990107233696, - 53.798379627144136 + -1.53710412053929, + 53.79720397001197 ], [ - -1.536397917536938, - 53.798386178702465 + -1.5371107725330488, + 53.79720419304375 ], [ - -1.5364004936810076, - 53.79838575781993 + -1.5371109445804956, + 53.79720025851146 ], [ - -1.536408614929511, - 53.79840309314434 + -1.537141386320761, + 53.79720072436009 ], [ - -1.5363911346044141, - 53.79840595028927 + -1.5371801122217137, + 53.79720650340111 ] ] ], @@ -30071,9 +54038,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/6584937015", - "osm_node_id": 6584937015, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8481640862", + "osm_node_id": 8481640862, "type": "intersection" }, "type": "Feature" @@ -30083,36 +54050,44 @@ "coordinates": [ [ [ - -1.5367323640704935, - 53.79833919993734 + -1.5371478997630363, + 53.79705240013722 ], [ - -1.5367056434272177, - 53.79834827049565 + -1.5371469131546693, + 53.797074875984265 ], [ - -1.536698825476187, - 53.79834325048211 + -1.5371164714144039, + 53.79707441013564 ], [ - -1.5366903997189285, - 53.798348907215384 + -1.537117458022771, + 53.79705195047639 ], [ - -1.5366600219255016, - 53.7983476625542 + -1.5371098483489767, + 53.79705183716186 ], [ - -1.536669382524639, - 53.798303747777986 + -1.5371106096208649, + 53.797033856124486 ], [ - -1.5367295778153827, - 53.79830920845914 + -1.5371486610349245, + 53.79703441909985 ], [ - -1.5367323640704935, - 53.79833919993734 + -1.5371867063588094, + 53.797034975779965 + ], + [ + -1.5371859511770962, + 53.79705295681733 + ], + [ + -1.5371478997630363, + 53.79705240013722 ] ] ], @@ -30121,8 +54096,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6584937084", - "osm_node_id": 6584937084, + "osm_link": "https://www.openstreetmap.org/node/8481640863", + "osm_node_id": 8481640863, "type": "intersection" }, "type": "Feature" @@ -30132,34 +54107,50 @@ "coordinates": [ [ [ - -1.5355670212443866, - 53.79527600962274 + -1.5376439262548625, + 53.797239622720056 ], [ - -1.5356424389278067, - 53.79528213400328 + -1.5376423960983672, + 53.79726209496982 ], [ - -1.5356242947736234, - 53.795360090802475 + -1.5376119695835397, + 53.797261357526054 ], [ - -1.5355488770902033, - 53.79535396642194 + -1.537613499740035, + 53.79723889966544 ], [ - -1.5355670212443866, - 53.79527600962274 + -1.537575497047376, + 53.79723762262867 + ], + [ + -1.537577226657106, + 53.79721966497367 + ], + [ + -1.5376149979231108, + 53.79721643461025 + ], + [ + -1.5376454244379385, + 53.79721714147708 + ], + [ + -1.5376439262548625, + 53.797239622720056 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/6665254427", - "osm_node_id": 6665254427, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8481640864", + "osm_node_id": 8481640864, "type": "intersection" }, "type": "Feature" @@ -30169,32 +54160,44 @@ "coordinates": [ [ [ - -1.5356031633885507, - 53.79544668648559 + -1.5365787470161736, + 53.79720452849073 ], [ - -1.5355967382538143, - 53.79548245790413 + -1.536581141977534, + 53.79722466700077 ], [ - -1.5355206247678883, - 53.79547732637471 + -1.5365507672291947, + 53.797225927849745 ], [ - -1.5355280121502914, - 53.79544161970733 + -1.5365480997324985, + 53.79720349966674 ], [ - -1.5355243915411911, - 53.79545913489608 + -1.5365495552843487, + 53.79718103281291 ], [ - -1.5355998092246115, - 53.79546526467254 + -1.5365799848442638, + 53.79718171989466 + ], + [ + -1.5365796727227896, + 53.79718654385607 + ], + [ + -1.5365878305123437, + 53.79718681814918 + ], + [ + -1.5365861039477011, + 53.79720477580418 ], [ - -1.5356031633885507, - 53.79544668648559 + -1.5365787470161736, + 53.79720452849073 ] ] ], @@ -30203,8 +54206,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6665254428", - "osm_node_id": 6665254428, + "osm_link": "https://www.openstreetmap.org/node/8481640865", + "osm_node_id": 8481640865, "type": "intersection" }, "type": "Feature" @@ -30214,34 +54217,50 @@ "coordinates": [ [ [ - -1.5386089632217461, - 53.795759076657745 + -1.5374439995090396, + 53.7970566997941 ], [ - -1.5385898370268272, - 53.7957249240182 + -1.5374432351920637, + 53.79707917833911 ], [ - -1.5387541195003007, - 53.79572827489072 + -1.537412790406711, + 53.797078816811805 ], [ - -1.538719907941645, - 53.79575803524325 + -1.537405946572436, + 53.7970561521072 ], [ - -1.5386089632217461, - 53.795759076657745 + -1.5374066895737988, + 53.797038171069836 + ], + [ + -1.5374447425104025, + 53.79703871875673 + ], + [ + -1.5374827893568308, + 53.79703926374566 + ], + [ + -1.5374820524456432, + 53.797057244783026 + ], + [ + -1.5374439995090396, + 53.7970566997941 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6665254444", - "osm_node_id": 6665254444, + "osm_link": "https://www.openstreetmap.org/node/8481640866", + "osm_node_id": 8481640866, "type": "intersection" }, "type": "Feature" @@ -30251,24 +54270,48 @@ "coordinates": [ [ [ - -1.5343854648496047, - 53.7954805180673 + -1.5374777329889495, + 53.797216320396394 ], [ - -1.5344333366710223, - 53.795458281439814 + -1.5374760033792194, + 53.7972342780514 ], [ - -1.5344254696873296, - 53.795439053043296 + -1.5374380006865604, + 53.79723300011531 ], [ - -1.5344607774775043, - 53.795478891194406 + -1.5374372378921286, + 53.79725547866033 ], [ - -1.5343854648496047, - 53.7954805180673 + -1.5374067931067756, + 53.797255118931666 + ], + [ + -1.537399994948814, + 53.79723175905142 + ], + [ + -1.5374016758371432, + 53.79721379959777 + ], + [ + -1.5374081892794187, + 53.79721401273701 + ], + [ + -1.5374083202181834, + 53.797210160042994 + ], + [ + -1.5374387650035364, + 53.7972105215703 + ], + [ + -1.5374777329889495, + 53.797216320396394 ] ] ], @@ -30277,8 +54320,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6665254454", - "osm_node_id": 6665254454, + "osm_link": "https://www.openstreetmap.org/node/8481640867", + "osm_node_id": 8481640867, "type": "intersection" }, "type": "Feature" @@ -30288,32 +54331,48 @@ "coordinates": [ [ [ - -1.532805735851506, - 53.79552040208382 + -1.5374707399453844, + 53.79742272640967 ], [ - -1.5327310900977804, - 53.7955298242769 + -1.5374690012003918, + 53.797440684064675 ], [ - -1.5327128134822885, - 53.79548617120329 + -1.5374310000302767, + 53.79743939983334 ], [ - -1.5327538094960118, - 53.79548018262032 + -1.5374300393051537, + 53.79746187568038 ], [ - -1.532778757898332, - 53.79547736684419 + -1.5373995975648884, + 53.79746142062362 ], [ - -1.532820539544644, - 53.79551495489249 + -1.5373929988601613, + 53.79743810660878 ], [ - -1.532805735851506, - 53.79552040208382 + -1.5373947497855043, + 53.79742015075242 + ], + [ + -1.5374011886231347, + 53.797420370186906 + ], + [ + -1.5374013180393558, + 53.79741656155966 + ], + [ + -1.5374317628247087, + 53.797416921288324 + ], + [ + -1.5374707399453844, + 53.79742272640967 ] ] ], @@ -30322,8 +54381,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6665254467", - "osm_node_id": 6665254467, + "osm_link": "https://www.openstreetmap.org/node/8481640868", + "osm_node_id": 8481640868, "type": "intersection" }, "type": "Feature" @@ -30333,71 +54392,50 @@ "coordinates": [ [ [ - -1.5323313721125305, - 53.795418731071635 + -1.5374628805744106, + 53.79760021383548 ], [ - -1.5323734795832107, - 53.79538126892837 + -1.5374614189323854, + 53.79761817868506 ], [ - -1.5325003257503103, - 53.79543101040965 + -1.5374233994917448, + 53.797617100398384 ], [ - -1.53245821827963, - 53.79546847255292 + -1.5373853785285605, + 53.797616037400175 ], [ - -1.5323313721125305, - 53.795418731071635 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/6665254468", - "osm_node_id": 6665254468, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -1.5338181878766743, - 53.800361922749715 + -1.537386818854973, + 53.79759807075195 ], [ - -1.533781004312567, - 53.80035711677474 + -1.537393743384068, + 53.797598264106114 ], [ - -1.5338135547759628, - 53.80026926294062 + -1.5373939184766023, + 53.79759416949457 ], [ - -1.5338507383400701, - 53.80027407071424 + -1.5374243602168678, + 53.79759462455134 ], [ - -1.5338181878766743, - 53.800361922749715 + -1.5374628805744106, + 53.79760021383548 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/6740071784", - "osm_node_id": 6740071784, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8481640869", + "osm_node_id": 8481640869, "type": "intersection" }, "type": "Feature" @@ -30407,48 +54445,44 @@ "coordinates": [ [ [ - -1.534129380599133, - 53.7999313617108 - ], - [ - -1.5341344247866642, - 53.79993228171686 + -1.5369786005078196, + 53.797604500002535 ], [ - -1.5341125123366341, - 53.79997418650916 + -1.5369405795446354, + 53.79760344240026 ], [ - -1.5340858465049343, - 53.79996932207827 + -1.5369420107357852, + 53.79758547575204 ], [ - -1.5340832764510397, - 53.799972552441695 + -1.5369790496582336, + 53.797586506374664 ], [ - -1.5340488273755548, - 53.79996299085375 + -1.536979162326473, + 53.79758201965888 ], [ - -1.5340403650772456, - 53.799961577120094 + -1.5370096101569135, + 53.79758228405945 ], [ - -1.5340605844585962, - 53.79991937735029 + -1.5370094822632363, + 53.797587362528894 ], [ - -1.534089567601924, - 53.7999242219961 + -1.5370180724552227, + 53.79758760534574 ], [ - -1.5341005253494826, - 53.799916699170375 + -1.53701661994846, + 53.79760557199396 ], [ - -1.534129380599133, - 53.7999313617108 + -1.5369786005078196, + 53.797604500002535 ] ] ], @@ -30457,8 +54491,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6740104094", - "osm_node_id": 6740104094, + "osm_link": "https://www.openstreetmap.org/node/8481640870", + "osm_node_id": 8481640870, "type": "intersection" }, "type": "Feature" @@ -30468,32 +54502,40 @@ "coordinates": [ [ [ - -1.533001795336137, - 53.79576934241455 + -1.5370227436195287, + 53.797050549333235 ], [ - -1.5330289955807024, - 53.795781457176695 + -1.5370221863685065, + 53.79707284621527 ], [ - -1.5329705390349513, - 53.79582724523994 + -1.536991738538066, + 53.79707258001606 ], [ - -1.5328519267845944, - 53.7958010668856 + -1.5369923003567196, + 53.7970500996724 ], [ - -1.5328575449711295, - 53.79576580448312 + -1.5369542413299409, + 53.797049734547805 ], [ - -1.5329257594999435, - 53.79572499686326 + -1.5369547346341246, + 53.79703174991315 ], [ - -1.533001795336137, - 53.79576934241455 + -1.5370311130426677, + 53.79703268071108 + ], + [ + -1.5370303517707795, + 53.79705066174844 + ], + [ + -1.5370227436195287, + 53.797050549333235 ] ] ], @@ -30502,8 +54544,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6905250281", - "osm_node_id": 6905250281, + "osm_link": "https://www.openstreetmap.org/node/8481640871", + "osm_node_id": 8481640871, "type": "intersection" }, "type": "Feature" @@ -30513,32 +54555,56 @@ "coordinates": [ [ [ - -1.5340567948471369, - 53.796631494215696 + -1.5370135291845939, + 53.79742532544928 ], [ - -1.5339882681968486, - 53.79665107694495 + -1.5370129856364658, + 53.79744704496681 ], [ - -1.5339828357606544, - 53.79664444534699 + -1.5369825378060253, + 53.79744678056624 ], [ - -1.533964256158951, - 53.796625904032226 + -1.5369830996246787, + 53.79742430022258 ], [ - -1.5340297681725619, - 53.796603000108064 + -1.5369451243378078, + 53.797422766879144 ], [ - -1.5340385456374328, - 53.796611758601756 + -1.536947201087519, + 53.797404821814645 ], [ - -1.5340567948471369, - 53.796631494215696 + -1.5369835365947426, + 53.79740628860828 + ], + [ + -1.5369836446953509, + 53.79740181987893 + ], + [ + -1.5370140925257911, + 53.79740207708492 + ], + [ + -1.537013964632114, + 53.79740732462684 + ], + [ + -1.5370228364946992, + 53.79740762320163 + ], + [ + -1.537021100794794, + 53.79742558085663 + ], + [ + -1.5370135291845939, + 53.79742532544928 ] ] ], @@ -30547,8 +54613,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6905278494", - "osm_node_id": 6905278494, + "osm_link": "https://www.openstreetmap.org/node/8481640872", + "osm_node_id": 8481640872, "type": "intersection" }, "type": "Feature" @@ -30558,44 +54624,56 @@ "coordinates": [ [ [ - -1.5339809264907587, - 53.796562286017654 + -1.5370185292183556, + 53.79721911908542 ], [ - -1.5339277257661237, - 53.796579794011826 + -1.537018002418209, + 53.797240837703626 ], [ - -1.5339130332186814, - 53.79656421776059 + -1.5369875545877685, + 53.79724058049763 ], [ - -1.5339004691874387, - 53.79656518992731 + -1.5369880996584404, + 53.79721810015397 ], [ - -1.5338926828985662, - 53.79653007141629 + -1.5369500954432378, + 53.79721684290229 ], [ - -1.533888917647807, - 53.79654352257044 + -1.5369517976471798, + 53.79719888524728 ], [ - -1.5339385190789547, - 53.796522651113236 + -1.5369885503313983, + 53.79720010113017 ], [ - -1.5339722038374637, - 53.79652452619891 + -1.536988661477094, + 53.79719561981032 ], [ - -1.5339785315293986, - 53.79655974723259 + -1.5370191093075345, + 53.797195886009526 ], [ - -1.5339809264907587, - 53.796562286017654 + -1.5370189783687698, + 53.797201119162295 + ], + [ + -1.5370278258706545, + 53.797201415039126 + ], + [ + -1.5370261023510994, + 53.79721937269413 + ], + [ + -1.5370185292183556, + 53.79721911908542 ] ] ], @@ -30604,8 +54682,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6905278495", - "osm_node_id": 6905278495, + "osm_link": "https://www.openstreetmap.org/node/8481640873", + "osm_node_id": 8481640873, "type": "intersection" }, "type": "Feature" @@ -30615,36 +54693,44 @@ "coordinates": [ [ [ - -1.5342175176132613, - 53.796608165811705 + -1.5368566995629058, + 53.797048800152595 ], [ - -1.5340877024857977, - 53.796628301623784 + -1.5368548298791485, + 53.797071256214565 ], [ - -1.534085229874705, - 53.79662273032607 + -1.536824415544671, + 53.79707037308069 ], [ - -1.534067620133387, - 53.79660279776069 + -1.5368262547775529, + 53.797048283042635 ], [ - -1.534065182540801, - 53.79657745307753 + -1.5368186511939335, + 53.79704815354032 ], [ - -1.5341950585700155, - 53.79655745755963 + -1.5368195251340613, + 53.7970301743016 ], [ - -1.534216007249835, - 53.79657621651024 + -1.5368573375087482, + 53.79703081731658 ], [ - -1.5342175176132613, - 53.796608165811705 + -1.536895251893868, + 53.797031179743215 + ], + [ + -1.5368947585896844, + 53.79704916437787 + ], + [ + -1.5368566995629058, + 53.797048800152595 ] ] ], @@ -30653,8 +54739,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6905278501", - "osm_node_id": 6905278501, + "osm_link": "https://www.openstreetmap.org/node/8481640874", + "osm_node_id": 8481640874, "type": "intersection" }, "type": "Feature" @@ -30664,48 +54750,48 @@ "coordinates": [ [ [ - -1.5340546693760249, - 53.80000851541575 + -1.53684440045428, + 53.79741870014657 ], [ - -1.534064951114147, - 53.80001001818225 + -1.5368445481410264, + 53.7974411831882 ], [ - -1.5340416318336676, - 53.80006568799195 + -1.5368140972654982, + 53.797441253335286 ], [ - -1.5340125573377135, - 53.800061438697085 + -1.5368063901489022, + 53.797417517538584 ], [ - -1.5340093295449075, - 53.800065491939826 + -1.5368079918649549, + 53.797399556286294 ], [ - -1.5339748865595977, - 53.80005592135867 + -1.536813820162531, + 53.79739973704995 ], [ - -1.533967727558761, - 53.800054872749605 + -1.5368137958018306, + 53.79739628905069 ], [ - -1.5339910803352035, - 53.79999920833584 + -1.5368442466773586, + 53.797396217104954 ], [ - -1.5340169970753654, - 53.80000300527191 + -1.536884452490862, + 53.79740228842551 ], [ - -1.5340202203005402, - 53.79999895472713 + -1.536882375741151, + 53.797420233490016 ], [ - -1.5340546693760249, - 53.80000851541575 + -1.53684440045428, + 53.79741870014657 ] ] ], @@ -30714,8 +54800,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6935272506", - "osm_node_id": 6935272506, + "osm_link": "https://www.openstreetmap.org/node/8481640875", + "osm_node_id": 8481640875, "type": "intersection" }, "type": "Feature" @@ -30725,40 +54811,44 @@ "coordinates": [ [ [ - -1.5339175825794853, - 53.80018070403831 + -1.5367390389024094, + 53.79756258172041 ], [ - -1.5339059944988032, - 53.80019527304928 + -1.5367541425366713, + 53.797565330946746 ], [ - -1.5338715423782308, - 53.800185713259985 + -1.536745174753828, + 53.797582520581045 ], [ - -1.5338807659484281, - 53.800190055184984 + -1.5367087996604663, + 53.79757589977495 ], [ - -1.533857078212355, - 53.80015751772715 + -1.536672433702367, + 53.79756925918378 ], [ - -1.5339215792568985, - 53.80012285966883 + -1.5366814288909978, + 53.79755207494541 ], [ - -1.5339560222422082, - 53.80013243024999 + -1.536708495151711, + 53.79755701761727 ], [ - -1.5339796536441617, - 53.800164982096966 + -1.5367084372950475, + 53.79755341763265 ], [ - -1.5339175825794853, - 53.80018070403831 + -1.5367388881705755, + 53.79755324676154 + ], + [ + -1.5367390389024094, + 53.79756258172041 ] ] ], @@ -30767,8 +54857,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6935272509", - "osm_node_id": 6935272509, + "osm_link": "https://www.openstreetmap.org/node/8481640876", + "osm_node_id": 8481640876, "type": "intersection" }, "type": "Feature" @@ -30778,34 +54868,50 @@ "coordinates": [ [ [ - -1.5335802066717041, - 53.79762258356258 + -1.5367441044055534, + 53.79706967160979 + ], + [ + -1.5367136839809008, + 53.79706886042165 + ], + [ + -1.536715399887737, + 53.79704639986307 + ], + [ + -1.536677349996221, + 53.79704579012298 + ], + [ + -1.5366781752149477, + 53.79702781088426 ], [ - -1.5335497923372268, - 53.797591416670954 + -1.5367162251064637, + 53.79702842062434 ], [ - -1.5336817024849265, - 53.797546506345654 + -1.5367543221968367, + 53.79702906723662 ], [ - -1.533712116819404, - 53.79757767323728 + -1.5367534482567091, + 53.79704704647535 ], [ - -1.5335802066717041, - 53.79762258356258 + -1.5367441044055534, + 53.79706967160979 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7105816301", - "osm_node_id": 7105816301, + "osm_link": "https://www.openstreetmap.org/node/8481640877", + "osm_node_id": 8481640877, "type": "intersection" }, "type": "Feature" @@ -30815,32 +54921,56 @@ "coordinates": [ [ [ - -1.5347701690306754, - 53.79848280631875 + -1.5367334694372752, + 53.797209701388944 ], [ - -1.534694050977118, - 53.79848212283429 + -1.5367338013518186, + 53.797231017111045 ], [ - -1.5346845091952714, - 53.79848245018737 + -1.5367033504762906, + 53.79723118258623 ], [ - -1.5346084368180273, - 53.798480741476205 + -1.5367030002912219, + 53.79720870044393 ], [ - -1.53460745020966, - 53.79848184314525 + -1.5366649991211068, + 53.797207424306485 ], [ - -1.534567991965151, - 53.79844338815086 + -1.5366667256857491, + 53.79718946665148 ], [ - -1.5347701690306754, - 53.79848280631875 + -1.5367043736257082, + 53.79719073109774 + ], + [ + -1.5367047161980578, + 53.79718623988535 + ], + [ + -1.5367351366227104, + 53.79718705107349 + ], + [ + -1.536734778824923, + 53.797191729344796 + ], + [ + -1.5367426945300164, + 53.79719198924875 + ], + [ + -1.5367410045064247, + 53.7972099487024 + ], + [ + -1.5367334694372752, + 53.797209701388944 ] ] ], @@ -30849,8 +54979,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7237435071", - "osm_node_id": 7237435071, + "osm_link": "https://www.openstreetmap.org/node/8481640878", + "osm_node_id": 8481640878, "type": "intersection" }, "type": "Feature" @@ -30860,34 +54990,66 @@ "coordinates": [ [ [ - -1.5353385026489865, - 53.798631649450215 + -1.5367366698242932, + 53.79741534747541 + ], + [ + -1.5367370139191867, + 53.797436710861554 + ], + [ + -1.5367065630436587, + 53.79743688173267 + ], + [ + -1.53670620067824, + 53.79741439959037 + ], + [ + -1.5366681888503182, + 53.79741323227085 + ], + [ + -1.5366697692507583, + 53.79739526921992 + ], + [ + -1.536705920530185, + 53.79739637898285 + ], + [ + -1.5367058504931714, + 53.797391917448074 + ], + [ + -1.5367363013686994, + 53.79739175197289 ], [ - -1.5353156979883036, - 53.79867455069092 + -1.5367363881536946, + 53.79739732776721 ], [ - -1.535174016154647, - 53.79861294266026 + -1.5367458126996705, + 53.79739762094607 ], [ - -1.5352501372532918, - 53.798613482253266 + -1.5367442109836178, + 53.79741558219836 ], [ - -1.5353385026489865, - 53.798631649450215 + -1.5367366698242932, + 53.79741534747541 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7237437005", - "osm_node_id": 7237437005, + "osm_link": "https://www.openstreetmap.org/node/8481640879", + "osm_node_id": 8481640879, "type": "intersection" }, "type": "Feature" @@ -30897,36 +55059,44 @@ "coordinates": [ [ [ - -1.5358110195423613, - 53.79909656997266 + -1.5372945999009802, + 53.79761350041376 ], [ - -1.5357797373579314, - 53.79905557529389 + -1.5372565819828834, + 53.79761240683862 ], [ - -1.535743126270284, - 53.79907124327594 + -1.5372580618954341, + 53.79759444198904 ], [ - -1.5358041163288791, - 53.799044331974436 + -1.5372947201819385, + 53.79759549689335 ], [ - -1.5358074720153623, - 53.79904698767131 + -1.537294750632814, + 53.797591017372135 ], [ - -1.5358124431207922, - 53.79904544893194 + -1.537325201508342, + 53.79759108931787 ], [ - -1.53584778440693, - 53.799085276291194 + -1.5373251664898353, + 53.79759634765165 ], [ - -1.5358110195423613, - 53.79909656997266 + -1.5373340596680332, + 53.797596596763746 + ], + [ + -1.5373326223867083, + 53.79761456341197 + ], + [ + -1.5372945999009802, + 53.79761350041376 ] ] ], @@ -30935,8 +55105,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7237437041", - "osm_node_id": 7237437041, + "osm_link": "https://www.openstreetmap.org/node/8481640880", + "osm_node_id": 8481640880, "type": "intersection" }, "type": "Feature" @@ -30946,32 +55116,44 @@ "coordinates": [ [ [ - -1.5356363670232265, - 53.79884858022493 + -1.5373286485474518, + 53.79705503874698 ], [ - -1.5355993631192848, - 53.7988878769844 + -1.5373285084734245, + 53.79707714946944 ], [ - -1.535566840061677, - 53.7988771921437 + -1.5372980575978965, + 53.797077082919635 ], [ - -1.535600846076923, - 53.79883696188834 + -1.5372982007170115, + 53.79705459987801 ], [ - -1.5355486228253925, - 53.79884995888504 + -1.5372601493029516, + 53.7970540431979 ], [ - -1.5356205782442653, - 53.79886464121054 + -1.5372609044846648, + 53.79703606216054 ], [ - -1.5356363670232265, - 53.79884858022493 + -1.5372989558987245, + 53.79703661884064 + ], + [ + -1.537336996654978, + 53.79703716742686 + ], + [ + -1.537336253653615, + 53.797055148464224 + ], + [ + -1.5373286485474518, + 53.79705503874698 ] ] ], @@ -30980,8 +55162,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7237437048", - "osm_node_id": 7237437048, + "osm_link": "https://www.openstreetmap.org/node/8481640881", + "osm_node_id": 8481640881, "type": "intersection" }, "type": "Feature" @@ -30991,34 +55173,66 @@ "coordinates": [ [ [ - -1.5353286426554906, - 53.79875314960579 + -1.5373262444508289, + 53.797435834922254 ], [ - -1.535355201909126, - 53.79871100919121 + -1.5373260998091702, + 53.797457354790374 ], [ - -1.5353690661927542, - 53.79870769429156 + -1.5372956489336422, + 53.79745728284464 ], [ - -1.5353919073944877, - 53.79874104113889 + -1.537295799665476, + 53.79743479980302 ], [ - -1.5353286426554906, - 53.79875314960579 + -1.537257796972817, + 53.79743352816219 + ], + [ + -1.5372595174472843, + 53.797415570507184 + ], + [ + -1.5372959138562592, + 53.79741678818871 + ], + [ + -1.5372959412620473, + 53.797412316761395 + ], + [ + -1.5373263921375753, + 53.7974123833112 + ], + [ + -1.5373263586416122, + 53.79741782330795 + ], + [ + -1.5373355517609342, + 53.79741813717121 + ], + [ + -1.5373338008355912, + 53.79743609302757 + ], + [ + -1.5373262444508289, + 53.797435834922254 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7237437070", - "osm_node_id": 7237437070, + "osm_link": "https://www.openstreetmap.org/node/8481640882", + "osm_node_id": 8481640882, "type": "intersection" }, "type": "Feature" @@ -31028,36 +55242,56 @@ "coordinates": [ [ [ - -1.5357956753461828, - 53.79903765810836 + -1.537327544703214, + 53.79722939383544 ], [ - -1.5357346852875877, - 53.79906456761122 + -1.5373274091968179, + 53.797250949676425 ], [ - -1.5357325841771763, - 53.799063966864345 + -1.5372969583212899, + 53.79725088312662 ], [ - -1.5356767890379461, - 53.799017034863944 + -1.537297099917861, + 53.797228400085 ], [ - -1.535675864853874, - 53.799015529399476 + -1.5372590957026584, + 53.79722713923603 ], [ - -1.5357386606493877, - 53.798990109173296 + -1.5372608039967754, + 53.797209181581024 ], [ - -1.535797872376852, - 53.79903555639363 + -1.5372972141086443, + 53.797210389370015 ], [ - -1.5357956753461828, - 53.79903765810836 + -1.5372972415144324, + 53.79720591704338 + ], + [ + -1.5373276923899604, + 53.79720598359318 + ], + [ + -1.5373276588939973, + 53.79721138401978 + ], + [ + -1.5373367865439367, + 53.79721168169525 + ], + [ + -1.5373351056556075, + 53.797229641148895 + ], + [ + -1.537327544703214, + 53.79722939383544 ] ] ], @@ -31065,9 +55299,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/7237437075", - "osm_node_id": 7237437075, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8481640883", + "osm_node_id": 8481640883, "type": "intersection" }, "type": "Feature" @@ -31077,34 +55311,58 @@ "coordinates": [ [ [ - -1.535630304253909, - 53.798802064610456 + -1.5368429997140058, + 53.79721329957493 ], [ - -1.5355608945282304, - 53.798820534878814 + -1.5368431534909273, + 53.797235782616546 ], [ - -1.5355524291848335, - 53.79879792503284 + -1.536812702615399, + 53.79723585456228 ], [ - -1.5356082121437133, - 53.79878348912147 + -1.536804995498803, + 53.79721205131646 ], [ - -1.535630304253909, - 53.798802064610456 + -1.5368066855223947, + 53.797194091862806 + ], + [ + -1.5368140911753232, + 53.79719433467966 + ], + [ + -1.5368144550632858, + 53.79718996037908 + ], + [ + -1.5368448693977632, + 53.79719084351295 + ], + [ + -1.5368827061331505, + 53.797196599171606 + ], + [ + -1.5368810039292085, + 53.79721455682661 + ], + [ + -1.5368429997140058, + 53.79721329957493 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7237437077", - "osm_node_id": 7237437077, + "osm_link": "https://www.openstreetmap.org/node/8481640884", + "osm_node_id": 8481640884, "type": "intersection" }, "type": "Feature" @@ -31114,34 +55372,54 @@ "coordinates": [ [ [ - -1.5341879848316304, - 53.798978683291544 + -1.5388016746326127, + 53.79946226204057 + ], + [ + -1.5387976870904625, + 53.799484620975804 + ], + [ + -1.5387380520958283, + 53.79948091037462 + ], + [ + -1.5387389686671817, + 53.799475768053334 + ], + [ + -1.538717838804653, + 53.79947362856709 + ], + [ + -1.5387229850026172, + 53.79945590113844 ], [ - -1.5341884141889754, - 53.7989337172083 + -1.538742167531656, + 53.79945784277391 ], [ - -1.534331819542187, - 53.79893444116224 + -1.5387460363153918, + 53.79943619070551 ], [ - -1.534348945114584, - 53.79897825431511 + -1.5388056682649383, + 53.79943990670263 ], [ - -1.5341879848316304, - 53.798978683291544 + -1.5388016746326127, + 53.79946226204057 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7237437091", - "osm_node_id": 7237437091, + "osm_link": "https://www.openstreetmap.org/node/8481692879", + "osm_node_id": 8481692879, "type": "intersection" }, "type": "Feature" @@ -31151,34 +55429,34 @@ "coordinates": [ [ [ - -1.5339533836738437, - 53.79882566550891 + -1.5325904192331912, + 53.795414889169486 ], [ - -1.5339597996733174, - 53.798754928464035 + -1.5326075021743624, + 53.7954 ], [ - -1.5339621261202077, - 53.798755002208416 + -1.5327375532961112, + 53.79542938263744 ], [ - -1.534037924439572, - 53.79875916966501 + -1.532735376058511, + 53.795447322306 ], [ - -1.5339533836738437, - 53.79882566550891 + -1.5325904192331912, + 53.795414889169486 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7237437098", - "osm_node_id": 7237437098, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/8660924478", + "osm_node_id": 8660924478, "type": "intersection" }, "type": "Feature" @@ -31188,38 +55466,34 @@ "coordinates": [ [ [ - -1.5353948382912572, - 53.797597277550246 - ], - [ - -1.5354144593129038, - 53.797615366506214 + -1.5335480414118838, + 53.80036231305532 ], [ - -1.5353824097664104, - 53.79762749475819 + -1.5335105411586711, + 53.80035845856266 ], [ - -1.5353457621377125, - 53.79758602253961 + -1.533536640604086, + 53.80026985739224 ], [ - -1.5353809328989474, - 53.79757742682314 + -1.533574140857299, + 53.8002737118849 ], [ - -1.5353948382912572, - 53.797597277550246 + -1.5335480414118838, + 53.80036231305532 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7237437116", - "osm_node_id": 7237437116, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/8674724110", + "osm_node_id": 8674724110, "type": "intersection" }, "type": "Feature" @@ -31229,34 +55503,42 @@ "coordinates": [ [ [ - -1.5340195442911033, - 53.796592797303774 + -1.5327924425217943, + 53.79672306944286 ], [ - -1.5339540322774925, - 53.796615699429296 + -1.5327559501925614, + 53.796729185729504 ], [ - -1.5339407998495318, - 53.79659365435732 + -1.5327395798018777, + 53.79669511223027 ], [ - -1.5339940005741668, - 53.79657614636315 + -1.5327403715246413, + 53.79669374436202 ], [ - -1.5340195442911033, - 53.796592797303774 + -1.5328142453486724, + 53.79668288235494 + ], + [ + -1.5328299275495691, + 53.796717070068034 + ], + [ + -1.5327924425217943, + 53.79672306944286 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/7241259893", - "osm_node_id": 7241259893, + "osm_link": "https://www.openstreetmap.org/node/8733041518", + "osm_node_id": 8733041518, "type": "intersection" }, "type": "Feature" @@ -31266,34 +55548,42 @@ "coordinates": [ [ [ - -1.5338305813830142, - 53.796441964872784 + -1.5328058667902709, + 53.796633824358125 ], [ - -1.5337850177379617, - 53.79646583466842 + -1.5328130379714575, + 53.79668001351884 ], [ - -1.5337808292200328, - 53.79646976470409 + -1.532739162624883, + 53.79669087282794 ], [ - -1.5338347699009431, - 53.79643803483711 + -1.5327377557944335, + 53.7966875381432 ], [ - -1.5338305813830142, - 53.796441964872784 + -1.5327175607737833, + 53.79664271415278 + ], + [ + -1.532792218707859, + 53.79663127747917 + ], + [ + -1.5328058667902709, + 53.796633824358125 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/7241259894", - "osm_node_id": 7241259894, + "osm_link": "https://www.openstreetmap.org/node/8733041519", + "osm_node_id": 8733041519, "type": "intersection" }, "type": "Feature" @@ -31303,34 +55593,50 @@ "coordinates": [ [ [ - -1.5327644627348154, - 53.79656384184413 + -1.5357483866590314, + 53.79637967245834 ], [ - -1.532690354439043, - 53.79657413188262 + -1.5357459049126758, + 53.796402107835924 ], [ - -1.5326517503415922, - 53.796533093137086 + -1.5357155179839865, + 53.79640093512047 ], [ - -1.5327686512527443, - 53.79651727586764 + -1.5356713626919272, + 53.79638687512556 ], [ - -1.5327644627348154, - 53.79656384184413 + -1.5356826447413103, + 53.796370169326316 + ], + [ + -1.535717999730342, + 53.79637849974289 + ], + [ + -1.5357204723414348, + 53.79635606436532 + ], + [ + -1.5357508592701243, + 53.796357233483484 + ], + [ + -1.5357483866590314, + 53.79637967245834 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7241259895", - "osm_node_id": 7241259895, + "osm_link": "https://www.openstreetmap.org/node/8740550411", + "osm_node_id": 8740550411, "type": "intersection" }, "type": "Feature" @@ -31340,71 +55646,50 @@ "coordinates": [ [ [ - -1.5320678867767616, - 53.796730015803405 + -1.535169500289806, + 53.79629550044712 ], [ - -1.5320521132232383, - 53.79669526961156 + -1.535207557794041, + 53.796295906041195 ], [ - -1.5321991726815132, - 53.79667197718044 + -1.5352070096782815, + 53.79631388887721 ], [ - -1.5322149462350367, - 53.79670672337228 + -1.5352000486081359, + 53.79631381423351 ], [ - -1.5320678867767616, - 53.796730015803405 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/7261160050", - "osm_node_id": 7261160050, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -1.5357328125587426, - 53.799107584864416 + -1.5352000699237487, + 53.796317927730804 ], [ - -1.5357184214749682, - 53.79907263092927 + -1.5351696190482207, + 53.79631798348874 ], [ - -1.5357469585129693, - 53.79906430231133 + -1.535131007338051, + 53.79631316492326 ], [ - -1.5357782406973992, - 53.7991052969901 + -1.5351314397404836, + 53.79629518028861 ], [ - -1.5357328125587426, - 53.799107584864416 + -1.535169500289806, + 53.79629550044712 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7261942252", - "osm_node_id": 7261942252, + "osm_link": "https://www.openstreetmap.org/node/8740550412", + "osm_node_id": 8740550412, "type": "intersection" }, "type": "Feature" @@ -31414,34 +55699,34 @@ "coordinates": [ [ [ - -1.536340038035278, - 53.799196482810984 + -1.5346811672116822, + 53.79630938507431 ], [ - -1.536311881633221, - 53.79915345116864 + -1.5346815996141145, + 53.79629140043965 ], [ - -1.5363491611175863, - 53.799160916437785 + -1.534833838766317, + 53.79629267927506 ], [ - -1.5363873449929546, - 53.79915937410113 + -1.5348334063638844, + 53.796310663909715 ], [ - -1.536340038035278, - 53.799196482810984 + -1.5346811672116822, + 53.79630938507431 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7261942264", - "osm_node_id": 7261942264, + "osm_link": "https://www.openstreetmap.org/node/8740550413", + "osm_node_id": 8740550413, "type": "intersection" }, "type": "Feature" @@ -31451,40 +55736,32 @@ "coordinates": [ [ [ - -1.5362900605358178, - 53.798950331276735 - ], - [ - -1.5362671340716327, - 53.79899320913508 - ], - [ - -1.5362377626796422, - 53.798987731366815 + -1.537857100654084, + 53.795846747929566 ], [ - -1.536207046881497, - 53.79898902728934 + -1.537835821582265, + 53.795865389069036 ], [ - -1.536201620535478, - 53.79894417631926 + -1.537777977099112, + 53.79586663552886 ], [ - -1.5362122189627054, - 53.798943729356395 + -1.537775729824498, + 53.7958216892307 ], [ - -1.5362148499183512, - 53.79893764904262 + -1.5377713205377215, + 53.795840324074916 ], [ - -1.5362886049839675, - 53.798948786242114 + -1.5377918961943158, + 53.79582140774301 ], [ - -1.5362900605358178, - 53.798950331276735 + -1.537857100654084, + 53.795846747929566 ] ] ], @@ -31493,8 +55770,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7261942265", - "osm_node_id": 7261942265, + "osm_link": "https://www.openstreetmap.org/node/8892765835", + "osm_node_id": 8892765835, "type": "intersection" }, "type": "Feature" @@ -31504,32 +55781,32 @@ "coordinates": [ [ [ - -1.5363667480207475, - 53.79898491469136 + -1.5377833394982925, + 53.79585238577708 ], [ - -1.5362943754248801, - 53.79899886496903 + -1.537765257768404, + 53.795866857661316 ], [ - -1.5362823884377286, - 53.79899605458883 + -1.537665215984488, + 53.79586939914434 ], [ - -1.5362761262151763, - 53.79899488636998 + -1.5376616288713507, + 53.79582448342311 ], [ - -1.5362990465891861, - 53.798952006713 + -1.537678582396301, + 53.79580954209297 ], [ - -1.5363397091658224, - 53.798942881296064 + -1.5377630074487023, + 53.79582191136315 ], [ - -1.5363667480207475, - 53.79898491469136 + -1.5377833394982925, + 53.79585238577708 ] ] ], @@ -31538,8 +55815,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7261942266", - "osm_node_id": 7261942266, + "osm_link": "https://www.openstreetmap.org/node/8892765836", + "osm_node_id": 8892765836, "type": "intersection" }, "type": "Feature" @@ -31549,36 +55826,36 @@ "coordinates": [ [ [ - -1.5364576651998116, - 53.798801511527635 + -1.5372823967126124, + 53.79588053184723 ], [ - -1.536475419582788, - 53.79881241040689 + -1.5372808756913798, + 53.79588320553054 ], [ - -1.5364205684206995, - 53.79884358988901 + -1.5372240330420315, + 53.79587192623822 ], [ - -1.5364293626335521, - 53.79883381066523 + -1.5372361540130355, + 53.79585061321408 ], [ - -1.536413838777208, - 53.79878978886973 + -1.53725256094477, + 53.79582176387439 ], [ - -1.536378803522369, - 53.79879251381438 + -1.5373094035941182, + 53.79583304136807 ], [ - -1.5364542516566648, - 53.7987865207348 + -1.537319461518305, + 53.79587761354843 ], [ - -1.5364576651998116, - 53.798801511527635 + -1.5372823967126124, + 53.79588053184723 ] ] ], @@ -31587,8 +55864,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7261942271", - "osm_node_id": 7261942271, + "osm_link": "https://www.openstreetmap.org/node/8892765838", + "osm_node_id": 8892765838, "type": "intersection" }, "type": "Feature" @@ -31598,71 +55875,54 @@ "coordinates": [ [ [ - -1.5368242115238049, - 53.798710169224776 + -1.5339244842704238, + 53.79750495228881 ], [ - -1.5368107887778721, - 53.79875443023983 + -1.5339285144438, + 53.7975087501242 ], [ - -1.5366609202263297, - 53.798738572500916 + -1.5339027134169652, + 53.79751830271893 ], [ - -1.5366743429722625, - 53.79869431148586 + -1.5338981077220415, + 53.79751396169325 ], [ - -1.5368242115238049, - 53.798710169224776 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7261942276", - "osm_node_id": 7261942276, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.53389060005868, + 53.79751652655864 + ], [ - -1.5361330482088764, - 53.79917821758797 + -1.5338601035068387, + 53.79748538844531 ], [ - -1.536142046442595, - 53.799142640422914 + -1.53389305135416, + 53.79747413073671 ], [ - -1.536332099492028, - 53.79915941097332 + -1.5339262077899787, + 53.797462920692155 ], [ - -1.5363231012583094, - 53.79919498813838 + -1.5339564607348157, + 53.797494141543076 ], [ - -1.5361330482088764, - 53.79917821758797 + -1.5339244842704238, + 53.79750495228881 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7261942280", - "osm_node_id": 7261942280, + "osm_link": "https://www.openstreetmap.org/node/8990249593", + "osm_node_id": 8990249593, "type": "intersection" }, "type": "Feature" @@ -31672,71 +55932,54 @@ "coordinates": [ [ [ - -1.5390517311322738, - 53.798787120582354 + -1.5339988300830254, + 53.797575338598236 ], [ - -1.5390461403515268, - 53.79882238478348 + -1.534002803922282, + 53.797579164312594 ], [ - -1.53889406867914, - 53.79881233936048 + -1.5339768475959819, + 53.797588569418565 ], [ - -1.5389012033192762, - 53.798777172286094 + -1.5339569997153126, + 53.79756945883319 ], [ - -1.5390517311322738, - 53.798787120582354 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/7275677007", - "osm_node_id": 7275677007, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -1.533936882344395, + 53.79755050203181 + ], [ - -1.5365096692050384, - 53.80037514547615 + -1.5339626833712299, + 53.79754094943709 ], [ - -1.5364872908566127, - 53.80041696393357 + -1.533982899707493, + 53.79755999976792 ], [ - -1.53636026198426, - 53.800393247921946 + -1.5340159419525283, + 53.79754883918606 ], [ - -1.5363826403326857, - 53.800351429464534 + -1.5340310577671405, + 53.7975644532088 ], [ - -1.5365096692050384, - 53.80037514547615 + -1.5339988300830254, + 53.797575338598236 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/7592482435", - "osm_node_id": 7592482435, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8990249594", + "osm_node_id": 8990249594, "type": "intersection" }, "type": "Feature" @@ -31746,34 +55989,34 @@ "coordinates": [ [ [ - -1.5320444639633055, - 53.80001284834753 + -1.534197677345311, + 53.7974874550865 ], [ - -1.5320755360366944, - 53.799971797910814 + -1.534212793159923, + 53.79750306910924 ], [ - -1.5322145321031295, - 53.80000850372457 + -1.5340387450906676, + 53.797561856867155 ], [ - -1.5321834600297408, - 53.80004955416128 + -1.5340236292760554, + 53.79754624284441 ], [ - -1.5320444639633055, - 53.80001284834753 + -1.534197677345311, + 53.7974874550865 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/7692244823", - "osm_node_id": 7692244823, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8990249596", + "osm_node_id": 8990249596, "type": "intersection" }, "type": "Feature" @@ -31783,42 +56026,34 @@ "coordinates": [ [ [ - -1.5328127197598083, - 53.800279295773116 - ], - [ - -1.5327873633157563, - 53.80029606272623 - ], - [ - -1.5326979199590678, - 53.800248873519834 + -1.5390581151583282, + 53.80014905241232 ], [ - -1.5327232794482075, - 53.80023210476807 + -1.5390418848416718, + 53.80019298427565 ], [ - -1.5327485217014765, - 53.800215356700704 + -1.5388931307921736, + 53.80017380893911 ], [ - -1.5328380959969297, - 53.800262457773584 + -1.53890936110883, + 53.80012987707578 ], [ - -1.5328127197598083, - 53.800279295773116 + -1.5390581151583282, + 53.80014905241232 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7692244824", - "osm_node_id": 7692244824, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/9194660290", + "osm_node_id": 9194660290, "type": "intersection" }, "type": "Feature" @@ -31828,32 +56063,32 @@ "coordinates": [ [ [ - -1.5361169899396667, - 53.79886783110449 + -1.534052245486333, + 53.798434198882084 ], [ - -1.5360638105306446, - 53.79879996829166 + -1.534098147136104, + 53.79843738967535 ], [ - -1.5361184485366046, - 53.79880184697461 + -1.534089246345187, + 53.798482048190586 ], [ - -1.536151484691465, - 53.79883374051814 + -1.534043767962586, + 53.79847954807636 ], [ - -1.5361437912777627, - 53.7988062338657 + -1.5340044208637724, + 53.79847564412101 ], [ - -1.5361164859776768, - 53.798861266955655 + -1.534014990362668, + 53.798431113309455 ], [ - -1.5361169899396667, - 53.79886783110449 + -1.534052245486333, + 53.798434198882084 ] ] ], @@ -31862,8 +56097,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8273166694", - "osm_node_id": 8273166694, + "osm_link": "https://www.openstreetmap.org/node/9258530363", + "osm_node_id": 9258530363, "type": "intersection" }, "type": "Feature" @@ -31873,36 +56108,44 @@ "coordinates": [ [ [ - -1.5366153794194337, - 53.79549875181406 + -1.5374749406436636, + 53.799435366027545 ], [ - -1.536603482262365, - 53.795534032202966 + -1.5374949103278348, + 53.79943731036098 ], [ - -1.536566665631308, - 53.79552970017051 + -1.5374899559703865, + 53.79945505757472 ], [ - -1.5365296617273663, - 53.795526164037724 + -1.537470721674859, + 53.799453184287685 ], [ - -1.53653938773701, - 53.79549065342246 + -1.537465615063033, + 53.7994751646085 ], [ - -1.5365747686092859, - 53.79549403487192 + -1.5374062084499656, + 53.79947034964031 ], [ - -1.5365997352821312, - 53.79550433390363 + -1.5374113835762615, + 53.79944807524131 ], [ - -1.5366153794194337, - 53.79549875181406 + -1.5374166713707969, + 53.79942574508437 + ], + [ + -1.5374760566682517, + 53.79943065358202 + ], + [ + -1.5374749406436636, + 53.799435366027545 ] ] ], @@ -31911,8 +56154,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8450014342", - "osm_node_id": 8450014342, + "osm_link": "https://www.openstreetmap.org/node/9258530380", + "osm_node_id": 9258530380, "type": "intersection" }, "type": "Feature" @@ -31922,34 +56165,34 @@ "coordinates": [ [ [ - -1.539067976674368, - 53.79917164714389 + -1.5369161503297428, + 53.800027651182134 ], [ - -1.539057306687583, - 53.79920650125433 + -1.536885732950178, + 53.80002848575264 ], [ - -1.5389262095782597, - 53.79919249881601 + -1.5368825828071047, + 53.79998843446229 ], [ - -1.5389368795650449, - 53.799157644705566 + -1.5369130001866695, + 53.799987599891786 ], [ - -1.539067976674368, - 53.79917164714389 + -1.5369161503297428, + 53.800027651182134 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/8450268992", - "osm_node_id": 8450268992, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9258530382", + "osm_node_id": 9258530382, "type": "intersection" }, "type": "Feature" @@ -31959,69 +56202,44 @@ "coordinates": [ [ [ - -1.5335480414118838, - 53.80036231305532 + -1.5358923005418643, + 53.79717600020887 ], [ - -1.5335105411586711, - 53.80035845856266 + -1.5359303550010117, + 53.797176481345964 ], [ - -1.533536640604086, - 53.80026985739224 + -1.5359297033522754, + 53.79719446418198 ], [ - -1.533574140857299, - 53.8002737118849 + -1.5358926050506196, + 53.79719399473607 ], [ - -1.5335480414118838, - 53.80036231305532 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/8674724110", - "osm_node_id": 8674724110, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -1.5327924425217943, - 53.79672306944286 + -1.5358926811778084, + 53.79719848235118 ], [ - -1.5327559501925614, - 53.796729185729504 - ], - [ - -1.5327395798018777, - 53.79669511223027 + -1.5358622303022804, + 53.79719866221551 ], [ - -1.5327403715246413, - 53.79669374436202 + -1.5358618496663363, + 53.79717618007321 ], [ - -1.5328142453486724, - 53.79668288235494 + -1.5358614720754797, + 53.79715369613226 ], [ - -1.5328299275495691, - 53.796717070068034 + -1.535891922951008, + 53.79715351806657 ], [ - -1.5327924425217943, - 53.79672306944286 + -1.5358923005418643, + 53.79717600020887 ] ] ], @@ -32029,9 +56247,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/8733041518", - "osm_node_id": 8733041518, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9258530385", + "osm_node_id": 9258530385, "type": "intersection" }, "type": "Feature" @@ -32041,32 +56259,40 @@ "coordinates": [ [ [ - -1.5328058667902709, - 53.796633824358125 + -1.536081899873252, + 53.797178399599076 ], [ - -1.5328130379714575, - 53.79668001351884 + -1.536082546954357, + 53.797195614414385 ], [ - -1.532739162624883, - 53.79669087282794 + -1.5360521021690041, + 53.797196013713204 ], [ - -1.5327377557944335, - 53.7966875381432 + -1.5360431937653685, + 53.79719590039868 ], [ - -1.5327175607737833, - 53.79664271415278 + -1.5360438454141048, + 53.797177917562664 ], [ - -1.532792218707859, - 53.79663127747917 + -1.5360514261595675, + 53.79717801379008 ], [ - -1.5328058667902709, - 53.796633824358125 + -1.5360506085535595, + 53.7971563212522 + ], + [ + -1.5360810533389124, + 53.79715592195338 + ], + [ + -1.536081899873252, + 53.797178399599076 ] ] ], @@ -32074,9 +56300,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/8733041519", - "osm_node_id": 8733041519, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9258530387", + "osm_node_id": 9258530387, "type": "intersection" }, "type": "Feature" @@ -32086,42 +56312,34 @@ "coordinates": [ [ [ - -1.537857100654084, - 53.795846747929566 - ], - [ - -1.537835821582265, - 53.795865389069036 - ], - [ - -1.537777977099112, - 53.79586663552886 + -1.537163269842459, + 53.79790984039216 ], [ - -1.537775729824498, - 53.7958216892307 + -1.537102511210518, + 53.79791229554031 ], [ - -1.5377713205377215, - 53.795840324074916 + -1.5370942209596556, + 53.797840727522214 ], [ - -1.5377918961943158, - 53.79582140774301 + -1.5371549795915966, + 53.79783827237407 ], [ - -1.537857100654084, - 53.795846747929566 + -1.537163269842459, + 53.79790984039216 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8892765835", - "osm_node_id": 8892765835, + "osm_link": "https://www.openstreetmap.org/node/9316506539", + "osm_node_id": 9316506539, "type": "intersection" }, "type": "Feature" @@ -32131,32 +56349,44 @@ "coordinates": [ [ [ - -1.5377833394982925, - 53.79585238577708 + -1.5371503449683412, + 53.7977982615532 ], [ - -1.537765257768404, - 53.795866857661316 + -1.5371515782288003, + 53.79780890322646 ], [ - -1.537665215984488, - 53.79586939914434 + -1.5370908195968591, + 53.79781135837461 ], [ - -1.5376616288713507, - 53.79582448342311 + -1.5370893929733407, + 53.79779904666101 ], [ - -1.537678582396301, - 53.79580954209297 + -1.5370809535131882, + 53.797799156378254 ], [ - -1.5377630074487023, - 53.79582191136315 + -1.5370796349902778, + 53.79776374648702 ], [ - -1.5377833394982925, - 53.79585238577708 + -1.5371176894494252, + 53.79776325186011 + ], + [ + -1.5371557591340101, + 53.79776276622641 + ], + [ + -1.5371570563413077, + 53.797798176117645 + ], + [ + -1.5371503449683412, + 53.7977982615532 ] ] ], @@ -32165,8 +56395,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8892765836", - "osm_node_id": 8892765836, + "osm_link": "https://www.openstreetmap.org/node/9316506541", + "osm_node_id": 9316506541, "type": "intersection" }, "type": "Feature" @@ -32176,36 +56406,36 @@ "coordinates": [ [ [ - -1.5372823967126124, - 53.79588053184723 + -1.5344229742380802, + 53.798459975239645 ], [ - -1.5372808756913798, - 53.79588320553054 + -1.534419671840629, + 53.79850489815545 ], [ - -1.5372240330420315, - 53.79587192623822 + -1.5344549659279099, + 53.79850652502834 ], [ - -1.5372361540130355, - 53.79585061321408 + -1.5343790579853935, + 53.798503111203296 ], [ - -1.53725256094477, - 53.79582176387439 + -1.5343791736987207, + 53.7985022064857 ], [ - -1.5373094035941182, - 53.79583304136807 + -1.534377646587313, + 53.798502100365745 ], [ - -1.537319461518305, - 53.79587761354843 + -1.5343865473782297, + 53.798457441850516 ], [ - -1.5372823967126124, - 53.79588053184723 + -1.5344229742380802, + 53.798459975239645 ] ] ], @@ -32214,8 +56444,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8892765838", - "osm_node_id": 8892765838, + "osm_link": "https://www.openstreetmap.org/node/9316506597", + "osm_node_id": 9316506597, "type": "intersection" }, "type": "Feature" @@ -32225,71 +56455,46 @@ "coordinates": [ [ [ - -1.5390581151583282, - 53.80014905241232 - ], - [ - -1.5390418848416718, - 53.80019298427565 + -1.5345900627597338, + 53.79848806824981 ], [ - -1.5388931307921736, - 53.80017380893911 + -1.5345856443376946, + 53.79850051755962 ], [ - -1.53890936110883, - 53.80012987707578 + -1.5345111371354525, + 53.798491292317976 ], [ - -1.5390581151583282, - 53.80014905241232 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/9194660290", - "osm_node_id": 9194660290, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -1.537163269842459, - 53.79790984039216 + -1.5345759137604196, + 53.79849313322943 ], [ - -1.537102511210518, - 53.79791229554031 + -1.5345364859667858, + 53.798454667443174 ], [ - -1.5370942209596556, - 53.797840727522214 + -1.5345690227272877, + 53.79844301942897 ], [ - -1.5371549795915966, - 53.79783827237407 + -1.5346084809717968, + 53.79848147442336 ], [ - -1.537163269842459, - 53.79790984039216 + -1.5345900627597338, + 53.79848806824981 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9316506539", - "osm_node_id": 9316506539, + "osm_link": "https://www.openstreetmap.org/node/9316506598", + "osm_node_id": 9316506598, "type": "intersection" }, "type": "Feature" @@ -32299,54 +56504,34 @@ "coordinates": [ [ [ - -1.5371503312654473, - 53.79779814913799 - ], - [ - -1.5371515782288003, - 53.79780890322646 - ], - [ - -1.5370908195968591, - 53.79781135837461 - ], - [ - -1.5370893929733407, - 53.79779904666101 - ], - [ - -1.5370809535131882, - 53.797799156378254 - ], - [ - -1.5370796349902778, - 53.79776374648702 + -1.5339804788628886, + 53.79842825616452 ], [ - -1.5371176102771487, - 53.79776325275943 + -1.5339699124090802, + 53.79847278697608 ], [ - -1.537155501824112, - 53.79776263222748 + -1.5338998007907207, + 53.798444300962345 ], [ - -1.5371571613968282, - 53.79779803672278 + -1.5339039969213686, + 53.798426485400164 ], [ - -1.5371503312654473, - 53.79779814913799 + -1.5339804788628886, + 53.79842825616452 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/9316506541", - "osm_node_id": 9316506541, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9316506599", + "osm_node_id": 9316506599, "type": "intersection" }, "type": "Feature" @@ -32364,20 +56549,20 @@ 53.7965332927865 ], [ - -1.5367487527317027, - 53.796533074251336 + -1.5367487542542466, + 53.796533031983216 ], [ - -1.536718314036525, - 53.796532567033914 + -1.5367183155590687, + 53.796532524765794 ], [ - -1.536700839801603, - 53.79653245282006 + -1.5367005200674102, + 53.796532370981794 ], [ - -1.5367028404241254, - 53.796425649379145 + -1.536703163203406, + 53.79642557113816 ], [ -1.5367803911913764, @@ -32409,16 +56594,16 @@ 53.79645667058065 ], [ - -1.5376512009690262, - 53.796441327253724 + -1.537651079165524, + 53.79644192889992 ], [ - -1.537726798312612, - 53.79644661526512 + -1.53772667650911, + 53.79644721870995 ], [ - -1.5377239739939068, - 53.79648199457941 + -1.5377223418269785, + 53.796482543165624 ], [ -1.537648641572938, @@ -32524,31 +56709,125 @@ "coordinates": [ [ [ - -1.5384816922649331, - 53.79664874500387 + -1.5376619257673871, + 53.796973310192726 + ], + [ + -1.53766042301668, + 53.796995775247915 + ], + [ + -1.5376299965018523, + 53.79699506478379 ], [ - -1.538477907221105, - 53.79669365532917 + -1.5376302964429762, + 53.7969905735714 ], [ - -1.5383258416388932, - 53.796689184801174 + -1.5375925419249528, + 53.79698990717405 ], [ - -1.5383296266827213, - 53.796644274475874 + -1.537593452406131, + 53.796971927935324 ], [ - -1.5384816922649331, - 53.79664874500387 + -1.5376314992525595, + 53.796972599728605 + ], + [ + -1.5376330126610733, + 53.796950134673416 + ], + [ + -1.537663439175901, + 53.796950848734824 + ], + [ + -1.5376619257673871, + 53.796973310192726 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9319419240", + "osm_node_id": 9319419240, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5386075837970847, + 53.796692481714395 + ], + [ + -1.5386086617580785, + 53.79667450607296 + ], + [ + -1.5386861166050716, + 53.79665364540762 + ], + [ + -1.5386833608008363, + 53.79669858271257 + ], + [ + -1.5386075837970847, + 53.796692481714395 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9319419244", + "osm_node_id": 9319419244, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.538479799743019, + 53.79667120016652 + ], + [ + -1.538478307650118, + 53.7966891650161 + ], + [ + -1.538439890825552, + 53.79669253747234 + ], + [ + -1.5384436758693802, + 53.79664762714704 + ], + [ + -1.538479799743019, + 53.79667120016652 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", "control": "StopSign", "osm_link": "https://www.openstreetmap.org/node/9319419245", "osm_node_id": 9319419245, @@ -32859,6 +57138,100 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5390354003277282, + 53.79733240034029 + ], + [ + -1.539033548914496, + 53.797350354398006 + ], + [ + -1.5389955721050812, + 53.797349000918906 + ], + [ + -1.538997405247788, + 53.79733104686119 + ], + [ + -1.5390049890383384, + 53.79733131665768 + ], + [ + -1.5390060167553874, + 53.797309427168365 + ], + [ + -1.539036455450565, + 53.79730992539256 + ], + [ + -1.5390354003277282, + 53.79733240034029 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9356627340", + "osm_node_id": 9356627340, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.5385726003087343, + 53.79731579976168 + ], + [ + -1.5386105938661307, + 53.79731717122722 + ], + [ + -1.5386087363627234, + 53.79733512348629 + ], + [ + -1.5385707428053272, + 53.797333752020755 + ], + [ + -1.5385327492479308, + 53.79733237875657 + ], + [ + -1.5385346067513381, + 53.7973144264975 + ], + [ + -1.5385726003087343, + 53.79731579976168 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9356627345", + "osm_node_id": 9356627345, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ diff --git a/tests/src/leeds_cycleway/road_network.dot b/tests/src/leeds_cycleway/road_network.dot index a9cf6437..1b80eed1 100644 --- a/tests/src/leeds_cycleway/road_network.dot +++ b/tests/src/leeds_cycleway/road_network.dot @@ -7,263 +7,263 @@ digraph { 5 [ label = "MapEdge" ] 6 [ label = "MapEdge" ] 7 [ label = "MapEdge" ] - 8 [ label = "Unknown" ] - 9 [ label = "Lights RoadIntersection" ] - 10 [ label = "Unknown" ] - 11 [ label = "Unknown" ] - 12 [ label = "Unknown" ] - 13 [ label = "Lights RoadIntersection" ] - 14 [ label = "Unknown" ] + 8 [ label = "MapEdge" ] + 9 [ label = "MapEdge" ] + 10 [ label = "MapEdge" ] + 11 [ label = "MapEdge" ] + 12 [ label = "MapEdge" ] + 13 [ label = "Unknown" ] + 14 [ label = "Lights RoadIntersection" ] 15 [ label = "Unknown" ] 16 [ label = "Unknown" ] - 17 [ label = "Lights RoadIntersection" ] + 17 [ label = "Unknown" ] 18 [ label = "Lights RoadIntersection" ] 19 [ label = "Unknown" ] 20 [ label = "Unknown" ] - 21 [ label = "MapEdge" ] - 22 [ label = "MapEdge" ] - 23 [ label = "MapEdge" ] + 21 [ label = "Unknown" ] + 22 [ label = "Lights RoadIntersection" ] + 23 [ label = "Lights RoadIntersection" ] 24 [ label = "Unknown" ] 25 [ label = "Unknown" ] - 26 [ label = "Unknown" ] + 26 [ label = "MapEdge" ] 27 [ label = "Unknown" ] 28 [ label = "MapEdge" ] - 29 [ label = "MapEdge" ] + 29 [ label = "Unknown" ] 30 [ label = "Unknown" ] 31 [ label = "Unknown" ] 32 [ label = "Unknown" ] - 33 [ label = "Unknown" ] - 34 [ label = "Unknown" ] + 33 [ label = "MapEdge" ] + 34 [ label = "MapEdge" ] 35 [ label = "Unknown" ] 36 [ label = "Unknown" ] 37 [ label = "Unknown" ] 38 [ label = "Unknown" ] 39 [ label = "Unknown" ] - 40 [ label = "MapEdge" ] + 40 [ label = "Unknown" ] 41 [ label = "Unknown" ] 42 [ label = "Unknown" ] - 43 [ label = "MapEdge" ] - 44 [ label = "Lights RoadIntersection" ] + 43 [ label = "Unknown" ] + 44 [ label = "Unknown" ] 45 [ label = "Unknown" ] 46 [ label = "Unknown" ] 47 [ label = "MapEdge" ] - 48 [ label = "MapEdge" ] + 48 [ label = "Unknown" ] 49 [ label = "Unknown" ] - 50 [ label = "Lights RoadIntersection" ] - 51 [ label = "Unknown" ] + 50 [ label = "MapEdge" ] + 51 [ label = "MapEdge" ] 52 [ label = "Unknown" ] 53 [ label = "Unknown" ] 54 [ label = "Unknown" ] 55 [ label = "Unknown" ] - 56 [ label = "Unknown" ] - 57 [ label = "Unknown" ] + 56 [ label = "MapEdge" ] + 57 [ label = "MapEdge" ] 58 [ label = "Unknown" ] - 59 [ label = "MapEdge" ] + 59 [ label = "Lights RoadIntersection" ] 60 [ label = "Unknown" ] - 61 [ label = "Lights RoadIntersection" ] + 61 [ label = "Unknown" ] 62 [ label = "Unknown" ] 63 [ label = "Unknown" ] - 64 [ label = "MapEdge" ] - 65 [ label = "Lights RoadIntersection" ] - 66 [ label = "MapEdge" ] + 64 [ label = "Unknown" ] + 65 [ label = "Unknown" ] + 66 [ label = "Unknown" ] 67 [ label = "Unknown" ] 68 [ label = "Unknown" ] - 69 [ label = "Unknown" ] + 69 [ label = "MapEdge" ] 70 [ label = "Unknown" ] 71 [ label = "Lights RoadIntersection" ] 72 [ label = "Unknown" ] - 73 [ label = "Lights RoadIntersection" ] - 74 [ label = "Lights RoadIntersection" ] + 73 [ label = "Unknown" ] + 74 [ label = "MapEdge" ] 75 [ label = "Lights RoadIntersection" ] - 76 [ label = "Unknown" ] - 77 [ label = "Lights RoadIntersection" ] - 78 [ label = "Lights RoadIntersection" ] - 79 [ label = "MapEdge" ] - 80 [ label = "MapEdge" ] + 76 [ label = "MapEdge" ] + 77 [ label = "Unknown" ] + 78 [ label = "Unknown" ] + 79 [ label = "Unknown" ] + 80 [ label = "Unknown" ] 81 [ label = "Unknown" ] - 82 [ label = "Unknown" ] + 82 [ label = "MapEdge" ] 83 [ label = "Unknown" ] 84 [ label = "Unknown" ] - 85 [ label = "Unknown" ] + 85 [ label = "Lights RoadIntersection" ] 86 [ label = "Unknown" ] - 87 [ label = "Unknown" ] - 88 [ label = "Unknown" ] + 87 [ label = "Lights RoadIntersection" ] + 88 [ label = "Lights RoadIntersection" ] 89 [ label = "Unknown" ] 90 [ label = "Unknown" ] 91 [ label = "Unknown" ] 92 [ label = "Unknown" ] - 93 [ label = "Unknown" ] + 93 [ label = "Lights RoadIntersection" ] 94 [ label = "Unknown" ] - 95 [ label = "Unknown" ] - 96 [ label = "Unknown" ] - 97 [ label = "Unknown" ] - 98 [ label = "Unknown" ] + 95 [ label = "Lights RoadIntersection" ] + 96 [ label = "Lights RoadIntersection" ] + 97 [ label = "MapEdge" ] + 98 [ label = "MapEdge" ] 99 [ label = "Unknown" ] 100 [ label = "Unknown" ] 101 [ label = "Unknown" ] - 102 [ label = "Unknown" ] + 102 [ label = "Lights RoadIntersection" ] 103 [ label = "Unknown" ] 104 [ label = "Unknown" ] - 105 [ label = "Lights RoadIntersection" ] + 105 [ label = "Unknown" ] 106 [ label = "Unknown" ] - 107 [ label = "MapEdge" ] + 107 [ label = "Unknown" ] 108 [ label = "Unknown" ] 109 [ label = "Unknown" ] 110 [ label = "Unknown" ] 111 [ label = "Unknown" ] 112 [ label = "Unknown" ] 113 [ label = "Unknown" ] - 114 [ label = "MapEdge" ] - 115 [ label = "MapEdge" ] + 114 [ label = "Unknown" ] + 115 [ label = "Unknown" ] 116 [ label = "Unknown" ] 117 [ label = "Unknown" ] 118 [ label = "Unknown" ] 119 [ label = "Unknown" ] - 120 [ label = "MapEdge" ] + 120 [ label = "Unknown" ] 121 [ label = "Unknown" ] 122 [ label = "Unknown" ] - 123 [ label = "MapEdge" ] + 123 [ label = "Unknown" ] 124 [ label = "Unknown" ] - 125 [ label = "Lights RoadIntersection" ] + 125 [ label = "Unknown" ] 126 [ label = "Unknown" ] - 127 [ label = "Lights RoadIntersection" ] - 128 [ label = "Lights RoadIntersection" ] + 127 [ label = "Unknown" ] + 128 [ label = "Unknown" ] 129 [ label = "Unknown" ] - 130 [ label = "MapEdge" ] + 130 [ label = "Unknown" ] 131 [ label = "Unknown" ] - 132 [ label = "Lights RoadIntersection" ] - 133 [ label = "Unknown" ] + 132 [ label = "Unknown" ] + 133 [ label = "MapEdge" ] 134 [ label = "Unknown" ] 135 [ label = "Unknown" ] 136 [ label = "Unknown" ] 137 [ label = "Unknown" ] 138 [ label = "Unknown" ] - 139 [ label = "Lights RoadIntersection" ] - 140 [ label = "Unknown" ] - 141 [ label = "Unknown" ] - 142 [ label = "MapEdge" ] + 139 [ label = "Unknown" ] + 140 [ label = "MapEdge" ] + 141 [ label = "MapEdge" ] + 142 [ label = "Unknown" ] 143 [ label = "Unknown" ] 144 [ label = "Unknown" ] - 145 [ label = "MapEdge" ] - 146 [ label = "Unknown" ] + 145 [ label = "Unknown" ] + 146 [ label = "MapEdge" ] 147 [ label = "Unknown" ] 148 [ label = "Unknown" ] - 149 [ label = "Unknown" ] + 149 [ label = "MapEdge" ] 150 [ label = "Unknown" ] 151 [ label = "Lights RoadIntersection" ] 152 [ label = "Unknown" ] - 153 [ label = "Unknown" ] - 154 [ label = "Unknown" ] + 153 [ label = "Lights RoadIntersection" ] + 154 [ label = "Lights RoadIntersection" ] 155 [ label = "Unknown" ] 156 [ label = "MapEdge" ] 157 [ label = "Unknown" ] - 158 [ label = "MapEdge" ] + 158 [ label = "Lights RoadIntersection" ] 159 [ label = "Unknown" ] 160 [ label = "Unknown" ] 161 [ label = "MapEdge" ] 162 [ label = "Unknown" ] 163 [ label = "Unknown" ] - 164 [ label = "MapEdge" ] - 165 [ label = "MapEdge" ] - 166 [ label = "Unknown" ] - 167 [ label = "MapEdge" ] - 168 [ label = "MapEdge" ] + 164 [ label = "Unknown" ] + 165 [ label = "Unknown" ] + 166 [ label = "Lights RoadIntersection" ] + 167 [ label = "Lights RoadIntersection" ] + 168 [ label = "Unknown" ] 169 [ label = "Unknown" ] - 170 [ label = "Unknown" ] - 171 [ label = "Lights RoadIntersection" ] + 170 [ label = "MapEdge" ] + 171 [ label = "Unknown" ] 172 [ label = "Lights RoadIntersection" ] - 173 [ label = "Lights RoadIntersection" ] - 174 [ label = "Lights RoadIntersection" ] - 175 [ label = "Unknown" ] + 173 [ label = "Unknown" ] + 174 [ label = "Unknown" ] + 175 [ label = "MapEdge" ] 176 [ label = "Unknown" ] - 177 [ label = "Lights RoadIntersection" ] + 177 [ label = "Unknown" ] 178 [ label = "Unknown" ] 179 [ label = "Unknown" ] 180 [ label = "Unknown" ] 181 [ label = "Lights RoadIntersection" ] - 182 [ label = "MapEdge" ] + 182 [ label = "Unknown" ] 183 [ label = "Unknown" ] 184 [ label = "Unknown" ] 185 [ label = "Unknown" ] - 186 [ label = "MapEdge" ] - 187 [ label = "Unknown" ] - 188 [ label = "Lights RoadIntersection" ] + 186 [ label = "Unknown" ] + 187 [ label = "MapEdge" ] + 188 [ label = "Unknown" ] 189 [ label = "MapEdge" ] 190 [ label = "Unknown" ] 191 [ label = "Unknown" ] 192 [ label = "MapEdge" ] - 193 [ label = "MapEdge" ] + 193 [ label = "Unknown" ] 194 [ label = "Unknown" ] 195 [ label = "Unknown" ] 196 [ label = "Unknown" ] 197 [ label = "Unknown" ] - 198 [ label = "Lights RoadIntersection" ] + 198 [ label = "Unknown" ] 199 [ label = "Unknown" ] 200 [ label = "Unknown" ] 201 [ label = "Unknown" ] 202 [ label = "Unknown" ] 203 [ label = "MapEdge" ] - 204 [ label = "Unknown" ] + 204 [ label = "MapEdge" ] 205 [ label = "Unknown" ] - 206 [ label = "Unknown" ] - 207 [ label = "Lights RoadIntersection" ] + 206 [ label = "MapEdge" ] + 207 [ label = "MapEdge" ] 208 [ label = "Unknown" ] 209 [ label = "Unknown" ] 210 [ label = "Unknown" ] - 211 [ label = "Lights RoadIntersection" ] + 211 [ label = "Unknown" ] 212 [ label = "Unknown" ] 213 [ label = "Unknown" ] 214 [ label = "Unknown" ] - 215 [ label = "MapEdge" ] - 216 [ label = "Lights RoadIntersection" ] - 217 [ label = "Unknown" ] - 218 [ label = "Lights RoadIntersection" ] - 219 [ label = "Unknown" ] - 220 [ label = "Unknown" ] + 215 [ label = "Unknown" ] + 216 [ label = "Unknown" ] + 217 [ label = "Lights RoadIntersection" ] + 218 [ label = "Unknown" ] + 219 [ label = "Lights RoadIntersection" ] + 220 [ label = "Lights RoadIntersection" ] 221 [ label = "Unknown" ] 222 [ label = "Unknown" ] 223 [ label = "Unknown" ] - 224 [ label = "Unknown" ] - 225 [ label = "Unknown" ] + 224 [ label = "Lights RoadIntersection" ] + 225 [ label = "Lights RoadIntersection" ] 226 [ label = "Unknown" ] - 227 [ label = "MapEdge" ] - 228 [ label = "Unknown" ] + 227 [ label = "Unknown" ] + 228 [ label = "Lights RoadIntersection" ] 229 [ label = "Unknown" ] 230 [ label = "Unknown" ] 231 [ label = "Unknown" ] - 232 [ label = "Unknown" ] - 233 [ label = "Unknown" ] + 232 [ label = "Lights RoadIntersection" ] + 233 [ label = "MapEdge" ] 234 [ label = "Unknown" ] 235 [ label = "Unknown" ] 236 [ label = "Unknown" ] - 237 [ label = "Unknown" ] - 238 [ label = "Lights RoadIntersection" ] + 237 [ label = "MapEdge" ] + 238 [ label = "Unknown" ] 239 [ label = "Lights RoadIntersection" ] - 240 [ label = "Lights RoadIntersection" ] - 241 [ label = "Lights RoadIntersection" ] + 240 [ label = "MapEdge" ] + 241 [ label = "Unknown" ] 242 [ label = "Unknown" ] 243 [ label = "MapEdge" ] - 244 [ label = "Unknown" ] + 244 [ label = "MapEdge" ] 245 [ label = "Unknown" ] 246 [ label = "Unknown" ] 247 [ label = "Unknown" ] 248 [ label = "Unknown" ] 249 [ label = "Unknown" ] 250 [ label = "Unknown" ] - 251 [ label = "Lights RoadIntersection" ] + 251 [ label = "Unknown" ] 252 [ label = "Unknown" ] 253 [ label = "Unknown" ] - 254 [ label = "Lights RoadIntersection" ] + 254 [ label = "Unknown" ] 255 [ label = "Unknown" ] 256 [ label = "Unknown" ] 257 [ label = "Unknown" ] 258 [ label = "Unknown" ] - 259 [ label = "Unknown" ] + 259 [ label = "MapEdge" ] 260 [ label = "Unknown" ] 261 [ label = "Unknown" ] - 262 [ label = "Lights RoadIntersection" ] + 262 [ label = "Unknown" ] 263 [ label = "Unknown" ] - 264 [ label = "Unknown" ] + 264 [ label = "Lights RoadIntersection" ] 265 [ label = "Unknown" ] 266 [ label = "Unknown" ] 267 [ label = "Unknown" ] @@ -271,583 +271,1161 @@ digraph { 269 [ label = "MapEdge" ] 270 [ label = "Unknown" ] 271 [ label = "Unknown" ] - 272 [ label = "Unknown" ] + 272 [ label = "Lights RoadIntersection" ] 273 [ label = "Unknown" ] 274 [ label = "Unknown" ] - 275 [ label = "Lights RoadIntersection" ] + 275 [ label = "Unknown" ] 276 [ label = "Unknown" ] - 277 [ label = "MapEdge" ] + 277 [ label = "Unknown" ] 278 [ label = "Unknown" ] 279 [ label = "Unknown" ] 280 [ label = "Unknown" ] - 281 [ label = "Unknown" ] - 282 [ label = "MapEdge" ] - 283 [ label = "MapEdge" ] + 281 [ label = "Lights RoadIntersection" ] + 282 [ label = "Unknown" ] + 283 [ label = "Unknown" ] 284 [ label = "Unknown" ] 285 [ label = "Unknown" ] 286 [ label = "Unknown" ] - 287 [ label = "Unknown" ] - 288 [ label = "Unknown" ] - 289 [ label = "Unknown" ] + 287 [ label = "Lights RoadIntersection" ] + 288 [ label = "MapEdge" ] + 289 [ label = "MapEdge" ] 290 [ label = "Unknown" ] 291 [ label = "Unknown" ] 292 [ label = "Unknown" ] 293 [ label = "Unknown" ] 294 [ label = "Unknown" ] - 295 [ label = "Unknown" ] - 296 [ label = "Unknown" ] + 295 [ label = "MapEdge" ] + 296 [ label = "MapEdge" ] 297 [ label = "Lights RoadIntersection" ] 298 [ label = "Unknown" ] - 299 [ label = "Unknown" ] + 299 [ label = "Lights RoadIntersection" ] 300 [ label = "Unknown" ] 301 [ label = "Unknown" ] - 302 [ label = "Lights RoadIntersection" ] - 303 [ label = "Lights RoadIntersection" ] + 302 [ label = "Unknown" ] + 303 [ label = "Unknown" ] 304 [ label = "Unknown" ] - 305 [ label = "MapEdge" ] + 305 [ label = "Unknown" ] 306 [ label = "Unknown" ] 307 [ label = "Unknown" ] 308 [ label = "Unknown" ] - 309 [ label = "Unknown" ] + 309 [ label = "MapEdge" ] 310 [ label = "Unknown" ] - 311 [ label = "Unknown" ] + 311 [ label = "MapEdge" ] 312 [ label = "Unknown" ] - 313 [ label = "MapEdge" ] - 314 [ label = "MapEdge" ] - 315 [ label = "MapEdge" ] + 313 [ label = "Unknown" ] + 314 [ label = "Unknown" ] + 315 [ label = "Unknown" ] 316 [ label = "Unknown" ] 317 [ label = "Unknown" ] 318 [ label = "Unknown" ] - 319 [ label = "MapEdge" ] + 319 [ label = "Unknown" ] 320 [ label = "Unknown" ] - 321 [ label = "MapEdge" ] - 322 [ label = "Lights RoadIntersection" ] - 323 [ label = "Lights RoadIntersection" ] + 321 [ label = "Unknown" ] + 322 [ label = "Unknown" ] + 323 [ label = "Unknown" ] 324 [ label = "Unknown" ] 325 [ label = "Unknown" ] 326 [ label = "Unknown" ] - 327 [ label = "MapEdge" ] + 327 [ label = "Unknown" ] 328 [ label = "Unknown" ] - 329 [ label = "Lights RoadIntersection" ] - 330 [ label = "Lights RoadIntersection" ] - 331 [ label = "Lights RoadIntersection" ] - 332 [ label = "Lights RoadIntersection" ] + 329 [ label = "Unknown" ] + 330 [ label = "Unknown" ] + 331 [ label = "Unknown" ] + 332 [ label = "Unknown" ] 333 [ label = "Unknown" ] 334 [ label = "Unknown" ] 335 [ label = "Unknown" ] 336 [ label = "Unknown" ] - 337 [ label = "Unknown" ] - 338 [ label = "Unknown" ] - 339 [ label = "Unknown" ] - 340 [ label = "Unknown" ] + 337 [ label = "Lights RoadIntersection" ] + 338 [ label = "Lights RoadIntersection" ] + 339 [ label = "Lights RoadIntersection" ] + 340 [ label = "Lights RoadIntersection" ] 341 [ label = "Unknown" ] 342 [ label = "Unknown" ] - 343 [ label = "Unknown" ] + 343 [ label = "MapEdge" ] 344 [ label = "Unknown" ] 345 [ label = "Unknown" ] - 346 [ label = "MapEdge" ] - 32 -> 313 [ label = "2 lanes" ] - 15 -> 297 [ label = "3 lanes" ] - 297 -> 213 [ label = "3 lanes" ] - 10 -> 68 [ label = "3 lanes" ] - 13 -> 10 [ label = "3 lanes" ] - 31 -> 137 [ label = "3 lanes" ] - 55 -> 56 [ label = "2 lanes" ] - 238 -> 235 [ label = "2 lanes" ] - 7 -> 106 [ label = "2 lanes" ] - 38 -> 95 [ label = "2 lanes" ] - 95 -> 34 [ label = "2 lanes" ] - 37 -> 33 [ label = "2 lanes" ] - 42 -> 196 [ label = "2 lanes" ] - 196 -> 42 [ label = "2 lanes" ] - 154 -> 316 [ label = "2 lanes" ] - 316 -> 154 [ label = "2 lanes" ] - 196 -> 154 [ label = "2 lanes" ] - 154 -> 196 [ label = "2 lanes" ] - 41 -> 1 [ label = "3 lanes" ] - 63 -> 62 [ label = "1 lanes" ] - 62 -> 194 [ label = "1 lanes" ] - 194 -> 193 [ label = "1 lanes" ] - 84 -> 332 [ label = "2 lanes" ] - 88 -> 244 [ label = "2 lanes" ] - 244 -> 326 [ label = "2 lanes" ] - 326 -> 84 [ label = "2 lanes" ] - 6 -> 331 [ label = "2 lanes" ] - 5 -> 74 [ label = "3 lanes" ] - 74 -> 72 [ label = "3 lanes" ] - 72 -> 79 [ label = "4 lanes" ] - 8 -> 130 [ label = "3 lanes" ] - 78 -> 8 [ label = "3 lanes" ] - 285 -> 78 [ label = "3 lanes" ] - 331 -> 239 [ label = "2 lanes" ] - 12 -> 68 [ label = "2 lanes" ] - 20 -> 34 [ label = "2 lanes" ] - 34 -> 20 [ label = "2 lanes" ] - 33 -> 35 [ label = "2 lanes" ] - 35 -> 33 [ label = "2 lanes" ] - 34 -> 33 [ label = "2 lanes" ] - 33 -> 34 [ label = "2 lanes" ] - 71 -> 89 [ label = "1 lanes" ] - 218 -> 71 [ label = "1 lanes" ] - 218 -> 220 [ label = "3 lanes" ] - 220 -> 51 [ label = "3 lanes" ] - 4 -> 76 [ label = "2 lanes" ] - 76 -> 108 [ label = "2 lanes" ] - 108 -> 273 [ label = "2 lanes" ] - 81 -> 80 [ label = "2 lanes" ] - 82 -> 83 [ label = "1 lanes" ] - 83 -> 82 [ label = "1 lanes" ] - 76 -> 129 [ label = "3 lanes" ] - 84 -> 85 [ label = "1 lanes" ] - 85 -> 84 [ label = "1 lanes" ] - 182 -> 279 [ label = "1 lanes" ] - 279 -> 182 [ label = "1 lanes" ] - 56 -> 87 [ label = "1 lanes" ] - 87 -> 56 [ label = "1 lanes" ] - 68 -> 89 [ label = "0 lanes" ] - 157 -> 105 [ label = "0 lanes" ] - 217 -> 274 [ label = "0 lanes" ] - 274 -> 157 [ label = "0 lanes" ] - 94 -> 304 [ label = "2 lanes" ] - 304 -> 94 [ label = "2 lanes" ] - 95 -> 96 [ label = "2 lanes" ] - 97 -> 98 [ label = "2 lanes" ] - 98 -> 97 [ label = "2 lanes" ] - 98 -> 99 [ label = "2 lanes" ] + 346 [ label = "Unknown" ] + 347 [ label = "MapEdge" ] + 348 [ label = "Unknown" ] + 349 [ label = "Unknown" ] + 350 [ label = "Unknown" ] + 351 [ label = "Unknown" ] + 352 [ label = "Unknown" ] + 353 [ label = "Unknown" ] + 354 [ label = "MapEdge" ] + 355 [ label = "Unknown" ] + 356 [ label = "Unknown" ] + 357 [ label = "Unknown" ] + 358 [ label = "Unknown" ] + 359 [ label = "Unknown" ] + 360 [ label = "Unknown" ] + 361 [ label = "Unknown" ] + 362 [ label = "Unknown" ] + 363 [ label = "Unknown" ] + 364 [ label = "Unknown" ] + 365 [ label = "Unknown" ] + 366 [ label = "Unknown" ] + 367 [ label = "Unknown" ] + 368 [ label = "MapEdge" ] + 369 [ label = "Unknown" ] + 370 [ label = "Unknown" ] + 371 [ label = "Unknown" ] + 372 [ label = "Unknown" ] + 373 [ label = "Unknown" ] + 374 [ label = "Unknown" ] + 375 [ label = "Unknown" ] + 376 [ label = "Unknown" ] + 377 [ label = "Unknown" ] + 378 [ label = "Unknown" ] + 379 [ label = "Unknown" ] + 380 [ label = "Unknown" ] + 381 [ label = "Lights RoadIntersection" ] + 382 [ label = "Unknown" ] + 383 [ label = "Unknown" ] + 384 [ label = "Lights RoadIntersection" ] + 385 [ label = "Unknown" ] + 386 [ label = "Unknown" ] + 387 [ label = "Unknown" ] + 388 [ label = "Unknown" ] + 389 [ label = "Unknown" ] + 390 [ label = "Unknown" ] + 391 [ label = "Unknown" ] + 392 [ label = "Unknown" ] + 393 [ label = "Lights RoadIntersection" ] + 394 [ label = "Unknown" ] + 395 [ label = "Unknown" ] + 396 [ label = "Unknown" ] + 397 [ label = "Unknown" ] + 398 [ label = "Unknown" ] + 399 [ label = "Unknown" ] + 400 [ label = "Unknown" ] + 401 [ label = "Unknown" ] + 402 [ label = "MapEdge" ] + 403 [ label = "Unknown" ] + 404 [ label = "Unknown" ] + 405 [ label = "Unknown" ] + 406 [ label = "Unknown" ] + 407 [ label = "Unknown" ] + 408 [ label = "Unknown" ] + 409 [ label = "Unknown" ] + 410 [ label = "Unknown" ] + 411 [ label = "Unknown" ] + 412 [ label = "Unknown" ] + 413 [ label = "Unknown" ] + 414 [ label = "Unknown" ] + 415 [ label = "Unknown" ] + 416 [ label = "Unknown" ] + 417 [ label = "Unknown" ] + 418 [ label = "Unknown" ] + 419 [ label = "Lights RoadIntersection" ] + 420 [ label = "Unknown" ] + 421 [ label = "Unknown" ] + 422 [ label = "MapEdge" ] + 423 [ label = "Unknown" ] + 424 [ label = "Unknown" ] + 425 [ label = "Unknown" ] + 426 [ label = "Unknown" ] + 427 [ label = "Unknown" ] + 428 [ label = "Unknown" ] + 429 [ label = "Unknown" ] + 430 [ label = "MapEdge" ] + 431 [ label = "Unknown" ] + 432 [ label = "Unknown" ] + 433 [ label = "Unknown" ] + 434 [ label = "Unknown" ] + 435 [ label = "Unknown" ] + 436 [ label = "Unknown" ] + 437 [ label = "MapEdge" ] + 438 [ label = "MapEdge" ] + 439 [ label = "Unknown" ] + 440 [ label = "Unknown" ] + 441 [ label = "Unknown" ] + 442 [ label = "Unknown" ] + 443 [ label = "Unknown" ] + 444 [ label = "Unknown" ] + 445 [ label = "Unknown" ] + 446 [ label = "Unknown" ] + 447 [ label = "Unknown" ] + 448 [ label = "Unknown" ] + 449 [ label = "Unknown" ] + 450 [ label = "Unknown" ] + 451 [ label = "Unknown" ] + 452 [ label = "Unknown" ] + 453 [ label = "Unknown" ] + 454 [ label = "Unknown" ] + 455 [ label = "Unknown" ] + 456 [ label = "Unknown" ] + 457 [ label = "Unknown" ] + 458 [ label = "Unknown" ] + 459 [ label = "Unknown" ] + 460 [ label = "Unknown" ] + 461 [ label = "Unknown" ] + 462 [ label = "Unknown" ] + 463 [ label = "Unknown" ] + 464 [ label = "Unknown" ] + 465 [ label = "Unknown" ] + 466 [ label = "Unknown" ] + 467 [ label = "Unknown" ] + 468 [ label = "Lights RoadIntersection" ] + 469 [ label = "Unknown" ] + 470 [ label = "Unknown" ] + 471 [ label = "Unknown" ] + 472 [ label = "Unknown" ] + 473 [ label = "Unknown" ] + 474 [ label = "Unknown" ] + 475 [ label = "Unknown" ] + 476 [ label = "Unknown" ] + 477 [ label = "Lights RoadIntersection" ] + 478 [ label = "Lights RoadIntersection" ] + 479 [ label = "Unknown" ] + 480 [ label = "MapEdge" ] + 481 [ label = "Unknown" ] + 482 [ label = "Unknown" ] + 483 [ label = "Unknown" ] + 484 [ label = "Unknown" ] + 485 [ label = "Unknown" ] + 486 [ label = "Unknown" ] + 487 [ label = "Unknown" ] + 488 [ label = "Unknown" ] + 489 [ label = "Unknown" ] + 490 [ label = "MapEdge" ] + 491 [ label = "MapEdge" ] + 492 [ label = "MapEdge" ] + 493 [ label = "Unknown" ] + 494 [ label = "Unknown" ] + 495 [ label = "MapEdge" ] + 496 [ label = "Lights RoadIntersection" ] + 497 [ label = "Lights RoadIntersection" ] + 498 [ label = "Lights RoadIntersection" ] + 499 [ label = "Unknown" ] + 500 [ label = "Unknown" ] + 501 [ label = "Unknown" ] + 502 [ label = "Unknown" ] + 503 [ label = "Unknown" ] + 504 [ label = "MapEdge" ] + 505 [ label = "Unknown" ] + 506 [ label = "MapEdge" ] + 507 [ label = "Unknown" ] + 508 [ label = "MapEdge" ] + 509 [ label = "Unknown" ] + 510 [ label = "Unknown" ] + 511 [ label = "MapEdge" ] + 512 [ label = "Unknown" ] + 513 [ label = "Unknown" ] + 514 [ label = "Unknown" ] + 515 [ label = "Unknown" ] + 516 [ label = "Unknown" ] + 517 [ label = "Unknown" ] + 518 [ label = "Unknown" ] + 519 [ label = "Unknown" ] + 520 [ label = "Unknown" ] + 521 [ label = "Unknown" ] + 522 [ label = "Unknown" ] + 523 [ label = "Unknown" ] + 524 [ label = "Unknown" ] + 525 [ label = "Unknown" ] + 526 [ label = "Unknown" ] + 527 [ label = "Unknown" ] + 528 [ label = "Unknown" ] + 529 [ label = "Unknown" ] + 530 [ label = "Unknown" ] + 531 [ label = "Unknown" ] + 532 [ label = "Unknown" ] + 533 [ label = "Unknown" ] + 534 [ label = "Unknown" ] + 535 [ label = "Unknown" ] + 536 [ label = "Unknown" ] + 537 [ label = "Unknown" ] + 538 [ label = "Unknown" ] + 539 [ label = "Unknown" ] + 540 [ label = "Unknown" ] + 541 [ label = "MapEdge" ] + 542 [ label = "Unknown" ] + 543 [ label = "MapEdge" ] + 544 [ label = "Lights RoadIntersection" ] + 545 [ label = "Lights RoadIntersection" ] + 546 [ label = "Unknown" ] + 547 [ label = "Unknown" ] + 548 [ label = "Unknown" ] + 549 [ label = "Unknown" ] + 550 [ label = "Unknown" ] + 551 [ label = "Unknown" ] + 552 [ label = "Unknown" ] + 553 [ label = "Unknown" ] + 554 [ label = "Unknown" ] + 555 [ label = "MapEdge" ] + 556 [ label = "Unknown" ] + 557 [ label = "Unknown" ] + 558 [ label = "Unknown" ] + 559 [ label = "Unknown" ] + 560 [ label = "Unknown" ] + 561 [ label = "Unknown" ] + 562 [ label = "Unknown" ] + 563 [ label = "Unknown" ] + 564 [ label = "Unknown" ] + 565 [ label = "Unknown" ] + 566 [ label = "Lights RoadIntersection" ] + 567 [ label = "Lights RoadIntersection" ] + 568 [ label = "Lights RoadIntersection" ] + 569 [ label = "Unknown" ] + 570 [ label = "Unknown" ] + 571 [ label = "Unknown" ] + 572 [ label = "Unknown" ] + 573 [ label = "Unknown" ] + 574 [ label = "Unknown" ] + 575 [ label = "Unknown" ] + 576 [ label = "Unknown" ] + 577 [ label = "Unknown" ] + 578 [ label = "Unknown" ] + 579 [ label = "Unknown" ] + 580 [ label = "Unknown" ] + 581 [ label = "Unknown" ] + 582 [ label = "Unknown" ] + 583 [ label = "Unknown" ] + 584 [ label = "Unknown" ] + 585 [ label = "Unknown" ] + 586 [ label = "MapEdge" ] + 37 -> 490 [ label = "2 lanes" ] + 39 -> 272 [ label = "2 lanes" ] + 109 -> 37 [ label = "2 lanes" ] + 272 -> 109 [ label = "2 lanes" ] + 20 -> 468 [ label = "3 lanes" ] + 468 -> 283 [ label = "3 lanes" ] + 15 -> 80 [ label = "3 lanes" ] + 18 -> 15 [ label = "3 lanes" ] + 38 -> 164 [ label = "3 lanes" ] + 78 -> 546 [ label = "1 lanes" ] + 89 -> 404 [ label = "1 lanes" ] + 267 -> 89 [ label = "1 lanes" ] + 404 -> 55 [ label = "1 lanes" ] + 546 -> 267 [ label = "1 lanes" ] + 65 -> 66 [ label = "2 lanes" ] + 66 -> 330 [ label = "2 lanes" ] + 337 -> 334 [ label = "2 lanes" ] + 12 -> 132 [ label = "2 lanes" ] + 45 -> 119 [ label = "2 lanes" ] + 119 -> 41 [ label = "2 lanes" ] + 44 -> 557 [ label = "2 lanes" ] + 557 -> 40 [ label = "2 lanes" ] + 49 -> 251 [ label = "2 lanes" ] + 251 -> 49 [ label = "2 lanes" ] + 185 -> 493 [ label = "2 lanes" ] + 493 -> 185 [ label = "2 lanes" ] + 251 -> 185 [ label = "2 lanes" ] + 185 -> 251 [ label = "2 lanes" ] + 48 -> 4 [ label = "3 lanes" ] + 73 -> 72 [ label = "1 lanes" ] + 72 -> 249 [ label = "1 lanes" ] + 249 -> 244 [ label = "1 lanes" ] + 104 -> 568 [ label = "2 lanes" ] + 110 -> 374 [ label = "2 lanes" ] + 374 -> 551 [ label = "2 lanes" ] + 551 -> 104 [ label = "2 lanes" ] + 571 -> 74 [ label = "0 lanes" ] + 11 -> 102 [ label = "2 lanes" ] + 102 -> 567 [ label = "2 lanes" ] + 10 -> 88 [ label = "3 lanes" ] + 55 -> 86 [ label = "3 lanes" ] + 88 -> 55 [ label = "3 lanes" ] + 86 -> 494 [ label = "4 lanes" ] + 494 -> 97 [ label = "4 lanes" ] + 13 -> 156 [ label = "3 lanes" ] + 96 -> 13 [ label = "3 lanes" ] + 440 -> 96 [ label = "3 lanes" ] + 37 -> 34 [ label = "1 lanes" ] + 567 -> 338 [ label = "2 lanes" ] + 17 -> 79 [ label = "2 lanes" ] + 79 -> 80 [ label = "2 lanes" ] + 81 -> 512 [ label = "1 lanes" ] + 292 -> 360 [ label = "1 lanes" ] + 294 -> 276 [ label = "1 lanes" ] + 358 -> 361 [ label = "1 lanes" ] + 360 -> 519 [ label = "1 lanes" ] + 361 -> 450 [ label = "1 lanes" ] + 450 -> 570 [ label = "1 lanes" ] + 512 -> 292 [ label = "1 lanes" ] + 519 -> 358 [ label = "1 lanes" ] + 570 -> 294 [ label = "1 lanes" ] + 25 -> 41 [ label = "2 lanes" ] + 41 -> 25 [ label = "2 lanes" ] + 40 -> 42 [ label = "2 lanes" ] + 42 -> 40 [ label = "2 lanes" ] + 41 -> 40 [ label = "2 lanes" ] + 40 -> 41 [ label = "2 lanes" ] + 85 -> 112 [ label = "1 lanes" ] + 299 -> 85 [ label = "1 lanes" ] + 299 -> 301 [ label = "3 lanes" ] + 301 -> 60 [ label = "3 lanes" ] + 89 -> 90 [ label = "1 lanes" ] + 90 -> 92 [ label = "1 lanes" ] + 92 -> 61 [ label = "1 lanes" ] + 90 -> 91 [ label = "1 lanes" ] + 91 -> 92 [ label = "1 lanes" ] + 91 -> 433 [ label = "1 lanes" ] + 9 -> 94 [ label = "1 lanes" ] + 94 -> 134 [ label = "1 lanes" ] + 134 -> 408 [ label = "1 lanes" ] + 82 -> 51 [ label = "1 lanes" ] 99 -> 98 [ label = "2 lanes" ] - 98 -> 100 [ label = "2 lanes" ] - 100 -> 98 [ label = "2 lanes" ] - 165 -> 101 [ label = "1 lanes" ] - 101 -> 165 [ label = "1 lanes" ] - 102 -> 246 [ label = "1 lanes" ] - 246 -> 102 [ label = "1 lanes" ] - 246 -> 103 [ label = "1 lanes" ] - 103 -> 246 [ label = "1 lanes" ] - 30 -> 91 [ label = "3 lanes" ] - 16 -> 174 [ label = "2 lanes" ] - 19 -> 96 [ label = "2 lanes" ] - 96 -> 131 [ label = "2 lanes" ] - 97 -> 20 [ label = "2 lanes" ] - 131 -> 339 [ label = "2 lanes" ] - 163 -> 180 [ label = "2 lanes" ] - 174 -> 163 [ label = "2 lanes" ] - 180 -> 19 [ label = "2 lanes" ] - 339 -> 97 [ label = "2 lanes" ] - 59 -> 35 [ label = "2 lanes" ] - 101 -> 36 [ label = "2 lanes" ] - 101 -> 35 [ label = "2 lanes" ] - 35 -> 101 [ label = "2 lanes" ] - 92 -> 93 [ label = "2 lanes" ] - 93 -> 92 [ label = "2 lanes" ] - 93 -> 94 [ label = "2 lanes" ] - 94 -> 93 [ label = "2 lanes" ] - 94 -> 22 [ label = "2 lanes" ] - 22 -> 94 [ label = "2 lanes" ] - 50 -> 52 [ label = "2 lanes" ] - 108 -> 50 [ label = "2 lanes" ] - 109 -> 242 [ label = "3 lanes" ] - 60 -> 110 [ label = "2 lanes" ] - 111 -> 27 [ label = "2 lanes" ] - 112 -> 113 [ label = "0 lanes" ] - 198 -> 199 [ label = "0 lanes" ] - 24 -> 116 [ label = "2 lanes" ] - 44 -> 171 [ label = "3 lanes" ] - 45 -> 44 [ label = "3 lanes" ] - 171 -> 11 [ label = "3 lanes" ] - 89 -> 90 [ label = "0 lanes" ] - 68 -> 71 [ label = "3 lanes" ] - 71 -> 217 [ label = "3 lanes" ] - 236 -> 333 [ label = "3 lanes" ] - 331 -> 236 [ label = "3 lanes" ] - 26 -> 66 [ label = "0 lanes" ] - 116 -> 141 [ label = "1 lanes" ] - 120 -> 238 [ label = "3 lanes" ] - 23 -> 140 [ label = "2 lanes" ] - 18 -> 126 [ label = "5 lanes" ] - 127 -> 158 [ label = "2 lanes" ] - 43 -> 155 [ label = "3 lanes" ] - 52 -> 240 [ label = "3 lanes" ] - 129 -> 52 [ label = "3 lanes" ] - 75 -> 48 [ label = "3 lanes" ] - 129 -> 75 [ label = "3 lanes" ] - 47 -> 127 [ label = "4 lanes" ] - 127 -> 134 [ label = "4 lanes" ] - 134 -> 8 [ label = "4 lanes" ] - 86 -> 134 [ label = "2 lanes" ] - 134 -> 281 [ label = "2 lanes" ] - 8 -> 133 [ label = "4 lanes" ] - 133 -> 159 [ label = "3 lanes" ] - 159 -> 124 [ label = "3 lanes" ] - 125 -> 146 [ label = "0 lanes" ] - 54 -> 202 [ label = "2 lanes" ] - 202 -> 54 [ label = "2 lanes" ] - 202 -> 118 [ label = "2 lanes" ] - 118 -> 202 [ label = "2 lanes" ] - 144 -> 300 [ label = "2 lanes" ] - 300 -> 144 [ label = "2 lanes" ] - 145 -> 63 [ label = "1 lanes" ] - 118 -> 204 [ label = "2 lanes" ] - 204 -> 118 [ label = "2 lanes" ] - 230 -> 118 [ label = "2 lanes" ] - 118 -> 230 [ label = "2 lanes" ] - 143 -> 164 [ label = "1 lanes" ] - 164 -> 143 [ label = "1 lanes" ] - 140 -> 146 [ label = "0 lanes" ] - 199 -> 254 [ label = "0 lanes" ] - 250 -> 125 [ label = "0 lanes" ] - 254 -> 250 [ label = "0 lanes" ] - 143 -> 206 [ label = "2 lanes" ] - 206 -> 143 [ label = "2 lanes" ] - 144 -> 143 [ label = "2 lanes" ] - 143 -> 144 [ label = "2 lanes" ] - 146 -> 144 [ label = "2 lanes" ] - 144 -> 146 [ label = "2 lanes" ] - 206 -> 119 [ label = "2 lanes" ] - 119 -> 206 [ label = "2 lanes" ] - 93 -> 148 [ label = "2 lanes" ] - 148 -> 93 [ label = "2 lanes" ] - 146 -> 147 [ label = "2 lanes" ] - 147 -> 146 [ label = "2 lanes" ] - 139 -> 18 [ label = "5 lanes" ] - 198 -> 139 [ label = "5 lanes" ] - 113 -> 215 [ label = "0 lanes" ] - 152 -> 290 [ label = "2 lanes" ] - 290 -> 153 [ label = "2 lanes" ] - 151 -> 212 [ label = "0 lanes" ] - 155 -> 151 [ label = "0 lanes" ] - 212 -> 199 [ label = "0 lanes" ] - 65 -> 223 [ label = "2 lanes" ] - 160 -> 90 [ label = "1 lanes" ] - 9 -> 288 [ label = "4 lanes" ] - 51 -> 9 [ label = "4 lanes" ] - 288 -> 109 [ label = "4 lanes" ] - 57 -> 162 [ label = "1 lanes" ] - 162 -> 57 [ label = "1 lanes" ] - 25 -> 198 [ label = "3 lanes" ] - 152 -> 289 [ label = "3 lanes" ] - 167 -> 152 [ label = "3 lanes" ] - 289 -> 25 [ label = "3 lanes" ] - 141 -> 166 [ label = "1 lanes" ] - 138 -> 168 [ label = "2 lanes" ] - 185 -> 107 [ label = "3 lanes" ] - 178 -> 181 [ label = "2 lanes" ] - 181 -> 19 [ label = "2 lanes" ] - 181 -> 179 [ label = "2 lanes" ] - 176 -> 175 [ label = "2 lanes" ] - 308 -> 176 [ label = "2 lanes" ] - 170 -> 171 [ label = "2 lanes" ] - 171 -> 172 [ label = "2 lanes" ] - 177 -> 179 [ label = "2 lanes" ] - 179 -> 180 [ label = "2 lanes" ] - 180 -> 309 [ label = "2 lanes" ] - 29 -> 329 [ label = "2 lanes" ] - 329 -> 30 [ label = "2 lanes" ] - 112 -> 186 [ label = "2 lanes" ] - 183 -> 24 [ label = "2 lanes" ] - 116 -> 60 [ label = "2 lanes" ] - 187 -> 188 [ label = "2 lanes" ] - 54 -> 231 [ label = "2 lanes" ] - 231 -> 54 [ label = "2 lanes" ] - 55 -> 54 [ label = "2 lanes" ] - 54 -> 55 [ label = "2 lanes" ] - 187 -> 55 [ label = "2 lanes" ] - 55 -> 187 [ label = "2 lanes" ] - 231 -> 53 [ label = "2 lanes" ] - 53 -> 231 [ label = "2 lanes" ] - 191 -> 190 [ label = "1 lanes" ] - 190 -> 189 [ label = "1 lanes" ] - 192 -> 195 [ label = "1 lanes" ] - 195 -> 191 [ label = "1 lanes" ] - 194 -> 195 [ label = "1 lanes" ] - 196 -> 253 [ label = "0 lanes" ] - 253 -> 197 [ label = "0 lanes" ] - 124 -> 94 [ label = "3 lanes" ] - 92 -> 201 [ label = "2 lanes" ] - 125 -> 147 [ label = "2 lanes" ] - 202 -> 203 [ label = "1 lanes" ] - 203 -> 202 [ label = "1 lanes" ] - 202 -> 232 [ label = "1 lanes" ] - 232 -> 202 [ label = "1 lanes" ] - 232 -> 233 [ label = "1 lanes" ] - 233 -> 232 [ label = "1 lanes" ] - 206 -> 228 [ label = "1 lanes" ] - 228 -> 206 [ label = "1 lanes" ] - 228 -> 0 [ label = "1 lanes" ] - 0 -> 228 [ label = "1 lanes" ] - 67 -> 207 [ label = "2 lanes" ] - 208 -> 67 [ label = "2 lanes" ] - 330 -> 209 [ label = "1 lanes" ] - 209 -> 210 [ label = "1 lanes" ] + 100 -> 101 [ label = "1 lanes" ] + 101 -> 100 [ label = "1 lanes" ] + 102 -> 103 [ label = "1 lanes" ] + 103 -> 285 [ label = "1 lanes" ] + 94 -> 155 [ label = "3 lanes" ] + 495 -> 494 [ label = "1 lanes" ] + 104 -> 105 [ label = "1 lanes" ] + 105 -> 104 [ label = "1 lanes" ] + 233 -> 432 [ label = "1 lanes" ] + 432 -> 233 [ label = "1 lanes" ] + 66 -> 107 [ label = "1 lanes" ] + 107 -> 66 [ label = "1 lanes" ] + 80 -> 112 [ label = "1 lanes" ] + 188 -> 498 [ label = "1 lanes" ] + 298 -> 410 [ label = "1 lanes" ] + 410 -> 188 [ label = "1 lanes" ] + 498 -> 130 [ label = "1 lanes" ] + 118 -> 479 [ label = "2 lanes" ] + 479 -> 118 [ label = "2 lanes" ] + 119 -> 120 [ label = "2 lanes" ] + 121 -> 122 [ label = "2 lanes" ] + 122 -> 121 [ label = "2 lanes" ] + 122 -> 123 [ label = "2 lanes" ] + 123 -> 122 [ label = "2 lanes" ] + 122 -> 124 [ label = "2 lanes" ] + 124 -> 122 [ label = "2 lanes" ] + 124 -> 125 [ label = "2 lanes" ] + 125 -> 124 [ label = "2 lanes" ] + 204 -> 126 [ label = "1 lanes" ] + 126 -> 204 [ label = "1 lanes" ] + 127 -> 376 [ label = "1 lanes" ] + 376 -> 127 [ label = "1 lanes" ] + 376 -> 128 [ label = "1 lanes" ] + 128 -> 376 [ label = "1 lanes" ] + 36 -> 111 [ label = "3 lanes" ] + 111 -> 114 [ label = "3 lanes" ] + 129 -> 417 [ label = "1 lanes" ] + 417 -> 211 [ label = "1 lanes" ] + 21 -> 225 [ label = "2 lanes" ] + 24 -> 120 [ label = "2 lanes" ] + 120 -> 157 [ label = "2 lanes" ] + 121 -> 25 [ label = "2 lanes" ] + 157 -> 577 [ label = "2 lanes" ] + 202 -> 231 [ label = "2 lanes" ] + 225 -> 202 [ label = "2 lanes" ] + 231 -> 24 [ label = "2 lanes" ] + 577 -> 121 [ label = "2 lanes" ] + 69 -> 42 [ label = "2 lanes" ] + 126 -> 540 [ label = "2 lanes" ] + 540 -> 43 [ label = "2 lanes" ] + 126 -> 42 [ label = "2 lanes" ] + 42 -> 126 [ label = "2 lanes" ] + 43 -> 131 [ label = "1 lanes" ] + 131 -> 132 [ label = "1 lanes" ] + 116 -> 117 [ label = "2 lanes" ] + 117 -> 116 [ label = "2 lanes" ] + 117 -> 118 [ label = "2 lanes" ] + 118 -> 117 [ label = "2 lanes" ] + 118 -> 3 [ label = "2 lanes" ] + 3 -> 118 [ label = "2 lanes" ] + 59 -> 62 [ label = "1 lanes" ] + 134 -> 59 [ label = "1 lanes" ] + 135 -> 341 [ label = "3 lanes" ] + 70 -> 136 [ label = "2 lanes" ] + 137 -> 32 [ label = "2 lanes" ] + 138 -> 139 [ label = "0 lanes" ] + 253 -> 254 [ label = "0 lanes" ] + 29 -> 142 [ label = "2 lanes" ] + 52 -> 219 [ label = "3 lanes" ] + 53 -> 217 [ label = "3 lanes" ] + 217 -> 52 [ label = "3 lanes" ] + 219 -> 16 [ label = "3 lanes" ] + 497 -> 52 [ label = "2 lanes" ] + 112 -> 113 [ label = "1 lanes" ] + 80 -> 85 [ label = "3 lanes" ] + 85 -> 298 [ label = "3 lanes" ] + 335 -> 569 [ label = "3 lanes" ] + 567 -> 335 [ label = "3 lanes" ] + 31 -> 76 [ label = "0 lanes" ] + 142 -> 169 [ label = "1 lanes" ] + 146 -> 337 [ label = "3 lanes" ] + 28 -> 168 [ label = "2 lanes" ] + 108 -> 109 [ label = "1 lanes" ] + 23 -> 152 [ label = "5 lanes" ] + 153 -> 189 [ label = "2 lanes" ] + 50 -> 186 [ label = "3 lanes" ] + 61 -> 339 [ label = "3 lanes" ] + 62 -> 61 [ label = "3 lanes" ] + 155 -> 62 [ label = "3 lanes" ] + 93 -> 57 [ label = "3 lanes" ] + 155 -> 93 [ label = "3 lanes" ] + 56 -> 153 [ label = "4 lanes" ] + 153 -> 160 [ label = "4 lanes" ] + 160 -> 13 [ label = "4 lanes" ] + 106 -> 160 [ label = "2 lanes" ] + 160 -> 436 [ label = "2 lanes" ] + 13 -> 159 [ label = "4 lanes" ] + 159 -> 190 [ label = "3 lanes" ] + 190 -> 150 [ label = "3 lanes" ] + 171 -> 172 [ label = "1 lanes" ] + 172 -> 181 [ label = "1 lanes" ] + 183 -> 448 [ label = "1 lanes" ] + 448 -> 171 [ label = "1 lanes" ] + 151 -> 176 [ label = "0 lanes" ] + 64 -> 258 [ label = "2 lanes" ] + 258 -> 64 [ label = "2 lanes" ] + 258 -> 144 [ label = "2 lanes" ] + 144 -> 258 [ label = "2 lanes" ] + 174 -> 475 [ label = "2 lanes" ] + 475 -> 174 [ label = "2 lanes" ] + 175 -> 73 [ label = "1 lanes" ] + 167 -> 179 [ label = "1 lanes" ] + 390 -> 167 [ label = "1 lanes" ] + 144 -> 261 [ label = "2 lanes" ] + 261 -> 144 [ label = "2 lanes" ] + 260 -> 144 [ label = "2 lanes" ] + 144 -> 260 [ label = "2 lanes" ] + 313 -> 260 [ label = "2 lanes" ] + 260 -> 313 [ label = "2 lanes" ] + 173 -> 203 [ label = "1 lanes" ] + 203 -> 173 [ label = "1 lanes" ] + 168 -> 176 [ label = "0 lanes" ] + 254 -> 384 [ label = "0 lanes" ] + 380 -> 151 [ label = "0 lanes" ] + 384 -> 380 [ label = "0 lanes" ] + 173 -> 263 [ label = "2 lanes" ] + 263 -> 173 [ label = "2 lanes" ] + 174 -> 173 [ label = "2 lanes" ] + 173 -> 174 [ label = "2 lanes" ] + 176 -> 174 [ label = "2 lanes" ] + 174 -> 176 [ label = "2 lanes" ] + 263 -> 145 [ label = "2 lanes" ] + 145 -> 263 [ label = "2 lanes" ] + 117 -> 178 [ label = "2 lanes" ] + 178 -> 117 [ label = "2 lanes" ] + 176 -> 177 [ label = "2 lanes" ] + 177 -> 176 [ label = "2 lanes" ] + 166 -> 23 [ label = "5 lanes" ] + 253 -> 166 [ label = "5 lanes" ] + 139 -> 296 [ label = "0 lanes" ] + 182 -> 183 [ label = "2 lanes" ] + 183 -> 447 [ label = "2 lanes" ] + 447 -> 184 [ label = "2 lanes" ] + 181 -> 282 [ label = "0 lanes" ] + 186 -> 181 [ label = "0 lanes" ] + 282 -> 254 [ label = "0 lanes" ] + 75 -> 305 [ label = "2 lanes" ] + 223 -> 75 [ label = "2 lanes" ] + 191 -> 113 [ label = "1 lanes" ] + 14 -> 445 [ label = "4 lanes" ] + 60 -> 14 [ label = "4 lanes" ] + 445 -> 135 [ label = "4 lanes" ] + 67 -> 429 [ label = "1 lanes" ] + 429 -> 67 [ label = "1 lanes" ] + 426 -> 193 [ label = "1 lanes" ] + 193 -> 426 [ label = "1 lanes" ] + 429 -> 426 [ label = "1 lanes" ] + 426 -> 429 [ label = "1 lanes" ] + 421 -> 2 [ label = "1 lanes" ] + 200 -> 199 [ label = "1 lanes" ] + 30 -> 253 [ label = "3 lanes" ] + 182 -> 446 [ label = "3 lanes" ] + 206 -> 500 [ label = "3 lanes" ] + 446 -> 30 [ label = "3 lanes" ] + 500 -> 182 [ label = "3 lanes" ] + 169 -> 205 [ label = "1 lanes" ] + 165 -> 207 [ label = "2 lanes" ] + 236 -> 133 [ label = "3 lanes" ] + 111 -> 514 [ label = "1 lanes" ] + 115 -> 416 [ label = "1 lanes" ] + 331 -> 115 [ label = "1 lanes" ] + 332 -> 520 [ label = "1 lanes" ] + 416 -> 417 [ label = "1 lanes" ] + 451 -> 331 [ label = "1 lanes" ] + 514 -> 332 [ label = "1 lanes" ] + 520 -> 451 [ label = "1 lanes" ] + 212 -> 213 [ label = "1 lanes" ] + 209 -> 342 [ label = "1 lanes" ] 210 -> 209 [ label = "1 lanes" ] - 117 -> 20 [ label = "2 lanes" ] - 20 -> 117 [ label = "2 lanes" ] - 115 -> 117 [ label = "2 lanes" ] - 117 -> 115 [ label = "2 lanes" ] - 150 -> 114 [ label = "0 lanes" ] - 199 -> 251 [ label = "0 lanes" ] - 251 -> 150 [ label = "0 lanes" ] - 161 -> 281 [ label = "2 lanes" ] - 281 -> 282 [ label = "2 lanes" ] - 155 -> 198 [ label = "3 lanes" ] - 212 -> 198 [ label = "0 lanes" ] - 128 -> 222 [ label = "3 lanes" ] - 222 -> 137 [ label = "3 lanes" ] - 213 -> 341 [ label = "3 lanes" ] - 341 -> 214 [ label = "3 lanes" ] - 17 -> 25 [ label = "4 lanes" ] - 25 -> 153 [ label = "4 lanes" ] - 214 -> 17 [ label = "4 lanes" ] - 153 -> 243 [ label = "3 lanes" ] - 224 -> 225 [ label = "2 lanes" ] - 228 -> 227 [ label = "1 lanes" ] - 227 -> 228 [ label = "1 lanes" ] - 119 -> 229 [ label = "2 lanes" ] - 229 -> 119 [ label = "2 lanes" ] - 205 -> 119 [ label = "2 lanes" ] - 119 -> 205 [ label = "2 lanes" ] - 232 -> 231 [ label = "1 lanes" ] - 231 -> 232 [ label = "1 lanes" ] - 36 -> 37 [ label = "2 lanes" ] - 37 -> 38 [ label = "2 lanes" ] - 140 -> 125 [ label = "2 lanes" ] - 72 -> 46 [ label = "2 lanes" ] - 73 -> 12 [ label = "3 lanes" ] - 207 -> 236 [ label = "1 lanes" ] - 333 -> 239 [ label = "3 lanes" ] - 109 -> 237 [ label = "3 lanes" ] - 83 -> 234 [ label = "3 lanes" ] - 239 -> 83 [ label = "3 lanes" ] - 234 -> 26 [ label = "2 lanes" ] - 12 -> 13 [ label = "3 lanes" ] - 38 -> 178 [ label = "3 lanes" ] - 163 -> 176 [ label = "3 lanes" ] - 176 -> 317 [ label = "3 lanes" ] - 177 -> 163 [ label = "3 lanes" ] - 178 -> 177 [ label = "3 lanes" ] - 166 -> 138 [ label = "1 lanes" ] - 188 -> 21 [ label = "3 lanes" ] - 109 -> 287 [ label = "2 lanes" ] - 287 -> 322 [ label = "2 lanes" ] - 322 -> 235 [ label = "2 lanes" ] - 27 -> 284 [ label = "2 lanes" ] - 284 -> 112 [ label = "2 lanes" ] - 333 -> 332 [ label = "3 lanes" ] - 332 -> 333 [ label = "3 lanes" ] - 247 -> 30 [ label = "1 lanes" ] - 248 -> 275 [ label = "1 lanes" ] - 240 -> 73 [ label = "0 lanes" ] - 240 -> 13 [ label = "3 lanes" ] - 250 -> 258 [ label = "0 lanes" ] - 256 -> 250 [ label = "0 lanes" ] - 258 -> 147 [ label = "0 lanes" ] - 150 -> 252 [ label = "0 lanes" ] - 252 -> 42 [ label = "0 lanes" ] - 256 -> 150 [ label = "0 lanes" ] - 255 -> 256 [ label = "0 lanes" ] - 259 -> 149 [ label = "0 lanes" ] - 258 -> 259 [ label = "0 lanes" ] - 251 -> 252 [ label = "0 lanes" ] - 252 -> 253 [ label = "0 lanes" ] - 254 -> 255 [ label = "0 lanes" ] - 255 -> 251 [ label = "0 lanes" ] - 259 -> 254 [ label = "0 lanes" ] - 17 -> 257 [ label = "2 lanes" ] - 139 -> 17 [ label = "2 lanes" ] - 149 -> 139 [ label = "2 lanes" ] - 137 -> 224 [ label = "3 lanes" ] - 224 -> 218 [ label = "3 lanes" ] - 39 -> 221 [ label = "1 lanes" ] - 39 -> 128 [ label = "3 lanes" ] - 126 -> 262 [ label = "3 lanes" ] - 261 -> 260 [ label = "3 lanes" ] - 262 -> 261 [ label = "3 lanes" ] - 126 -> 39 [ label = "5 lanes" ] - 238 -> 323 [ label = "2 lanes" ] - 323 -> 264 [ label = "2 lanes" ] - 241 -> 237 [ label = "3 lanes" ] - 264 -> 241 [ label = "3 lanes" ] - 219 -> 265 [ label = "2 lanes" ] - 265 -> 266 [ label = "2 lanes" ] - 266 -> 200 [ label = "2 lanes" ] - 265 -> 58 [ label = "1 lanes" ] - 241 -> 303 [ label = "2 lanes" ] - 287 -> 241 [ label = "2 lanes" ] - 302 -> 287 [ label = "2 lanes" ] - 268 -> 201 [ label = "2 lanes" ] - 200 -> 286 [ label = "2 lanes" ] - 286 -> 302 [ label = "2 lanes" ] - 77 -> 127 [ label = "1 lanes" ] - 267 -> 77 [ label = "1 lanes" ] - 270 -> 278 [ label = "2 lanes" ] - 278 -> 318 [ label = "2 lanes" ] - 318 -> 271 [ label = "2 lanes" ] - 244 -> 246 [ label = "1 lanes" ] - 246 -> 271 [ label = "1 lanes" ] - 271 -> 46 [ label = "1 lanes" ] - 104 -> 73 [ label = "3 lanes" ] - 73 -> 104 [ label = "3 lanes" ] - 15 -> 65 [ label = "3 lanes" ] - 65 -> 260 [ label = "3 lanes" ] - 237 -> 272 [ label = "2 lanes" ] - 272 -> 136 [ label = "2 lanes" ] - 136 -> 135 [ label = "3 lanes" ] - 272 -> 267 [ label = "2 lanes" ] - 273 -> 2 [ label = "2 lanes" ] - 121 -> 124 [ label = "2 lanes" ] - 77 -> 273 [ label = "2 lanes" ] - 78 -> 86 [ label = "2 lanes" ] - 86 -> 77 [ label = "2 lanes" ] - 121 -> 132 [ label = "2 lanes" ] - 122 -> 78 [ label = "2 lanes" ] - 132 -> 122 [ label = "2 lanes" ] - 201 -> 121 [ label = "2 lanes" ] - 184 -> 301 [ label = "0 lanes" ] - 169 -> 170 [ label = "2 lanes" ] - 170 -> 275 [ label = "2 lanes" ] - 275 -> 335 [ label = "2 lanes" ] - 217 -> 218 [ label = "1 lanes" ] - 216 -> 274 [ label = "0 lanes" ] - 274 -> 45 [ label = "0 lanes" ] - 275 -> 276 [ label = "1 lanes" ] - 275 -> 276 [ label = "1 lanes" ] - 9 -> 10 [ label = "2 lanes" ] - 200 -> 9 [ label = "2 lanes" ] - 247 -> 276 [ label = "1 lanes" ] - 276 -> 247 [ label = "1 lanes" ] - 13 -> 288 [ label = "1 lanes" ] - 288 -> 286 [ label = "1 lanes" ] - 162 -> 291 [ label = "1 lanes" ] - 291 -> 162 [ label = "1 lanes" ] - 81 -> 324 [ label = "0 lanes" ] - 324 -> 26 [ label = "0 lanes" ] - 74 -> 277 [ label = "2 lanes" ] - 278 -> 74 [ label = "2 lanes" ] - 75 -> 142 [ label = "2 lanes" ] - 280 -> 75 [ label = "2 lanes" ] - 270 -> 280 [ label = "2 lanes" ] - 257 -> 284 [ label = "1 lanes" ] - 284 -> 289 [ label = "1 lanes" ] - 289 -> 290 [ label = "1 lanes" ] - 290 -> 283 [ label = "1 lanes" ] - 337 -> 257 [ label = "1 lanes" ] - 106 -> 211 [ label = "2 lanes" ] - 132 -> 159 [ label = "2 lanes" ] - 159 -> 185 [ label = "2 lanes" ] - 285 -> 132 [ label = "2 lanes" ] - 91 -> 104 [ label = "0 lanes" ] - 105 -> 44 [ label = "2 lanes" ] - 91 -> 105 [ label = "2 lanes" ] - 105 -> 91 [ label = "2 lanes" ] - 237 -> 267 [ label = "2 lanes" ] - 237 -> 242 [ label = "3 lanes" ] - 293 -> 292 [ label = "2 lanes" ] - 292 -> 299 [ label = "2 lanes" ] - 297 -> 294 [ label = "2 lanes" ] - 262 -> 128 [ label = "2 lanes" ] - 295 -> 262 [ label = "2 lanes" ] - 223 -> 295 [ label = "2 lanes" ] - 295 -> 297 [ label = "2 lanes" ] + 342 -> 208 [ label = "1 lanes" ] + 210 -> 79 [ label = "1 lanes" ] + 213 -> 498 [ label = "1 lanes" ] + 214 -> 497 [ label = "1 lanes" ] + 497 -> 216 [ label = "1 lanes" ] + 498 -> 214 [ label = "1 lanes" ] + 229 -> 232 [ label = "2 lanes" ] + 232 -> 24 [ label = "2 lanes" ] + 221 -> 222 [ label = "1 lanes" ] + 222 -> 223 [ label = "1 lanes" ] + 223 -> 221 [ label = "1 lanes" ] + 232 -> 230 [ label = "2 lanes" ] + 227 -> 226 [ label = "2 lanes" ] + 483 -> 227 [ label = "2 lanes" ] + 218 -> 219 [ label = "2 lanes" ] 219 -> 220 [ label = "2 lanes" ] - 221 -> 225 [ label = "2 lanes" ] - 225 -> 219 [ label = "2 lanes" ] - 296 -> 221 [ label = "2 lanes" ] - 222 -> 296 [ label = "2 lanes" ] - 261 -> 222 [ label = "2 lanes" ] - 298 -> 261 [ label = "2 lanes" ] - 223 -> 298 [ label = "2 lanes" ] - 301 -> 157 [ label = "0 lanes" ] - 303 -> 268 [ label = "2 lanes" ] - 122 -> 133 [ label = "2 lanes" ] - 133 -> 123 [ label = "2 lanes" ] - 216 -> 217 [ label = "0 lanes" ] - 13 -> 109 [ label = "3 lanes" ] - 50 -> 129 [ label = "3 lanes" ] - 242 -> 50 [ label = "3 lanes" ] - 242 -> 240 [ label = "0 lanes" ] - 263 -> 268 [ label = "2 lanes" ] - 305 -> 263 [ label = "2 lanes" ] - 269 -> 76 [ label = "3 lanes" ] - 173 -> 175 [ label = "2 lanes" ] - 174 -> 310 [ label = "2 lanes" ] - 175 -> 174 [ label = "2 lanes" ] - 306 -> 294 [ label = "2 lanes" ] - 310 -> 177 [ label = "2 lanes" ] - 311 -> 310 [ label = "2 lanes" ] - 131 -> 307 [ label = "1 lanes" ] - 307 -> 131 [ label = "1 lanes" ] - 307 -> 312 [ label = "1 lanes" ] - 312 -> 307 [ label = "1 lanes" ] - 58 -> 266 [ label = "3 lanes" ] - 266 -> 51 [ label = "3 lanes" ] - 56 -> 57 [ label = "2 lanes" ] - 57 -> 342 [ label = "2 lanes" ] - 342 -> 58 [ label = "2 lanes" ] - 294 -> 308 [ label = "2 lanes" ] - 308 -> 309 [ label = "2 lanes" ] - 309 -> 307 [ label = "2 lanes" ] - 346 -> 183 [ label = "2 lanes" ] - 110 -> 28 [ label = "2 lanes" ] - 314 -> 111 [ label = "2 lanes" ] - 217 -> 45 [ label = "3 lanes" ] - 147 -> 18 [ label = "2 lanes" ] - 18 -> 147 [ label = "2 lanes" ] - 315 -> 154 [ label = "0 lanes" ] - 31 -> 172 [ label = "3 lanes" ] - 172 -> 11 [ label = "3 lanes" ] - 260 -> 31 [ label = "3 lanes" ] - 16 -> 173 [ label = "3 lanes" ] - 173 -> 317 [ label = "3 lanes" ] - 211 -> 16 [ label = "3 lanes" ] - 32 -> 211 [ label = "3 lanes" ] - 11 -> 248 [ label = "3 lanes" ] - 248 -> 32 [ label = "3 lanes" ] - 184 -> 216 [ label = "0 lanes" ] - 160 -> 184 [ label = "0 lanes" ] - 90 -> 160 [ label = "0 lanes" ] - 317 -> 15 [ label = "3 lanes" ] - 318 -> 72 [ label = "1 lanes" ] - 321 -> 151 [ label = "1 lanes" ] - 263 -> 323 [ label = "2 lanes" ] - 304 -> 263 [ label = "2 lanes" ] - 323 -> 322 [ label = "2 lanes" ] - 325 -> 324 [ label = "0 lanes" ] - 326 -> 325 [ label = "0 lanes" ] - 234 -> 325 [ label = "1 lanes" ] - 325 -> 244 [ label = "1 lanes" ] - 327 -> 35 [ label = "2 lanes" ] - 300 -> 292 [ label = "2 lanes" ] - 319 -> 36 [ label = "2 lanes" ] - 328 -> 329 [ label = "1 lanes" ] - 329 -> 328 [ label = "1 lanes" ] - 67 -> 334 [ label = "0 lanes" ] - 234 -> 249 [ label = "1 lanes" ] - 249 -> 234 [ label = "1 lanes" ] - 336 -> 306 [ label = "2 lanes" ] - 337 -> 338 [ label = "2 lanes" ] - 338 -> 336 [ label = "2 lanes" ] - 338 -> 214 [ label = "1 lanes" ] - 339 -> 340 [ label = "2 lanes" ] - 340 -> 339 [ label = "2 lanes" ] - 341 -> 336 [ label = "1 lanes" ] - 336 -> 341 [ label = "1 lanes" ] - 156 -> 41 [ label = "3 lanes" ] - 235 -> 187 [ label = "2 lanes" ] - 235 -> 188 [ label = "2 lanes" ] - 46 -> 102 [ label = "3 lanes" ] - 102 -> 88 [ label = "3 lanes" ] - 41 -> 316 [ label = "2 lanes" ] - 316 -> 41 [ label = "2 lanes" ] - 88 -> 81 [ label = "2 lanes" ] - 342 -> 343 [ label = "1 lanes" ] - 343 -> 342 [ label = "1 lanes" ] - 343 -> 344 [ label = "1 lanes" ] - 344 -> 343 [ label = "1 lanes" ] - 343 -> 345 [ label = "1 lanes" ] - 345 -> 343 [ label = "1 lanes" ] - 135 -> 285 [ label = "3 lanes" ] - 133 -> 185 [ label = "3 lanes" ] - 332 -> 330 [ label = "3 lanes" ] - 330 -> 332 [ label = "3 lanes" ] - 330 -> 104 [ label = "3 lanes" ] - 104 -> 330 [ label = "3 lanes" ] + 220 -> 221 [ label = "2 lanes" ] + 228 -> 230 [ label = "2 lanes" ] + 230 -> 231 [ label = "2 lanes" ] + 231 -> 484 [ label = "2 lanes" ] + 485 -> 228 [ label = "2 lanes" ] + 222 -> 412 [ label = "1 lanes" ] + 7 -> 35 [ label = "2 lanes" ] + 35 -> 286 [ label = "2 lanes" ] + 81 -> 562 [ label = "2 lanes" ] + 286 -> 287 [ label = "2 lanes" ] + 287 -> 81 [ label = "2 lanes" ] + 562 -> 36 [ label = "2 lanes" ] + 138 -> 237 [ label = "2 lanes" ] + 234 -> 29 [ label = "2 lanes" ] + 142 -> 70 [ label = "2 lanes" ] + 238 -> 239 [ label = "2 lanes" ] + 64 -> 314 [ label = "2 lanes" ] + 314 -> 64 [ label = "2 lanes" ] + 65 -> 64 [ label = "2 lanes" ] + 64 -> 65 [ label = "2 lanes" ] + 238 -> 65 [ label = "2 lanes" ] + 65 -> 238 [ label = "2 lanes" ] + 314 -> 63 [ label = "2 lanes" ] + 63 -> 314 [ label = "2 lanes" ] + 242 -> 241 [ label = "1 lanes" ] + 241 -> 240 [ label = "1 lanes" ] + 243 -> 250 [ label = "1 lanes" ] + 250 -> 242 [ label = "1 lanes" ] + 249 -> 250 [ label = "1 lanes" ] + 251 -> 383 [ label = "0 lanes" ] + 383 -> 252 [ label = "0 lanes" ] + 150 -> 118 [ label = "3 lanes" ] + 150 -> 161 [ label = "1 lanes" ] + 401 -> 256 [ label = "1 lanes" ] + 116 -> 256 [ label = "2 lanes" ] + 151 -> 177 [ label = "2 lanes" ] + 258 -> 259 [ label = "1 lanes" ] + 259 -> 258 [ label = "1 lanes" ] + 258 -> 324 [ label = "1 lanes" ] + 324 -> 258 [ label = "1 lanes" ] + 315 -> 323 [ label = "1 lanes" ] + 323 -> 315 [ label = "1 lanes" ] + 324 -> 315 [ label = "1 lanes" ] + 315 -> 324 [ label = "1 lanes" ] + 263 -> 310 [ label = "1 lanes" ] + 310 -> 263 [ label = "1 lanes" ] + 310 -> 1 [ label = "1 lanes" ] + 1 -> 310 [ label = "1 lanes" ] + 211 -> 559 [ label = "1 lanes" ] + 559 -> 212 [ label = "1 lanes" ] + 265 -> 266 [ label = "1 lanes" ] + 266 -> 406 [ label = "1 lanes" ] + 267 -> 265 [ label = "1 lanes" ] + 406 -> 509 [ label = "1 lanes" ] + 266 -> 265 [ label = "1 lanes" ] + 287 -> 271 [ label = "1 lanes" ] + 271 -> 275 [ label = "1 lanes" ] + 275 -> 269 [ label = "1 lanes" ] + 273 -> 274 [ label = "1 lanes" ] + 275 -> 35 [ label = "1 lanes" ] + 6 -> 274 [ label = "1 lanes" ] + 274 -> 270 [ label = "1 lanes" ] + 77 -> 264 [ label = "2 lanes" ] + 276 -> 77 [ label = "2 lanes" ] + 271 -> 270 [ label = "1 lanes" ] + 270 -> 272 [ label = "1 lanes" ] + 566 -> 277 [ label = "1 lanes" ] + 277 -> 278 [ label = "1 lanes" ] + 278 -> 277 [ label = "1 lanes" ] + 143 -> 25 [ label = "2 lanes" ] + 25 -> 143 [ label = "2 lanes" ] + 141 -> 143 [ label = "2 lanes" ] + 143 -> 141 [ label = "2 lanes" ] + 487 -> 280 [ label = "1 lanes" ] + 180 -> 140 [ label = "0 lanes" ] + 254 -> 381 [ label = "0 lanes" ] + 381 -> 180 [ label = "0 lanes" ] + 192 -> 435 [ label = "2 lanes" ] + 435 -> 436 [ label = "2 lanes" ] + 436 -> 437 [ label = "2 lanes" ] + 172 -> 253 [ label = "3 lanes" ] + 186 -> 172 [ label = "3 lanes" ] + 282 -> 253 [ label = "0 lanes" ] + 154 -> 304 [ label = "3 lanes" ] + 304 -> 164 [ label = "3 lanes" ] + 283 -> 579 [ label = "3 lanes" ] + 579 -> 284 [ label = "3 lanes" ] + 22 -> 30 [ label = "4 lanes" ] + 30 -> 171 [ label = "4 lanes" ] + 171 -> 184 [ label = "4 lanes" ] + 284 -> 22 [ label = "4 lanes" ] + 184 -> 343 [ label = "3 lanes" ] + 286 -> 364 [ label = "1 lanes" ] + 287 -> 363 [ label = "1 lanes" ] + 289 -> 367 [ label = "1 lanes" ] + 367 -> 290 [ label = "1 lanes" ] + 291 -> 292 [ label = "1 lanes" ] + 295 -> 345 [ label = "1 lanes" ] + 345 -> 350 [ label = "1 lanes" ] + 349 -> 351 [ label = "1 lanes" ] + 350 -> 349 [ label = "1 lanes" ] + 351 -> 293 [ label = "1 lanes" ] + 293 -> 294 [ label = "1 lanes" ] + 306 -> 307 [ label = "2 lanes" ] + 310 -> 309 [ label = "1 lanes" ] + 309 -> 310 [ label = "1 lanes" ] + 260 -> 311 [ label = "1 lanes" ] + 145 -> 312 [ label = "2 lanes" ] + 312 -> 145 [ label = "2 lanes" ] + 262 -> 145 [ label = "2 lanes" ] + 145 -> 262 [ label = "2 lanes" ] + 315 -> 314 [ label = "1 lanes" ] + 314 -> 315 [ label = "1 lanes" ] + 324 -> 261 [ label = "1 lanes" ] + 317 -> 316 [ label = "1 lanes" ] + 201 -> 563 [ label = "2 lanes" ] + 556 -> 565 [ label = "2 lanes" ] + 563 -> 556 [ label = "2 lanes" ] + 257 -> 564 [ label = "2 lanes" ] + 564 -> 322 [ label = "2 lanes" ] + 321 -> 257 [ label = "2 lanes" ] + 320 -> 321 [ label = "1 lanes" ] + 319 -> 320 [ label = "1 lanes" ] + 318 -> 319 [ label = "1 lanes" ] + 329 -> 323 [ label = "1 lanes" ] + 326 -> 325 [ label = "1 lanes" ] + 327 -> 326 [ label = "1 lanes" ] + 316 -> 329 [ label = "1 lanes" ] + 328 -> 316 [ label = "1 lanes" ] + 63 -> 329 [ label = "1 lanes" ] + 327 -> 63 [ label = "1 lanes" ] + 330 -> 327 [ label = "1 lanes" ] + 43 -> 44 [ label = "2 lanes" ] + 44 -> 45 [ label = "2 lanes" ] + 168 -> 151 [ label = "2 lanes" ] + 86 -> 54 [ label = "2 lanes" ] + 87 -> 17 [ label = "3 lanes" ] + 264 -> 335 [ label = "1 lanes" ] + 569 -> 338 [ label = "3 lanes" ] + 135 -> 336 [ label = "3 lanes" ] + 101 -> 333 [ label = "3 lanes" ] + 338 -> 101 [ label = "3 lanes" ] + 333 -> 31 [ label = "2 lanes" ] + 17 -> 209 [ label = "3 lanes" ] + 209 -> 18 [ label = "3 lanes" ] + 45 -> 229 [ label = "3 lanes" ] + 202 -> 227 [ label = "3 lanes" ] + 227 -> 499 [ label = "3 lanes" ] + 228 -> 202 [ label = "3 lanes" ] + 229 -> 228 [ label = "3 lanes" ] + 205 -> 165 [ label = "1 lanes" ] + 239 -> 26 [ label = "3 lanes" ] + 135 -> 442 [ label = "2 lanes" ] + 442 -> 544 [ label = "2 lanes" ] + 544 -> 334 [ label = "2 lanes" ] + 345 -> 344 [ label = "1 lanes" ] + 344 -> 346 [ label = "1 lanes" ] + 347 -> 344 [ label = "1 lanes" ] + 346 -> 349 [ label = "1 lanes" ] + 348 -> 369 [ label = "1 lanes" ] + 353 -> 346 [ label = "1 lanes" ] + 357 -> 353 [ label = "1 lanes" ] + 364 -> 348 [ label = "1 lanes" ] + 369 -> 357 [ label = "1 lanes" ] + 285 -> 350 [ label = "1 lanes" ] + 352 -> 365 [ label = "1 lanes" ] + 356 -> 362 [ label = "1 lanes" ] + 362 -> 351 [ label = "1 lanes" ] + 363 -> 352 [ label = "1 lanes" ] + 365 -> 356 [ label = "1 lanes" ] + 354 -> 353 [ label = "1 lanes" ] + 358 -> 355 [ label = "1 lanes" ] + 355 -> 356 [ label = "1 lanes" ] + 356 -> 372 [ label = "1 lanes" ] + 357 -> 373 [ label = "1 lanes" ] + 372 -> 357 [ label = "1 lanes" ] + 360 -> 359 [ label = "1 lanes" ] + 290 -> 348 [ label = "1 lanes" ] + 348 -> 352 [ label = "1 lanes" ] + 352 -> 291 [ label = "1 lanes" ] + 362 -> 361 [ label = "1 lanes" ] + 364 -> 363 [ label = "1 lanes" ] + 367 -> 366 [ label = "1 lanes" ] + 366 -> 580 [ label = "1 lanes" ] + 370 -> 366 [ label = "1 lanes" ] + 580 -> 368 [ label = "1 lanes" ] + 581 -> 370 [ label = "1 lanes" ] + 32 -> 439 [ label = "2 lanes" ] + 439 -> 138 [ label = "2 lanes" ] + 370 -> 373 [ label = "1 lanes" ] + 372 -> 371 [ label = "1 lanes" ] + 569 -> 568 [ label = "3 lanes" ] + 568 -> 569 [ label = "3 lanes" ] + 377 -> 36 [ label = "1 lanes" ] + 378 -> 419 [ label = "1 lanes" ] + 339 -> 342 [ label = "0 lanes" ] + 342 -> 87 [ label = "0 lanes" ] + 339 -> 18 [ label = "3 lanes" ] + 380 -> 388 [ label = "0 lanes" ] + 386 -> 380 [ label = "0 lanes" ] + 388 -> 177 [ label = "0 lanes" ] + 180 -> 382 [ label = "0 lanes" ] + 382 -> 49 [ label = "0 lanes" ] + 386 -> 180 [ label = "0 lanes" ] + 385 -> 386 [ label = "0 lanes" ] + 389 -> 179 [ label = "0 lanes" ] + 388 -> 389 [ label = "0 lanes" ] + 381 -> 382 [ label = "0 lanes" ] + 382 -> 383 [ label = "0 lanes" ] + 384 -> 385 [ label = "0 lanes" ] + 385 -> 381 [ label = "0 lanes" ] + 389 -> 384 [ label = "0 lanes" ] + 22 -> 387 [ label = "2 lanes" ] + 166 -> 22 [ label = "2 lanes" ] + 179 -> 166 [ label = "2 lanes" ] + 164 -> 306 [ label = "3 lanes" ] + 306 -> 496 [ label = "3 lanes" ] + 496 -> 299 [ label = "3 lanes" ] + 46 -> 303 [ label = "1 lanes" ] + 46 -> 154 [ label = "3 lanes" ] + 152 -> 393 [ label = "3 lanes" ] + 392 -> 391 [ label = "3 lanes" ] + 393 -> 392 [ label = "3 lanes" ] + 152 -> 46 [ label = "5 lanes" ] + 193 -> 394 [ label = "1 lanes" ] + 394 -> 425 [ label = "1 lanes" ] + 425 -> 429 [ label = "1 lanes" ] + 429 -> 193 [ label = "1 lanes" ] + 337 -> 545 [ label = "2 lanes" ] + 545 -> 396 [ label = "2 lanes" ] + 340 -> 336 [ label = "3 lanes" ] + 396 -> 340 [ label = "3 lanes" ] + 300 -> 394 [ label = "2 lanes" ] + 394 -> 425 [ label = "2 lanes" ] + 397 -> 398 [ label = "2 lanes" ] + 398 -> 255 [ label = "2 lanes" ] + 425 -> 397 [ label = "2 lanes" ] + 397 -> 68 [ label = "1 lanes" ] + 340 -> 478 [ label = "2 lanes" ] + 442 -> 340 [ label = "2 lanes" ] + 477 -> 442 [ label = "2 lanes" ] + 400 -> 256 [ label = "2 lanes" ] + 255 -> 441 [ label = "2 lanes" ] + 441 -> 477 [ label = "2 lanes" ] + 95 -> 153 [ label = "1 lanes" ] + 399 -> 95 [ label = "1 lanes" ] + 403 -> 431 [ label = "2 lanes" ] + 404 -> 510 [ label = "2 lanes" ] + 431 -> 404 [ label = "2 lanes" ] + 510 -> 405 [ label = "2 lanes" ] + 374 -> 376 [ label = "1 lanes" ] + 376 -> 406 [ label = "1 lanes" ] + 405 -> 54 [ label = "1 lanes" ] + 406 -> 405 [ label = "1 lanes" ] + 78 -> 87 [ label = "3 lanes" ] + 87 -> 78 [ label = "3 lanes" ] + 129 -> 78 [ label = "3 lanes" ] + 78 -> 129 [ label = "3 lanes" ] + 20 -> 75 [ label = "3 lanes" ] + 75 -> 391 [ label = "3 lanes" ] + 336 -> 407 [ label = "2 lanes" ] + 407 -> 163 [ label = "2 lanes" ] + 163 -> 162 [ label = "3 lanes" ] + 407 -> 399 [ label = "2 lanes" ] + 408 -> 5 [ label = "2 lanes" ] + 147 -> 150 [ label = "1 lanes" ] + 95 -> 408 [ label = "2 lanes" ] + 96 -> 106 [ label = "2 lanes" ] + 106 -> 95 [ label = "2 lanes" ] + 147 -> 158 [ label = "2 lanes" ] + 148 -> 96 [ label = "2 lanes" ] + 158 -> 148 [ label = "2 lanes" ] + 256 -> 147 [ label = "2 lanes" ] + 79 -> 409 [ label = "1 lanes" ] + 235 -> 476 [ label = "1 lanes" ] + 214 -> 215 [ label = "1 lanes" ] + 216 -> 218 [ label = "2 lanes" ] + 218 -> 418 [ label = "2 lanes" ] + 418 -> 419 [ label = "2 lanes" ] + 419 -> 573 [ label = "2 lanes" ] + 217 -> 215 [ label = "1 lanes" ] + 411 -> 413 [ label = "1 lanes" ] + 413 -> 496 [ label = "1 lanes" ] + 496 -> 217 [ label = "1 lanes" ] + 197 -> 318 [ label = "1 lanes" ] + 302 -> 197 [ label = "1 lanes" ] + 298 -> 299 [ label = "1 lanes" ] + 195 -> 414 [ label = "1 lanes" ] + 297 -> 410 [ label = "1 lanes" ] + 410 -> 53 [ label = "1 lanes" ] + 416 -> 560 [ label = "1 lanes" ] + 560 -> 415 [ label = "1 lanes" ] + 419 -> 424 [ label = "1 lanes" ] + 419 -> 424 [ label = "1 lanes" ] + 420 -> 418 [ label = "1 lanes" ] + 423 -> 422 [ label = "1 lanes" ] + 14 -> 15 [ label = "2 lanes" ] + 15 -> 210 [ label = "2 lanes" ] + 255 -> 14 [ label = "2 lanes" ] + 377 -> 424 [ label = "1 lanes" ] + 424 -> 377 [ label = "1 lanes" ] + 18 -> 445 [ label = "1 lanes" ] + 445 -> 441 [ label = "1 lanes" ] + 425 -> 426 [ label = "1 lanes" ] + 194 -> 325 [ label = "1 lanes" ] + 325 -> 427 [ label = "1 lanes" ] + 427 -> 428 [ label = "1 lanes" ] + 193 -> 552 [ label = "1 lanes" ] + 552 -> 193 [ label = "1 lanes" ] + 552 -> 453 [ label = "1 lanes" ] + 453 -> 552 [ label = "1 lanes" ] + 99 -> 549 [ label = "0 lanes" ] + 549 -> 31 [ label = "0 lanes" ] + 88 -> 430 [ label = "2 lanes" ] + 431 -> 88 [ label = "2 lanes" ] + 93 -> 170 [ label = "2 lanes" ] + 433 -> 434 [ label = "2 lanes" ] + 434 -> 93 [ label = "2 lanes" ] + 403 -> 434 [ label = "2 lanes" ] + 387 -> 439 [ label = "1 lanes" ] + 439 -> 446 [ label = "1 lanes" ] + 446 -> 448 [ label = "1 lanes" ] + 447 -> 438 [ label = "1 lanes" ] + 448 -> 447 [ label = "1 lanes" ] + 575 -> 387 [ label = "1 lanes" ] + 108 -> 281 [ label = "2 lanes" ] + 132 -> 108 [ label = "2 lanes" ] + 158 -> 190 [ label = "2 lanes" ] + 190 -> 236 [ label = "2 lanes" ] + 440 -> 158 [ label = "2 lanes" ] + 444 -> 443 [ label = "1 lanes" ] + 114 -> 115 [ label = "1 lanes" ] + 115 -> 129 [ label = "1 lanes" ] + 130 -> 497 [ label = "2 lanes" ] + 114 -> 130 [ label = "2 lanes" ] + 130 -> 114 [ label = "2 lanes" ] + 331 -> 449 [ label = "1 lanes" ] + 450 -> 521 [ label = "1 lanes" ] + 518 -> 526 [ label = "1 lanes" ] + 521 -> 536 [ label = "1 lanes" ] + 526 -> 529 [ label = "1 lanes" ] + 529 -> 532 [ label = "1 lanes" ] + 532 -> 451 [ label = "1 lanes" ] + 536 -> 518 [ label = "1 lanes" ] + 336 -> 399 [ label = "2 lanes" ] + 336 -> 341 [ label = "3 lanes" ] + 452 -> 195 [ label = "1 lanes" ] + 195 -> 452 [ label = "1 lanes" ] + 453 -> 194 [ label = "1 lanes" ] + 427 -> 63 [ label = "1 lanes" ] + 197 -> 463 [ label = "2 lanes" ] + 454 -> 455 [ label = "2 lanes" ] + 455 -> 459 [ label = "2 lanes" ] + 458 -> 257 [ label = "2 lanes" ] + 459 -> 458 [ label = "2 lanes" ] + 460 -> 454 [ label = "2 lanes" ] + 461 -> 460 [ label = "2 lanes" ] + 463 -> 461 [ label = "2 lanes" ] + 456 -> 257 [ label = "1 lanes" ] + 457 -> 464 [ label = "1 lanes" ] + 455 -> 458 [ label = "1 lanes" ] + 458 -> 470 [ label = "2 lanes" ] + 459 -> 460 [ label = "1 lanes" ] + 461 -> 462 [ label = "1 lanes" ] + 463 -> 454 [ label = "1 lanes" ] + 462 -> 464 [ label = "2 lanes" ] + 464 -> 463 [ label = "2 lanes" ] + 468 -> 465 [ label = "2 lanes" ] + 393 -> 154 [ label = "2 lanes" ] + 466 -> 393 [ label = "2 lanes" ] + 305 -> 466 [ label = "2 lanes" ] + 466 -> 468 [ label = "2 lanes" ] + 300 -> 301 [ label = "2 lanes" ] + 302 -> 307 [ label = "2 lanes" ] + 303 -> 302 [ label = "2 lanes" ] + 307 -> 413 [ label = "2 lanes" ] + 413 -> 300 [ label = "2 lanes" ] + 467 -> 303 [ label = "2 lanes" ] + 304 -> 467 [ label = "2 lanes" ] + 392 -> 304 [ label = "2 lanes" ] + 469 -> 392 [ label = "2 lanes" ] + 305 -> 469 [ label = "2 lanes" ] + 470 -> 471 [ label = "1 lanes" ] + 472 -> 470 [ label = "1 lanes" ] + 474 -> 472 [ label = "1 lanes" ] + 472 -> 473 [ label = "1 lanes" ] + 476 -> 188 [ label = "1 lanes" ] + 478 -> 400 [ label = "2 lanes" ] + 148 -> 159 [ label = "2 lanes" ] + 159 -> 149 [ label = "2 lanes" ] + 297 -> 298 [ label = "1 lanes" ] + 18 -> 135 [ label = "3 lanes" ] + 59 -> 155 [ label = "3 lanes" ] + 341 -> 59 [ label = "3 lanes" ] + 341 -> 339 [ label = "0 lanes" ] + 395 -> 400 [ label = "2 lanes" ] + 480 -> 395 [ label = "2 lanes" ] + 402 -> 94 [ label = "3 lanes" ] + 224 -> 226 [ label = "2 lanes" ] + 225 -> 486 [ label = "2 lanes" ] + 226 -> 225 [ label = "2 lanes" ] + 412 -> 224 [ label = "2 lanes" ] + 481 -> 465 [ label = "2 lanes" ] + 485 -> 488 [ label = "2 lanes" ] + 486 -> 485 [ label = "2 lanes" ] + 487 -> 486 [ label = "2 lanes" ] + 488 -> 280 [ label = "1 lanes" ] + 157 -> 482 [ label = "1 lanes" ] + 482 -> 157 [ label = "1 lanes" ] + 482 -> 489 [ label = "1 lanes" ] + 489 -> 482 [ label = "1 lanes" ] + 68 -> 398 [ label = "3 lanes" ] + 398 -> 60 [ label = "3 lanes" ] + 67 -> 582 [ label = "2 lanes" ] + 330 -> 67 [ label = "2 lanes" ] + 582 -> 68 [ label = "2 lanes" ] + 465 -> 483 [ label = "2 lanes" ] + 483 -> 484 [ label = "2 lanes" ] + 484 -> 482 [ label = "2 lanes" ] + 586 -> 234 [ label = "2 lanes" ] + 136 -> 33 [ label = "2 lanes" ] + 491 -> 137 [ label = "2 lanes" ] + 298 -> 53 [ label = "3 lanes" ] + 167 -> 23 [ label = "2 lanes" ] + 23 -> 167 [ label = "2 lanes" ] + 177 -> 167 [ label = "2 lanes" ] + 167 -> 177 [ label = "2 lanes" ] + 492 -> 503 [ label = "0 lanes" ] + 503 -> 185 [ label = "0 lanes" ] + 38 -> 220 [ label = "3 lanes" ] + 220 -> 16 [ label = "3 lanes" ] + 391 -> 38 [ label = "3 lanes" ] + 21 -> 224 [ label = "3 lanes" ] + 224 -> 499 [ label = "3 lanes" ] + 281 -> 21 [ label = "3 lanes" ] + 39 -> 281 [ label = "3 lanes" ] + 16 -> 378 [ label = "3 lanes" ] + 378 -> 39 [ label = "3 lanes" ] + 235 -> 297 [ label = "1 lanes" ] + 191 -> 235 [ label = "1 lanes" ] + 113 -> 191 [ label = "1 lanes" ] + 499 -> 20 [ label = "3 lanes" ] + 500 -> 501 [ label = "1 lanes" ] + 501 -> 508 [ label = "1 lanes" ] + 183 -> 501 [ label = "1 lanes" ] + 503 -> 507 [ label = "1 lanes" ] + 507 -> 0 [ label = "1 lanes" ] + 505 -> 506 [ label = "1 lanes" ] + 504 -> 505 [ label = "1 lanes" ] + 505 -> 507 [ label = "1 lanes" ] + 510 -> 86 [ label = "1 lanes" ] + 512 -> 524 [ label = "1 lanes" ] + 513 -> 531 [ label = "1 lanes" ] + 515 -> 525 [ label = "1 lanes" ] + 524 -> 535 [ label = "1 lanes" ] + 525 -> 513 [ label = "1 lanes" ] + 531 -> 514 [ label = "1 lanes" ] + 535 -> 515 [ label = "1 lanes" ] + 292 -> 523 [ label = "1 lanes" ] + 516 -> 527 [ label = "1 lanes" ] + 523 -> 537 [ label = "1 lanes" ] + 527 -> 530 [ label = "1 lanes" ] + 530 -> 534 [ label = "1 lanes" ] + 534 -> 332 [ label = "1 lanes" ] + 537 -> 516 [ label = "1 lanes" ] + 515 -> 516 [ label = "1 lanes" ] + 516 -> 517 [ label = "1 lanes" ] + 518 -> 517 [ label = "1 lanes" ] + 517 -> 528 [ label = "1 lanes" ] + 519 -> 522 [ label = "1 lanes" ] + 522 -> 538 [ label = "1 lanes" ] + 528 -> 539 [ label = "1 lanes" ] + 533 -> 520 [ label = "1 lanes" ] + 538 -> 517 [ label = "1 lanes" ] + 539 -> 533 [ label = "1 lanes" ] + 521 -> 522 [ label = "1 lanes" ] + 522 -> 523 [ label = "1 lanes" ] + 523 -> 524 [ label = "1 lanes" ] + 525 -> 527 [ label = "1 lanes" ] + 527 -> 528 [ label = "1 lanes" ] + 528 -> 526 [ label = "1 lanes" ] + 529 -> 539 [ label = "1 lanes" ] + 530 -> 513 [ label = "1 lanes" ] + 539 -> 530 [ label = "1 lanes" ] + 531 -> 534 [ label = "1 lanes" ] + 533 -> 532 [ label = "1 lanes" ] + 534 -> 533 [ label = "1 lanes" ] + 535 -> 537 [ label = "1 lanes" ] + 537 -> 538 [ label = "1 lanes" ] + 538 -> 536 [ label = "1 lanes" ] + 541 -> 435 [ label = "1 lanes" ] + 543 -> 181 [ label = "1 lanes" ] + 395 -> 545 [ label = "2 lanes" ] + 479 -> 395 [ label = "2 lanes" ] + 545 -> 544 [ label = "2 lanes" ] + 547 -> 546 [ label = "1 lanes" ] + 548 -> 547 [ label = "1 lanes" ] + 87 -> 547 [ label = "1 lanes" ] + 550 -> 549 [ label = "0 lanes" ] + 551 -> 550 [ label = "0 lanes" ] + 333 -> 550 [ label = "1 lanes" ] + 550 -> 374 [ label = "1 lanes" ] + 552 -> 553 [ label = "1 lanes" ] + 553 -> 554 [ label = "1 lanes" ] + 553 -> 452 [ label = "1 lanes" ] + 555 -> 42 [ label = "2 lanes" ] + 475 -> 556 [ label = "1 lanes" ] + 247 -> 540 [ label = "1 lanes" ] + 246 -> 557 [ label = "1 lanes" ] + 40 -> 248 [ label = "1 lanes" ] + 41 -> 558 [ label = "1 lanes" ] + 245 -> 42 [ label = "1 lanes" ] + 559 -> 560 [ label = "1 lanes" ] + 511 -> 43 [ label = "2 lanes" ] + 561 -> 562 [ label = "1 lanes" ] + 562 -> 561 [ label = "1 lanes" ] + 199 -> 317 [ label = "1 lanes" ] + 317 -> 198 [ label = "1 lanes" ] + 564 -> 563 [ label = "2 lanes" ] + 322 -> 201 [ label = "1 lanes" ] + 328 -> 200 [ label = "1 lanes" ] + 565 -> 328 [ label = "1 lanes" ] + 279 -> 570 [ label = "1 lanes" ] + 77 -> 572 [ label = "0 lanes" ] + 103 -> 571 [ label = "1 lanes" ] + 572 -> 103 [ label = "1 lanes" ] + 333 -> 379 [ label = "1 lanes" ] + 379 -> 333 [ label = "1 lanes" ] + 574 -> 481 [ label = "2 lanes" ] + 575 -> 576 [ label = "2 lanes" ] + 576 -> 574 [ label = "2 lanes" ] + 576 -> 284 [ label = "1 lanes" ] + 124 -> 143 [ label = "1 lanes" ] + 577 -> 578 [ label = "2 lanes" ] + 578 -> 577 [ label = "2 lanes" ] + 579 -> 574 [ label = "1 lanes" ] + 574 -> 579 [ label = "1 lanes" ] + 288 -> 580 [ label = "1 lanes" ] + 359 -> 365 [ label = "1 lanes" ] + 365 -> 371 [ label = "1 lanes" ] + 369 -> 581 [ label = "1 lanes" ] + 371 -> 369 [ label = "1 lanes" ] + 187 -> 48 [ label = "3 lanes" ] + 334 -> 238 [ label = "2 lanes" ] + 334 -> 239 [ label = "2 lanes" ] + 54 -> 509 [ label = "3 lanes" ] + 127 -> 110 [ label = "3 lanes" ] + 509 -> 127 [ label = "3 lanes" ] + 48 -> 493 [ label = "2 lanes" ] + 493 -> 48 [ label = "2 lanes" ] + 110 -> 99 [ label = "2 lanes" ] + 582 -> 583 [ label = "1 lanes" ] + 583 -> 582 [ label = "1 lanes" ] + 583 -> 584 [ label = "1 lanes" ] + 584 -> 583 [ label = "1 lanes" ] + 583 -> 585 [ label = "1 lanes" ] + 585 -> 583 [ label = "1 lanes" ] + 162 -> 440 [ label = "3 lanes" ] + 159 -> 236 [ label = "3 lanes" ] + 568 -> 566 [ label = "3 lanes" ] + 566 -> 568 [ label = "3 lanes" ] + 449 -> 129 [ label = "3 lanes" ] + 129 -> 449 [ label = "3 lanes" ] + 566 -> 449 [ label = "3 lanes" ] + 449 -> 566 [ label = "3 lanes" ] } diff --git a/tests/src/northgate_dual_carriageway/geometry.json b/tests/src/northgate_dual_carriageway/geometry.json index 91f0bd73..2fad60bc 100644 --- a/tests/src/northgate_dual_carriageway/geometry.json +++ b/tests/src/northgate_dual_carriageway/geometry.json @@ -897,20 +897,20 @@ 47.707261467405246 ], [ - -122.32607904293442, - 47.70728710976504 + -122.32607903758866, + 47.70728710886572 ], [ - -122.32706480099468, - 47.70728186402153 + -122.32696239066493, + 47.70728265362599 ], [ - -122.32706437867853, - 47.70724589295194 + -122.32696198973188, + 47.7072466825564 ], [ - -122.32608775654612, - 47.70725109013208 + -122.32608776189188, + 47.7072510910314 ], [ -122.32599264052504, @@ -953,13 +953,49 @@ "type": "Polygon" }, "properties": { - "dst_i": 4632418342, + "dst_i": 9188152680, "osm_way_id": 39765316, "src_i": 9127145511, "type": "road" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32702931975592, + 47.70728222464954 + ], + [ + -122.32706490122794, + 47.70728194675913 + ], + [ + -122.32706428111815, + 47.70724597568954 + ], + [ + -122.32702869964614, + 47.707246253579946 + ], + [ + -122.32702931975592, + 47.70728222464954 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4632418342, + "osm_way_id": 39765316, + "src_i": 9188152680, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1568,6 +1604,42 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3246090045216, + 47.708798444173446 + ], + [ + -122.32460331528158, + 47.70917193427654 + ], + [ + -122.3246300414789, + 47.70917211773817 + ], + [ + -122.32463573071892, + 47.708798627635076 + ], + [ + -122.3246090045216, + 47.708798444173446 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9725987906, + "osm_way_id": 186162534, + "src_i": 4723314713, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1932,6 +2004,150 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32581997603286, + 47.709707328367024 + ], + [ + -122.32563613620003, + 47.7101028680397 + ], + [ + -122.32566164623375, + 47.71010823699028 + ], + [ + -122.32584548606658, + 47.709712697317606 + ], + [ + -122.32581997603286, + 47.709707328367024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8500822634, + "osm_way_id": 264983006, + "src_i": 8500822585, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32562947402914, + 47.7102193131135 + ], + [ + -122.32583187305299, + 47.71033717012237 + ], + [ + -122.32584936442565, + 47.71032356878089 + ], + [ + -122.3256469654018, + 47.71020571177202 + ], + [ + -122.32562947402914, + 47.7102193131135 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9384178855, + "osm_way_id": 264983007, + "src_i": 2706302796, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32448345901825, + 47.710303377209954 + ], + [ + -122.32359488579363, + 47.71034141132354 + ], + [ + -122.32359658307688, + 47.71035936178479 + ], + [ + -122.3244851563015, + 47.7103213276712 + ], + [ + -122.32448345901825, + 47.710303377209954 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2706302805, + "osm_way_id": 264983008, + "src_i": 2706302812, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3245155430176, + 47.71029081548436 + ], + [ + -122.323902870537, + 47.709833084118436 + ], + [ + -122.32388301098644, + 47.70984512243879 + ], + [ + -122.32449568346703, + 47.71030285380472 + ], + [ + -122.3245155430176, + 47.71029081548436 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2706302814, + "osm_way_id": 264983009, + "src_i": 2706302812, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -2728,6 +2944,78 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32599919978979, + 47.708002937467334 + ], + [ + -122.32599515303885, + 47.707829997903296 + ], + [ + -122.32596842684153, + 47.70783028029031 + ], + [ + -122.32597247359249, + 47.708003219854355 + ], + [ + -122.32599919978979, + 47.708002937467334 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9734066143, + "osm_way_id": 468773475, + "src_i": 400473864, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32599406651028, + 47.70778502012682 + ], + [ + -122.32598696331301, + 47.70749951876011 + ], + [ + -122.3259602371157, + 47.70749981913356 + ], + [ + -122.32596734031296, + 47.70778532050027 + ], + [ + -122.32599406651028, + 47.70778502012682 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4632418344, + "osm_way_id": 468773475, + "src_i": 9734066143, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3132,6 +3420,42 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32459883285004, + 47.70946959896933 + ], + [ + -122.32459807375012, + 47.70951981619406 + ], + [ + -122.32462479994744, + 47.70951999965569 + ], + [ + -122.32462555904736, + 47.70946978243095 + ], + [ + -122.32459883285004, + 47.70946959896933 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9725719359, + "osm_way_id": 486262204, + "src_i": 4789250352, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3456,6 +3780,78 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32593409761708, + 47.70779014895851 + ], + [ + -122.32532063396192, + 47.70779627963458 + ], + [ + -122.3253210295492, + 47.707814264270056 + ], + [ + -122.32593449320436, + 47.707808133593986 + ], + [ + -122.32593409761708, + 47.70779014895851 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6139800717, + "osm_way_id": 777096915, + "src_i": 9734066143, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3239045197083, + 47.70983335751224 + ], + [ + -122.32527325035727, + 47.710061064868846 + ], + [ + -122.32527966528612, + 47.7100436036386 + ], + [ + -122.32391093463714, + 47.709815896281995 + ], + [ + -122.3239045197083, + 47.70983335751224 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2706302792, + "osm_way_id": 803703472, + "src_i": 2706302814, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3636,6 +4032,334 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32557736476024, + 47.71019823301271 + ], + [ + -122.32547588726806, + 47.71019829416659 + ], + [ + -122.32547591132405, + 47.710216280600704 + ], + [ + -122.32557738881621, + 47.71021621944683 + ], + [ + -122.32557736476024, + 47.71019823301271 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8500809112, + "osm_way_id": 915137868, + "src_i": 8500809111, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32580399751426, + 47.70969290954211 + ], + [ + -122.32578125792793, + 47.70970432013591 + ], + [ + -122.32579723644653, + 47.70971873986014 + ], + [ + -122.32581997603286, + 47.709707329266344 + ], + [ + -122.32580399751426, + 47.70969290954211 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8500822586, + "osm_way_id": 915137870, + "src_i": 8500822585, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32529440893092, + 47.70988247126924 + ], + [ + -122.32523449616836, + 47.70989909882826 + ], + [ + -122.32524468788657, + 47.7099157272866 + ], + [ + -122.32530460064913, + 47.70989909972758 + ], + [ + -122.32529440893092, + 47.70988247126924 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8500822594, + "osm_way_id": 915137871, + "src_i": 8500822593, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32563613620003, + 47.7101028680397 + ], + [ + -122.3256174046078, + 47.71008593830859 + ], + [ + -122.32555302010525, + 47.71005282438405 + ], + [ + -122.3255349914823, + 47.71005475522776 + ], + [ + -122.3255175174834, + 47.71003355281922 + ], + [ + -122.3254542769765, + 47.7100511399545 + ], + [ + -122.32535172231086, + 47.71003632722668 + ], + [ + -122.325346111921, + 47.71005391256332 + ], + [ + -122.32545680018184, + 47.71006989980528 + ], + [ + -122.32550570064988, + 47.710056300262444 + ], + [ + -122.3255206995554, + 47.710074498936486 + ], + [ + -122.32554589953423, + 47.71007180007204 + ], + [ + -122.32559819991455, + 47.71009869968359 + ], + [ + -122.32561469697325, + 47.710113609538155 + ], + [ + -122.32563613620003, + 47.7101028680397 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2706302792, + "osm_way_id": 915137875, + "src_i": 8500822634, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32532005528188, + 47.710020709605935 + ], + [ + -122.32525306872382, + 47.70993573269795 + ], + [ + -122.32522945643989, + 47.709944161140974 + ], + [ + -122.32529644299794, + 47.71002913804897 + ], + [ + -122.32532005528188, + 47.710020709605935 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8500822594, + "osm_way_id": 915291314, + "src_i": 2706302792, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32890128152646, + 47.70848611424161 + ], + [ + -122.32883640654914, + 47.708475336770285 + ], + [ + -122.32882999963896, + 47.70849279979917 + ], + [ + -122.32889487461627, + 47.70850357727049 + ], + [ + -122.32890128152646, + 47.70848611424161 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7518081853, + "osm_way_id": 971020111, + "src_i": 8986752618, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3288406564395, + 47.708784777181485 + ], + [ + -122.328773656517, + 47.708793977242536 + ], + [ + -122.32877899961815, + 47.708811600350685 + ], + [ + -122.32884599954066, + 47.708802400289635 + ], + [ + -122.3288406564395, + 47.708784777181485 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7518081836, + "osm_way_id": 971020113, + "src_i": 8986750916, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32589695116972, + 47.70714019027592 + ], + [ + -122.325897973549, + 47.70718626792284 + ], + [ + -122.32592469974632, + 47.707185999924974 + ], + [ + -122.32592367736703, + 47.70713992227805 + ], + [ + -122.32589695116972, + 47.70714019027592 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9188152666, + "osm_way_id": 987034729, + "src_i": 9123420395, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3893,41 +4617,41 @@ "coordinates": [ [ [ - -122.32716240012778, - 47.7084261447723 + -122.32561955227251, + 47.708129722042784 ], [ - -122.32777979426331, - 47.70841884228005 + -122.32589149179798, + 47.708097560499944 ], [ - -122.32777308531689, - 47.70815978366945 + -122.325983817325, + 47.70809261333124 ], [ - -122.32774636179246, - 47.70816009663341 + -122.3259816950527, + 47.708074684453706 ], [ - -122.32775260565654, - 47.70840117600445 + -122.32588809990435, + 47.70807969997086 ], [ - -122.32716192969967, - 47.708408161935466 + -122.32561492550509, + 47.70811200720382 ], [ - -122.32716240012778, - 47.7084261447723 + -122.32561955227251, + 47.708129722042784 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 476254734, - "osm_way_id": 996138767, - "src_i": 4554773505, + "dst_i": 9188152684, + "osm_way_id": 995002481, + "src_i": 9188152681, "type": "road" }, "type": "Feature" @@ -3937,41 +4661,49 @@ "coordinates": [ [ [ - -122.32648146077624, - 47.70850524371361 + -122.32604545677258, + 47.70809312324665 ], [ - -122.32647252531493, - 47.70849490331264 + -122.32634401691631, + 47.70811409003289 ], [ - -122.32645200689771, - 47.708444974770174 + -122.32641581467101, + 47.70818963845212 ], [ - -122.32642624561261, - 47.708449768154864 + -122.32699033035296, + 47.70818760508574 ], [ - -122.32644768617584, - 47.70850194140431 + -122.32699018868995, + 47.708169618651624 ], [ - -122.32645835366795, - 47.70851428549405 + -122.32643040061548, + 47.708171599857344 ], [ - -122.32648146077624, - 47.70850524371361 + -122.32635959984763, + 47.708097100047226 + ], + [ + -122.3260482312293, + 47.70807523393927 + ], + [ + -122.32604545677258, + 47.70809312324665 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9322923130, - "osm_way_id": 1010448520, - "src_i": 9322923125, + "dst_i": 9188152718, + "osm_way_id": 995002481, + "src_i": 9188152684, "type": "road" }, "type": "Feature" @@ -3981,41 +4713,41 @@ "coordinates": [ [ [ - -122.32643228500083, - 47.70840141612335 + -122.32696314976485, + 47.707302403629974 ], [ - -122.32638423183798, - 47.70830438290857 + -122.32607323207804, + 47.70731009552852 ], [ - -122.32633069123807, - 47.70827248666563 + -122.32604051059513, + 47.707306601663696 ], [ - -122.32631297267001, - 47.708285953108856 + -122.32603632218118, + 47.70732436506603 ], [ - -122.326361140767, - 47.70831464956517 + -122.32607129958073, + 47.70732809994907 ], [ - -122.32640692732167, - 47.708407103433814 + -122.32696349189439, + 47.707320388265444 ], [ - -122.32643228500083, - 47.70840141612335 + -122.32696314976485, + 47.707302403629974 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 411602465, - "osm_way_id": 1010448520, - "src_i": 9322923130, + "dst_i": 9188152667, + "osm_way_id": 995002573, + "src_i": 9812120063, "type": "road" }, "type": "Feature" @@ -4025,33 +4757,33 @@ "coordinates": [ [ [ - -122.3272988977857, - 47.70851945119792 + -122.32596723339748, + 47.70805423028083 ], [ - -122.32698311756734, - 47.70851788278087 + -122.32597490591967, + 47.70806285207802 ], [ - -122.32698224887905, - 47.70859715798924 + -122.32599783661742, + 47.70805361064818 ], [ - -122.32729802909742, - 47.708598726406294 + -122.32599016409523, + 47.70804498885098 ], [ - -122.3272988977857, - 47.70851945119792 + -122.32596723339748, + 47.70805423028083 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4272355596, - "osm_way_id": 1054980554, - "src_i": 53100765, + "dst_i": 9188152684, + "osm_way_id": 995002574, + "src_i": 400473864, "type": "road" }, "type": "Feature" @@ -4061,33 +4793,33 @@ "coordinates": [ [ [ - -122.3264583523315, - 47.70851428549405 + -122.32702167797193, + 47.70724167423382 ], [ - -122.3263962638389, - 47.70851461284715 + -122.32701874848776, + 47.7071395679453 ], [ - -122.32639718598492, - 47.70859388805552 + -122.32699202496333, + 47.70713991508348 ], [ - -122.32645927447751, - 47.70859356070242 + -122.3269949544475, + 47.707242021372 ], [ - -122.3264583523315, - 47.70851428549405 + -122.32702167797193, + 47.70724167423382 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 53211559, - "osm_way_id": 1054983185, - "src_i": 9322923125, + "dst_i": 9188152707, + "osm_way_id": 995002586, + "src_i": 9188152680, "type": "road" }, "type": "Feature" @@ -4097,33 +4829,33 @@ "coordinates": [ [ [ - -122.32314999444063, - 47.70774693655054 + -122.3270496163235, + 47.70814664278068 ], [ - -122.32315725533822, - 47.70800987753294 + -122.32702433081229, + 47.70734219771614 ], [ - -122.32324246163066, - 47.70800881273604 + -122.32699760728786, + 47.707342577229895 ], [ - -122.32323520073305, - 47.707745871753644 + -122.32702289279908, + 47.70814702229444 ], [ - -122.32314999444063, - 47.70774693655054 + -122.3270496163235, + 47.70814664278068 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9754620676, - "osm_way_id": 1061736838, - "src_i": 3711400490, + "dst_i": 9812120063, + "osm_way_id": 995002586, + "src_i": 9188152718, "type": "road" }, "type": "Feature" @@ -4133,35 +4865,34 @@ "coordinates": [ [ [ - -122.32891426106582, - 47.70833844921479 + -122.32702309994782, + 47.70729733685148 ], [ - -122.32886463891829, - 47.70835025910743 + -122.32702285136934, + 47.7072866978757 ], [ - -122.32882336286048, - 47.708262795574925 + -122.32699612517202, + 47.707286980262715 ], [ - -122.32887461279621, - 47.70825472506194 + -122.3269963737505, + 47.707297619238496 ], [ - -122.32891426106582, - 47.70833844921479 + -122.32702309994782, + 47.70729733685148 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-1", - "osm_node_id": -1, - "type": "intersection" + "dst_i": 9188152680, + "osm_way_id": 995002586, + "src_i": 9812120063, + "type": "road" }, "type": "Feature" }, @@ -4170,55 +4901,42 @@ "coordinates": [ [ [ - -122.32876184502926, - 47.708576256853476 - ], - [ - -122.32875929910438, - 47.70868194514035 - ], - [ - -122.32875207830008, - 47.70868186600004 - ], - [ - -122.32875431550653, - 47.70868379054849 + -122.32716240012778, + 47.7084261447723 ], [ - -122.32872864777246, - 47.70869730015915 + -122.32777979426331, + 47.70841884228005 ], [ - -122.32860417409681, - 47.708695782104115 + -122.32777308531689, + 47.70815978366945 ], [ - -122.3285684883822, - 47.70869542687204 + -122.32774636179246, + 47.70816009663341 ], [ - -122.32857147132411, - 47.70855881630763 + -122.32775260565654, + 47.70840117600445 ], [ - -122.32876108192002, - 47.70855563900405 + -122.32716192969967, + 47.708408161935466 ], [ - -122.32876184502926, - 47.708576256853476 + -122.32716240012778, + 47.7084261447723 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/53029362", - "osm_node_id": 53029362, - "type": "intersection" + "dst_i": 476254734, + "osm_way_id": 996138767, + "src_i": 4554773505, + "type": "road" }, "type": "Feature" }, @@ -4227,43 +4945,42 @@ "coordinates": [ [ [ - -122.32330155916267, - 47.709996830816 + -122.32648146077624, + 47.70850524371361 ], [ - -122.32330640644328, - 47.71002180767774 + -122.32647252531493, + 47.70849490331264 ], [ - -122.32322190044725, - 47.710029232477744 + -122.32645200689771, + 47.708444974770174 ], [ - -122.3232155042286, - 47.71002922168588 + -122.32642624561261, + 47.708449768154864 ], [ - -122.32321576082576, - 47.709967377130816 + -122.32644768617584, + 47.70850194140431 ], [ - -122.32330097513686, - 47.70996663159312 + -122.32645835366795, + 47.70851428549405 ], [ - -122.32330155916267, - 47.709996830816 + -122.32648146077624, + 47.70850524371361 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53092589", - "osm_node_id": 53092589, - "type": "intersection" + "dst_i": 9322923130, + "osm_way_id": 1010448520, + "src_i": 9322923125, + "type": "road" }, "type": "Feature" }, @@ -4272,35 +4989,42 @@ "coordinates": [ [ [ - -122.32340138748356, - 47.710665922567884 + -122.32643228500083, + 47.70840141612335 ], [ - -122.32326354402703, - 47.710667167229126 + -122.32638423183798, + 47.70830438290857 ], [ - -122.32326197504234, - 47.71058848377444 + -122.32633069123807, + 47.70827248666563 ], [ - -122.32339981849887, - 47.710587239113195 + -122.32631297267001, + 47.708285953108856 ], [ - -122.32340138748356, - 47.710665922567884 + -122.326361140767, + 47.70831464956517 + ], + [ + -122.32640692732167, + 47.708407103433814 + ], + [ + -122.32643228500083, + 47.70840141612335 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/53092591", - "osm_node_id": 53092591, - "type": "intersection" + "dst_i": 411602465, + "osm_way_id": 1010448520, + "src_i": 9322923130, + "type": "road" }, "type": "Feature" }, @@ -4309,35 +5033,34 @@ "coordinates": [ [ [ - -122.32736625453862, - 47.70853103626014 + -122.32609727068747, + 47.70844459975302 ], [ - -122.32736455458247, - 47.70858837341482 + -122.32609727068747, + 47.70850580039375 ], [ - -122.32729802909742, - 47.708598726406294 + -122.32612399955767, + 47.70850580039375 ], [ - -122.3272988977857, - 47.70851945119792 + -122.32612399955767, + 47.70844459975302 ], [ - -122.32736625453862, - 47.70853103626014 + -122.32609727068747, + 47.70844459975302 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53100765", - "osm_node_id": 53100765, - "type": "intersection" + "dst_i": 9384044300, + "osm_way_id": 1017390619, + "src_i": 9384044299, + "type": "road" }, "type": "Feature" }, @@ -4346,39 +5069,34 @@ "coordinates": [ [ [ - -122.32741155997361, - 47.70990174103543 - ], - [ - -122.32742813454603, - 47.709904488463245 + -122.32459974163163, + 47.70940830389982 ], [ - -122.32740294793163, - 47.709973268587305 + -122.3245995010718, + 47.7094246400786 ], [ - -122.32732157589562, - 47.709940252688845 + -122.324626229942, + 47.709424818144306 ], [ - -122.32740661780551, - 47.709897999857134 + -122.32462647050184, + 47.70940848196552 ], [ - -122.32741155997361, - 47.70990174103543 + -122.32459974163163, + 47.70940830389982 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53100766", - "osm_node_id": 53100766, - "type": "intersection" + "dst_i": 4789250352, + "osm_way_id": 1017417847, + "src_i": 9384317428, + "type": "road" }, "type": "Feature" }, @@ -4387,59 +5105,70 @@ "coordinates": [ [ [ - -122.32639718464848, - 47.70859388895484 - ], - [ - -122.3263532744605, - 47.70860473477461 + -122.32586037672017, + 47.70965062883143 ], [ - -122.32633713155934, - 47.70857513899659 + -122.32585136909091, + 47.70966041614955 ], [ - -122.32612314690671, - 47.708603475724225 + -122.32587409397637, + 47.70966988600712 ], [ - -122.32611685493066, - 47.70858195855309 + -122.32588310160563, + 47.70966009868899 ], [ - -122.32611746969468, - 47.70852461240519 - ], + -122.32586037672017, + 47.70965062883143 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8500822585, + "osm_way_id": 1017417854, + "src_i": 8975595220, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -122.32631833849071, - 47.708525588169245 + -122.32522110767727, + 47.70989592961857 ], [ - -122.32631706486004, - 47.70852187666856 + -122.32518241763765, + 47.70984862709548 ], [ - -122.32636264025662, - 47.708514790013524 + -122.32515900047447, + 47.70985730015401 ], [ - -122.3263962638389, - 47.70851461284715 + -122.32519769051409, + 47.7099046026771 ], [ - -122.32639718464848, - 47.70859388895484 + -122.32522110767727, + 47.70989592961857 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/53211559", - "osm_node_id": 53211559, - "type": "intersection" + "dst_i": 2706302794, + "osm_way_id": 1017417855, + "src_i": 8500822594, + "type": "road" }, "type": "Feature" }, @@ -4448,43 +5177,34 @@ "coordinates": [ [ [ - -122.32869915112775, - 47.7099516282091 - ], - [ - -122.32870025102076, - 47.709985872581015 - ], - [ - -122.32860836785655, - 47.70998720897307 + -122.32361764809949, + 47.70978323291764 ], [ - -122.32860636452773, - 47.70998719908053 + -122.32383941753558, + 47.709822219412914 ], [ - -122.32860709957166, - 47.70991636310705 + -122.32384617459397, + 47.7098048175379 ], [ - -122.3286990054554, - 47.7099161913366 + -122.32362440515787, + 47.70976583104263 ], [ - -122.32869915112775, - 47.7099516282091 + -122.32361764809949, + 47.70978323291764 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53234912", - "osm_node_id": 53234912, - "type": "intersection" + "dst_i": 2706302814, + "osm_way_id": 1017417857, + "src_i": 2706302783, + "type": "road" }, "type": "Feature" }, @@ -4493,35 +5213,34 @@ "coordinates": [ [ [ - -122.32889283386703, - 47.7088029623657 + -122.3254598058433, + 47.71026533949908 ], [ - -122.32886716613297, - 47.70881647197636 + -122.32455031727774, + 47.710300649567216 ], [ - -122.32878482918476, - 47.708745634204234 + -122.32455185686067, + 47.7103186054244 ], [ - -122.3288104969188, - 47.708732124593574 + -122.32546134542622, + 47.71028329535626 ], [ - -122.32889283386703, - 47.7088029623657 + -122.3254598058433, + 47.71026533949908 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/90251447", - "osm_node_id": 90251447, - "type": "intersection" + "dst_i": 2706302812, + "osm_way_id": 1017417859, + "src_i": 2706302803, + "type": "road" }, "type": "Feature" }, @@ -4530,35 +5249,42 @@ "coordinates": [ [ [ - -122.32894558329238, - 47.7085782632402 + -122.32557476805049, + 47.710231727350326 ], [ - -122.32894303603105, - 47.70868395152707 + -122.32554028246216, + 47.71030027095278 ], [ - -122.32887872636934, - 47.70868324915682 + -122.32553426712991, + 47.71029295946731 ], [ - -122.32888127363066, - 47.70857756086995 + -122.32551088204137, + 47.710301670297355 ], [ - -122.32894558329238, - 47.7085782632402 + -122.32554620023402, + 47.71034460031831 + ], + [ + -122.32560008563635, + 47.71023749559975 + ], + [ + -122.32557476805049, + 47.710231727350326 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/95600097", - "osm_node_id": 95600097, - "type": "intersection" + "dst_i": 2706302803, + "osm_way_id": 1017417861, + "src_i": 8500809111, + "type": "road" }, "type": "Feature" }, @@ -4567,39 +5293,34 @@ "coordinates": [ [ [ - -122.32880702884789, - 47.70807777722106 - ], - [ - -122.32874379368677, - 47.708088400908366 + -122.3254506525417, + 47.710188034704565 ], [ - -122.32855418442732, - 47.70809157731263 + -122.32535128930316, + 47.71006055495344 ], [ - -122.32855252055514, - 47.70804662471716 + -122.32532761821571, + 47.71006890965209 ], [ - -122.3287421298146, - 47.7080434483129 + -122.32542698145424, + 47.710196389403215 ], [ - -122.32880702884789, - 47.70807777722106 + -122.3254506525417, + 47.710188034704565 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/95600603", - "osm_node_id": 95600603, - "type": "intersection" + "dst_i": 2706302792, + "osm_way_id": 1017417862, + "src_i": 8500809112, + "type": "road" }, "type": "Feature" }, @@ -4608,43 +5329,34 @@ "coordinates": [ [ [ - -122.32604924024415, - 47.709590915668805 - ], - [ - -122.32605519276355, - 47.70961190134081 - ], - [ - -122.32595178945627, - 47.70962518072512 + -122.32550251991432, + 47.71025369238367 ], [ - -122.3259421269697, - 47.709625107880065 + -122.32548182508657, + 47.710227647127745 ], [ - -122.32594316939563, - 47.70956326692228 + -122.32545825289594, + 47.710236127731434 ], [ - -122.3260484183314, - 47.70956191434243 + -122.3254789477237, + 47.710262172987356 ], [ - -122.32604924024415, - 47.709590915668805 + -122.32550251991432, + 47.71025369238367 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/95601224", - "osm_node_id": 95601224, - "type": "intersection" + "dst_i": 8500809112, + "osm_way_id": 1017417863, + "src_i": 2706302803, + "type": "road" }, "type": "Feature" }, @@ -4653,59 +5365,70 @@ "coordinates": [ [ [ - -122.32632971830719, - 47.70827190750245 - ], - [ - -122.32631297267001, - 47.708285953108856 + -122.32558669714527, + 47.71020755987812 ], [ - -122.32631055905303, - 47.708284515093446 + -122.32558529254314, + 47.7102108073288 ], [ - -122.32630920256287, - 47.70829030852387 + -122.32561095760431, + 47.71021583453714 ], [ - -122.32626299636495, - 47.70828540901922 + -122.32561236220643, + 47.71021258708646 ], [ - -122.32626692550886, - 47.70826863127348 - ], + -122.32558669714527, + 47.71020755987812 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8500809111, + "osm_way_id": 1017417864, + "src_i": 2706302796, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -122.32625624197945, - 47.70825324567773 + -122.32561008357025, + 47.710157547698735 ], [ - -122.32630467201938, - 47.70823801656397 + -122.32560689748892, + 47.71016398504351 ], [ - -122.32631593690172, - 47.708254239428214 + -122.32563225784097, + 47.71016966875669 ], [ - -122.32632876675942, - 47.70825393186019 + -122.3256354439223, + 47.71016323141192 ], [ - -122.32632971830719, - 47.70827190750245 + -122.32561008357025, + 47.710157547698735 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/411602465", - "osm_node_id": 411602465, - "type": "intersection" + "dst_i": 2706302796, + "osm_way_id": 1017417865, + "src_i": 8500822634, + "type": "road" }, "type": "Feature" }, @@ -4714,51 +5437,70 @@ "coordinates": [ [ [ - -122.32555752124699, - 47.70859852226027 + -122.32196787139897, + 47.7075898862024 ], [ - -122.32554149461642, - 47.70857942966045 + -122.32196738626998, + 47.70740105202653 ], [ - -122.32554149461642, - 47.70852208081459 + -122.32194065739978, + 47.70740108260347 ], [ - -122.32557299058062, - 47.70852208081459 + -122.32194114252877, + 47.70758991677934 ], [ - -122.32557328058887, - 47.70851950515723 + -122.32196787139897, + 47.7075898862024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9687585571, + "osm_way_id": 1054161097, + "src_i": 9687585570, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32196812933257, + 47.70765584425495 ], [ - -122.32562658597472, - 47.70852223010199 + -122.32196803310863, + 47.70763482710669 ], [ - -122.32562958896328, - 47.70852224359182 + -122.32194130423844, + 47.70763488286463 ], [ - -122.32562897419926, - 47.70857958973971 + -122.32194140046236, + 47.7076559000129 ], [ - -122.32555752124699, - 47.70859852226027 + -122.32196812933257, + 47.70765584425495 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/411602471", - "osm_node_id": 411602471, - "type": "intersection" + "dst_i": 9687585570, + "osm_way_id": 1054161102, + "src_i": 9687585569, + "type": "road" }, "type": "Feature" }, @@ -4767,47 +5509,34 @@ "coordinates": [ [ [ - -122.32403286238791, - 47.70859080697935 - ], - [ - -122.32403486705317, - 47.7085115407642 - ], - [ - -122.32403913164441, - 47.70851158932757 - ], - [ - -122.32409258136616, - 47.70851094990984 + -122.32196732880291, + 47.707378599560826 ], [ - -122.32409260675858, - 47.7085119013922 + -122.32196732880291, + 47.70737100029241 ], [ - -122.32410044900911, - 47.708511896895594 + -122.3219405999327, + 47.70737100029241 ], [ - -122.3241005532517, - 47.70859117390261 + -122.3219405999327, + 47.707378599560826 ], [ - -122.32403286238791, - 47.70859080697935 + -122.32196732880291, + 47.707378599560826 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/411602472", - "osm_node_id": 411602472, - "type": "intersection" + "dst_i": 9687585572, + "osm_way_id": 1054161104, + "src_i": 9687585571, + "type": "road" }, "type": "Feature" }, @@ -4816,35 +5545,34 @@ "coordinates": [ [ [ - -122.3260767629618, - 47.71054948558798 + -122.32706702350023, + 47.70851847543387 ], [ - -122.32597150467093, - 47.71055051441201 + -122.32706672814622, + 47.708507455145686 ], [ - -122.32596956281851, - 47.71046059393261 + -122.3270400046218, + 47.7085077789015 ], [ - -122.32607482110937, - 47.71045956151129 + -122.3270402999758, + 47.70851879918968 ], [ - -122.3260767629618, - 47.71054948558798 + -122.32706702350023, + 47.70851847543387 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/471309345", - "osm_node_id": 471309345, - "type": "intersection" + "dst_i": 9693399659, + "osm_way_id": 1054883387, + "src_i": 9693399658, + "type": "road" }, "type": "Feature" }, @@ -4853,35 +5581,34 @@ "coordinates": [ [ [ - -122.3282092015818, - 47.70705031746056 + -122.32706551599195, + 47.708462493557 ], [ - -122.32826265130355, - 47.70704968253944 + -122.32706492394747, + 47.70844057259042 ], [ - -122.32826501012634, - 47.70713960032088 + -122.32703820042305, + 47.708440899943525 ], [ - -122.3282115604046, - 47.70714023524201 + -122.32703879246752, + 47.70846282091011 ], [ - -122.3282092015818, - 47.70705031746056 + -122.32706551599195, + 47.708462493557 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/476254637", - "osm_node_id": 476254637, - "type": "intersection" + "dst_i": 9693399665, + "osm_way_id": 1054883388, + "src_i": 9693399659, + "type": "road" }, "type": "Feature" }, @@ -4890,54 +5617,5254 @@ "coordinates": [ [ [ - -122.32777267770162, - 47.70814404284163 + -122.3270610977097, + 47.70829346874035 + ], + [ + -122.32706102286888, + 47.70829058641428 + ], + [ + -122.32703429934445, + 47.70829090117688 + ], + [ + -122.32703437418527, + 47.708293783502945 + ], + [ + -122.3270610977097, + 47.70829346874035 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9693399662, + "osm_way_id": 1054883390, + "src_i": 9693399661, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32705841413114, + 47.70820324608885 + ], + [ + -122.3270551264801, + 47.708188963960836 + ], + [ + -122.32702871301056, + 47.7081917176839 + ], + [ + -122.3270320006616, + 47.708205999811916 + ], + [ + -122.32705841413114, + 47.70820324608885 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9188152718, + "osm_way_id": 1054883391, + "src_i": 9693399664, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3272988977857, + 47.70851945119792 + ], + [ + -122.32698311756734, + 47.70851788278087 + ], + [ + -122.32698224887905, + 47.70859715798924 + ], + [ + -122.32729802909742, + 47.708598726406294 + ], + [ + -122.3272988977857, + 47.70851945119792 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4272355596, + "osm_way_id": 1054980554, + "src_i": 53100765, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3264583523315, + 47.70851428549405 + ], + [ + -122.3263962638389, + 47.70851461284715 + ], + [ + -122.32639718598492, + 47.70859388805552 + ], + [ + -122.32645927447751, + 47.70859356070242 + ], + [ + -122.3264583523315, + 47.70851428549405 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 53211559, + "osm_way_id": 1054983185, + "src_i": 9322923125, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32852121436592, + 47.70846766915342 + ], + [ + -122.32848712035553, + 47.70846584802697 + ], + [ + -122.3284850061019, + 47.70848377870314 + ], + [ + -122.32851910011229, + 47.708485599829594 + ], + [ + -122.32852121436592, + 47.70846766915342 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9718788161, + "osm_way_id": 1057705465, + "src_i": 8986752620, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32847661858243, + 47.708524025148115 + ], + [ + -122.32847744450451, + 47.70850499819879 + ], + [ + -122.32845072632585, + 47.70850447299491 + ], + [ + -122.32844990040377, + 47.70852349994424 + ], + [ + -122.32847661858243, + 47.708524025148115 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9718788161, + "osm_way_id": 1057705466, + "src_i": 8986752621, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32841808502957, + 47.708464186080455 + ], + [ + -122.32793720325283, + 47.70846667540294 + ], + [ + -122.32793463059907, + 47.70832406366478 + ], + [ + -122.32790790440175, + 47.708324281300634 + ], + [ + -122.32791080047484, + 47.7084848003326 + ], + [ + -122.32841829084187, + 47.70848217251457 + ], + [ + -122.32841808502957, + 47.708464186080455 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9718788179, + "osm_way_id": 1057705467, + "src_i": 9718788161, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32793708163648, + 47.70819143619621 + ], + [ + -122.32801390575521, + 47.70819083185202 + ], + [ + -122.32801359302744, + 47.70817284721655 + ], + [ + -122.32793676890869, + 47.70817345156073 + ], + [ + -122.32793708163648, + 47.70819143619621 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9718788177, + "osm_way_id": 1057705467, + "src_i": 9718788163, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32793381269565, + 47.708279096680165 + ], + [ + -122.32793263929824, + 47.70821515940349 + ], + [ + -122.32790591310092, + 47.70821538063663 + ], + [ + -122.32790708649833, + 47.70827931791331 + ], + [ + -122.32793381269565, + 47.708279096680165 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9718788163, + "osm_way_id": 1057705467, + "src_i": 9718788179, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3276063826992, + 47.708178691008996 + ], + [ + -122.32759630324225, + 47.708178816914035 + ], + [ + -122.32759680039923, + 47.708196799750866 + ], + [ + -122.32760687985619, + 47.708196673845826 + ], + [ + -122.3276063826992, + 47.708178691008996 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9718788166, + "osm_way_id": 1057705470, + "src_i": 9718788165, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3273830830353, + 47.70818148969814 + ], + [ + -122.32737290334508, + 47.70818161740183 + ], + [ + -122.32737340050207, + 47.70819960023866 + ], + [ + -122.32738358019228, + 47.70819947253497 + ], + [ + -122.3273830830353, + 47.70818148969814 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9718788168, + "osm_way_id": 1057705472, + "src_i": 9718788167, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32729103147919, + 47.70818264442721 + ], + [ + -122.32719253158317, + 47.70818654388613 + ], + [ + -122.32719410056785, + 47.70820449974331 + ], + [ + -122.32729260046388, + 47.70820060028439 + ], + [ + -122.32729103147919, + 47.70818264442721 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9718788170, + "osm_way_id": 1057705474, + "src_i": 9718788169, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32787157719426, + 47.708175353626146 + ], + [ + -122.32782078164932, + 47.70817601732556 + ], + [ + -122.32782130018941, + 47.70819400016239 + ], + [ + -122.32787209573435, + 47.708193336462976 + ], + [ + -122.32787157719426, + 47.708175353626146 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9718788164, + "osm_way_id": 1057705475, + "src_i": 9718788163, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32794105755592, + 47.708319663283675 + ], + [ + -122.32798934726927, + 47.7083194861173 + ], + [ + -122.32798920026048, + 47.70830149968318 + ], + [ + -122.32794091054713, + 47.70830167684956 + ], + [ + -122.32794105755592, + 47.708319663283675 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9718788178, + "osm_way_id": 1057705476, + "src_i": 9718788179, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32460263235895, + 47.70921689856319 + ], + [ + -122.32460041519916, + 47.70936333421724 + ], + [ + -122.32462714139648, + 47.70936351767887 + ], + [ + -122.32462935855627, + 47.70921708202482 + ], + [ + -122.32460263235895, + 47.70921689856319 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9384317428, + "osm_way_id": 1058416244, + "src_i": 9725987906, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32448234977014, + 47.70923796967076 + ], + [ + -122.32455876360072, + 47.709280211710606 + ], + [ + -122.32457573108752, + 47.70926631359296 + ], + [ + -122.32449931725695, + 47.709224071553116 + ], + [ + -122.32448234977014, + 47.70923796967076 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9725987903, + "osm_way_id": 1058448166, + "src_i": 9725987904, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32459673597018, + 47.70917624202751 + ], + [ + -122.32436453692894, + 47.70917364838371 + ], + [ + -122.32443071360224, + 47.709209650929566 + ], + [ + -122.32444751804293, + 47.7091956646784 + ], + [ + -122.32444170050434, + 47.70919249996531 + ], + [ + -122.32459629227093, + 47.70919422666299 + ], + [ + -122.32459673597018, + 47.70917624202751 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9725987904, + "osm_way_id": 1058448169, + "src_i": 9725987906, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32314999444063, + 47.70774693655054 + ], + [ + -122.32315725533822, + 47.70800987753294 + ], + [ + -122.32324246163066, + 47.70800881273604 + ], + [ + -122.32323520073305, + 47.707745871753644 + ], + [ + -122.32314999444063, + 47.70774693655054 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9754620676, + "osm_way_id": 1061736838, + "src_i": 3711400490, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32578019946466, + 47.708480013243154 + ], + [ + -122.32568418802644, + 47.708480013243154 + ], + [ + -122.3256683311242, + 47.708508860785514 + ], + [ + -122.32569340013157, + 47.70851510027951 + ], + [ + -122.32570279933877, + 47.70849799967727 + ], + [ + -122.32578019946466, + 47.70849799967727 + ], + [ + -122.32578019946466, + 47.708480013243154 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9772983388, + "osm_way_id": 1064067352, + "src_i": 9772983386, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32641638934172, + 47.70853196436014 + ], + [ + -122.32643868923813, + 47.7085272645049 + ], + [ + -122.32643069997883, + 47.70851010005082 + ], + [ + -122.32640840008241, + 47.70851479990606 + ], + [ + -122.32641638934172, + 47.70853196436014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9384044289, + "osm_way_id": 1064067354, + "src_i": 9772983389, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32183473890582, + 47.71018761382201 + ], + [ + -122.32176791673031, + 47.710187718143324 + ], + [ + -122.32176797820671, + 47.71020570457744 + ], + [ + -122.32183480038222, + 47.710205600256124 + ], + [ + -122.32183473890582, + 47.71018761382201 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9800403239, + "osm_way_id": 1067432526, + "src_i": 9800403235, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32194646558327, + 47.70947184727359 + ], + [ + -122.32196055704364, + 47.70947168809365 + ], + [ + -122.32195297406317, + 47.70925548216234 + ], + [ + -122.32192625321163, + 47.709255906642184 + ], + [ + -122.321933200045, + 47.70945400742891 + ], + [ + -122.32194601653825, + 47.709453862638114 + ], + [ + -122.32194646558327, + 47.70947184727359 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9800404631, + "osm_way_id": 1067432548, + "src_i": 9800404629, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32230469926618, + 47.70952301328273 + ], + [ + -122.32222579965067, + 47.70952341348088 + ], + [ + -122.3222260001172, + 47.709541399915 + ], + [ + -122.32230489973271, + 47.70954099971684 + ], + [ + -122.32230469926618, + 47.70952301328273 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9801096630, + "osm_way_id": 1067521781, + "src_i": 9801096631, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32222642644268, + 47.709248462956424 + ], + [ + -122.3222262674059, + 47.70924034388006 + ], + [ + -122.32219954120858, + 47.709240581300996 + ], + [ + -122.32219970024536, + 47.70924870037736 + ], + [ + -122.32222642644268, + 47.709248462956424 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9801096635, + "osm_way_id": 1067521783, + "src_i": 9801096633, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32222689018857, + 47.70901436861706 + ], + [ + -122.32222762656895, + 47.708978650256874 + ], + [ + -122.32220090037163, + 47.708978400245435 + ], + [ + -122.32220016399125, + 47.70901411860563 + ], + [ + -122.32222689018857, + 47.70901436861706 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9801096634, + "osm_way_id": 1067521784, + "src_i": 9801096638, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32222622864904, + 47.70909484172195 + ], + [ + -122.32222635160184, + 47.70905912426108 + ], + [ + -122.32219962273163, + 47.70905908289228 + ], + [ + -122.32219949977883, + 47.70909480035315 + ], + [ + -122.32222622864904, + 47.70909484172195 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9801096638, + "osm_way_id": 1067521785, + "src_i": 9801096637, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32222591592125, + 47.70919566377907 + ], + [ + -122.32222602951896, + 47.7091665464402 + ], + [ + -122.32219930064875, + 47.709166499675476 + ], + [ + -122.32219918705105, + 47.709195617014345 + ], + [ + -122.32222591592125, + 47.70919566377907 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9801096636, + "osm_way_id": 1067521786, + "src_i": 9801096635, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32306329667722, + 47.70956616543614 + ], + [ + -122.32293343847067, + 47.70956551072994 + ], + [ + -122.32293323800414, + 47.709583497164054 + ], + [ + -122.3230630962107, + 47.70958415187025 + ], + [ + -122.32306329667722, + 47.70956616543614 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9801096644, + "osm_way_id": 1067521787, + "src_i": 9801096640, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32288100444599, + 47.70953773338041 + ], + [ + -122.32285871390468, + 47.70953761377062 + ], + [ + -122.32285850007372, + 47.70955560020474 + ], + [ + -122.32288079061503, + 47.709555719814524 + ], + [ + -122.32288100444599, + 47.70953773338041 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9801096645, + "osm_way_id": 1067521787, + "src_i": 9801096644, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32302700154438, + 47.70949192912728 + ], + [ + -122.32302688928313, + 47.70950931841179 + ], + [ + -122.32288779357903, + 47.70950881838892 + ], + [ + -122.32288762518714, + 47.70953333389862 + ], + [ + -122.32291435405735, + 47.70953341663622 + ], + [ + -122.32291439949643, + 47.70952690015114 + ], + [ + -122.3230535005463, + 47.709527400174004 + ], + [ + -122.32305373041459, + 47.709492008267596 + ], + [ + -122.32302700154438, + 47.70949192912728 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9801096644, + "osm_way_id": 1067521788, + "src_i": 7518081809, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32891426106582, + 47.70833844921479 + ], + [ + -122.32886463891829, + 47.70835025910743 + ], + [ + -122.32882336286048, + 47.708262795574925 + ], + [ + -122.32887461279621, + 47.70825472506194 + ], + [ + -122.32891426106582, + 47.70833844921479 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-1", + "osm_node_id": -1, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32876184502926, + 47.708576256853476 + ], + [ + -122.32875929910438, + 47.70868194514035 + ], + [ + -122.32875207830008, + 47.70868186600004 + ], + [ + -122.32875431550653, + 47.70868379054849 + ], + [ + -122.32872864777246, + 47.70869730015915 + ], + [ + -122.32860417409681, + 47.708695782104115 + ], + [ + -122.3285684883822, + 47.70869542687204 + ], + [ + -122.32857147132411, + 47.70855881630763 + ], + [ + -122.32876108192002, + 47.70855563900405 + ], + [ + -122.32876184502926, + 47.708576256853476 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/53029362", + "osm_node_id": 53029362, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32330155916267, + 47.709996830816 + ], + [ + -122.32330640644328, + 47.71002180767774 + ], + [ + -122.32322190044725, + 47.710029232477744 + ], + [ + -122.3232155042286, + 47.71002922168588 + ], + [ + -122.32321576082576, + 47.709967377130816 + ], + [ + -122.32330097513686, + 47.70996663159312 + ], + [ + -122.32330155916267, + 47.709996830816 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53092589", + "osm_node_id": 53092589, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32340138748356, + 47.710665922567884 + ], + [ + -122.32326354402703, + 47.710667167229126 + ], + [ + -122.32326197504234, + 47.71058848377444 + ], + [ + -122.32339981849887, + 47.710587239113195 + ], + [ + -122.32340138748356, + 47.710665922567884 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/53092591", + "osm_node_id": 53092591, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32736625453862, + 47.70853103626014 + ], + [ + -122.32736455458247, + 47.70858837341482 + ], + [ + -122.32729802909742, + 47.708598726406294 + ], + [ + -122.3272988977857, + 47.70851945119792 + ], + [ + -122.32736625453862, + 47.70853103626014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53100765", + "osm_node_id": 53100765, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32741155997361, + 47.70990174103543 + ], + [ + -122.32742813454603, + 47.709904488463245 + ], + [ + -122.32740294793163, + 47.709973268587305 + ], + [ + -122.32732157589562, + 47.709940252688845 + ], + [ + -122.32740661780551, + 47.709897999857134 + ], + [ + -122.32741155997361, + 47.70990174103543 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53100766", + "osm_node_id": 53100766, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32639718464848, + 47.70859388895484 + ], + [ + -122.3263532744605, + 47.70860473477461 + ], + [ + -122.32633713155934, + 47.70857513899659 + ], + [ + -122.32612314690671, + 47.708603475724225 + ], + [ + -122.32611685493066, + 47.70858195855309 + ], + [ + -122.32611746969468, + 47.70852461240519 + ], + [ + -122.32631833849071, + 47.708525588169245 + ], + [ + -122.32631706486004, + 47.70852187666856 + ], + [ + -122.32636264025662, + 47.708514790013524 + ], + [ + -122.3263962638389, + 47.70851461284715 + ], + [ + -122.32639718464848, + 47.70859388895484 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/53211559", + "osm_node_id": 53211559, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32869915112775, + 47.7099516282091 + ], + [ + -122.32870025102076, + 47.709985872581015 + ], + [ + -122.32860836785655, + 47.70998720897307 + ], + [ + -122.32860636452773, + 47.70998719908053 + ], + [ + -122.32860709957166, + 47.70991636310705 + ], + [ + -122.3286990054554, + 47.7099161913366 + ], + [ + -122.32869915112775, + 47.7099516282091 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53234912", + "osm_node_id": 53234912, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32889283386703, + 47.7088029623657 + ], + [ + -122.32886716613297, + 47.70881647197636 + ], + [ + -122.32878482918476, + 47.708745634204234 + ], + [ + -122.3288104969188, + 47.708732124593574 + ], + [ + -122.32889283386703, + 47.7088029623657 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/90251447", + "osm_node_id": 90251447, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32894558329238, + 47.7085782632402 + ], + [ + -122.32894303603105, + 47.70868395152707 + ], + [ + -122.32887872636934, + 47.70868324915682 + ], + [ + -122.32888127363066, + 47.70857756086995 + ], + [ + -122.32894558329238, + 47.7085782632402 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/95600097", + "osm_node_id": 95600097, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32880702884789, + 47.70807777722106 + ], + [ + -122.32874379368677, + 47.708088400908366 + ], + [ + -122.32855418442732, + 47.70809157731263 + ], + [ + -122.32855252055514, + 47.70804662471716 + ], + [ + -122.3287421298146, + 47.7080434483129 + ], + [ + -122.32880702884789, + 47.70807777722106 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/95600603", + "osm_node_id": 95600603, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32604924024415, + 47.709590915668805 + ], + [ + -122.32605519276355, + 47.70961190134081 + ], + [ + -122.32595178945627, + 47.70962518072512 + ], + [ + -122.3259421269697, + 47.709625107880065 + ], + [ + -122.32594316939563, + 47.70956326692228 + ], + [ + -122.3260484183314, + 47.70956191434243 + ], + [ + -122.32604924024415, + 47.709590915668805 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/95601224", + "osm_node_id": 95601224, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32599016409523, + 47.708044989750306 + ], + [ + -122.32596723339748, + 47.70805422938151 + ], + [ + -122.32597247359249, + 47.708003219854355 + ], + [ + -122.32599919978979, + 47.708002937467334 + ], + [ + -122.32599016409523, + 47.708044989750306 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/400473864", + "osm_node_id": 400473864, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32632971830719, + 47.70827190750245 + ], + [ + -122.32631297267001, + 47.708285953108856 + ], + [ + -122.32631055905303, + 47.708284515093446 + ], + [ + -122.32630920256287, + 47.70829030852387 + ], + [ + -122.32626299636495, + 47.70828540901922 + ], + [ + -122.32626692550886, + 47.70826863127348 + ], + [ + -122.32625624197945, + 47.70825324567773 + ], + [ + -122.32630467201938, + 47.70823801656397 + ], + [ + -122.32631593690172, + 47.708254239428214 + ], + [ + -122.32632876675942, + 47.70825393186019 + ], + [ + -122.32632971830719, + 47.70827190750245 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/411602465", + "osm_node_id": 411602465, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32555752124699, + 47.70859852226027 + ], + [ + -122.32554149461642, + 47.70857942966045 + ], + [ + -122.32554149461642, + 47.70852208081459 + ], + [ + -122.32557299058062, + 47.70852208081459 + ], + [ + -122.32557328058887, + 47.70851950515723 + ], + [ + -122.32562658597472, + 47.70852223010199 + ], + [ + -122.32562958896328, + 47.70852224359182 + ], + [ + -122.32562897419926, + 47.70857958973971 + ], + [ + -122.32555752124699, + 47.70859852226027 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/411602471", + "osm_node_id": 411602471, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32403286238791, + 47.70859080697935 + ], + [ + -122.32403486705317, + 47.7085115407642 + ], + [ + -122.32403913164441, + 47.70851158932757 + ], + [ + -122.32409258136616, + 47.70851094990984 + ], + [ + -122.32409260675858, + 47.7085119013922 + ], + [ + -122.32410044900911, + 47.708511896895594 + ], + [ + -122.3241005532517, + 47.70859117390261 + ], + [ + -122.32403286238791, + 47.70859080697935 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/411602472", + "osm_node_id": 411602472, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3260767629618, + 47.71054948558798 + ], + [ + -122.32597150467093, + 47.71055051441201 + ], + [ + -122.32596956281851, + 47.71046059393261 + ], + [ + -122.32607482110937, + 47.71045956151129 + ], + [ + -122.3260767629618, + 47.71054948558798 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/471309345", + "osm_node_id": 471309345, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3282092015818, + 47.70705031746056 + ], + [ + -122.32826265130355, + 47.70704968253944 + ], + [ + -122.32826501012634, + 47.70713960032088 + ], + [ + -122.3282115604046, + 47.70714023524201 + ], + [ + -122.3282092015818, + 47.70705031746056 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/476254637", + "osm_node_id": 476254637, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32777267770162, + 47.70814404284163 ], [ -122.32777308531689, 47.70815978366945 ], [ - -122.32774636179246, - 47.70816009663341 + -122.32774636179246, + 47.70816009663341 + ], + [ + -122.32774595417719, + 47.70814436210084 + ], + [ + -122.3277225704251, + 47.7081446381926 + ], + [ + -122.32772209999698, + 47.70812665535577 + ], + [ + -122.32775550573895, + 47.70812626055354 + ], + [ + -122.3277889074716, + 47.70812585945606 + ], + [ + -122.3277893832455, + 47.70814384229289 + ], + [ + -122.32777267770162, + 47.70814404284163 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/476254734", + "osm_node_id": 476254734, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32823107247985, + 47.708138544388724 + ], + [ + -122.32823059670596, + 47.708120561551894 + ], + [ + -122.32823728025996, + 47.70812048061294 + ], + [ + -122.32823698624237, + 47.70810923819229 + ], + [ + -122.32829043596412, + 47.70810860327117 + ], + [ + -122.32823107247985, + 47.708138544388724 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/476254735", + "osm_node_id": 476254735, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3263366050006, + 47.70843896280457 + ], + [ + -122.3263393540649, + 47.70844696946572 + ], + [ + -122.32629377866832, + 47.70845405432212 + ], + [ + -122.3262863173042, + 47.70843232311241 + ], + [ + -122.32627819039122, + 47.70841071690843 + ], + [ + -122.32632353591951, + 47.70840299353362 + ], + [ + -122.32633033440766, + 47.708421069899906 + ], + [ + -122.32634546829397, + 47.70842083247898 + ], + [ + -122.32634609107664, + 47.70843881351716 + ], + [ + -122.3263366050006, + 47.70843896280457 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/476254742", + "osm_node_id": 476254742, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32510494534381, + 47.708579428761134 + ], + [ + -122.32507153425605, + 47.70857946023739 + ], + [ + -122.32507141664902, + 47.70852211229085 + ], + [ + -122.32507819642694, + 47.7085221059956 + ], + [ + -122.32513165416736, + 47.70852208081459 + ], + [ + -122.32513831099249, + 47.70852208081459 + ], + [ + -122.32513831099249, + 47.708579428761134 + ], + [ + -122.32510494534381, + 47.708579428761134 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/476661975", + "osm_node_id": 476661975, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32513158333585, + 47.70841184465785 + ], + [ + -122.3251383484129, + 47.70841181677888 + ], + [ + -122.3251385141319, + 47.708429803212994 + ], + [ + -122.32513172098953, + 47.70842983109197 + ], + [ + -122.32513171297087, + 47.70844119222308 + ], + [ + -122.32507825523047, + 47.70844117423665 + ], + [ + -122.32507827126778, + 47.708418835984794 + ], + [ + -122.3250777834659, + 47.70839648334379 + ], + [ + -122.32513123586054, + 47.70839595634127 + ], + [ + -122.32513158333585, + 47.70841184465785 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/476661976", + "osm_node_id": 476661976, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32466487186966, + 47.70705029677617 + ], + [ + -122.3247183215914, + 47.70704970322384 + ], + [ + -122.3247205240503, + 47.70713962370324 + ], + [ + -122.32466707432856, + 47.70714021725557 + ], + [ + -122.32466487186966, + 47.70705029677617 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/476714811", + "osm_node_id": 476714811, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32333830601343, + 47.70742618716889 + ], + [ + -122.32325874485838, + 47.7074467420658 + ], + [ + -122.32318443993566, + 47.70741865984621 + ], + [ + -122.32316171905954, + 47.70737420727362 + ], + [ + -122.32336553204061, + 47.70737143556411 + ], + [ + -122.32333830601343, + 47.70742618716889 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/476715048", + "osm_node_id": 476715048, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32355228665674, + 47.70750030926389 + ], + [ + -122.32355266887959, + 47.70751608786322 + ], + [ + -122.32349921915784, + 47.70751667242233 + ], + [ + -122.32355849577328, + 47.70748224279014 + ], + [ + -122.32355899293027, + 47.70750022562697 + ], + [ + -122.32355228665674, + 47.70750030926389 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/476715211", + "osm_node_id": 476715211, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32350446202572, + 47.70796393658292 + ], + [ + -122.32350142295319, + 47.70792802127127 + ], + [ + -122.32350915828822, + 47.70792772449511 + ], + [ + -122.32350903132608, + 47.7079225120265 + ], + [ + -122.32356248104783, + 47.707921927467396 + ], + [ + -122.32356538513957, + 47.70792358221933 + ], + [ + -122.32357329955805, + 47.707959159386014 + ], + [ + -122.32350446202572, + 47.70796393658292 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/476715215", + "osm_node_id": 476715215, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32406462296792, + 47.70748715578462 + ], + [ + -122.32406526312437, + 47.707509634330656 + ], + [ + -122.32401181607551, + 47.70751032321108 + ], + [ + -122.32401136703048, + 47.70749457698734 + ], + [ + -122.3240046808036, + 47.707494660624256 + ], + [ + -122.32400418364662, + 47.707476677787426 + ], + [ + -122.32401085517262, + 47.707476594150506 + ], + [ + -122.32401053576262, + 47.70746536611901 + ], + [ + -122.32406398281148, + 47.70746467723858 + ], + [ + -122.32406462296792, + 47.70748715578462 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/476715244", + "osm_node_id": 476715244, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32360821949052, + 47.70816650250191 + ], + [ + -122.3236092017765, + 47.70818897565202 + ], + [ + -122.32358248359785, + 47.70818950445319 + ], + [ + -122.32358150131186, + 47.70816703130308 + ], + [ + -122.32358058183874, + 47.708144534770604 + ], + [ + -122.32360730001739, + 47.708144040143665 + ], + [ + -122.32360821949052, + 47.70816650250191 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/479716851", + "osm_node_id": 479716851, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32361191876616, + 47.708251099896145 + ], + [ + -122.3236129117437, + 47.70827357304625 + ], + [ + -122.32358619356503, + 47.70827410724334 + ], + [ + -122.3235852005875, + 47.70825163409324 + ], + [ + -122.32358421830152, + 47.70822915824516 + ], + [ + -122.32361093648018, + 47.708228629444 + ], + [ + -122.32361191876616, + 47.708251099896145 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/479716854", + "osm_node_id": 479716854, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32359965689696, + 47.70795725732061 + ], + [ + -122.32359983865327, + 47.7079616900773 + ], + [ + -122.32357312047462, + 47.707962184704236 + ], + [ + -122.32359113306025, + 47.707957361641924 + ], + [ + -122.3235832159689, + 47.707921786273886 + ], + [ + -122.32362181513035, + 47.707921003864 + ], + [ + -122.32362279607989, + 47.70795697133631 + ], + [ + -122.32359965689696, + 47.70795725732061 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/479716858", + "osm_node_id": 479716858, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32871833978368, + 47.71054933180397 + ], + [ + -122.32862645661946, + 47.71055066819603 + ], + [ + -122.32862356990148, + 47.710460756709836 + ], + [ + -122.32871545306568, + 47.71045942031778 + ], + [ + -122.32871833978368, + 47.71054933180397 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/666566888", + "osm_node_id": 666566888, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32706609333555, + 47.70705029317888 + ], + [ + -122.3271195430573, + 47.707049706821124 + ], + [ + -122.32712172279666, + 47.707139627300535 + ], + [ + -122.32706827307491, + 47.707140213658285 + ], + [ + -122.32706609333555, + 47.70705029317888 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/910032566", + "osm_node_id": 910032566, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32885339675548, + 47.7081937186747 + ], + [ + -122.32880214681975, + 47.70820178918769 + ], + [ + -122.32877068961241, + 47.70816089702972 + ], + [ + -122.32883392477353, + 47.70815027424173 + ], + [ + -122.32885339675548, + 47.7081937186747 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/944726788", + "osm_node_id": 944726788, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32453893211547, + 47.708590913099314 + ], + [ + -122.32453882787289, + 47.7085116360923 + ], + [ + -122.32460563935685, + 47.7085225493612 + ], + [ + -122.32460575696388, + 47.70857989730774 + ], + [ + -122.32453893211547, + 47.708590913099314 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1111800655", + "osm_node_id": 1111800655, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32512877546803, + 47.708282975454686 + ], + [ + -122.32512911492469, + 47.708298616457796 + ], + [ + -122.32507566253005, + 47.708299143460316 + ], + [ + -122.32507517606462, + 47.708276770134916 + ], + [ + -122.32507446774956, + 47.70825430328006 + ], + [ + -122.32512791479841, + 47.70825354065525 + ], + [ + -122.32512827563816, + 47.70826499081921 + ], + [ + -122.32513515297647, + 47.70826494765177 + ], + [ + -122.32513540422785, + 47.70828293408589 + ], + [ + -122.32512877546803, + 47.708282975454686 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1395426463", + "osm_node_id": 1395426463, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3285171622692, + 47.70705215207685 + ], + [ + -122.32870672341669, + 47.70704784792316 + ], + [ + -122.32871123124065, + 47.70713772883241 + ], + [ + -122.32852167009315, + 47.70714203298609 + ], + [ + -122.3285171622692, + 47.70705215207685 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1778657883", + "osm_node_id": 1778657883, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32341129988507, + 47.71031242348699 + ], + [ + -122.3232408659171, + 47.710313738295326 + ], + [ + -122.32324100891655, + 47.71012770910386 + ], + [ + -122.3233255149126, + 47.710120284303855 + ], + [ + -122.32341003694596, + 47.71012762456762 + ], + [ + -122.32341129988507, + 47.71031242348699 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1905102152", + "osm_node_id": 1905102152, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32335700018525, + 47.70712353213996 + ], + [ + -122.32315320324149, + 47.707126821858765 + ], + [ + -122.32317555124986, + 47.70706554567501 + ], + [ + -122.32325469008877, + 47.70704426772345 + ], + [ + -122.32333354025587, + 47.707066024114155 + ], + [ + -122.32335700018525, + 47.70712353213996 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1905102153", + "osm_node_id": 1905102153, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32540788234004, + 47.708679379375525 + ], + [ + -122.32534104546365, + 47.70867910148512 + ], + [ + -122.32534160409703, + 47.70862175533722 + ], + [ + -122.32540340124496, + 47.70860036586976 + ], + [ + -122.32540841023523, + 47.70862203412695 + ], + [ + -122.32540788234004, + 47.708679379375525 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1968559734", + "osm_node_id": 1968559734, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32738418426474, + 47.70869296183125 + ], + [ + -122.32727891795523, + 47.708693430377856 + ], + [ + -122.32727890860012, + 47.70869245191584 + ], + [ + -122.32728004324066, + 47.708635109365225 + ], + [ + -122.32733145221316, + 47.70863557071726 + ], + [ + -122.3273842871709, + 47.7086356138847 + ], + [ + -122.32738418426474, + 47.70869296183125 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1968559768", + "osm_node_id": 1968559768, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32797559793843, + 47.70855292485113 + ], + [ + -122.32797261499653, + 47.708689535415544 + ], + [ + -122.32790717604004, + 47.70867025305885 + ], + [ + -122.3278715785307, + 47.70861814815785 + ], + [ + -122.32791605804361, + 47.70856922955367 + ], + [ + -122.32797559793843, + 47.70855292485113 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1968559770", + "osm_node_id": 1968559770, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32600338419442, + 47.70862459359652 + ], + [ + -122.32602430220825, + 47.70862473299139 + ], + [ + -122.32602346024883, + 47.70868207734064 + ], + [ + -122.32591820864019, + 47.708683429920484 + ], + [ + -122.325918153846, + 47.70868150357339 + ], + [ + -122.3259186817412, + 47.7086241574255 + ], + [ + -122.3259667856889, + 47.70862435797424 + ], + [ + -122.32598976048928, + 47.708604673620734 + ], + [ + -122.32600338419442, + 47.70862459359652 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/1968559794", + "osm_node_id": 1968559794, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32310736857487, + 47.706950715782995 + ], + [ + -122.32318650741377, + 47.706929437831434 + ], + [ + -122.32322989638877, + 47.70700251131733 + ], + [ + -122.32315075754987, + 47.70702378926889 + ], + [ + -122.32310736857487, + 47.706950715782995 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/2542516444", + "osm_node_id": 2542516444, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32348834318054, + 47.7097605016622 + ], + [ + -122.32349510023893, + 47.7097430997872 + ], + [ + -122.32362440515787, + 47.70976583104263 + ], + [ + -122.32361764809949, + 47.70978323291764 + ], + [ + -122.32348834318054, + 47.7097605016622 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2706302783", + "osm_node_id": 2706302783, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32532987947812, + 47.710033172406135 + ], + [ + -122.32535172231086, + 47.71003632722668 + ], + [ + -122.325346111921, + 47.71005391256332 + ], + [ + -122.32535128930316, + 47.71006055495344 + ], + [ + -122.32532761821571, + 47.71006890965209 + ], + [ + -122.32527325035727, + 47.710061064868846 + ], + [ + -122.32527966528612, + 47.7100436036386 + ], + [ + -122.32531209943366, + 47.71004899956884 + ], + [ + -122.32529644299794, + 47.71002913804897 + ], + [ + -122.32532005528188, + 47.710020709605935 + ], + [ + -122.32532987947812, + 47.710033172406135 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2706302792", + "osm_node_id": 2706302792, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32512519379944, + 47.70981596732841 + ], + [ + -122.32514861096261, + 47.70980729426988 + ], + [ + -122.32518241763765, + 47.70984862709548 + ], + [ + -122.32515900047447, + 47.70985730015401 + ], + [ + -122.32512519379944, + 47.70981596732841 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2706302794", + "osm_node_id": 2706302794, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32562169993724, + 47.71019099976823 + ], + [ + -122.3256469654018, + 47.71020571177202 + ], + [ + -122.32562947402914, + 47.7102193131135 + ], + [ + -122.32561236220643, + 47.71021258618713 + ], + [ + -122.32558669714527, + 47.71020756077744 + ], + [ + -122.32560689748892, + 47.71016398504351 + ], + [ + -122.32563225784097, + 47.71016966875669 + ], + [ + -122.32562169993724, + 47.71019099976823 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2706302796", + "osm_node_id": 2706302796, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32551820708825, + 47.71027343789104 + ], + [ + -122.32553426712991, + 47.71029295946731 + ], + [ + -122.32551088204137, + 47.710301670297355 + ], + [ + -122.32549470038335, + 47.710282000333 + ], + [ + -122.32546134542622, + 47.71028329535626 + ], + [ + -122.3254598058433, + 47.71026533949908 + ], + [ + -122.32548081473529, + 47.710264523814296 + ], + [ + -122.3254789477237, + 47.710262172987356 + ], + [ + -122.32550251991432, + 47.71025369238367 + ], + [ + -122.32551820708825, + 47.71027343789104 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2706302803", + "osm_node_id": 2706302803, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32346580005141, + 47.71037249997559 + ], + [ + -122.32346146462866, + 47.7103547509624 + ], + [ + -122.32359488579363, + 47.71034141132354 + ], + [ + -122.32359658307688, + 47.71035936178479 + ], + [ + -122.32346580005141, + 47.71037249997559 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2706302805", + "osm_node_id": 2706302805, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3245185005671, + 47.71031990044766 + ], + [ + -122.3244851563015, + 47.7103213276712 + ], + [ + -122.32448345901825, + 47.710303377209954 + ], + [ + -122.32449568346703, + 47.71030285380472 + ], + [ + -122.3245155430176, + 47.71029081548436 + ], + [ + -122.3245297734681, + 47.71030144726557 + ], + [ + -122.32455031727774, + 47.710300649567216 + ], + [ + -122.32455185686067, + 47.7103186054244 + ], + [ + -122.3245185005671, + 47.71031990044766 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2706302812", + "osm_node_id": 2706302812, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32387850048958, + 47.709810500351765 + ], + [ + -122.32391093463714, + 47.709815896281995 + ], + [ + -122.3239045197083, + 47.70983335751224 + ], + [ + -122.32390287187344, + 47.70983308321912 + ], + [ + -122.32388301098644, + 47.70984512243879 + ], + [ + -122.32383941753558, + 47.709822219412914 + ], + [ + -122.32384617459397, + 47.7098048175379 + ], + [ + -122.32387850048958, + 47.709810500351765 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2706302814", + "osm_node_id": 2706302814, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32339892174528, + 47.71054227752451 + ], + [ + -122.32326107828875, + 47.71054352218575 + ], + [ + -122.32324439947374, + 47.71052107601529 + ], + [ + -122.3234148334417, + 47.71051976120696 + ], + [ + -122.32339892174528, + 47.71054227752451 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3409784125", + "osm_node_id": 3409784125, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32323458062326, + 47.70772339230828 + ], + [ + -122.32323520073305, + 47.707745871753644 + ], + [ + -122.32314999444063, + 47.70774693655054 + ], + [ + -122.32314985411405, + 47.707741814913426 + ], + [ + -122.32314889855694, + 47.70770584204519 + ], + [ + -122.32314879832369, + 47.70770192999577 + ], + [ + -122.323234007289, + 47.70770094254054 + ], + [ + -122.32323458062326, + 47.70772339230828 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3711400490", + "osm_node_id": 3711400490, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32213742598711, + 47.7077423688956 + ], + [ + -122.32213742999645, + 47.70774687090006 + ], + [ + -122.32207060782093, + 47.70774689608107 + ], + [ + -122.32207060247516, + 47.70774169170635 + ], + [ + -122.32207144176168, + 47.70770571883812 + ], + [ + -122.3221043997951, + 47.7077064140138 + ], + [ + -122.32213738990313, + 47.70770639602736 + ], + [ + -122.32213742598711, + 47.7077423688956 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3711400491", + "osm_node_id": 3711400491, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32886362322122, + 47.71009737228476 + ], + [ + -122.32889637677877, + 47.71010181133669 + ], + [ + -122.32886750024385, + 47.71019027941154 + ], + [ + -122.32883520374997, + 47.7101845183567 + ], + [ + -122.32886362322122, + 47.71009737228476 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/3835317537", + "osm_node_id": 3835317537, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3287236147262, + 47.71055380952674 + ], + [ + -122.32869218157485, + 47.71054619047325 + ], + [ + -122.32872655623838, + 47.7104603079483 + ], + [ + -122.32875885273224, + 47.710466069003154 + ], + [ + -122.3287236147262, + 47.71055380952674 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/3835317544", + "osm_node_id": 3835317544, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32336446154936, + 47.70733577116322 + ], + [ + -122.32336458182928, + 47.70733979292989 + ], + [ + -122.3231607688482, + 47.70734256463939 + ], + [ + -122.32316071405401, + 47.707340721929214 + ], + [ + -122.3231587722016, + 47.707340712936 + ], + [ + -122.3231592239195, + 47.70729574864935 + ], + [ + -122.3233630221997, + 47.707292458031226 + ], + [ + -122.32336328414263, + 47.70729980548956 + ], + [ + -122.32336446154936, + 47.70733577116322 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4022851873", + "osm_node_id": 4022851873, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32872734874937, + 47.70747796651543 + ], + [ + -122.32853768603218, + 47.70747879748868 + ], + [ + -122.32853747621054, + 47.7074572119691 + ], + [ + -122.32853639235486, + 47.70743558148343 + ], + [ + -122.32872595350236, + 47.707431277329746 + ], + [ + -122.32872734874937, + 47.70747796651543 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4022851877", + "osm_node_id": 4022851877, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32332441101025, + 47.706929856016025 + ], + [ + -122.32340326117736, + 47.70695161420538 + ], + [ + -122.3233588939257, + 47.7070244196934 + ], + [ + -122.3232800437586, + 47.70700266150405 + ], + [ + -122.32332441101025, + 47.706929856016025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/4272355594", + "osm_node_id": 4272355594, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32698311756734, + 47.70851788278087 + ], + [ + -122.32698224887905, + 47.70859715798924 + ], + [ + -122.32691497632207, + 47.708607673757946 + ], + [ + -122.32691685803454, + 47.70850647488503 + ], + [ + -122.32698311756734, + 47.70851788278087 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4272355596", + "osm_node_id": 4272355596, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32712908927328, + 47.70842653777588 + ], + [ + -122.32709568754063, + 47.70842706118111 + ], + [ + -122.32709506475797, + 47.70840908014293 + ], + [ + -122.32710179909681, + 47.708408974922285 + ], + [ + -122.3271013781171, + 47.708393142363654 + ], + [ + -122.32715482783885, + 47.708392498449314 + ], + [ + -122.32715524614568, + 47.70840824107577 + ], + [ + -122.32716192969967, + 47.708408161935466 + ], + [ + -122.32716240012778, + 47.7084261447723 + ], + [ + -122.32712908927328, + 47.70842653777588 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4554773505", + "osm_node_id": 4554773505, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32715092542381, + 47.70824577771029 + ], + [ + -122.32715152281405, + 47.708268257155645 + ], + [ + -122.3270980730923, + 47.708268901069985 + ], + [ + -122.3270976641406, + 47.708253485796625 + ], + [ + -122.32709116768869, + 47.708253642278606 + ], + [ + -122.3270902161409, + 47.70823566663635 + ], + [ + -122.32709719504892, + 47.70823549846319 + ], + [ + -122.32709689702202, + 47.70822393138741 + ], + [ + -122.32715034674376, + 47.708223309056784 + ], + [ + -122.32715092542381, + 47.70824577771029 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4554773508", + "osm_node_id": 4554773508, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32714849844238, + 47.70815142717216 + ], + [ + -122.32714890338477, + 47.708167167999974 + ], + [ + -122.32709545366302, + 47.7081677903306 + ], + [ + -122.32709487498299, + 47.708145310885236 + ], + [ + -122.32709427358341, + 47.70812284403038 + ], + [ + -122.32714772330516, + 47.70812219651875 + ], + [ + -122.32714802400494, + 47.708133444335324 + ], + [ + -122.32715471156827, + 47.70813336519502 + ], + [ + -122.32715518199639, + 47.70815134803185 + ], + [ + -122.32714849844238, + 47.70815142717216 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4554837508", + "osm_node_id": 4554837508, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32407732452704, + 47.707933380329315 + ], + [ + -122.32407791790797, + 47.70795585977468 + ], + [ + -122.32402446818621, + 47.707956498293086 + ], + [ + -122.3240243505792, + 47.70795201337574 + ], + [ + -122.32401768439895, + 47.70795209611334 + ], + [ + -122.32401670344942, + 47.70791612864103 + ], + [ + -122.32402336428387, + 47.70791604590344 + ], + [ + -122.3240232359853, + 47.707911565482696 + ], + [ + -122.32407668303416, + 47.70791087660227 + ], + [ + -122.32407732452704, + 47.707933380329315 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4554843678", + "osm_node_id": 4554843678, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32569701922058, + 47.70828006794761 + ], + [ + -122.32568889898982, + 47.70829933681448 + ], + [ + -122.32563746997066, + 47.70828952341603 + ], + [ + -122.32564159423534, + 47.708279738795866 + ], + [ + -122.3256389854976, + 47.70827975498366 + ], + [ + -122.32563873424623, + 47.70826176854954 + ], + [ + -122.32565105892827, + 47.70826169120787 + ], + [ + -122.32566686504566, + 47.70824423987017 + ], + [ + -122.32571251261021, + 47.708262961949444 + ], + [ + -122.32569701922058, + 47.70828006794761 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4554843686", + "osm_node_id": 4554843686, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32563815022041, + 47.70841976228615 + ], + [ + -122.32563582347225, + 47.7084403810349 + ], + [ + -122.3255825180864, + 47.70843765609013 + ], + [ + -122.32558361263364, + 47.70842795870418 + ], + [ + -122.3255783924853, + 47.708427980287894 + ], + [ + -122.3255782267663, + 47.70840999385378 + ], + [ + -122.32558671719191, + 47.70840995878023 + ], + [ + -122.32559510070206, + 47.708390063086135 + ], + [ + -122.32564652972121, + 47.70839987648459 + ], + [ + -122.32563815022041, + 47.70841976228615 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4554843688", + "osm_node_id": 4554843688, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32712472444878, + 47.707263376665225 + ], + [ + -122.32712532584837, + 47.70728585611059 + ], + [ + -122.32707187612662, + 47.707286503622214 + ], + [ + -122.32707175317381, + 47.70728189279983 + ], + [ + -122.32706490122794, + 47.70728194675913 + ], + [ + -122.32706428111815, + 47.70724597568954 + ], + [ + -122.32707083637357, + 47.7072459244282 + ], + [ + -122.32707072945809, + 47.707241513255234 + ], + [ + -122.32712417917983, + 47.707240926897484 + ], + [ + -122.32712472444878, + 47.707263376665225 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4632418342", + "osm_node_id": 4632418342, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32595799990926, + 47.707409899553475 + ], + [ + -122.32598472610658, + 47.707409599180025 + ], + [ + -122.32598696331301, + 47.70749951876011 + ], + [ + -122.3259602371157, + 47.70749981913356 + ], + [ + -122.32595799990926, + 47.707409899553475 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4632418344", + "osm_node_id": 4632418344, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32461037437619, + 47.70870851649947 + ], + [ + -122.32463710057351, + 47.7087086999611 + ], + [ + -122.32463573071892, + 47.708798627635076 + ], + [ + -122.3246090045216, + 47.708798444173446 + ], + [ + -122.32461037437619, + 47.70870851649947 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4723314713", + "osm_node_id": 4723314713, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32869594499977, + 47.70917309799883 + ], + [ + -122.32860404045246, + 47.709173268869954 + ], + [ + -122.32858848959577, + 47.709127199316924 + ], + [ + -122.32871294456122, + 47.709129247971774 + ], + [ + -122.32869594499977, + 47.70917309799883 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4787708489", + "osm_node_id": 4787708489, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32531002928266, + 47.70955843486675 + ], + [ + -122.32530898685673, + 47.709620275824534 + ], + [ + -122.32524229698913, + 47.70963112254363 + ], + [ + -122.32524308014503, + 47.709546796744554 + ], + [ + -122.32531002928266, + 47.70955843486675 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4787774424", + "osm_node_id": 4787774424, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32390590292732, + 47.70954117778254 + ], + [ + -122.32390511977142, + 47.70962550358161 + ], + [ + -122.32383857290327, + 47.70962504582686 + ], + [ + -122.32383880544445, + 47.70954127221132 + ], + [ + -122.32390590292732, + 47.70954117778254 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4787774425", + "osm_node_id": 4787774425, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32330205631966, + 47.708944909505114 + ], + [ + -122.32318425417, + 47.70894580522953 + ], + [ + -122.32319913413205, + 47.708901449783674 + ], + [ + -122.32328431369561, + 47.70889963315383 + ], + [ + -122.32330205631966, + 47.708944909505114 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4787774426", + "osm_node_id": 4787774426, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32329591937106, + 47.709705295899965 + ], + [ + -122.32321070505996, + 47.70970604233698 + ], + [ + -122.32319419730972, + 47.709660304633665 + ], + [ + -122.32331200480515, + 47.70966083883076 + ], + [ + -122.32329591937106, + 47.709705295899965 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4787774427", + "osm_node_id": 4787774427, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32344599930437, + 47.70969993774124 + ], + [ + -122.32336078499327, + 47.7096991984988 + ], + [ + -122.32334430931768, + 47.70965512993657 + ], + [ + -122.3234620981029, + 47.7096536604449 + ], + [ + -122.32344599930437, + 47.70969993774124 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4787774428", + "osm_node_id": 4787774428, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3233966832024, + 47.70838006352809 + ], + [ + -122.3233975893111, + 47.708395792664724 + ], + [ + -122.32331243113063, + 47.70839801578798 + ], + [ + -122.32331053739017, + 47.708352601840474 + ], + [ + -122.3233957463555, + 47.708351605392025 + ], + [ + -122.32339601631709, + 47.70836208159058 + ], + [ + -122.3233966832024, + 47.70838006352809 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4787774433", + "osm_node_id": 4787774433, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32180925292808, + 47.70865735138966 + ], + [ + -122.32181074707192, + 47.708520730033385 + ], + [ + -122.32194438741361, + 47.70852139193416 + ], + [ + -122.32194289326976, + 47.70865801329043 + ], + [ + -122.32180925292808, + 47.70865735138966 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/4787774435", + "osm_node_id": 4787774435, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32213805678845, + 47.70852258893135 + ], + [ + -122.32213997057556, + 47.70852261231372 + ], + [ + -122.32213624189816, + 47.708659213884914 + ], + [ + -122.32210342552777, + 47.70865880829082 + ], + [ + -122.32206973645977, + 47.70865864191631 + ], + [ + -122.32207123060361, + 47.70852202056004 + ], + [ + -122.32213805678845, + 47.70852258893135 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4787774436", + "osm_node_id": 4787774436, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32462589984046, + 47.70944730028763 + ], + [ + -122.32462555904736, + 47.70946978243095 + ], + [ + -122.32459883285004, + 47.70946959896933 + ], + [ + -122.32459917364314, + 47.709447116826 + ], + [ + -122.3245995010718, + 47.7094246400786 + ], + [ + -122.324626229942, + 47.709424818144306 + ], + [ + -122.32462589984046, + 47.70944730028763 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4789250352", + "osm_node_id": 4789250352, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32180987170142, + 47.710026570485496 + ], + [ + -122.32181012829858, + 47.709964725930426 + ], + [ + -122.3219437726496, + 47.709964977740505 + ], + [ + -122.32194351605244, + 47.71002682229557 + ], + [ + -122.32180987170142, + 47.710026570485496 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/5420650298", + "osm_node_id": 5420650298, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32248611211759, + 47.70851556163154 + ], + [ + -122.32248571118454, + 47.70867411564558 + ], + [ + -122.32241723048263, + 47.70866268796466 + ], + [ + -122.32242095916003, + 47.70852608639347 + ], + [ + -122.32248611211759, + 47.70851556163154 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5420650496", + "osm_node_id": 5420650496, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32179534322403, + 47.70770659747543 + ], + [ + -122.32182465677597, + 47.707676515164366 + ], + [ + -122.32193362637047, + 47.70770281402901 + ], + [ + -122.32193195314319, + 47.70773876891081 + ], + [ + -122.32179534322403, + 47.70770659747543 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/5420650779", + "osm_node_id": 5420650779, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32518739989905, + 47.70781559976279 + ], + [ + -122.32518700431177, + 47.70779761512731 + ], + [ + -122.32532063396192, + 47.70779627963458 + ], + [ + -122.3253210295492, + 47.707814264270056 + ], + [ + -122.32518739989905, + 47.70781559976279 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6139800717", + "osm_node_id": 6139800717, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32886383571574, + 47.71029186139551 + ], + [ + -122.32889616428426, + 47.710297536115476 + ], + [ + -122.32886243645939, + 47.7103845571817 + ], + [ + -122.32883010789088, + 47.71037888246173 + ], + [ + -122.32886383571574, + 47.71029186139551 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/6224066906", + "osm_node_id": 6224066906, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32879156486004, + 47.71055360717936 + ], + [ + -122.32875992055061, + 47.71054639282064 + ], + [ + -122.32879822836738, + 47.71046113262631 + ], + [ + -122.3288305569359, + 47.71046680734627 + ], + [ + -122.32879156486004, + 47.71055360717936 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/6503414647", + "osm_node_id": 6503414647, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32316770365358, + 47.70947901396826 + ], + [ + -122.32316759941098, + 47.70949700040238 ], [ - -122.32774595417719, - 47.70814436210084 + -122.32305373041459, + 47.709492008267596 ], [ - -122.3277225704251, - 47.7081446381926 + -122.32302700154438, + 47.70949192912728 ], [ - -122.32772209999698, - 47.70812665535577 + -122.32316770365358, + 47.70947901396826 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7518081809", + "osm_node_id": 7518081809, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32866594852518, + 47.70882712354265 + ], + [ + -122.32866060542403, + 47.7088095004345 + ], + [ + -122.328773656517, + 47.708793977242536 + ], + [ + -122.32877899961815, + 47.708811600350685 + ], + [ + -122.32866594852518, + 47.70882712354265 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7518081836", + "osm_node_id": 7518081836, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3287015941465, + 47.70847146878763 + ], + [ + -122.32870800105668, + 47.708454005758746 + ], + [ + -122.32883640654914, + 47.708475336770285 + ], + [ + -122.32882999963896, + 47.70849279979917 + ], + [ + -122.3287015941465, + 47.70847146878763 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7518081853", + "osm_node_id": 7518081853, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32338362614931, + 47.707880301462914 + ], + [ + -122.32338419146491, + 47.7079027818076 + ], + [ + -122.32329898249958, + 47.7079037512764 + ], + [ + -122.32329841718398, + 47.707881270931715 + ], + [ + -122.32329785186838, + 47.70785879148635 + ], + [ + -122.32338306083369, + 47.70785782201755 + ], + [ + -122.32338362614931, + 47.707880301462914 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7625387501", + "osm_node_id": 7625387501, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32338585533708, + 47.70796848175482 + ], + [ + -122.3233860063552, + 47.707974364218096 + ], + [ + -122.32330079738988, + 47.707975360666545 + ], + [ + -122.32330021737339, + 47.70795288122119 + ], + [ + -122.32329965205778, + 47.70793039098397 + ], + [ + -122.3233848610231, + 47.70792942151517 + ], + [ + -122.32338493853683, + 47.70793248550422 + ], + [ + -122.32338797894582, + 47.707968400815865 + ], + [ + -122.32338585533708, + 47.70796848175482 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7625387502", + "osm_node_id": 7625387502, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32345885188161, + 47.7086036861655 + ], + [ + -122.32342764592565, + 47.708657050116884 + ], + [ + -122.32342830880162, + 47.70867598893269 + ], + [ + -122.32331053070796, + 47.70867786132048 + ], + [ + -122.32327380791318, + 47.708676476365056 + ], + [ + -122.32318862834961, + 47.708678292994904 + ], + [ + -122.32314615216553, + 47.708674872874454 + ], + [ + -122.32314655309858, + 47.70851631886042 + ], + [ + -122.32315222229195, + 47.70859754020096 + ], + [ + -122.3233025427851, + 47.708594293649604 + ], + [ + -122.32331942874885, + 47.70851939184269 + ], + [ + -122.32340458692931, + 47.70851716871943 + ], + [ + -122.32340505869388, + 47.70852534984899 + ], + [ + -122.3234672647935, + 47.70859267487054 + ], + [ + -122.32345885188161, + 47.7086036861655 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/7625387504", + "osm_node_id": 7625387504, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32180103513693, + 47.70731704638599 ], [ - -122.32775550573895, - 47.70812626055354 + -122.32181896486307, + 47.707273729656706 ], [ - -122.3277889074716, - 47.70812585945606 + -122.3219403941204, + 47.70729019533781 ], [ - -122.3277893832455, - 47.70814384229289 + -122.3219399424025, + 47.70733515962446 ], [ - -122.32777267770162, - 47.70814404284163 + -122.32180103513693, + 47.70731704638599 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/476254734", - "osm_node_id": 476254734, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/8145533038", + "osm_node_id": 8145533038, "type": "intersection" }, "type": "Feature" @@ -4947,38 +10874,42 @@ "coordinates": [ [ [ - -122.32823107247985, - 47.708138544388724 + -122.32560008563635, + 47.71023749559975 ], [ - -122.32823059670596, - 47.708120561551894 + -122.32557476805049, + 47.710231727350326 ], [ - -122.32823728025996, - 47.70812048061294 + -122.32558529120669, + 47.710210810926085 ], [ - -122.32823698624237, - 47.70810923819229 + -122.32561095760431, + 47.71021583453714 ], [ - -122.32829043596412, - 47.70810860327117 + -122.32557738881621, + 47.71021621944683 ], [ - -122.32823107247985, - 47.708138544388724 + -122.32557736476024, + 47.71019823301271 + ], + [ + -122.32560008563635, + 47.71023749559975 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/476254735", - "osm_node_id": 476254735, + "osm_link": "https://www.openstreetmap.org/node/8500809111", + "osm_node_id": 8500809111, "type": "intersection" }, "type": "Feature" @@ -4988,44 +10919,44 @@ "coordinates": [ [ [ - -122.3263366050006, - 47.70843896280457 + -122.32547279607422, + 47.71021628239935 ], [ - -122.3263393540649, - 47.70844696946572 + -122.32548182508657, + 47.710227647127745 ], [ - -122.32629377866832, - 47.70845405432212 + -122.32545825289594, + 47.710236127731434 ], [ - -122.3262863173042, - 47.70843232311241 + -122.32544250023629, + 47.71021630038578 ], [ - -122.32627819039122, - 47.70841071690843 + -122.32542698145424, + 47.710196389403215 ], [ - -122.32632353591951, - 47.70840299353362 + -122.3254506525417, + 47.710188034704565 ], [ - -122.32633033440766, - 47.708421069899906 + -122.32545865650188, + 47.710198304059126 ], [ - -122.32634546829397, - 47.70842083247898 + -122.32547588726806, + 47.71019829416659 ], [ - -122.32634609107664, - 47.70843881351716 + -122.32547591132405, + 47.710216280600704 ], [ - -122.3263366050006, - 47.70843896280457 + -122.32547279607422, + 47.71021628239935 ] ] ], @@ -5034,8 +10965,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/476254742", - "osm_node_id": 476254742, + "osm_link": "https://www.openstreetmap.org/node/8500809112", + "osm_node_id": 8500809112, "type": "intersection" }, "type": "Feature" @@ -5045,36 +10976,36 @@ "coordinates": [ [ [ - -122.32510494534381, - 47.708579428761134 + -122.32585649969755, + 47.70968900019066 ], [ - -122.32507153425605, - 47.70857946023739 + -122.32584548606658, + 47.709712697317606 ], [ - -122.32507141664902, - 47.70852211229085 + -122.32581997603286, + 47.709707328367024 ], [ - -122.32507819642694, - 47.7085221059956 + -122.32580399751426, + 47.70969291044143 ], [ - -122.32513165416736, - 47.70852208081459 + -122.32583644903556, + 47.70967662552398 ], [ - -122.32513831099249, - 47.70852208081459 + -122.32585136909091, + 47.70966041614955 ], [ - -122.32513831099249, - 47.708579428761134 + -122.32587409397637, + 47.70966988600712 ], [ - -122.32510494534381, - 47.708579428761134 + -122.32585649969755, + 47.70968900019066 ] ] ], @@ -5083,8 +11014,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/476661975", - "osm_node_id": 476661975, + "osm_link": "https://www.openstreetmap.org/node/8500822585", + "osm_node_id": 8500822585, "type": "intersection" }, "type": "Feature" @@ -5094,54 +11025,71 @@ "coordinates": [ [ [ - -122.32513158333585, - 47.70841184465785 + -122.32567266387406, + 47.70978124991328 ], [ - -122.3251383484129, - 47.70841181677888 + -122.32565668535545, + 47.70976683198769 ], [ - -122.3251385141319, - 47.708429803212994 + -122.32578125792793, + 47.70970432013591 ], [ - -122.32513172098953, - 47.70842983109197 + -122.32579723644653, + 47.70971873986014 ], [ - -122.32513171297087, - 47.70844119222308 - ], + -122.32567266387406, + 47.70978124991328 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8500822586", + "osm_node_id": 8500822586, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -122.32507825523047, - 47.70844117423665 + -122.3253734889663, + 47.70986052422233 ], [ - -122.32507827126778, - 47.708418835984794 + -122.32538368068451, + 47.70987715268067 ], [ - -122.3250777834659, - 47.70839648334379 + -122.32530460064913, + 47.70989909972758 ], [ - -122.32513123586054, - 47.70839595634127 + -122.32529440893092, + 47.70988247126924 ], [ - -122.32513158333585, - 47.70841184465785 + -122.3253734889663, + 47.70986052422233 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/476661976", - "osm_node_id": 476661976, + "osm_link": "https://www.openstreetmap.org/node/8500822593", + "osm_node_id": 8500822593, "type": "intersection" }, "type": "Feature" @@ -5151,34 +11099,54 @@ "coordinates": [ [ [ - -122.32466487186966, - 47.70705029677617 + -122.32523862577881, + 47.709917409917516 ], [ - -122.3247183215914, - 47.70704970322384 + -122.32525306872382, + 47.70993573269795 ], [ - -122.3247205240503, - 47.70713962370324 + -122.32522945643989, + 47.709944161140974 ], [ - -122.32466707432856, - 47.70714021725557 + -122.32521380000416, + 47.7099242996211 ], [ - -122.32466487186966, - 47.70705029677617 + -122.32519769051409, + 47.7099046026771 + ], + [ + -122.32522110767727, + 47.70989592961857 + ], + [ + -122.32522569702428, + 47.70990154138601 + ], + [ + -122.32523449616836, + 47.70989909882826 + ], + [ + -122.32524468788657, + 47.7099157272866 + ], + [ + -122.32523862577881, + 47.709917409917516 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/476714811", - "osm_node_id": 476714811, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8500822594", + "osm_node_id": 8500822594, "type": "intersection" }, "type": "Feature" @@ -5188,28 +11156,32 @@ "coordinates": [ [ [ - -122.32333830601343, - 47.70742618716889 + -122.32564600048958, + 47.71014190040037 ], [ - -122.32325874485838, - 47.7074467420658 + -122.3256354439223, + 47.71016323141192 ], [ - -122.32318443993566, - 47.70741865984621 + -122.32561008357025, + 47.710157547698735 ], [ - -122.32316171905954, - 47.70737420727362 + -122.32561469697325, + 47.710113609538155 ], [ - -122.32336553204061, - 47.70737143556411 + -122.32563613620003, + 47.7101028680397 ], [ - -122.32333830601343, - 47.70742618716889 + -122.32566164623375, + 47.71010823699028 + ], + [ + -122.32564600048958, + 47.71014190040037 ] ] ], @@ -5218,8 +11190,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/476715048", - "osm_node_id": 476715048, + "osm_link": "https://www.openstreetmap.org/node/8500822634", + "osm_node_id": 8500822634, "type": "intersection" }, "type": "Feature" @@ -5229,38 +11201,34 @@ "coordinates": [ [ [ - -122.32355228665674, - 47.70750030926389 - ], - [ - -122.32355266887959, - 47.70751608786322 + -122.32594812225528, + 47.70955528724078 ], [ - -122.32349921915784, - 47.70751667242233 + -122.32597084714072, + 47.70956475709835 ], [ - -122.32355849577328, - 47.70748224279014 + -122.32588310160563, + 47.70966009868899 ], [ - -122.32355899293027, - 47.70750022562697 + -122.32586037672017, + 47.70965062883143 ], [ - -122.32355228665674, - 47.70750030926389 + -122.32594812225528, + 47.70955528724078 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/476715211", - "osm_node_id": 476715211, + "osm_link": "https://www.openstreetmap.org/node/8975595220", + "osm_node_id": 8975595220, "type": "intersection" }, "type": "Feature" @@ -5270,46 +11238,71 @@ "coordinates": [ [ [ - -122.32350446202572, - 47.70796393658292 + -122.32895370753248, + 47.70876925398952 ], [ - -122.32350142295319, - 47.70792802127127 + -122.32895905063363, + 47.708786877097666 ], [ - -122.32350915828822, - 47.70792772449511 + -122.32884599954066, + 47.708802400289635 ], [ - -122.32350903132608, - 47.7079225120265 + -122.3288406564395, + 47.708784777181485 ], [ - -122.32356248104783, - 47.707921927467396 + -122.32895370753248, + 47.70876925398952 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8986750916", + "osm_node_id": 8986750916, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32901481240265, + 47.70850497481642 ], [ - -122.32356538513957, - 47.70792358221933 + -122.32900840549246, + 47.70852243784531 ], [ - -122.32357329955805, - 47.707959159386014 + -122.32889487461627, + 47.70850357727049 ], [ - -122.32350446202572, - 47.70796393658292 + -122.32890128152646, + 47.70848611424161 + ], + [ + -122.32901481240265, + 47.70850497481642 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/476715215", - "osm_node_id": 476715215, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/8986752618", + "osm_node_id": 8986752618, "type": "intersection" }, "type": "Feature" @@ -5319,54 +11312,71 @@ "coordinates": [ [ [ - -122.32406462296792, - 47.70748715578462 + -122.32863699982231, + 47.70847385378879 ], [ - -122.32406526312437, - 47.707509634330656 + -122.32863488556868, + 47.70849178446496 ], [ - -122.32401181607551, - 47.70751032321108 + -122.32851910011229, + 47.708485599829594 ], [ - -122.32401136703048, - 47.70749457698734 + -122.32852121436592, + 47.70846766915342 ], [ - -122.3240046808036, - 47.707494660624256 - ], + -122.32863699982231, + 47.70847385378879 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8986752620", + "osm_node_id": 8986752620, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -122.32400418364662, - 47.707476677787426 + -122.32847305696046, + 47.708606128723254 ], [ - -122.32401085517262, - 47.707476594150506 + -122.32844633878182, + 47.70860560351938 ], [ - -122.32401053576262, - 47.70746536611901 + -122.32844990040377, + 47.70852349994424 ], - [ - -122.32406398281148, - 47.70746467723858 + [ + -122.32847661858243, + 47.708524025148115 ], [ - -122.32406462296792, - 47.70748715578462 + -122.32847305696046, + 47.708606128723254 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/476715244", - "osm_node_id": 476715244, + "osm_link": "https://www.openstreetmap.org/node/8986752621", + "osm_node_id": 8986752621, "type": "intersection" }, "type": "Feature" @@ -5376,42 +11386,34 @@ "coordinates": [ [ [ - -122.32360821949052, - 47.70816650250191 - ], - [ - -122.3236092017765, - 47.70818897565202 - ], - [ - -122.32358248359785, - 47.70818950445319 + -122.32589495585955, + 47.70705026799787 ], [ - -122.32358150131186, - 47.70816703130308 + -122.32592168205687, + 47.70705 ], [ - -122.32358058183874, - 47.708144534770604 + -122.32592367736703, + 47.70713992227805 ], [ - -122.32360730001739, - 47.708144040143665 + -122.32589695116972, + 47.70714019027592 ], [ - -122.32360821949052, - 47.70816650250191 + -122.32589495585955, + 47.70705026799787 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/479716851", - "osm_node_id": 479716851, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/9123420395", + "osm_node_id": 9123420395, "type": "intersection" }, "type": "Feature" @@ -5421,42 +11423,54 @@ "coordinates": [ [ [ - -122.32361191876616, - 47.708251099896145 + -122.32469830834984, + 47.70732128309054 ], [ - -122.3236129117437, - 47.70827357304625 + -122.32466490394431, + 47.70732171026835 ], [ - -122.32358619356503, - 47.70827410724334 + -122.32466388824723, + 47.70728574459469 ], [ - -122.3235852005875, - 47.70825163409324 + -122.32467063595051, + 47.707285658259806 ], [ - -122.32358421830152, - 47.70822915824516 + -122.32467052502571, + 47.707281116685195 ], [ - -122.32361093648018, - 47.708228629444 + -122.32472397474746, + 47.707280523132866 ], [ - -122.32361191876616, - 47.708251099896145 + -122.32472408433583, + 47.70728497657396 + ], + [ + -122.32473069973119, + 47.70728489293704 + ], + [ + -122.32473171008249, + 47.7073208586107 + ], + [ + -122.32469830834984, + 47.70732128309054 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/479716854", - "osm_node_id": 479716854, + "osm_link": "https://www.openstreetmap.org/node/9123420400", + "osm_node_id": 9123420400, "type": "intersection" }, "type": "Feature" @@ -5466,36 +11480,44 @@ "coordinates": [ [ [ - -122.32359965689696, - 47.70795725732061 + -122.32498466008211, + 47.7073173701418 ], [ - -122.32359983865327, - 47.7079616900773 + -122.32498477902558, + 47.70732218151293 ], [ - -122.32357312047462, - 47.707962184704236 + -122.32493132930384, + 47.707322778662544 ], [ - -122.32359113306025, - 47.707957361641924 + -122.32493121971547, + 47.70731832342281 ], [ - -122.3235832159689, - 47.707921786273886 + -122.32492459897432, + 47.70731840705973 ], [ - -122.32362181513035, - 47.707921003864 + -122.32492358862302, + 47.70728244138607 ], [ - -122.32362279607989, - 47.70795697133631 + -122.32495677251539, + 47.707282019604186 ], [ - -122.32359965689696, - 47.70795725732061 + -122.32498997378151, + 47.70728125338209 + ], + [ + -122.324991807382, + 47.70731720466661 + ], + [ + -122.32498466008211, + 47.7073173701418 ] ] ], @@ -5504,8 +11526,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/479716858", - "osm_node_id": 479716858, + "osm_link": "https://www.openstreetmap.org/node/9127145511", + "osm_node_id": 9127145511, "type": "intersection" }, "type": "Feature" @@ -5515,34 +11537,34 @@ "coordinates": [ [ [ - -122.32871833978368, - 47.71054933180397 + -122.32592642108555, + 47.70726356462346 ], [ - -122.32862645661946, - 47.71055066819603 + -122.32589969488825, + 47.70726383262133 ], [ - -122.32862356990148, - 47.710460756709836 + -122.325897973549, + 47.70718626792284 ], [ - -122.32871545306568, - 47.71045942031778 + -122.32592469974632, + 47.707185999924974 ], [ - -122.32871833978368, - 47.71054933180397 + -122.32592642108555, + 47.70726356462346 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/666566888", - "osm_node_id": 666566888, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9188152666", + "osm_node_id": 9188152666, "type": "intersection" }, "type": "Feature" @@ -5552,34 +11574,34 @@ "coordinates": [ [ [ - -122.32706609333555, - 47.70705029317888 + -122.32592569940607, + 47.70726819972754 ], [ - -122.3271195430573, - 47.707049706821124 + -122.32594353558115, + 47.707254803431404 ], [ - -122.32712172279666, - 47.707139627300535 + -122.32604051059513, + 47.707306601663696 ], [ - -122.32706827307491, - 47.707140213658285 + -122.32603632218118, + 47.70732436506603 ], [ - -122.32706609333555, - 47.70705029317888 + -122.32592569940607, + 47.70726819972754 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/910032566", - "osm_node_id": 910032566, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9188152667", + "osm_node_id": 9188152667, "type": "intersection" }, "type": "Feature" @@ -5589,34 +11611,62 @@ "coordinates": [ [ [ - -122.32885339675548, - 47.7081937186747 + -122.32702274846318, + 47.70728227591087 ], [ - -122.32880214681975, - 47.70820178918769 + -122.32702285136934, + 47.7072866978757 ], [ - -122.32877068961241, - 47.70816089702972 + -122.32699612517202, + 47.707286980262715 ], [ - -122.32883392477353, - 47.70815027424173 + -122.32696239066493, + 47.70728265362599 ], [ - -122.32885339675548, - 47.7081937186747 + -122.32696198973188, + 47.7072466825564 + ], + [ + -122.32699508408253, + 47.70724651618188 + ], + [ + -122.3269949544475, + 47.707242021372 + ], + [ + -122.32702167797193, + 47.70724167423382 + ], + [ + -122.32702181161628, + 47.707246306639924 + ], + [ + -122.32702869964614, + 47.707246253579946 + ], + [ + -122.32702931975592, + 47.70728222464954 + ], + [ + -122.32702274846318, + 47.70728227591087 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/944726788", - "osm_node_id": 944726788, + "osm_link": "https://www.openstreetmap.org/node/9188152680", + "osm_node_id": 9188152680, "type": "intersection" }, "type": "Feature" @@ -5626,34 +11676,34 @@ "coordinates": [ [ [ - -122.32453893211547, - 47.708590913099314 + -122.32556286033882, + 47.70818733438991 ], [ - -122.32453882787289, - 47.7085116360923 + -122.32553720062342, + 47.708182299987 ], [ - -122.32460563935685, - 47.7085225493612 + -122.32561492550509, + 47.70811200720382 ], [ - -122.32460575696388, - 47.70857989730774 + -122.32561955227251, + 47.708129722042784 ], [ - -122.32453893211547, - 47.708590913099314 + -122.32556286033882, + 47.70818733438991 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1111800655", - "osm_node_id": 1111800655, + "osm_link": "https://www.openstreetmap.org/node/9188152681", + "osm_node_id": 9188152681, "type": "intersection" }, "type": "Feature" @@ -5663,44 +11713,44 @@ "coordinates": [ [ [ - -122.32512877546803, - 47.708282975454686 + -122.32601500056141, + 47.70807290019945 ], [ - -122.32512911492469, - 47.708298616457796 + -122.3260482312293, + 47.70807523393927 ], [ - -122.32507566253005, - 47.708299143460316 + -122.32604545677258, + 47.70809312324665 ], [ - -122.32507517606462, - 47.708276770134916 + -122.3260146651141, + 47.708090960377945 ], [ - -122.32507446774956, - 47.70825430328006 + -122.325983817325, + 47.70809261333124 ], [ - -122.32512791479841, - 47.70825354065525 + -122.3259816950527, + 47.708074684453706 ], [ - -122.32512827563816, - 47.70826499081921 + -122.32598526602976, + 47.70807449379751 ], [ - -122.32513515297647, - 47.70826494765177 + -122.32597490591967, + 47.70806285207802 ], [ - -122.32513540422785, - 47.70828293408589 + -122.32599783661742, + 47.70805361064818 ], [ - -122.32512877546803, - 47.708282975454686 + -122.32601500056141, + 47.70807290019945 ] ] ], @@ -5709,8 +11759,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1395426463", - "osm_node_id": 1395426463, + "osm_link": "https://www.openstreetmap.org/node/9188152684", + "osm_node_id": 9188152684, "type": "intersection" }, "type": "Feature" @@ -5720,34 +11770,87 @@ "coordinates": [ [ [ - -122.3285171622692, - 47.70705215207685 + -122.3269894442909, + 47.70705 ], [ - -122.32870672341669, - 47.70704784792316 + -122.32701616781534, + 47.707049652861826 ], [ - -122.32871123124065, - 47.70713772883241 + -122.32701874848776, + 47.7071395679453 ], [ - -122.32852167009315, - 47.70714203298609 + -122.32699202496333, + 47.70713991508348 ], [ - -122.3285171622692, - 47.70705215207685 + -122.3269894442909, + 47.70705 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/9188152707", + "osm_node_id": 9188152707, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32705028588171, + 47.70816793062478 + ], + [ + -122.3270551264801, + 47.708188963960836 + ], + [ + -122.32702871301056, + 47.7081917176839 + ], + [ + -122.32699033035296, + 47.70818760508574 + ], + [ + -122.32699018868995, + 47.708169618651624 + ], + [ + -122.3270235997777, + 47.70816949994116 + ], + [ + -122.32702289279908, + 47.70814702229444 + ], + [ + -122.3270496163235, + 47.70814664278068 + ], + [ + -122.32705028588171, + 47.70816793062478 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1778657883", - "osm_node_id": 1778657883, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9188152718", + "osm_node_id": 9188152718, "type": "intersection" }, "type": "Feature" @@ -5757,28 +11860,28 @@ "coordinates": [ [ [ - -122.32341129988507, - 47.71031242348699 + -122.3233123656449, + 47.70962486146591 ], [ - -122.3232408659171, - 47.710313738295326 + -122.32319455814947, + 47.70962432726882 ], [ - -122.32324100891655, - 47.71012770910386 + -122.32319496843763, + 47.709583312803105 ], [ - -122.3233255149126, - 47.710120284303855 + -122.323194273487, + 47.70954198087682 ], [ - -122.32341003694596, - 47.71012762456762 + -122.32331207563665, + 47.7095410851524 ], [ - -122.32341129988507, - 47.71031242348699 + -122.3233123656449, + 47.70962486146591 ] ] ], @@ -5786,9 +11889,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1905102152", - "osm_node_id": 1905102152, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/9198107248", + "osm_node_id": 9198107248, "type": "intersection" }, "type": "Feature" @@ -5798,28 +11901,36 @@ "coordinates": [ [ [ - -122.32335700018525, - 47.70712353213996 + -122.3234586794804, + 47.709540797369456 ], [ - -122.32315320324149, - 47.707126821858765 + -122.32346152877795, + 47.70954080096674 ], [ - -122.32317555124986, - 47.70706554567501 + -122.32346129890968, + 47.70962457458229 ], [ - -122.32325469008877, - 47.70704426772345 + -122.32334350745157, + 47.70962604227531 ], [ - -122.32333354025587, - 47.707066024114155 + -122.32334171394437, + 47.70962472117173 ], [ - -122.32335700018525, - 47.70712353213996 + -122.32334083991033, + 47.709540949354825 + ], + [ + -122.32345861934043, + 47.70953907786635 + ], + [ + -122.3234586794804, + 47.709540797369456 ] ] ], @@ -5827,9 +11938,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1905102153", - "osm_node_id": 1905102153, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/9198107249", + "osm_node_id": 9198107249, "type": "intersection" }, "type": "Feature" @@ -5839,28 +11950,28 @@ "coordinates": [ [ [ - -122.32540788234004, - 47.708679379375525 + -122.32645927447751, + 47.70859356070242 ], [ - -122.32534104546365, - 47.70867910148512 + -122.3264583523315, + 47.70851428549405 ], [ - -122.32534160409703, - 47.70862175533722 + -122.32648146077624, + 47.70850524371361 ], [ - -122.32540340124496, - 47.70860036586976 + -122.32654427495766, + 47.70850333805092 ], [ - -122.32540841023523, - 47.70862203412695 + -122.32654239324519, + 47.708604536923836 ], [ - -122.32540788234004, - 47.708679379375525 + -122.32645927447751, + 47.70859356070242 ] ] ], @@ -5869,8 +11980,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1968559734", - "osm_node_id": 1968559734, + "osm_link": "https://www.openstreetmap.org/node/9322923125", + "osm_node_id": 9322923125, "type": "intersection" }, "type": "Feature" @@ -5880,32 +11991,56 @@ "coordinates": [ [ [ - -122.32738418426474, - 47.70869296183125 + -122.3264411576493, + 47.70841933151105 ], [ - -122.32727891795523, - 47.708693430377856 + -122.32646016722178, + 47.70841903383557 ], [ - -122.32727890860012, - 47.70869245191584 + -122.32646079000446, + 47.70843701487375 ], [ - -122.32728004324066, - 47.708635109365225 + -122.32644881279772, + 47.70843720283199 ], [ - -122.32733145221316, - 47.70863557071726 + -122.32645200689771, + 47.708444974770174 ], [ - -122.3273842871709, - 47.7086356138847 + -122.32642624561261, + 47.708449768154864 ], [ - -122.32738418426474, - 47.70869296183125 + -122.32642125934187, + 47.70843763450641 + ], + [ + -122.32639398653916, + 47.70843806258354 + ], + [ + -122.32639336375648, + 47.708420081545356 + ], + [ + -122.32641320058751, + 47.70841977038005 + ], + [ + -122.32640692732167, + 47.708407103433814 + ], + [ + -122.32643228500083, + 47.70840141612335 + ], + [ + -122.3264411576493, + 47.70841933151105 ] ] ], @@ -5914,8 +12049,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1968559768", - "osm_node_id": 1968559768, + "osm_link": "https://www.openstreetmap.org/node/9322923130", + "osm_node_id": 9322923130, "type": "intersection" }, "type": "Feature" @@ -5925,38 +12060,34 @@ "coordinates": [ [ [ - -122.32797559793843, - 47.70855292485113 - ], - [ - -122.32797261499653, - 47.708689535415544 + -122.32658376151761, + 47.70847784138124 ], [ - -122.32790717604004, - 47.70867025305885 + -122.32659175077691, + 47.70849500583531 ], [ - -122.3278715785307, - 47.70861814815785 + -122.32643868923813, + 47.7085272645049 ], [ - -122.32791605804361, - 47.70856922955367 + -122.32643069997883, + 47.70851010005082 ], [ - -122.32797559793843, - 47.70855292485113 + -122.32658376151761, + 47.70847784138124 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1968559770", - "osm_node_id": 1968559770, + "osm_link": "https://www.openstreetmap.org/node/9384044289", + "osm_node_id": 9384044289, "type": "intersection" }, "type": "Feature" @@ -5966,50 +12097,34 @@ "coordinates": [ [ [ - -122.32600338419442, - 47.70862459359652 - ], - [ - -122.32602430220825, - 47.70862473299139 - ], - [ - -122.32602346024883, - 47.70868207734064 - ], - [ - -122.32591820864019, - 47.708683429920484 - ], - [ - -122.325918153846, - 47.70868150357339 + -122.32609727068747, + 47.70838214365919 ], [ - -122.3259186817412, - 47.7086241574255 + -122.32612399955767, + 47.70838214365919 ], [ - -122.3259667856889, - 47.70862435797424 + -122.32612399955767, + 47.70844459975302 ], [ - -122.32598976048928, - 47.708604673620734 + -122.32609727068747, + 47.70844459975302 ], [ - -122.32600338419442, - 47.70862459359652 + -122.32609727068747, + 47.70838214365919 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/1968559794", - "osm_node_id": 1968559794, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9384044299", + "osm_node_id": 9384044299, "type": "intersection" }, "type": "Feature" @@ -6019,34 +12134,34 @@ "coordinates": [ [ [ - -122.32310736857487, - 47.706950715782995 + -122.32612399955767, + 47.70856825648758 ], [ - -122.32318650741377, - 47.706929437831434 + -122.32609727068747, + 47.70856825648758 ], [ - -122.32322989638877, - 47.70700251131733 + -122.32609727068747, + 47.70850580039375 ], [ - -122.32315075754987, - 47.70702378926889 + -122.32612399955767, + 47.70850580039375 ], [ - -122.32310736857487, - 47.706950715782995 + -122.32612399955767, + 47.70856825648758 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/2542516444", - "osm_node_id": 2542516444, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9384044300", + "osm_node_id": 9384044300, "type": "intersection" }, "type": "Feature" @@ -6056,34 +12171,34 @@ "coordinates": [ [ [ - -122.32339892174528, - 47.71054227752451 + -122.32595020042494, + 47.710364600333726 ], [ - -122.32326107828875, - 47.71054352218575 + -122.3259503313964, + 47.71038258676784 ], [ - -122.32324439947374, - 47.71052107601529 + -122.32583187305299, + 47.71033717012237 ], [ - -122.3234148334417, - 47.71051976120696 + -122.32584936442565, + 47.71032356878089 ], [ - -122.32339892174528, - 47.71054227752451 + -122.32595020042494, + 47.710364600333726 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3409784125", - "osm_node_id": 3409784125, + "osm_link": "https://www.openstreetmap.org/node/9384178855", + "osm_node_id": 9384178855, "type": "intersection" }, "type": "Feature" @@ -6093,46 +12208,79 @@ "coordinates": [ [ [ - -122.32323458062326, - 47.70772339230828 + -122.32462680060338, + 47.70938599982219 ], [ - -122.32323520073305, - 47.707745871753644 + -122.32462647050184, + 47.70940848196552 ], [ - -122.32314999444063, - 47.70774693655054 + -122.32459974163163, + 47.70940830389982 ], [ - -122.32314985411405, - 47.707741814913426 + -122.32460007173317, + 47.70938582175649 + ], + [ + -122.32460041519916, + 47.70936333421724 + ], + [ + -122.32462714139648, + 47.70936351767887 + ], + [ + -122.32462680060338, + 47.70938599982219 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9384317428", + "osm_node_id": 9384317428, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32196849819098, + 47.7077360007986 ], [ - -122.32314889855694, - 47.70770584204519 + -122.32194176932077, + 47.70773605655655 ], [ - -122.32314879832369, - 47.70770192999577 + -122.32194140046236, + 47.7076559000129 ], [ - -122.323234007289, - 47.70770094254054 + -122.32196812933257, + 47.70765584425495 ], [ - -122.32323458062326, - 47.70772339230828 + -122.32196849819098, + 47.7077360007986 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3711400490", - "osm_node_id": 3711400490, + "osm_link": "https://www.openstreetmap.org/node/9687585569", + "osm_node_id": 9687585569, "type": "intersection" }, "type": "Feature" @@ -6142,46 +12290,42 @@ "coordinates": [ [ [ - -122.32213742598711, - 47.7077423688956 - ], - [ - -122.32213742999645, - 47.70774687090006 + -122.32196792886604, + 47.70761234406404 ], [ - -122.32207060782093, - 47.70774689608107 + -122.32196803310863, + 47.70763482710669 ], [ - -122.32207060247516, - 47.70774169170635 + -122.32194130423844, + 47.70763488286463 ], [ - -122.32207144176168, - 47.70770571883812 + -122.32194119999583, + 47.70761239982199 ], [ - -122.3221043997951, - 47.7077064140138 + -122.32194114252877, + 47.70758991677934 ], [ - -122.32213738990313, - 47.70770639602736 + -122.32196787139897, + 47.7075898862024 ], [ - -122.32213742598711, - 47.7077423688956 + -122.32196792886604, + 47.70761234406404 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3711400491", - "osm_node_id": 3711400491, + "osm_link": "https://www.openstreetmap.org/node/9687585570", + "osm_node_id": 9687585570, "type": "intersection" }, "type": "Feature" @@ -6191,34 +12335,34 @@ "coordinates": [ [ [ - -122.32886362322122, - 47.71009737228476 + -122.32196732880291, + 47.707378568983884 ], [ - -122.32889637677877, - 47.71010181133669 + -122.32196738626998, + 47.70740105202653 ], [ - -122.32886750024385, - 47.71019027941154 + -122.32194065739978, + 47.70740108260347 ], [ - -122.32883520374997, - 47.7101845183567 + -122.3219405999327, + 47.707378599560826 ], [ - -122.32886362322122, - 47.71009737228476 + -122.32196732880291, + 47.707378568983884 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/3835317537", - "osm_node_id": 3835317537, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9687585571", + "osm_node_id": 9687585571, "type": "intersection" }, "type": "Feature" @@ -6228,34 +12372,34 @@ "coordinates": [ [ [ - -122.3287236147262, - 47.71055380952674 + -122.3219405999327, + 47.70725494282627 ], [ - -122.32869218157485, - 47.71054619047325 + -122.32196732880291, + 47.70725494282627 ], [ - -122.32872655623838, - 47.7104603079483 + -122.32196732880291, + 47.70737100029241 ], [ - -122.32875885273224, - 47.710466069003154 + -122.3219405999327, + 47.70737100029241 ], [ - -122.3287236147262, - 47.71055380952674 + -122.3219405999327, + 47.70725494282627 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/3835317544", - "osm_node_id": 3835317544, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9687585572", + "osm_node_id": 9687585572, "type": "intersection" }, "type": "Feature" @@ -6265,50 +12409,34 @@ "coordinates": [ [ [ - -122.32336446154936, - 47.70733577116322 - ], - [ - -122.32336458182928, - 47.70733979292989 - ], - [ - -122.3231607688482, - 47.70734256463939 - ], - [ - -122.32316071405401, - 47.707340721929214 - ], - [ - -122.3231587722016, - 47.707340712936 + -122.32706944379943, + 47.708608611750485 ], [ - -122.3231592239195, - 47.70729574864935 + -122.327042720275, + 47.708608937304945 ], [ - -122.3233630221997, - 47.707292458031226 + -122.3270402999758, + 47.70851880008901 ], [ - -122.32336328414263, - 47.70729980548956 + -122.32706702350023, + 47.70851847453455 ], [ - -122.32336446154936, - 47.70733577116322 + -122.32706944379943, + 47.708608611750485 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4022851873", - "osm_node_id": 4022851873, + "osm_link": "https://www.openstreetmap.org/node/9693399658", + "osm_node_id": 9693399658, "type": "intersection" }, "type": "Feature" @@ -6318,28 +12446,32 @@ "coordinates": [ [ [ - -122.32872734874937, - 47.70747796651543 + -122.32706612407375, + 47.708484974801 ], [ - -122.32853768603218, - 47.70747879748868 + -122.32706672814622, + 47.708507455145686 ], [ - -122.32853747621054, - 47.7074572119691 + -122.3270400046218, + 47.7085077789015 ], [ - -122.32853639235486, - 47.70743558148343 + -122.32703940054932, + 47.70848530035546 ], [ - -122.32872595350236, - 47.707431277329746 + -122.32703879246752, + 47.70846282091011 ], [ - -122.32872734874937, - 47.70747796651543 + -122.32706551599195, + 47.708462493557 + ], + [ + -122.32706612407375, + 47.708484974801 ] ] ], @@ -6348,8 +12480,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4022851877", - "osm_node_id": 4022851877, + "osm_link": "https://www.openstreetmap.org/node/9693399659", + "osm_node_id": 9693399659, "type": "intersection" }, "type": "Feature" @@ -6359,34 +12491,34 @@ "coordinates": [ [ [ - -122.32332441101025, - 47.706929856016025 + -122.32706422097819, + 47.70841422516241 ], [ - -122.32340326117736, - 47.70695161420538 + -122.32703749745376, + 47.708414538126355 ], [ - -122.3233588939257, - 47.7070244196934 + -122.32703437418527, + 47.708293783502945 ], [ - -122.3232800437586, - 47.70700266150405 + -122.3270610977097, + 47.70829346874035 ], [ - -122.32332441101025, - 47.706929856016025 + -122.32706422097819, + 47.70841422516241 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/4272355594", - "osm_node_id": 4272355594, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9693399661", + "osm_node_id": 9693399661, "type": "intersection" }, "type": "Feature" @@ -6396,34 +12528,34 @@ "coordinates": [ [ [ - -122.32698311756734, - 47.70851788278087 + -122.32703116404797, + 47.708170144754824 ], [ - -122.32698224887905, - 47.70859715798924 + -122.3270578875724, + 47.70816982999222 ], [ - -122.32691497632207, - 47.708607673757946 + -122.32706102286888, + 47.70829058641428 ], [ - -122.32691685803454, - 47.70850647488503 + -122.32703429934445, + 47.70829090117688 ], [ - -122.32698311756734, - 47.70851788278087 + -122.32703116404797, + 47.708170144754824 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4272355596", - "osm_node_id": 4272355596, + "osm_link": "https://www.openstreetmap.org/node/9693399662", + "osm_node_id": 9693399662, "type": "intersection" }, "type": "Feature" @@ -6433,54 +12565,34 @@ "coordinates": [ [ [ - -122.32712908927328, - 47.70842653777588 - ], - [ - -122.32709568754063, - 47.70842706118111 - ], - [ - -122.32709506475797, - 47.70840908014293 - ], - [ - -122.32710179909681, - 47.708408974922285 - ], - [ - -122.3271013781171, - 47.708393142363654 - ], - [ - -122.32715482783885, - 47.708392498449314 + -122.32708325594311, + 47.708311163794235 ], [ - -122.32715524614568, - 47.70840824107577 + -122.32705684247357, + 47.708313917517295 ], [ - -122.32716192969967, - 47.708408161935466 + -122.3270320006616, + 47.708205999811916 ], [ - -122.32716240012778, - 47.7084261447723 + -122.32705841413114, + 47.70820324608885 ], [ - -122.32712908927328, - 47.70842653777588 + -122.32708325594311, + 47.708311163794235 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4554773505", - "osm_node_id": 4554773505, + "osm_link": "https://www.openstreetmap.org/node/9693399664", + "osm_node_id": 9693399664, "type": "intersection" }, "type": "Feature" @@ -6490,54 +12602,34 @@ "coordinates": [ [ [ - -122.32715092542381, - 47.70824577771029 - ], - [ - -122.32715152281405, - 47.708268257155645 - ], - [ - -122.3270980730923, - 47.708268901069985 - ], - [ - -122.3270976641406, - 47.708253485796625 - ], - [ - -122.32709116768869, - 47.708253642278606 - ], - [ - -122.3270902161409, - 47.70823566663635 + -122.32703545269518, + 47.708339184859945 ], [ - -122.32709719504892, - 47.70823549846319 + -122.32706217621963, + 47.708338857506845 ], [ - -122.32709689702202, - 47.70822393138741 + -122.32706492394747, + 47.70844057259042 ], [ - -122.32715034674376, - 47.708223309056784 + -122.32703820042305, + 47.708440899943525 ], [ - -122.32715092542381, - 47.70824577771029 + -122.32703545269518, + 47.708339184859945 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4554773508", - "osm_node_id": 4554773508, + "osm_link": "https://www.openstreetmap.org/node/9693399665", + "osm_node_id": 9693399665, "type": "intersection" }, "type": "Feature" @@ -6547,44 +12639,40 @@ "coordinates": [ [ [ - -122.32714849844238, - 47.70815142717216 - ], - [ - -122.32714890338477, - 47.708167167999974 + -122.32848712035553, + 47.70846584802697 ], [ - -122.32709545366302, - 47.7081677903306 + -122.3284850061019, + 47.70848377870314 ], [ - -122.32709487498299, - 47.708145310885236 + -122.32847838001497, + 47.708483424370385 ], [ - -122.32709427358341, - 47.70812284403038 + -122.32847744450451, + 47.70850499819879 ], [ - -122.32714772330516, - 47.70812219651875 + -122.32845072632585, + 47.70850447299491 ], [ - -122.32714802400494, - 47.708133444335324 + -122.32845170059318, + 47.7084819998448 ], [ - -122.32715471156827, - 47.70813336519502 + -122.32841829084187, + 47.70848217251457 ], [ - -122.32715518199639, - 47.70815134803185 + -122.32841808502957, + 47.708464186080455 ], [ - -122.32714849844238, - 47.70815142717216 + -122.32848712035553, + 47.70846584802697 ] ] ], @@ -6593,8 +12681,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4554837508", - "osm_node_id": 4554837508, + "osm_link": "https://www.openstreetmap.org/node/9718788161", + "osm_node_id": 9718788161, "type": "intersection" }, "type": "Feature" @@ -6604,44 +12692,40 @@ "coordinates": [ [ [ - -122.32407732452704, - 47.707933380329315 - ], - [ - -122.32407791790797, - 47.70795585977468 + -122.3279322263372, + 47.708192677260165 ], [ - -122.32402446818621, - 47.707956498293086 + -122.32793263929824, + 47.70821515850417 ], [ - -122.3240243505792, - 47.70795201337574 + -122.32790591310092, + 47.70821538153595 ], [ - -122.32401768439895, - 47.70795209611334 + -122.32790550013988, + 47.70819290029195 ], [ - -122.32401670344942, - 47.70791612864103 + -122.32787209573435, + 47.708193336462976 ], [ - -122.32402336428387, - 47.70791604590344 + -122.32787157719426, + 47.708175353626146 ], [ - -122.3240232359853, - 47.707911565482696 + -122.32793676890869, + 47.70817345156073 ], [ - -122.32407668303416, - 47.70791087660227 + -122.32793708163648, + 47.70819143619621 ], [ - -122.32407732452704, - 47.707933380329315 + -122.3279322263372, + 47.708192677260165 ] ] ], @@ -6650,8 +12734,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4554843678", - "osm_node_id": 4554843678, + "osm_link": "https://www.openstreetmap.org/node/9718788163", + "osm_node_id": 9718788163, "type": "intersection" }, "type": "Feature" @@ -6661,54 +12745,34 @@ "coordinates": [ [ [ - -122.32569701922058, - 47.70828006794761 - ], - [ - -122.32568889898982, - 47.70829933681448 - ], - [ - -122.32563746997066, - 47.70828952341603 - ], - [ - -122.32564159423534, - 47.708279738795866 - ], - [ - -122.3256389854976, - 47.70827975498366 - ], - [ - -122.32563873424623, - 47.70826176854954 + -122.32768836949921, + 47.70819573675261 ], [ - -122.32565105892827, - 47.70826169120787 + -122.32768785095914, + 47.70817775391578 ], [ - -122.32566686504566, - 47.70824423987017 + -122.32782078164932, + 47.70817601732556 ], [ - -122.32571251261021, - 47.708262961949444 + -122.32782130018941, + 47.70819400016239 ], [ - -122.32569701922058, - 47.70828006794761 + -122.32768836949921, + 47.70819573675261 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4554843686", - "osm_node_id": 4554843686, + "osm_link": "https://www.openstreetmap.org/node/9718788164", + "osm_node_id": 9718788164, "type": "intersection" }, "type": "Feature" @@ -6718,54 +12782,71 @@ "coordinates": [ [ [ - -122.32563815022041, - 47.70841976228615 + -122.32778003215026, + 47.70817651644911 ], [ - -122.32563582347225, - 47.7084403810349 + -122.32778052930723, + 47.70819449928594 ], [ - -122.3255825180864, - 47.70843765609013 + -122.32760687985619, + 47.708196673845826 ], [ - -122.32558361263364, - 47.70842795870418 + -122.3276063826992, + 47.708178691008996 ], [ - -122.3255783924853, - 47.708427980287894 - ], + -122.32778003215026, + 47.70817651644911 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9718788165", + "osm_node_id": 9718788165, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -122.3255782267663, - 47.70840999385378 + -122.32742314961173, + 47.708198968914814 ], [ - -122.32558671719191, - 47.70840995878023 + -122.32742265245474, + 47.708180986077984 ], [ - -122.32559510070206, - 47.708390063086135 + -122.32759630324225, + 47.708178816914035 ], [ - -122.32564652972121, - 47.70839987648459 + -122.32759680039923, + 47.708196799750866 ], [ - -122.32563815022041, - 47.70841976228615 + -122.32742314961173, + 47.708198968914814 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4554843688", - "osm_node_id": 4554843688, + "osm_link": "https://www.openstreetmap.org/node/9718788166", + "osm_node_id": 9718788166, "type": "intersection" }, "type": "Feature" @@ -6775,54 +12856,71 @@ "coordinates": [ [ [ - -122.32712472444878, - 47.707263376665225 + -122.32755663225309, + 47.7081793169369 ], [ - -122.32712532584837, - 47.70728585611059 + -122.32755712941007, + 47.70819729977373 ], [ - -122.32707187612662, - 47.707286503622214 + -122.32738358019228, + 47.70819947253497 ], [ - -122.32707175183737, - 47.707281827149345 + -122.3273830830353, + 47.70818148969814 ], [ - -122.32706480099468, - 47.70728186402153 - ], + -122.32755663225309, + 47.7081793169369 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9718788167", + "osm_node_id": 9718788167, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -122.32706437867853, - 47.70724589295194 + -122.32719985128426, + 47.708201777496505 ], [ - -122.32707083503712, - 47.70724585877772 + -122.32719935412729, + 47.708183794659675 ], [ - -122.32707072945809, - 47.707241513255234 + -122.32737290334508, + 47.70818161740183 ], [ - -122.32712417917983, - 47.707240926897484 + -122.32737340050207, + 47.70819960023866 ], [ - -122.32712472444878, - 47.707263376665225 + -122.32719985128426, + 47.708201777496505 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4632418342", - "osm_node_id": 4632418342, + "osm_link": "https://www.openstreetmap.org/node/9718788168", + "osm_node_id": 9718788168, "type": "intersection" }, "type": "Feature" @@ -6832,34 +12930,34 @@ "coordinates": [ [ [ - -122.32869594499977, - 47.70917309799883 + -122.3273759758287, + 47.70817928186335 ], [ - -122.32860404045246, - 47.709173268869954 + -122.32737754481339, + 47.70819723772053 ], [ - -122.32858848959577, - 47.709127199316924 + -122.32729260046388, + 47.70820060028439 ], [ - -122.32871294456122, - 47.709129247971774 + -122.32729103147919, + 47.70818264442721 ], [ - -122.32869594499977, - 47.70917309799883 + -122.3273759758287, + 47.70817928186335 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4787708489", - "osm_node_id": 4787708489, + "osm_link": "https://www.openstreetmap.org/node/9718788169", + "osm_node_id": 9718788169, "type": "intersection" }, "type": "Feature" @@ -6869,34 +12967,34 @@ "coordinates": [ [ [ - -122.32531002928266, - 47.70955843486675 + -122.32710915621834, + 47.70820786230717 ], [ - -122.32530898685673, - 47.709620275824534 + -122.32710758723366, + 47.70818990644999 ], [ - -122.32524229698913, - 47.70963112254363 + -122.32719253158317, + 47.70818654388613 ], [ - -122.32524308014503, - 47.709546796744554 + -122.32719410056785, + 47.70820449974331 ], [ - -122.32531002928266, - 47.70955843486675 + -122.32710915621834, + 47.70820786230717 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4787774424", - "osm_node_id": 4787774424, + "osm_link": "https://www.openstreetmap.org/node/9718788170", + "osm_node_id": 9718788170, "type": "intersection" }, "type": "Feature" @@ -6906,34 +13004,34 @@ "coordinates": [ [ [ - -122.32390590292732, - 47.70954117778254 + -122.32813399990549, + 47.708199000391076 ], [ - -122.32390511977142, - 47.70962550358161 + -122.32810727103528, + 47.70819922162422 ], [ - -122.32383857290327, - 47.70962504582686 + -122.32801390575521, + 47.70819083185202 ], [ - -122.32383880544445, - 47.70954127221132 + -122.32801359302744, + 47.70817284721655 ], [ - -122.32390590292732, - 47.70954117778254 + -122.32813399990549, + 47.708199000391076 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4787774425", - "osm_node_id": 4787774425, + "osm_link": "https://www.openstreetmap.org/node/9718788177", + "osm_node_id": 9718788177, "type": "intersection" }, "type": "Feature" @@ -6943,34 +13041,34 @@ "coordinates": [ [ [ - -122.32330205631966, - 47.708944909505114 + -122.32809125776915, + 47.70830112466603 ], [ - -122.32318425417, - 47.70894580522953 + -122.32809140477792, + 47.708319111100145 ], [ - -122.32319913413205, - 47.708901449783674 + -122.32798934726927, + 47.7083194861173 ], [ - -122.32328431369561, - 47.70889963315383 + -122.32798920026048, + 47.70830149968318 ], [ - -122.32330205631966, - 47.708944909505114 + -122.32809125776915, + 47.70830112466603 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4787774426", - "osm_node_id": 4787774426, + "osm_link": "https://www.openstreetmap.org/node/9718788178", + "osm_node_id": 9718788178, "type": "intersection" }, "type": "Feature" @@ -6980,34 +13078,50 @@ "coordinates": [ [ [ - -122.32329591937106, - 47.709705295899965 + -122.32794091054713, + 47.70830167684956 ], [ - -122.32321070505996, - 47.70970604233698 + -122.32794105755592, + 47.708319663283675 ], [ - -122.32319419730972, - 47.709660304633665 + -122.32793455174891, + 47.708319687565364 ], [ - -122.32331200480515, - 47.70966083883076 + -122.32793463059907, + 47.70832406366478 ], [ - -122.32329591937106, - 47.709705295899965 + -122.32790790440175, + 47.708324281300634 + ], + [ + -122.32790749945937, + 47.70830180005663 + ], + [ + -122.32790708649833, + 47.70827931791331 + ], + [ + -122.32793381269565, + 47.708279096680165 + ], + [ + -122.32794091054713, + 47.70830167684956 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4787774427", - "osm_node_id": 4787774427, + "osm_link": "https://www.openstreetmap.org/node/9718788179", + "osm_node_id": 9718788179, "type": "intersection" }, "type": "Feature" @@ -7017,34 +13131,34 @@ "coordinates": [ [ [ - -122.32344599930437, - 47.70969993774124 + -122.3246236893629, + 47.70959343287026 ], [ - -122.32336078499327, - 47.7096991984988 + -122.32459696316558, + 47.709593249408634 ], [ - -122.32334430931768, - 47.70965512993657 + -122.32459807375012, + 47.70951981619406 ], [ - -122.3234620981029, - 47.7096536604449 + -122.32462479994744, + 47.70951999965569 ], [ - -122.32344599930437, - 47.70969993774124 + -122.3246236893629, + 47.70959343287026 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4787774428", - "osm_node_id": 4787774428, + "osm_link": "https://www.openstreetmap.org/node/9725719359", + "osm_node_id": 9725719359, "type": "intersection" }, "type": "Feature" @@ -7054,42 +13168,34 @@ "coordinates": [ [ [ - -122.3233966832024, - 47.70838006352809 - ], - [ - -122.3233975893111, - 47.708395792664724 - ], - [ - -122.32331243113063, - 47.70839801578798 + -122.324678999414, + 47.70932339983689 ], [ - -122.32331053739017, - 47.708352601840474 + -122.3246620319272, + 47.709337297954534 ], [ - -122.3233957463555, - 47.708351605392025 + -122.32455876360072, + 47.709280211710606 ], [ - -122.32339601631709, - 47.70836208159058 + -122.32457573108752, + 47.70926631359296 ], [ - -122.3233966832024, - 47.70838006352809 + -122.324678999414, + 47.70932339983689 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4787774433", - "osm_node_id": 4787774433, + "osm_link": "https://www.openstreetmap.org/node/9725987903", + "osm_node_id": 9725987903, "type": "intersection" }, "type": "Feature" @@ -7099,34 +13205,38 @@ "coordinates": [ [ [ - -122.32180925292808, - 47.70865735138966 + -122.32447349984122, + 47.70920980021697 ], [ - -122.32181074707192, - 47.708520730033385 + -122.32449931725695, + 47.709224071553116 ], [ - -122.32194438741361, - 47.70852139193416 + -122.32448234977014, + 47.70923796967076 ], [ - -122.32194289326976, - 47.70865801329043 + -122.32443071360224, + 47.709209650929566 ], [ - -122.32180925292808, - 47.70865735138966 + -122.32444751804293, + 47.7091956646784 + ], + [ + -122.32447349984122, + 47.70920980021697 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/4787774435", - "osm_node_id": 4787774435, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9725987904", + "osm_node_id": 9725987904, "type": "intersection" }, "type": "Feature" @@ -7136,32 +13246,40 @@ "coordinates": [ [ [ - -122.32213805678845, - 47.70852258893135 + -122.32462969934936, + 47.70919459988149 ], [ - -122.32213997057556, - 47.70852261231372 + -122.32462935855627, + 47.70921708202482 ], [ - -122.32213624189816, - 47.708659213884914 + -122.32460263235895, + 47.70921689856319 ], [ - -122.32210342552777, - 47.70865880829082 + -122.32459629227093, + 47.70919422666299 ], [ - -122.32206973645977, - 47.70865864191631 + -122.32459673597018, + 47.70917624202751 ], [ - -122.32207123060361, - 47.70852202056004 + -122.3246032484594, + 47.70917631487257 ], [ - -122.32213805678845, - 47.70852258893135 + -122.32460331528158, + 47.70917193427654 + ], + [ + -122.3246300414789, + 47.70917211773817 + ], + [ + -122.32462969934936, + 47.70919459988149 ] ] ], @@ -7170,8 +13288,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4787774436", - "osm_node_id": 4787774436, + "osm_link": "https://www.openstreetmap.org/node/9725987906", + "osm_node_id": 9725987906, "type": "intersection" }, "type": "Feature" @@ -7181,34 +13299,54 @@ "coordinates": [ [ [ - -122.32180987170142, - 47.710026570485496 + -122.32599462648011, + 47.707807517558614 + ], + [ + -122.32599515303885, + 47.707829997903296 + ], + [ + -122.32596842684153, + 47.70783028029031 ], [ - -122.32181012829858, - 47.709964725930426 + -122.32596790028279, + 47.707807799945634 ], [ - -122.3219437726496, - 47.709964977740505 + -122.32593449320436, + 47.707808133593986 ], [ - -122.32194351605244, - 47.71002682229557 + -122.32593409761708, + 47.70779014895851 ], [ - -122.32180987170142, - 47.710026570485496 + -122.32596745257422, + 47.70778981620948 + ], + [ + -122.32596734031296, + 47.70778532050027 + ], + [ + -122.32599406651028, + 47.70778502012682 + ], + [ + -122.32599462648011, + 47.707807517558614 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/5420650298", - "osm_node_id": 5420650298, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9734066143", + "osm_node_id": 9734066143, "type": "intersection" }, "type": "Feature" @@ -7218,24 +13356,24 @@ "coordinates": [ [ [ - -122.32248611211759, - 47.70851556163154 + -122.32327671467782, + 47.70805276438645 ], [ - -122.32248571118454, - 47.70867411564558 + -122.32312639418467, + 47.70805601093781 ], [ - -122.32241723048263, - 47.70866268796466 + -122.32315725533822, + 47.70800987753294 ], [ - -122.32242095916003, - 47.70852608639347 + -122.32324246163066, + 47.70800881273604 ], [ - -122.32248611211759, - 47.70851556163154 + -122.32327671467782, + 47.70805276438645 ] ] ], @@ -7244,8 +13382,8 @@ "properties": { "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5420650496", - "osm_node_id": 5420650496, + "osm_link": "https://www.openstreetmap.org/node/9754620676", + "osm_node_id": 9754620676, "type": "intersection" }, "type": "Feature" @@ -7255,34 +13393,42 @@ "coordinates": [ [ [ - -122.32179534322403, - 47.70770659747543 + -122.32641543779394, + 47.70862735361484 ], [ - -122.32182465677597, - 47.707676515164366 + -122.32643984258888, + 47.708627572150014 ], [ - -122.32193362637047, - 47.70770281402901 + -122.3264387066119, + 47.70868491470062 ], [ - -122.32193195314319, - 47.70773876891081 + -122.32636457542682, + 47.70868434542998 ], [ - -122.32179534322403, - 47.70770659747543 + -122.32636541738624, + 47.70862700108073 + ], + [ + -122.3264093302471, + 47.708616155260955 + ], + [ + -122.32641543779394, + 47.70862735361484 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/5420650779", - "osm_node_id": 5420650779, + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/9772983384", + "osm_node_id": 9772983384, "type": "intersection" }, "type": "Feature" @@ -7292,34 +13438,34 @@ "coordinates": [ [ [ - -122.32886383571574, - 47.71029186139551 + -122.3258222413046, + 47.708480013243154 ], [ - -122.32889616428426, - 47.710297536115476 + -122.3258594652657, + 47.70849799967727 ], [ - -122.32886243645939, - 47.7103845571817 + -122.32578019946466, + 47.70849799967727 ], [ - -122.32883010789088, - 47.71037888246173 + -122.32578019946466, + 47.708480013243154 ], [ - -122.32886383571574, - 47.71029186139551 + -122.3258222413046, + 47.708480013243154 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/6224066906", - "osm_node_id": 6224066906, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9772983386", + "osm_node_id": 9772983386, "type": "intersection" }, "type": "Feature" @@ -7329,34 +13475,34 @@ "coordinates": [ [ [ - -122.32879156486004, - 47.71055360717936 + -122.32566590280634, + 47.70856512774736 ], [ - -122.32875992055061, - 47.71054639282064 + -122.32565374651617, + 47.70853539437312 ], [ - -122.32879822836738, - 47.71046113262631 + -122.3256683311242, + 47.708508860785514 ], [ - -122.3288305569359, - 47.71046680734627 + -122.32569340013157, + 47.70851510027951 ], [ - -122.32879156486004, - 47.71055360717936 + -122.32566590280634, + 47.70856512774736 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/6503414647", - "osm_node_id": 6503414647, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9772983388", + "osm_node_id": 9772983388, "type": "intersection" }, "type": "Feature" @@ -7366,42 +13512,34 @@ "coordinates": [ [ [ - -122.32338362614931, - 47.707880301462914 - ], - [ - -122.32338419146491, - 47.7079027818076 - ], - [ - -122.32329898249958, - 47.7079037512764 + -122.32626332780293, + 47.708564223029725 ], [ - -122.32329841718398, - 47.707881270931715 + -122.32625533854363, + 47.70854705857565 ], [ - -122.32329785186838, - 47.70785879148635 + -122.32640840008241, + 47.70851479990606 ], [ - -122.32338306083369, - 47.70785782201755 + -122.32641638934172, + 47.70853196436014 ], [ - -122.32338362614931, - 47.707880301462914 + -122.32626332780293, + 47.708564223029725 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7625387501", - "osm_node_id": 7625387501, + "osm_link": "https://www.openstreetmap.org/node/9772983389", + "osm_node_id": 9772983389, "type": "intersection" }, "type": "Feature" @@ -7411,50 +13549,34 @@ "coordinates": [ [ [ - -122.32338585533708, - 47.70796848175482 - ], - [ - -122.3233860063552, - 47.707974364218096 - ], - [ - -122.32330079738988, - 47.707975360666545 - ], - [ - -122.32330021737339, - 47.70795288122119 - ], - [ - -122.32329965205778, - 47.70793039098397 + -122.32199369950625, + 47.710187365609215 ], [ - -122.3233848610231, - 47.70792942151517 + -122.32199376098265, + 47.71020535204333 ], [ - -122.32338493853683, - 47.70793248550422 + -122.32183480038222, + 47.710205600256124 ], [ - -122.32338797894582, - 47.707968400815865 + -122.32183473890582, + 47.71018761382201 ], [ - -122.32338585533708, - 47.70796848175482 + -122.32199369950625, + 47.710187365609215 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7625387502", - "osm_node_id": 7625387502, + "osm_link": "https://www.openstreetmap.org/node/9800403235", + "osm_node_id": 9800403235, "type": "intersection" }, "type": "Feature" @@ -7464,74 +13586,34 @@ "coordinates": [ [ [ - -122.32345885188161, - 47.7086036861655 - ], - [ - -122.32342764592565, - 47.708657050116884 - ], - [ - -122.32342830880162, - 47.70867598893269 - ], - [ - -122.32331053070796, - 47.70867786132048 - ], - [ - -122.32327380791318, - 47.708676476365056 - ], - [ - -122.32318862834961, - 47.708678292994904 - ], - [ - -122.32314615216553, - 47.708674872874454 - ], - [ - -122.32314655309858, - 47.70851631886042 - ], - [ - -122.32315222229195, - 47.70859754020096 - ], - [ - -122.3233025427851, - 47.708594293649604 - ], - [ - -122.32331942874885, - 47.70851939184269 + -122.32165103939957, + 47.71020588713975 ], [ - -122.32340458692931, - 47.70851716871943 + -122.32165097792316, + 47.710187900705634 ], [ - -122.32340505869388, - 47.70852534984899 + -122.32176791673031, + 47.710187718143324 ], [ - -122.3234672647935, - 47.70859267487054 + -122.32176797820671, + 47.71020570457744 ], [ - -122.32345885188161, - 47.7086036861655 + -122.32165103939957, + 47.71020588713975 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/7625387504", - "osm_node_id": 7625387504, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/9800403239", + "osm_node_id": 9800403239, "type": "intersection" }, "type": "Feature" @@ -7541,34 +13623,34 @@ "coordinates": [ [ [ - -122.32180103513693, - 47.70731704638599 + -122.32181282791447, + 47.709473284389674 ], [ - -122.32181896486307, - 47.707273729656706 + -122.32181240025254, + 47.709455299754204 ], [ - -122.3219403941204, - 47.70729019533781 + -122.321933200045, + 47.70945400742891 ], [ - -122.3219399424025, - 47.70733515962446 + -122.32194646558327, + 47.70947184727359 ], [ - -122.32180103513693, - 47.70731704638599 + -122.32181282791447, + 47.709473284389674 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/8145533038", - "osm_node_id": 8145533038, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9800404629", + "osm_node_id": 9800404629, "type": "intersection" }, "type": "Feature" @@ -7578,54 +13660,71 @@ "coordinates": [ [ [ - -122.32469830834984, - 47.70732128309054 + -122.32192310054138, + 47.709165999652605 ], [ - -122.32466490394431, - 47.70732171026835 + -122.32194982139292, + 47.70916557517276 ], [ - -122.32466388824723, - 47.70728574459469 + -122.32195297406317, + 47.70925548216234 ], [ - -122.32467063595051, - 47.707285658259806 + -122.32192625321163, + 47.709255906642184 ], [ - -122.32467052502571, - 47.707281116685195 - ], + -122.32192310054138, + 47.709165999652605 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9800404631", + "osm_node_id": 9800404631, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -122.32472397474746, - 47.707280523132866 + -122.32212114409583, + 47.70954193141413 ], [ - -122.32472408433583, - 47.70728497657396 + -122.3221209436293, + 47.70952394498001 ], [ - -122.32473069973119, - 47.70728489293704 + -122.32222579965067, + 47.70952341348088 ], [ - -122.32473171008249, - 47.7073208586107 + -122.3222260001172, + 47.709541399915 ], [ - -122.32469830834984, - 47.70732128309054 + -122.32212114409583, + 47.70954193141413 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9123420400", - "osm_node_id": 9123420400, + "osm_link": "https://www.openstreetmap.org/node/9801096630", + "osm_node_id": 9801096630, "type": "intersection" }, "type": "Feature" @@ -7635,54 +13734,71 @@ "coordinates": [ [ [ - -122.32498466008211, - 47.7073173701418 + -122.32240955528755, + 47.709522481783594 ], [ - -122.32498477902558, - 47.70732218151293 + -122.32240975575408, + 47.70954046821771 ], [ - -122.32493132930384, - 47.707322778662544 + -122.32230489973271, + 47.70954099971684 ], [ - -122.32493121971547, - 47.70731832342281 + -122.32230469926618, + 47.70952301328273 ], [ - -122.32492459897432, - 47.70731840705973 - ], + -122.32240955528755, + 47.709522481783594 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9801096631", + "osm_node_id": 9801096631, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -122.32492358862302, - 47.70728244138607 + -122.32222825068807, + 47.70934150857876 ], [ - -122.32495677251539, - 47.707282019604186 + -122.32220152449075, + 47.70934174599969 ], [ - -122.32498997378151, - 47.70728125338209 + -122.32219970024536, + 47.70924870037736 ], [ - -122.324991807382, - 47.70731720466661 + -122.32222642644268, + 47.709248462956424 ], [ - -122.32498466008211, - 47.7073173701418 + -122.32222825068807, + 47.70934150857876 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9127145511", - "osm_node_id": 9127145511, + "osm_link": "https://www.openstreetmap.org/node/9801096633", + "osm_node_id": 9801096633, "type": "intersection" }, "type": "Feature" @@ -7692,38 +13808,34 @@ "coordinates": [ [ [ - -122.3233123656449, - 47.70962486146591 - ], - [ - -122.32319455814947, - 47.70962432726882 + -122.32220225017957, + 47.70891295480626 ], [ - -122.32319496843763, - 47.709583312803105 + -122.32222897637689, + 47.70891320481769 ], [ - -122.323194273487, - 47.70954198087682 + -122.32222762656895, + 47.708978650256874 ], [ - -122.32331207563665, - 47.7095410851524 + -122.32220090037163, + 47.708978400245435 ], [ - -122.3233123656449, - 47.70962486146591 + -122.32220225017957, + 47.70891295480626 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/9198107248", - "osm_node_id": 9198107248, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9801096634", + "osm_node_id": 9801096634, "type": "intersection" }, "type": "Feature" @@ -7733,46 +13845,42 @@ "coordinates": [ [ [ - -122.3234586794804, - 47.709540797369456 - ], - [ - -122.32346152877795, - 47.70954080096674 + -122.32222582905243, + 47.709218023614646 ], [ - -122.32346129890968, - 47.70962457458229 + -122.3222262674059, + 47.70924034388006 ], [ - -122.32334350745157, - 47.70962604227531 + -122.32219954120858, + 47.709240581300996 ], [ - -122.32334171394437, - 47.70962472117173 + -122.32219910018222, + 47.709218100056994 ], [ - -122.32334083991033, - 47.709540949354825 + -122.32219918705105, + 47.709195617014345 ], [ - -122.32345861934043, - 47.70953907786635 + -122.32222591592125, + 47.70919566377907 ], [ - -122.3234586794804, - 47.709540797369456 + -122.32222582905243, + 47.709218023614646 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/9198107249", - "osm_node_id": 9198107249, + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9801096635", + "osm_node_id": 9801096635, "type": "intersection" }, "type": "Feature" @@ -7782,38 +13890,34 @@ "coordinates": [ [ [ - -122.32645927447751, - 47.70859356070242 - ], - [ - -122.3264583523315, - 47.70851428549405 + -122.32219966950716, + 47.709071960279786 ], [ - -122.32648146077624, - 47.70850524371361 + -122.32222639837737, + 47.70907200704452 ], [ - -122.32654427495766, - 47.70850333805092 + -122.32222602951896, + 47.7091665464402 ], [ - -122.32654239324519, - 47.708604536923836 + -122.32219930064875, + 47.709166499675476 ], [ - -122.32645927447751, - 47.70859356070242 + -122.32219966950716, + 47.709071960279786 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9322923125", - "osm_node_id": 9322923125, + "osm_link": "https://www.openstreetmap.org/node/9801096636", + "osm_node_id": 9801096636, "type": "intersection" }, "type": "Feature" @@ -7823,66 +13927,79 @@ "coordinates": [ [ [ - -122.3264411576493, - 47.70841933151105 - ], - [ - -122.32646016722178, - 47.70841903383557 + -122.32222600279009, + 47.70916029795299 ], [ - -122.32646079000446, - 47.70843701487375 + -122.32219927391988, + 47.70916025658419 ], [ - -122.32644881279772, - 47.70843720283199 + -122.32219949977883, + 47.70909480035315 ], [ - -122.32645200689771, - 47.708444974770174 + -122.32222622864904, + 47.70909484172195 ], [ - -122.32642624561261, - 47.708449768154864 - ], + -122.32222600279009, + 47.70916029795299 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9801096637", + "osm_node_id": 9801096637, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -122.32642125934187, - 47.70843763450641 + -122.32222642911556, + 47.70903673564721 ], [ - -122.32639398653916, - 47.70843806258354 + -122.32222635160184, + 47.70905912426108 ], [ - -122.32639336375648, - 47.708420081545356 + -122.32219962273163, + 47.70905908289228 ], [ - -122.32641320058751, - 47.70841977038005 + -122.32219970024536, + 47.70903659984963 ], [ - -122.32640692732167, - 47.708407103433814 + -122.32220016399125, + 47.70901411860563 ], [ - -122.32643228500083, - 47.70840141612335 + -122.32222689018857, + 47.70901436861706 ], [ - -122.3264411576493, - 47.70841933151105 + -122.32222642911556, + 47.70903673564721 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9322923130", - "osm_node_id": 9322923130, + "osm_link": "https://www.openstreetmap.org/node/9801096638", + "osm_node_id": 9801096638, "type": "intersection" }, "type": "Feature" @@ -7892,34 +14009,34 @@ "coordinates": [ [ [ - -122.32327671467782, - 47.70805276438645 + -122.32316780522328, + 47.7095861132909 ], [ - -122.32312639418467, - 47.70805601093781 + -122.32316759941098, + 47.70960409972501 ], [ - -122.32315725533822, - 47.70800987753294 + -122.3230630962107, + 47.70958415187025 ], [ - -122.32324246163066, - 47.70800881273604 + -122.32306329667722, + 47.70956616543614 ], [ - -122.32327671467782, - 47.70805276438645 + -122.32316780522328, + 47.7095861132909 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9754620676", - "osm_node_id": 9754620676, + "osm_link": "https://www.openstreetmap.org/node/9801096640", + "osm_node_id": 9801096640, "type": "intersection" }, "type": "Feature" @@ -7929,32 +14046,40 @@ "coordinates": [ [ [ - -122.32641543779394, - 47.70862735361484 + -122.32293343847067, + 47.70956551072994 ], [ - -122.32643984258888, - 47.708627572150014 + -122.32293323800414, + 47.709583497164054 ], [ - -122.3264387066119, - 47.70868491470062 + -122.32291420036634, + 47.70955589967886 ], [ - -122.32636457542682, - 47.70868434542998 + -122.32288079061503, + 47.709555719814524 ], [ - -122.32636541738624, - 47.70862700108073 + -122.32288100444599, + 47.70953773338041 ], [ - -122.3264093302471, - 47.708616155260955 + -122.32288759578539, + 47.709537769353275 ], [ - -122.32641543779394, - 47.70862735361484 + -122.32288762518714, + 47.70953333389862 + ], + [ + -122.32291435405735, + 47.70953341663622 + ], + [ + -122.32293343847067, + 47.70956551072994 ] ] ], @@ -7962,9 +14087,46 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/9772983384", - "osm_node_id": 9772983384, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9801096644", + "osm_node_id": 9801096644, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3226970363146, + 47.70955473415793 + ], + [ + -122.32269725014555, + 47.70953674772382 + ], + [ + -122.32285871390468, + 47.70953761377062 + ], + [ + -122.32285850007372, + 47.70955560020474 + ], + [ + -122.3226970363146, + 47.70955473415793 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9801096645", + "osm_node_id": 9801096645, "type": "intersection" }, "type": "Feature" @@ -8025,6 +14187,59 @@ "type": "intersection" }, "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.32702362517013, + 47.70731976953211 + ], + [ + -122.32702433081229, + 47.70734219771614 + ], + [ + -122.32699760728786, + 47.707342577229895 + ], + [ + -122.32699690030925, + 47.70732009958318 + ], + [ + -122.32696349189439, + 47.707320388265444 + ], + [ + -122.32696314976485, + 47.707302403629974 + ], + [ + -122.3269963737505, + 47.707297619238496 + ], + [ + -122.32702309994782, + 47.70729733685148 + ], + [ + -122.32702362517013, + 47.70731976953211 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9812120063", + "osm_node_id": 9812120063, + "type": "intersection" + }, + "type": "Feature" } ], "type": "FeatureCollection" diff --git a/tests/src/northgate_dual_carriageway/road_network.dot b/tests/src/northgate_dual_carriageway/road_network.dot index 9f246fd0..18aab150 100644 --- a/tests/src/northgate_dual_carriageway/road_network.dot +++ b/tests/src/northgate_dual_carriageway/road_network.dot @@ -14,235 +14,392 @@ digraph { 12 [ label = "Unknown" ] 13 [ label = "Unknown" ] 14 [ label = "Unknown" ] - 15 [ label = "MapEdge" ] + 15 [ label = "Unknown" ] 16 [ label = "MapEdge" ] 17 [ label = "MapEdge" ] - 18 [ label = "Unknown" ] + 18 [ label = "MapEdge" ] 19 [ label = "Unknown" ] 20 [ label = "Unknown" ] 21 [ label = "Unknown" ] 22 [ label = "Unknown" ] - 23 [ label = "MapEdge" ] - 24 [ label = "Unknown" ] + 23 [ label = "Unknown" ] + 24 [ label = "MapEdge" ] 25 [ label = "Unknown" ] 26 [ label = "Unknown" ] 27 [ label = "Unknown" ] 28 [ label = "Unknown" ] 29 [ label = "Unknown" ] 30 [ label = "Unknown" ] - 31 [ label = "MapEdge" ] + 31 [ label = "Unknown" ] 32 [ label = "MapEdge" ] - 33 [ label = "Unknown" ] + 33 [ label = "MapEdge" ] 34 [ label = "Unknown" ] 35 [ label = "Unknown" ] - 36 [ label = "MapEdge" ] - 37 [ label = "Unknown" ] + 36 [ label = "Unknown" ] + 37 [ label = "MapEdge" ] 38 [ label = "Unknown" ] 39 [ label = "Unknown" ] 40 [ label = "Unknown" ] 41 [ label = "Unknown" ] - 42 [ label = "Lights RoadIntersection" ] - 43 [ label = "MapEdge" ] - 44 [ label = "Unknown" ] + 42 [ label = "Unknown" ] + 43 [ label = "Lights RoadIntersection" ] + 44 [ label = "MapEdge" ] 45 [ label = "Unknown" ] 46 [ label = "Unknown" ] - 47 [ label = "MapEdge" ] - 48 [ label = "MapEdge" ] + 47 [ label = "Unknown" ] + 48 [ label = "Unknown" ] 49 [ label = "Unknown" ] 50 [ label = "Unknown" ] - 51 [ label = "MapEdge" ] + 51 [ label = "Unknown" ] 52 [ label = "Unknown" ] 53 [ label = "Unknown" ] 54 [ label = "Unknown" ] 55 [ label = "Unknown" ] - 56 [ label = "Unknown" ] - 57 [ label = "Unknown" ] + 56 [ label = "MapEdge" ] + 57 [ label = "MapEdge" ] 58 [ label = "Unknown" ] 59 [ label = "Unknown" ] - 60 [ label = "Unknown" ] + 60 [ label = "MapEdge" ] 61 [ label = "Unknown" ] 62 [ label = "Unknown" ] 63 [ label = "Unknown" ] 64 [ label = "Unknown" ] 65 [ label = "Unknown" ] 66 [ label = "Unknown" ] - 67 [ label = "MapEdge" ] + 67 [ label = "Unknown" ] 68 [ label = "Unknown" ] - 69 [ label = "MapEdge" ] + 69 [ label = "Unknown" ] 70 [ label = "Unknown" ] - 71 [ label = "MapEdge" ] - 72 [ label = "MapEdge" ] - 73 [ label = "MapEdge" ] + 71 [ label = "Unknown" ] + 72 [ label = "Unknown" ] + 73 [ label = "Unknown" ] 74 [ label = "Unknown" ] 75 [ label = "Unknown" ] - 76 [ label = "Lights RoadIntersection" ] - 77 [ label = "MapEdge" ] - 78 [ label = "Unknown" ] + 76 [ label = "Unknown" ] + 77 [ label = "Unknown" ] + 78 [ label = "MapEdge" ] 79 [ label = "Unknown" ] - 80 [ label = "MapEdge" ] - 81 [ label = "Lights RoadIntersection" ] - 82 [ label = "Lights RoadIntersection" ] - 83 [ label = "Unknown" ] + 80 [ label = "Unknown" ] + 81 [ label = "MapEdge" ] + 82 [ label = "Unknown" ] + 83 [ label = "MapEdge" ] 84 [ label = "Unknown" ] - 85 [ label = "Unknown" ] - 86 [ label = "Lights RoadIntersection" ] + 85 [ label = "MapEdge" ] + 86 [ label = "MapEdge" ] 87 [ label = "Unknown" ] - 88 [ label = "MapEdge" ] - 6 -> 42 [ label = "1 lanes" ] - 2 -> 69 [ label = "2 lanes" ] - 69 -> 2 [ label = "1 lanes" ] + 88 [ label = "Unknown" ] + 89 [ label = "Unknown" ] + 90 [ label = "Unknown" ] + 91 [ label = "Unknown" ] + 92 [ label = "Lights RoadIntersection" ] + 93 [ label = "MapEdge" ] + 94 [ label = "Unknown" ] + 95 [ label = "Unknown" ] + 96 [ label = "Unknown" ] + 97 [ label = "Unknown" ] + 98 [ label = "Unknown" ] + 99 [ label = "Unknown" ] + 100 [ label = "Unknown" ] + 101 [ label = "Unknown" ] + 102 [ label = "Unknown" ] + 103 [ label = "MapEdge" ] + 104 [ label = "Unknown" ] + 105 [ label = "Unknown" ] + 106 [ label = "MapEdge" ] + 107 [ label = "Unknown" ] + 108 [ label = "Unknown" ] + 109 [ label = "MapEdge" ] + 110 [ label = "Unknown" ] + 111 [ label = "Unknown" ] + 112 [ label = "Unknown" ] + 113 [ label = "Unknown" ] + 114 [ label = "Unknown" ] + 115 [ label = "MapEdge" ] + 116 [ label = "Unknown" ] + 117 [ label = "Lights RoadIntersection" ] + 118 [ label = "Lights RoadIntersection" ] + 119 [ label = "Unknown" ] + 120 [ label = "Unknown" ] + 121 [ label = "Unknown" ] + 122 [ label = "Unknown" ] + 123 [ label = "Unknown" ] + 124 [ label = "Unknown" ] + 125 [ label = "Unknown" ] + 126 [ label = "Unknown" ] + 127 [ label = "Unknown" ] + 128 [ label = "Unknown" ] + 129 [ label = "Unknown" ] + 130 [ label = "Unknown" ] + 131 [ label = "Unknown" ] + 132 [ label = "Unknown" ] + 133 [ label = "Unknown" ] + 134 [ label = "Unknown" ] + 135 [ label = "Unknown" ] + 136 [ label = "Unknown" ] + 137 [ label = "Unknown" ] + 138 [ label = "Unknown" ] + 139 [ label = "Unknown" ] + 140 [ label = "Unknown" ] + 141 [ label = "Unknown" ] + 142 [ label = "Unknown" ] + 143 [ label = "Unknown" ] + 144 [ label = "Unknown" ] + 145 [ label = "Unknown" ] + 146 [ label = "Unknown" ] + 147 [ label = "Unknown" ] + 148 [ label = "Unknown" ] + 149 [ label = "Unknown" ] + 150 [ label = "Unknown" ] + 151 [ label = "Unknown" ] + 152 [ label = "Unknown" ] + 153 [ label = "Unknown" ] + 154 [ label = "Lights RoadIntersection" ] + 155 [ label = "Unknown" ] + 156 [ label = "Unknown" ] + 157 [ label = "Unknown" ] + 158 [ label = "Unknown" ] + 159 [ label = "MapEdge" ] + 160 [ label = "Unknown" ] + 161 [ label = "Unknown" ] + 162 [ label = "Unknown" ] + 163 [ label = "Unknown" ] + 164 [ label = "Unknown" ] + 165 [ label = "Unknown" ] + 166 [ label = "Unknown" ] + 167 [ label = "Unknown" ] + 168 [ label = "Unknown" ] + 169 [ label = "Unknown" ] + 170 [ label = "Unknown" ] + 171 [ label = "Unknown" ] + 172 [ label = "Unknown" ] + 173 [ label = "Unknown" ] + 174 [ label = "Unknown" ] + 175 [ label = "MapEdge" ] + 6 -> 43 [ label = "1 lanes" ] + 2 -> 81 [ label = "2 lanes" ] + 81 -> 2 [ label = "1 lanes" ] 7 -> 5 [ label = "2 lanes" ] 5 -> 7 [ label = "2 lanes" ] 1 -> 8 [ label = "1 lanes" ] - 7 -> 31 [ label = "2 lanes" ] - 31 -> 7 [ label = "1 lanes" ] - 60 -> 7 [ label = "2 lanes" ] - 7 -> 60 [ label = "1 lanes" ] - 0 -> 33 [ label = "2 lanes" ] - 62 -> 61 [ label = "1 lanes" ] - 61 -> 62 [ label = "3 lanes" ] - 12 -> 57 [ label = "1 lanes" ] - 57 -> 12 [ label = "1 lanes" ] - 57 -> 58 [ label = "1 lanes" ] - 58 -> 57 [ label = "1 lanes" ] - 11 -> 16 [ label = "2 lanes" ] - 16 -> 11 [ label = "2 lanes" ] - 18 -> 55 [ label = "1 lanes" ] - 19 -> 18 [ label = "1 lanes" ] - 17 -> 19 [ label = "1 lanes" ] - 19 -> 17 [ label = "1 lanes" ] - 54 -> 12 [ label = "1 lanes" ] - 20 -> 84 [ label = "1 lanes" ] - 84 -> 53 [ label = "1 lanes" ] - 22 -> 35 [ label = "1 lanes" ] - 35 -> 22 [ label = "1 lanes" ] - 35 -> 79 [ label = "1 lanes" ] - 79 -> 35 [ label = "1 lanes" ] - 22 -> 58 [ label = "1 lanes" ] - 57 -> 35 [ label = "1 lanes" ] - 79 -> 59 [ label = "1 lanes" ] - 59 -> 79 [ label = "1 lanes" ] - 25 -> 26 [ label = "1 lanes" ] - 26 -> 25 [ label = "1 lanes" ] - 26 -> 30 [ label = "1 lanes" ] - 30 -> 26 [ label = "1 lanes" ] - 30 -> 56 [ label = "1 lanes" ] - 56 -> 30 [ label = "1 lanes" ] - 27 -> 25 [ label = "1 lanes" ] - 30 -> 28 [ label = "1 lanes" ] - 28 -> 29 [ label = "1 lanes" ] - 29 -> 66 [ label = "1 lanes" ] - 74 -> 24 [ label = "3 lanes" ] - 54 -> 55 [ label = "1 lanes" ] - 55 -> 54 [ label = "1 lanes" ] - 55 -> 59 [ label = "1 lanes" ] - 59 -> 55 [ label = "1 lanes" ] - 59 -> 32 [ label = "1 lanes" ] - 32 -> 59 [ label = "1 lanes" ] + 7 -> 32 [ label = "2 lanes" ] + 32 -> 7 [ label = "1 lanes" ] + 71 -> 7 [ label = "2 lanes" ] + 7 -> 71 [ label = "1 lanes" ] + 0 -> 34 [ label = "2 lanes" ] + 73 -> 72 [ label = "1 lanes" ] + 72 -> 73 [ label = "3 lanes" ] + 13 -> 66 [ label = "1 lanes" ] + 66 -> 13 [ label = "1 lanes" ] + 66 -> 67 [ label = "1 lanes" ] + 67 -> 66 [ label = "1 lanes" ] + 11 -> 17 [ label = "2 lanes" ] + 17 -> 11 [ label = "2 lanes" ] + 19 -> 64 [ label = "1 lanes" ] + 20 -> 19 [ label = "1 lanes" ] + 18 -> 20 [ label = "1 lanes" ] + 20 -> 18 [ label = "1 lanes" ] + 63 -> 13 [ label = "1 lanes" ] + 21 -> 120 [ label = "1 lanes" ] + 120 -> 62 [ label = "1 lanes" ] + 23 -> 36 [ label = "1 lanes" ] + 36 -> 23 [ label = "1 lanes" ] + 36 -> 108 [ label = "1 lanes" ] + 108 -> 36 [ label = "1 lanes" ] + 23 -> 67 [ label = "1 lanes" ] + 66 -> 36 [ label = "1 lanes" ] + 108 -> 112 [ label = "1 lanes" ] + 112 -> 108 [ label = "1 lanes" ] + 112 -> 68 [ label = "1 lanes" ] + 68 -> 112 [ label = "1 lanes" ] + 26 -> 27 [ label = "1 lanes" ] + 27 -> 26 [ label = "1 lanes" ] + 27 -> 31 [ label = "1 lanes" ] + 31 -> 27 [ label = "1 lanes" ] + 31 -> 65 [ label = "1 lanes" ] + 65 -> 31 [ label = "1 lanes" ] + 28 -> 26 [ label = "1 lanes" ] + 31 -> 29 [ label = "1 lanes" ] + 29 -> 30 [ label = "1 lanes" ] + 30 -> 77 [ label = "1 lanes" ] + 90 -> 25 [ label = "3 lanes" ] + 63 -> 64 [ label = "1 lanes" ] + 64 -> 63 [ label = "1 lanes" ] + 64 -> 68 [ label = "1 lanes" ] + 68 -> 64 [ label = "1 lanes" ] + 68 -> 33 [ label = "1 lanes" ] + 33 -> 68 [ label = "1 lanes" ] 1 -> 9 [ label = "3 lanes" ] 9 -> 1 [ label = "2 lanes" ] 10 -> 1 [ label = "5 lanes" ] 1 -> 10 [ label = "1 lanes" ] - 37 -> 44 [ label = "3 lanes" ] - 44 -> 37 [ label = "3 lanes" ] - 38 -> 49 [ label = "3 lanes" ] - 49 -> 38 [ label = "4 lanes" ] - 49 -> 24 [ label = "3 lanes" ] - 24 -> 49 [ label = "4 lanes" ] - 42 -> 11 [ label = "2 lanes" ] - 11 -> 42 [ label = "2 lanes" ] - 70 -> 68 [ label = "3 lanes" ] - 68 -> 70 [ label = "4 lanes" ] - 39 -> 42 [ label = "3 lanes" ] - 40 -> 41 [ label = "3 lanes" ] - 42 -> 86 [ label = "3 lanes" ] - 76 -> 39 [ label = "3 lanes" ] - 86 -> 40 [ label = "3 lanes" ] - 40 -> 5 [ label = "2 lanes" ] - 5 -> 40 [ label = "2 lanes" ] - 39 -> 13 [ label = "1 lanes" ] - 36 -> 50 [ label = "3 lanes" ] - 50 -> 36 [ label = "3 lanes" ] - 2 -> 37 [ label = "3 lanes" ] - 64 -> 2 [ label = "3 lanes" ] - 44 -> 3 [ label = "3 lanes" ] - 3 -> 44 [ label = "2 lanes" ] - 68 -> 46 [ label = "1 lanes" ] - 46 -> 68 [ label = "2 lanes" ] - 43 -> 38 [ label = "3 lanes" ] - 50 -> 10 [ label = "4 lanes" ] - 10 -> 50 [ label = "2 lanes" ] - 41 -> 1 [ label = "4 lanes" ] - 1 -> 41 [ label = "3 lanes" ] - 33 -> 10 [ label = "2 lanes" ] - 85 -> 76 [ label = "5 lanes" ] - 76 -> 63 [ label = "3 lanes" ] - 38 -> 51 [ label = "3 lanes" ] - 24 -> 45 [ label = "3 lanes" ] - 37 -> 65 [ label = "3 lanes" ] - 52 -> 83 [ label = "5 lanes" ] - 6 -> 13 [ label = "3 lanes" ] - 13 -> 21 [ label = "3 lanes" ] - 21 -> 34 [ label = "3 lanes" ] - 41 -> 4 [ label = "3 lanes" ] - 14 -> 76 [ label = "4 lanes" ] - 34 -> 14 [ label = "4 lanes" ] - 21 -> 22 [ label = "1 lanes" ] - 22 -> 21 [ label = "1 lanes" ] - 58 -> 13 [ label = "1 lanes" ] - 13 -> 58 [ label = "1 lanes" ] - 12 -> 20 [ label = "2 lanes" ] - 20 -> 6 [ label = "2 lanes" ] - 6 -> 86 [ label = "2 lanes" ] - 1 -> 60 [ label = "2 lanes" ] - 60 -> 1 [ label = "2 lanes" ] - 61 -> 11 [ label = "1 lanes" ] - 11 -> 61 [ label = "2 lanes" ] - 81 -> 82 [ label = "1 lanes" ] - 82 -> 81 [ label = "3 lanes" ] - 82 -> 62 [ label = "1 lanes" ] - 62 -> 82 [ label = "3 lanes" ] - 63 -> 81 [ label = "4 lanes" ] - 81 -> 64 [ label = "4 lanes" ] - 46 -> 45 [ label = "1 lanes" ] - 45 -> 46 [ label = "1 lanes" ] - 71 -> 46 [ label = "1 lanes" ] - 46 -> 71 [ label = "1 lanes" ] - 53 -> 54 [ label = "1 lanes" ] - 54 -> 53 [ label = "1 lanes" ] - 26 -> 75 [ label = "1 lanes" ] - 75 -> 26 [ label = "1 lanes" ] - 68 -> 67 [ label = "3 lanes" ] - 67 -> 68 [ label = "4 lanes" ] - 48 -> 47 [ label = "1 lanes" ] - 72 -> 73 [ label = "1 lanes" ] - 65 -> 82 [ label = "4 lanes" ] - 82 -> 76 [ label = "4 lanes" ] - 66 -> 75 [ label = "3 lanes" ] - 75 -> 74 [ label = "3 lanes" ] - 76 -> 66 [ label = "3 lanes" ] - 76 -> 70 [ label = "3 lanes" ] - 70 -> 76 [ label = "5 lanes" ] - 49 -> 77 [ label = "1 lanes" ] - 77 -> 49 [ label = "2 lanes" ] - 78 -> 23 [ label = "1 lanes" ] - 23 -> 78 [ label = "1 lanes" ] - 14 -> 56 [ label = "1 lanes" ] - 56 -> 14 [ label = "1 lanes" ] - 27 -> 87 [ label = "1 lanes" ] - 87 -> 27 [ label = "1 lanes" ] - 56 -> 27 [ label = "1 lanes" ] - 27 -> 56 [ label = "1 lanes" ] - 49 -> 87 [ label = "1 lanes" ] - 87 -> 49 [ label = "1 lanes" ] - 78 -> 79 [ label = "1 lanes" ] - 79 -> 78 [ label = "1 lanes" ] - 87 -> 78 [ label = "1 lanes" ] - 78 -> 87 [ label = "1 lanes" ] - 53 -> 18 [ label = "1 lanes" ] - 83 -> 84 [ label = "1 lanes" ] - 84 -> 12 [ label = "1 lanes" ] - 4 -> 52 [ label = "4 lanes" ] - 83 -> 6 [ label = "4 lanes" ] - 45 -> 85 [ label = "3 lanes" ] + 38 -> 53 [ label = "3 lanes" ] + 53 -> 38 [ label = "3 lanes" ] + 39 -> 58 [ label = "3 lanes" ] + 58 -> 39 [ label = "4 lanes" ] + 58 -> 25 [ label = "3 lanes" ] + 25 -> 58 [ label = "4 lanes" ] + 151 -> 70 [ label = "1 lanes" ] + 43 -> 11 [ label = "2 lanes" ] + 11 -> 43 [ label = "2 lanes" ] + 82 -> 79 [ label = "3 lanes" ] + 79 -> 82 [ label = "4 lanes" ] + 40 -> 43 [ label = "3 lanes" ] + 41 -> 42 [ label = "3 lanes" ] + 43 -> 154 [ label = "3 lanes" ] + 92 -> 40 [ label = "3 lanes" ] + 154 -> 41 [ label = "3 lanes" ] + 41 -> 5 [ label = "2 lanes" ] + 5 -> 41 [ label = "2 lanes" ] + 40 -> 14 [ label = "1 lanes" ] + 100 -> 96 [ label = "1 lanes" ] + 124 -> 48 [ label = "1 lanes" ] + 50 -> 51 [ label = "1 lanes" ] + 52 -> 51 [ label = "1 lanes" ] + 37 -> 59 [ label = "3 lanes" ] + 59 -> 37 [ label = "3 lanes" ] + 2 -> 38 [ label = "3 lanes" ] + 75 -> 2 [ label = "3 lanes" ] + 53 -> 3 [ label = "3 lanes" ] + 3 -> 53 [ label = "2 lanes" ] + 79 -> 55 [ label = "1 lanes" ] + 55 -> 79 [ label = "2 lanes" ] + 44 -> 39 [ label = "3 lanes" ] + 59 -> 10 [ label = "4 lanes" ] + 10 -> 59 [ label = "2 lanes" ] + 42 -> 1 [ label = "4 lanes" ] + 1 -> 42 [ label = "3 lanes" ] + 34 -> 10 [ label = "2 lanes" ] + 153 -> 92 [ label = "5 lanes" ] + 92 -> 74 [ label = "3 lanes" ] + 39 -> 60 [ label = "3 lanes" ] + 25 -> 54 [ label = "3 lanes" ] + 38 -> 76 [ label = "3 lanes" ] + 61 -> 119 [ label = "5 lanes" ] + 6 -> 14 [ label = "3 lanes" ] + 14 -> 22 [ label = "3 lanes" ] + 22 -> 35 [ label = "3 lanes" ] + 42 -> 4 [ label = "3 lanes" ] + 15 -> 92 [ label = "4 lanes" ] + 35 -> 15 [ label = "4 lanes" ] + 152 -> 12 [ label = "1 lanes" ] + 69 -> 152 [ label = "1 lanes" ] + 22 -> 23 [ label = "1 lanes" ] + 23 -> 22 [ label = "1 lanes" ] + 67 -> 14 [ label = "1 lanes" ] + 14 -> 67 [ label = "1 lanes" ] + 13 -> 21 [ label = "2 lanes" ] + 21 -> 6 [ label = "2 lanes" ] + 6 -> 154 [ label = "2 lanes" ] + 1 -> 71 [ label = "2 lanes" ] + 71 -> 1 [ label = "2 lanes" ] + 72 -> 11 [ label = "1 lanes" ] + 11 -> 72 [ label = "2 lanes" ] + 117 -> 118 [ label = "1 lanes" ] + 118 -> 117 [ label = "3 lanes" ] + 118 -> 73 [ label = "1 lanes" ] + 73 -> 118 [ label = "3 lanes" ] + 74 -> 117 [ label = "4 lanes" ] + 117 -> 75 [ label = "4 lanes" ] + 148 -> 80 [ label = "1 lanes" ] + 55 -> 54 [ label = "1 lanes" ] + 54 -> 55 [ label = "1 lanes" ] + 83 -> 55 [ label = "1 lanes" ] + 55 -> 83 [ label = "1 lanes" ] + 62 -> 63 [ label = "1 lanes" ] + 63 -> 62 [ label = "1 lanes" ] + 27 -> 91 [ label = "1 lanes" ] + 91 -> 27 [ label = "1 lanes" ] + 79 -> 78 [ label = "3 lanes" ] + 78 -> 79 [ label = "4 lanes" ] + 57 -> 56 [ label = "1 lanes" ] + 85 -> 86 [ label = "1 lanes" ] + 76 -> 118 [ label = "4 lanes" ] + 118 -> 92 [ label = "4 lanes" ] + 84 -> 152 [ label = "1 lanes" ] + 46 -> 52 [ label = "1 lanes" ] + 77 -> 91 [ label = "3 lanes" ] + 91 -> 90 [ label = "3 lanes" ] + 92 -> 77 [ label = "3 lanes" ] + 92 -> 82 [ label = "3 lanes" ] + 82 -> 92 [ label = "5 lanes" ] + 58 -> 93 [ label = "1 lanes" ] + 93 -> 58 [ label = "2 lanes" ] + 95 -> 94 [ label = "1 lanes" ] + 97 -> 96 [ label = "1 lanes" ] + 99 -> 98 [ label = "1 lanes" ] + 46 -> 100 [ label = "1 lanes" ] + 99 -> 46 [ label = "1 lanes" ] + 89 -> 103 [ label = "1 lanes" ] + 88 -> 102 [ label = "1 lanes" ] + 110 -> 106 [ label = "1 lanes" ] + 107 -> 24 [ label = "1 lanes" ] + 24 -> 107 [ label = "1 lanes" ] + 15 -> 65 [ label = "1 lanes" ] + 65 -> 15 [ label = "1 lanes" ] + 28 -> 173 [ label = "1 lanes" ] + 173 -> 28 [ label = "1 lanes" ] + 65 -> 28 [ label = "1 lanes" ] + 28 -> 65 [ label = "1 lanes" ] + 58 -> 173 [ label = "1 lanes" ] + 173 -> 58 [ label = "1 lanes" ] + 107 -> 108 [ label = "1 lanes" ] + 108 -> 107 [ label = "1 lanes" ] + 173 -> 107 [ label = "1 lanes" ] + 107 -> 173 [ label = "1 lanes" ] + 114 -> 113 [ label = "1 lanes" ] + 116 -> 114 [ label = "1 lanes" ] + 111 -> 174 [ label = "1 lanes" ] + 114 -> 12 [ label = "1 lanes" ] + 115 -> 112 [ label = "1 lanes" ] + 174 -> 116 [ label = "1 lanes" ] + 112 -> 174 [ label = "1 lanes" ] + 62 -> 19 [ label = "1 lanes" ] + 119 -> 120 [ label = "1 lanes" ] + 120 -> 13 [ label = "1 lanes" ] + 123 -> 122 [ label = "1 lanes" ] + 80 -> 125 [ label = "1 lanes" ] + 96 -> 101 [ label = "1 lanes" ] + 47 -> 99 [ label = "1 lanes" ] + 52 -> 45 [ label = "1 lanes" ] + 51 -> 49 [ label = "1 lanes" ] + 49 -> 94 [ label = "1 lanes" ] + 46 -> 95 [ label = "1 lanes" ] + 95 -> 49 [ label = "1 lanes" ] + 94 -> 48 [ label = "1 lanes" ] + 48 -> 100 [ label = "1 lanes" ] + 128 -> 127 [ label = "1 lanes" ] + 127 -> 126 [ label = "1 lanes" ] + 129 -> 128 [ label = "1 lanes" ] + 131 -> 130 [ label = "1 lanes" ] + 135 -> 131 [ label = "1 lanes" ] + 133 -> 132 [ label = "1 lanes" ] + 116 -> 134 [ label = "1 lanes" ] + 4 -> 61 [ label = "4 lanes" ] + 119 -> 6 [ label = "4 lanes" ] + 136 -> 104 [ label = "1 lanes" ] + 136 -> 105 [ label = "1 lanes" ] + 147 -> 136 [ label = "1 lanes" ] + 145 -> 137 [ label = "1 lanes" ] + 137 -> 147 [ label = "1 lanes" ] + 140 -> 139 [ label = "1 lanes" ] + 142 -> 141 [ label = "1 lanes" ] + 144 -> 143 [ label = "1 lanes" ] + 138 -> 137 [ label = "1 lanes" ] + 146 -> 147 [ label = "1 lanes" ] + 125 -> 151 [ label = "1 lanes" ] + 149 -> 150 [ label = "1 lanes" ] + 150 -> 151 [ label = "1 lanes" ] + 54 -> 153 [ label = "3 lanes" ] + 156 -> 155 [ label = "1 lanes" ] + 121 -> 157 [ label = "1 lanes" ] + 159 -> 158 [ label = "1 lanes" ] + 161 -> 160 [ label = "1 lanes" ] + 162 -> 163 [ label = "1 lanes" ] + 166 -> 164 [ label = "1 lanes" ] + 165 -> 169 [ label = "1 lanes" ] + 169 -> 168 [ label = "1 lanes" ] + 167 -> 166 [ label = "1 lanes" ] + 171 -> 170 [ label = "1 lanes" ] + 172 -> 171 [ label = "1 lanes" ] + 171 -> 87 [ label = "1 lanes" ] } diff --git a/tests/src/oneway_loop/geometry.json b/tests/src/oneway_loop/geometry.json index e395f538..795c1292 100644 --- a/tests/src/oneway_loop/geometry.json +++ b/tests/src/oneway_loop/geometry.json @@ -229,85 +229,117 @@ 51.50315897059425 ], [ - -0.10286001141102843, - 51.502737810215486 + -0.10286000563266173, + 51.502736881216315 ], [ - -0.10289048796163945, - 51.5026938720622 + -0.1027814429588963, + 51.50273706287927 ], [ - -0.10292452976450946, - 51.502673699380374 + -0.1027839623267811, + 51.5031591522572 ], [ - -0.10389632103158707, - 51.502676439613154 - ], + -0.10286252500054653, + 51.50315897059425 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1701265003, + "osm_way_id": 58780084, + "src_i": 25496664, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -0.10393787615576948, - 51.502683540656164 + -0.10394651914777335, + 51.502693985376716 ], [ -0.10395364676310799, 51.50270259997791 ], [ - -0.10393295443192573, - 51.50315597945075 + -0.10393636077910023, + 51.50308163163836 ], [ - -0.1039260709525845, - 51.5031656228758 + -0.10401489167184878, + 51.50308302019084 ], [ - -0.10399786426975123, - 51.503185485291695 + -0.10403275260334399, + 51.50269139982724 ], [ - -0.10401104616880444, - 51.50316702132082 + -0.10401635937699268, + 51.502671588672676 ], [ - -0.10403275260334399, - 51.50269139982724 - ], + -0.10394651914777335, + 51.502693985376716 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1080429864, + "osm_way_id": 58780084, + "src_i": 25496666, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -0.10399192410877514, - 51.50264205855005 + -0.10363976010514885, + 51.50267431181835 ], [ - -0.10390708035039783, - 51.50262755968792 + -0.10389615779272755, + 51.502676410834866 ], [ - -0.1028932688006178, - 51.50262470074469 + -0.10391967718982183, + 51.5026804299029 ], [ - -0.10282471281339939, - 51.502665327596006 + -0.10394047064242148, + 51.5026332658832 ], [ - -0.10278138806441256, - 51.502727789974706 + -0.10390724358925733, + 51.50262758846621 ], [ - -0.1027839623267811, - 51.5031591522572 + -0.10364079443278963, + 51.50262540671211 ], [ - -0.10286252500054653, - 51.50315897059425 + -0.10363976010514885, + 51.50267431181835 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25496667, + "dst_i": 25496666, "osm_way_id": 58780084, - "src_i": 25496664, + "src_i": 1080429761, "type": "road" }, "type": "Feature" @@ -317,145 +349,261 @@ "coordinates": [ [ [ - -0.10232489131609368, - 51.504262682759425 + -0.10393430512514377, + 51.503126576132466 ], [ - -0.10200598903583179, - 51.503375055081214 + -0.1039329558765174, + 51.503155977652106 ], [ - -0.10184471193182103, - 51.502954351557804 + -0.1039260709525845, + 51.5031656228758 ], [ - -0.101723320004014, - 51.50267307525121 + -0.10399786426975123, + 51.503185485291695 ], [ - -0.10143746131377326, - 51.50219360646002 + -0.10401104472421276, + 51.50316702311946 ], [ - -0.10116137673081953, - 51.50179757312554 + -0.10401283601789232, + 51.503127971879515 ], [ - -0.10095727181735886, - 51.50141680757313 + -0.10393430512514377, + 51.503126576132466 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 25496667, + "osm_way_id": 58780084, + "src_i": 1080429864, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10288276661912554, + 51.502705031743396 ], [ - -0.1008111109206569, - 51.501091861111085 + -0.10289049662918952, + 51.50269386666628 ], [ - -0.10068000844759664, - 51.50064793260848 + -0.10292459332654325, + 51.50267366160887 ], [ - -0.10054966438516685, - 51.500118054146085 + -0.10356025844679333, + 51.502673938599905 ], [ - -0.10045614151999374, - 51.499850515875586 + -0.10356031334127705, + 51.50262502989638 ], [ - -0.10035046674963317, - 51.499611067014584 + -0.10289320523858402, + 51.5026247385162 ], [ - -0.10011542301622484, - 51.49923319278098 + -0.10282470414584932, + 51.50266533299193 ], [ - -0.09992074839723203, - 51.498973192623765 + -0.10281062082158962, + 51.50268567294757 ], [ - -0.0993999052018417, - 51.498334184188465 + -0.10288276661912554, + 51.502705031743396 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1080429761, + "osm_way_id": 58780084, + "src_i": 1701265003, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10294512819723271, + 51.502831643628035 ], [ - -0.09913994226200401, - 51.49794675016671 + -0.10294428744487666, + 51.50307117522662 ], [ - -0.0991066184211975, - 51.49795541602923 + -0.10297317927841794, + 51.50307121479677 ], [ - -0.09936709563567223, - 51.49834361627295 + -0.102974020030774, + 51.50283168319819 ], [ - -0.0998882508628648, - 51.498983007819234 + -0.10294512819723271, + 51.502831643628035 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9586144492, + "osm_way_id": 93197247, + "src_i": 9568915239, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10302056044083395, + 51.50316523167092 ], [ - -0.10008217718336888, - 51.499242007930874 + -0.10360514335479137, + 51.50317578790735 ], [ - -0.10031613458383608, - 51.499618133883374 + -0.10361791787899165, + 51.50302741334037 ], [ - -0.10042105816652458, - 51.49985588482528 + -0.10358906649401732, + 51.503026451066305 ], [ - -0.10051413609746115, - 51.50012214605916 + -0.10357780012352791, + 51.503157299654795 ], [ - -0.10064439059520697, - 51.50065166659158 + -0.10302139830400665, + 51.50314725243437 ], [ - -0.10077588888638672, - 51.50109693868059 + -0.10302056044083395, + 51.50316523167092 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1080429836, + "osm_way_id": 93197247, + "src_i": 9568915240, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10294966565969037, + 51.503118822182 ], [ - -0.10092272874117691, - 51.50142339240557 + -0.10295154362887056, + 51.50312691877397 ], [ - -0.10112762240169326, - 51.5018056274494 + -0.10298013787652635, + 51.50312434851297 ], [ - -0.10140393811931532, - 51.50220199353285 + -0.10297825990734617, + 51.50311625192099 ], [ - -0.1016888809384328, - 51.502679924484184 + -0.10294966565969037, + 51.503118822182 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9568915240, + "osm_way_id": 93197247, + "src_i": 9586144492, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10401682309092102, + 51.50265956834075 ], [ - -0.10180968925120229, - 51.502959848211155 + -0.1040546006078679, + 51.50264029857777 ], [ - -0.10197081033931193, - 51.50338014524122 + -0.10417258041013372, + 51.502608391548264 ], [ - -0.10228964616835669, - 51.50426758945784 + -0.1044077917161766, + 51.50260863616373 ], [ - -0.10232489131609368, - 51.504262682759425 + -0.10440784083229362, + 51.5025906497326 + ], + [ + -0.10416659980059068, + 51.50259039972121 + ], + [ + -0.10403940061424184, + 51.502624799670066 + ], + [ + -0.10399851144682255, + 51.502645655836275 + ], + [ + -0.10401682309092102, + 51.50265956834075 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1737173631, - "osm_way_id": 164435841, - "src_i": 1668102671, + "dst_i": 1080429989, + "osm_way_id": 93197252, + "src_i": 25496666, "type": "road" }, "type": "Feature" @@ -465,41 +613,69 @@ "coordinates": [ [ [ - -0.1039001925372816, - 51.50318049765434 + -0.10362078972724564, + 51.50298561737103 ], [ - -0.10386926816325069, - 51.50318727404227 + -0.10359038973999352, + 51.50298601756913 ], [ - -0.10286254233564665, - 51.50316171892092 + -0.10359099935768123, + 51.50300400040297 ], [ - -0.10286022521059664, - 51.50319710902281 + -0.10362139934493336, + 51.50300360020488 ], [ - -0.10387785770536251, - 51.5032229411352 + -0.10362078972724564, + 51.50298561737103 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1080429836, + "osm_way_id": 93197279, + "src_i": 1080429785, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10355433706550904, + 51.50298644924347 ], [ - -0.10391908201805088, - 51.50321390745016 + -0.10340885223771194, + 51.50298818673272 ], [ - -0.1039001925372816, - 51.50318049765434 + -0.10340940696091593, + 51.50300616956656 + ], + [ + -0.10355489178871302, + 51.50300443207731 + ], + [ + -0.10355433706550904, + 51.50298644924347 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25496664, - "osm_way_id": 678658474, - "src_i": 25496667, + "dst_i": 9568915258, + "osm_way_id": 93197279, + "src_i": 1080429836, "type": "road" }, "type": "Feature" @@ -509,34 +685,1890 @@ "coordinates": [ [ [ - -0.10220636979194898, - 51.50251927327864 + -0.1032168948956637, + 51.50294618122146 + ], + [ + -0.10301982947744535, + 51.50281349711767 + ], + [ + -0.10299861709325936, + 51.50282570810577 + ], + [ + -0.10319568251147769, + 51.50295839220956 + ], + [ + -0.1032168948956637, + 51.50294618122146 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9568915239, + "osm_way_id": 93197279, + "src_i": 9568915241, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10334814905085003, + 51.50298243737001 + ], + [ + -0.10326358698784975, + 51.502964928478626 + ], + [ + -0.10325446872518412, + 51.502981995803125 + ], + [ + -0.10333903078818442, + 51.50299950469451 + ], + [ + -0.10334814905085003, + 51.50298243737001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9568915241, + "osm_way_id": 93197279, + "src_i": 9568915258, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1036553385817943, + 51.50298403996102 + ], + [ + -0.10367769652718023, + 51.502891444914255 + ], + [ + -0.1036869000207548, + 51.50276444092541 + ], + [ + -0.10363976299433221, + 51.50267431181835 + ], + [ + -0.1036122897498178, + 51.50267988041743 + ], + [ + -0.10365780016601202, + 51.50276689967055 + ], + [ + -0.10364890003668964, + 51.50288970023043 + ], + [ + -0.10362676744760534, + 51.502981367177355 + ], + [ + -0.1036553385817943, + 51.50298403996102 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1080429761, + "osm_way_id": 93197290, + "src_i": 1080429785, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10393560670224482, + 51.5030865689137 + ], + [ + -0.10391540553223275, + 51.503086442109364 + ], + [ + -0.10391511372471399, + 51.50310442674185 + ], + [ + -0.10393531489472604, + 51.50310455354619 + ], + [ + -0.10393560670224482, + 51.5030865689137 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9586144486, + "osm_way_id": 93197290, + "src_i": 1080429864, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10384327273602192, + 51.50308591510693 + ], + [ + -0.10384079381670408, + 51.50308589442254 + ], + [ + -0.10371954201428973, + 51.50302784771268 + ], + [ + -0.10370192955256297, + 51.50304210555663 + ], + [ + -0.10383080013148216, + 51.503103799914726 + ], + [ + -0.10384288847463582, + 51.503103899739415 + ], + [ + -0.10384327273602192, + 51.50308591510693 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9586144488, + "osm_way_id": 93197290, + "src_i": 9586144486, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1036908928721502, + 51.5030141312603 + ], + [ + -0.10366764072451617, + 51.50300302104179 + ], + [ + -0.1036500484870729, + 51.50301728967761 + ], + [ + -0.10367330063470692, + 51.50302839989612 + ], + [ + -0.1036908928721502, + 51.5030141312603 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1080429785, + "osm_way_id": 93197290, + "src_i": 9586144488, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10263046145976797, + 51.50254646516521 + ], + [ + -0.10266148551062458, + 51.502588584890304 + ], + [ + -0.10278238627726141, + 51.502701679971956 + ], + [ + -0.10280643872868453, + 51.502691715489114 + ], + [ + -0.10268680053517346, + 51.50257980031734 + ], + [ + -0.10265672413645699, + 51.502538968420716 + ], + [ + -0.10263046145976797, + 51.50254646516521 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1701265003, + "osm_way_id": 157890035, + "src_i": 1701265007, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10265665190687313, + 51.502498732774285 + ], + [ + -0.10265512063969544, + 51.502481034126056 + ], + [ + -0.10262626925472113, + 51.50248200179605 + ], + [ + -0.10262780052189881, + 51.50249970044428 + ], + [ + -0.10265665190687313, + 51.502498732774285 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1701264964, + "osm_way_id": 157890038, + "src_i": 1701265007, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10246413695243754, + 51.50317881142642 + ], + [ + -0.10247370737229809, + 51.503167418820944 + ], + [ + -0.10248227091175972, + 51.502712809975534 + ], + [ + -0.10249498042933454, + 51.50264157831234 + ], + [ + -0.10253635353496564, + 51.50258718734461 + ], + [ + -0.10261816220622945, + 51.502566861778114 + ], + [ + -0.10263046145976797, + 51.50254646516521 + ], + [ + -0.10260341292520662, + 51.50254014473332 + ], + [ + -0.10259560057341706, + 51.502553100359656 + ], + [ + -0.10251510070221267, + 51.50257310037175 + ], + [ + -0.10246679933489837, + 51.50263659966821 + ], + [ + -0.10245339930250193, + 51.502711700212735 + ], + [ + -0.10244489932507408, + 51.50316290062945 + ], + [ + -0.10243853589873662, + 51.50317047651424 + ], + [ + -0.10246413695243754, + 51.50317881142642 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1701265007, + "osm_way_id": 157890038, + "src_i": 1701265019, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10232489131609368, + 51.504262682759425 + ], + [ + -0.10200598903583179, + 51.503375055081214 + ], + [ + -0.10184471193182103, + 51.502954351557804 + ], + [ + -0.101723320004014, + 51.50267307525121 + ], + [ + -0.10143746131377326, + 51.50219360646002 + ], + [ + -0.10116137673081953, + 51.50179757312554 + ], + [ + -0.10095727181735886, + 51.50141680757313 + ], + [ + -0.1008111109206569, + 51.501091861111085 + ], + [ + -0.10068000844759664, + 51.50064793260848 + ], + [ + -0.10054966438516685, + 51.500118054146085 + ], + [ + -0.10045614151999374, + 51.499850515875586 + ], + [ + -0.10035046674963317, + 51.499611067014584 + ], + [ + -0.10011542301622484, + 51.49923319278098 + ], + [ + -0.09992074839723203, + 51.498973192623765 + ], + [ + -0.0993999052018417, + 51.498334184188465 + ], + [ + -0.09913994226200401, + 51.49794675016671 + ], + [ + -0.0991066184211975, + 51.49795541602923 + ], + [ + -0.09936709563567223, + 51.49834361627295 + ], + [ + -0.0998882508628648, + 51.498983007819234 + ], + [ + -0.10008217718336888, + 51.499242007930874 + ], + [ + -0.10031613458383608, + 51.499618133883374 + ], + [ + -0.10042105816652458, + 51.49985588482528 + ], + [ + -0.10051413609746115, + 51.50012214605916 + ], + [ + -0.10064439059520697, + 51.50065166659158 + ], + [ + -0.10077588888638672, + 51.50109693868059 + ], + [ + -0.10092272874117691, + 51.50142339240557 + ], + [ + -0.10112762240169326, + 51.5018056274494 + ], + [ + -0.10140393811931532, + 51.50220199353285 + ], + [ + -0.1016888809384328, + 51.502679924484184 + ], + [ + -0.10180968925120229, + 51.502959848211155 + ], + [ + -0.10197081033931193, + 51.50338014524122 + ], + [ + -0.10228964616835669, + 51.50426758945784 + ], + [ + -0.10232489131609368, + 51.504262682759425 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1737173631, + "osm_way_id": 164435841, + "src_i": 1668102671, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10399961655945551, + 51.502641310314516 + ], + [ + -0.10404863299964996, + 51.50244855512805 + ], + [ + -0.10404603129003957, + 51.50236008796722 + ], + [ + -0.10401714523486501, + 51.50236041711891 + ], + [ + -0.10401970071754173, + 51.502447299675154 + ], + [ + -0.1039710800954668, + 51.50263849723669 + ], + [ + -0.10399961655945551, + 51.502641310314516 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3080103386, + "osm_way_id": 303611910, + "src_i": 25496666, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1044013546156636, + 51.503290204991686 + ], + [ + -0.10416187598580667, + 51.50327845895284 + ], + [ + -0.10399139683281301, + 51.50322279184782 + ], + [ + -0.10398584382240639, + 51.503212014378285 + ], + [ + -0.10395833301850838, + 51.50321750743435 + ], + [ + -0.10396750039729102, + 51.50323529961202 + ], + [ + -0.10415369959691449, + 51.50329610004449 + ], + [ + -0.10439908660673061, + 51.50330813566488 + ], + [ + -0.1044013546156636, + 51.503290204991686 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 25496667, + "osm_way_id": 392134505, + "src_i": 1080430042, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1039001925372816, + 51.50318049765434 + ], + [ + -0.10386926960784236, + 51.50318727404227 + ], + [ + -0.10302838723854028, + 51.50316588367905 + ], + [ + -0.10302606433512357, + 51.50320127378094 + ], + [ + -0.10387785626077083, + 51.5032229411352 + ], + [ + -0.10391908201805088, + 51.50321390745016 + ], + [ + -0.1039001925372816, + 51.50318049765434 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9568915256, + "osm_way_id": 678658474, + "src_i": 25496667, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10295619665866237, + 51.50316405985493 + ], + [ + -0.10286254089105498, + 51.50316170812906 + ], + [ + -0.1028602468794718, + 51.50319709823095 + ], + [ + -0.1029539026470792, + 51.503199449956824 + ], + [ + -0.10295619665866237, + 51.50316405985493 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 25496664, + "osm_way_id": 678658474, + "src_i": 9568915256, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10220636979194898, + 51.50251927327864 + ], + [ + -0.10217643785240023, + 51.50274790330131 + ], + [ + -0.10223403083338141, + 51.50275082609637 + ], + [ + -0.10226396277293016, + 51.50252219607369 + ], + [ + -0.10220636979194898, + 51.50251927327864 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7845046177, + "osm_way_id": 840754192, + "src_i": 7845046175, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10251247876831882, + 51.50327746700116 + ], + [ + -0.10249165353470226, + 51.50326761943012 + ], + [ + -0.10246029433857655, + 51.50320636034366 + ], + [ + -0.1024052380605803, + 51.50321728350328 + ], + [ + -0.10244214737792928, + 51.50328938121314 + ], + [ + -0.10247752542810057, + 51.503306112191375 + ], + [ + -0.10251247876831882, + 51.50327746700116 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1701265019, + "osm_way_id": 958202229, + "src_i": 25496663, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10299998223239418, + 51.50278533935974 + ], + [ + -0.1029940984104935, + 51.50274009629088 + ], + [ + -0.10287993810862185, + 51.50270923966896 + ], + [ + -0.10286843049132237, + 51.50272573862223 + ], + [ + -0.1029667002847463, + 51.5027523000844 + ], + [ + -0.10297118574190359, + 51.50278679086473 + ], + [ + -0.10299998223239418, + 51.50278533935974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1701265003, + "osm_way_id": 1039090211, + "src_i": 9568915239, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10383513824028838, + 51.50311332912594 + ], + [ + -0.10381642933347872, + 51.50313136232179 + ], + [ + -0.10375635743317971, + 51.50314111636339 + ], + [ + -0.10370394186876912, + 51.50312519297591 + ], + [ + -0.10367564376240712, + 51.50309979883312 + ], + [ + -0.1036771186905094, + 51.503066722685595 + ], + [ + -0.10368470568599733, + 51.503056302246726 + ], + [ + -0.10365839100400794, + 51.50304887744795 + ], + [ + -0.10364840020796937, + 51.503062600195584 + ], + [ + -0.10364650056991404, + 51.50310520015839 + ], + [ + -0.1036845005539792, + 51.503139299733846 + ], + [ + -0.10375330067719103, + 51.503160199966814 + ], + [ + -0.10383459940759283, + 51.50314699972501 + ], + [ + -0.10385940738046305, + 51.50312308676482 + ], + [ + -0.10383513824028838, + 51.50311332912594 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9586144488, + "osm_way_id": 1039090212, + "src_i": 9586144486, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10295932564423489, + 51.503170422554945 + ], + [ + -0.10296189701742008, + 51.50319080837598 + ], + [ + -0.10299069928627737, + 51.50318940003843 + ], + [ + -0.1029881279130922, + 51.50316901421739 + ], + [ + -0.10295932564423489, + 51.503170422554945 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9568915256, + "osm_way_id": 1039090215, + "src_i": 9568915240, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1034006354002528, + 51.50298337626171 + ], + [ + -0.10339776644118215, + 51.502941238550186 + ], + [ + -0.10336890061029107, + 51.502941999376226 + ], + [ + -0.10337176956936171, + 51.50298413708775 + ], + [ + -0.1034006354002528, + 51.50298337626171 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9568915259, + "osm_way_id": 1039090216, + "src_i": 9568915258, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10317395585265465, + 51.502974442401374 + ], + [ + -0.10298396893365393, + 51.50306601402021 + ], + [ + -0.1030016565141479, + 51.503080235891304 + ], + [ + -0.10319164343314863, + 51.502988664272465 + ], + [ + -0.10317395585265465, + 51.502974442401374 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9586144492, + "osm_way_id": 1041221413, + "src_i": 9568915241, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10256391345498067, + 51.50364138196557 + ], + [ + -0.10245028765202953, + 51.50363761740554 + ], + [ + -0.10245796421220145, + 51.50354781205424 + ], + [ + -0.10257159001515258, + 51.50355157661427 + ], + [ + -0.10256391345498067, + 51.50364138196557 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25496662", + "osm_node_id": 25496662, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10259053872418063, + 51.503329918132295 + ], + [ + -0.10259009234535242, + 51.50333513419732 + ], + [ + -0.10247646654240128, + 51.50333136963729 + ], + [ + -0.10247752542810057, + 51.503306112191375 + ], + [ + -0.10251247876831882, + 51.50327746700116 + ], + [ + -0.10253215699614378, + 51.5032688910708 + ], + [ + -0.1025974120913801, + 51.50332692249219 + ], + [ + -0.10259053872418063, + 51.503329918132295 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25496663", + "osm_node_id": 25496663, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10282644198963682, + 51.50322710949061 + ], + [ + -0.1027611868944005, + 51.50316907806922 + ], + [ + -0.1027839623267811, + 51.5031591522572 + ], + [ + -0.10286252500054653, + 51.50315897059425 + ], + [ + -0.10286254089105498, + 51.50316170812906 + ], + [ + -0.1028602468794718, + 51.50319709823095 + ], + [ + -0.10282644198963682, + 51.50322710949061 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25496664", + "osm_node_id": 25496664, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10400950190030166, + 51.50266330232386 + ], + [ + -0.10401635937699268, + 51.502671588672676 + ], + [ + -0.10394651914777335, + 51.502693985376716 + ], + [ + -0.10393787615576948, + 51.502683540656164 + ], + [ + -0.10391967718982183, + 51.5026804299029 + ], + [ + -0.10394047064242148, + 51.5026332658832 + ], + [ + -0.1039710800954668, + 51.50263849723669 + ], + [ + -0.10399961655945551, + 51.502641310314516 + ], + [ + -0.10399851144682255, + 51.502645655836275 + ], + [ + -0.10401682309092102, + 51.50265956834075 + ], + [ + -0.10400950190030166, + 51.50266330232386 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25496666", + "osm_node_id": 25496666, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10398584382240639, + 51.503212014378285 + ], + [ + -0.10395833301850838, + 51.50321750743435 + ], + [ + -0.10395268322045938, + 51.503206543805256 + ], + [ + -0.10391908201805088, + 51.50321390745016 + ], + [ + -0.1039001925372816, + 51.50318049765434 + ], + [ + -0.10391828171426179, + 51.50317653344492 + ], + [ + -0.1039260709525845, + 51.5031656228758 + ], + [ + -0.10399786426975123, + 51.503185485291695 + ], + [ + -0.10398584382240639, + 51.503212014378285 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25496667", + "osm_node_id": 25496667, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10364079443278963, + 51.50262540671211 + ], + [ + -0.10363976010514885, + 51.50267431181835 + ], + [ + -0.1036122897498178, + 51.50267988041743 + ], + [ + -0.10356025844679333, + 51.502673938599905 + ], + [ + -0.10356031334127705, + 51.50262502989638 + ], + [ + -0.10364079443278963, + 51.50262540671211 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1080429761", + "osm_node_id": 1080429761, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10365250284833223, + 51.50299578689919 + ], + [ + -0.10366764072451617, + 51.50300302104179 + ], + [ + -0.1036500484870729, + 51.50301728967761 + ], + [ + -0.10362139934493336, + 51.50300360020488 + ], + [ + -0.10362078972724564, + 51.50298561737103 + ], + [ + -0.10362676744760534, + 51.502981367177355 + ], + [ + -0.1036553385817943, + 51.50298403996102 + ], + [ + -0.10365250284833223, + 51.50299578689919 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1080429785", + "osm_node_id": 1080429785, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10361791787899165, + 51.50302741334037 + ], + [ + -0.10358906649401732, + 51.503026451066305 + ], + [ + -0.10355489178871302, + 51.50300443207731 + ], + [ + -0.10355433706550904, + 51.50298644924347 + ], + [ + -0.10359044463447725, + 51.50298601756913 + ], + [ + -0.10359099935768123, + 51.50300400040297 + ], + [ + -0.10361791787899165, + 51.50302741334037 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1080429836", + "osm_node_id": 1080429836, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10401386601175806, + 51.50310549783382 + ], + [ + -0.10401283601789232, + 51.503127971879515 + ], + [ + -0.10393430512514377, + 51.503126576132466 + ], + [ + -0.10393531489472604, + 51.50310455354619 + ], + [ + -0.10393560670224482, + 51.5030865689137 + ], + [ + -0.10393636077910023, + 51.50308163163836 + ], + [ + -0.10401489167184878, + 51.50308302019084 + ], + [ + -0.10401386601175806, + 51.50310549783382 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1080429864", + "osm_node_id": 1080429864, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1045523, + 51.502590799919304 + ], + [ + -0.10455225088388298, + 51.50260878635043 + ], + [ + -0.1044077917161766, + 51.50260863616373 + ], + [ + -0.10440784083229362, + 51.5025906497326 + ], + [ + -0.1045523, + 51.502590799919304 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1080429989", + "osm_node_id": 1080429989, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10454536740454178, + 51.50329726916251 + ], + [ + -0.10454309939560878, + 51.503315199835704 + ], + [ + -0.10439908660673061, + 51.50330813566488 + ], + [ + -0.1044013546156636, + 51.503290204991686 + ], + [ + -0.10454536740454178, + 51.50329726916251 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1080430042", + "osm_node_id": 1080430042, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10219797671430525, + 51.50375892149435 + ], + [ + -0.10216282402043557, + 51.503764078204156 + ], + [ + -0.10212968942113876, + 51.503676543639784 + ], + [ + -0.10216484211500844, + 51.50367138692998 + ], + [ + -0.10219797671430525, + 51.50375892149435 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1249482198", + "osm_node_id": 1249482198, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10235642241862895, + 51.5043504466508 + ], + [ + -0.10232117727089196, + 51.504355353349204 + ], + [ + -0.10228964616835669, + 51.50426758945784 + ], + [ + -0.10232489131609368, + 51.504262682759425 + ], + [ + -0.10235642241862895, + 51.5043504466508 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1668102671", + "osm_node_id": 1668102671, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10261711776644693, + 51.50237622269526 + ], + [ + -0.10264596915142124, + 51.50237525502527 + ], + [ + -0.10265512063969544, + 51.502481034126056 + ], + [ + -0.10262626925472113, + 51.50248200179605 + ], + [ + -0.10261711776644693, + 51.50237622269526 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1701264964", + "osm_node_id": 1701264964, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10287986732362968, + 51.50270922078321 + ], + [ + -0.10286843049132237, + 51.50272573862223 + ], + [ + -0.10286000563266173, + 51.502736881216315 + ], + [ + -0.1027814429588963, + 51.50273706287927 + ], + [ + -0.10279278444815292, + 51.50271140703391 + ], + [ + -0.10278238627726141, + 51.502701679971956 + ], + [ + -0.10280643872868453, + 51.502691715489114 + ], + [ + -0.10281062082158962, + 51.50268567294757 + ], + [ + -0.10288276661912554, + 51.502705031743396 + ], + [ + -0.10287986732362968, + 51.50270922078321 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1701265003", + "osm_node_id": 1701265003, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10265672413645699, + 51.502538968420716 + ], + [ + -0.10263046145976797, + 51.50254646516521 + ], + [ + -0.10260341292520662, + 51.50254014473332 + ], + [ + -0.10262780052189881, + 51.50249970044428 + ], + [ + -0.10265665190687313, + 51.502498732774285 + ], + [ + -0.10265672413645699, + 51.502538968420716 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1701265007", + "osm_node_id": 1701265007, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10245298759387397, + 51.50319208721124 + ], + [ + -0.10246029433857655, + 51.50320636034366 + ], + [ + -0.1024052380605803, + 51.50321728350328 + ], + [ + -0.10243853589873662, + 51.50317047651424 + ], + [ + -0.10246413695243754, + 51.50317881142642 + ], + [ + -0.10245298759387397, + 51.50319208721124 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1701265019", + "osm_node_id": 1701265019, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09905093807959675, + 51.49787243293126 + ], + [ + -0.09908426192040326, + 51.497863767068736 + ], + [ + -0.09913994226200401, + 51.49794675016671 + ], + [ + -0.0991066184211975, + 51.49795541602923 + ], + [ + -0.09905093807959675, + 51.49787243293126 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1737173631", + "osm_node_id": 1737173631, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.09919841211013317, + 51.498019041230705 + ], + [ + -0.09923158860258861, + 51.49801015953101 + ], + [ + -0.09928865719679102, + 51.49809277660511 + ], + [ + -0.09925548070433557, + 51.498101658304805 + ], + [ + -0.09919841211013317, + 51.498019041230705 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1933344140", + "osm_node_id": 1933344140, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1040145001875043, + 51.50227050025173 ], [ - -0.10217643785240023, - 51.50274790330131 + -0.10404338624267886, + 51.502270171100044 ], [ - -0.10223403083338141, - 51.50275082609637 + -0.10404603129003957, + 51.50236008796722 ], [ - -0.10226396277293016, - 51.50252219607369 + -0.10401714523486501, + 51.50236041711891 ], [ - -0.10220636979194898, - 51.50251927327864 + -0.1040145001875043, + 51.50227050025173 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7845046177, - "osm_way_id": 840754192, - "src_i": 7845046175, - "type": "road" + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3080103386", + "osm_node_id": 3080103386, + "type": "intersection" }, "type": "Feature" }, @@ -545,34 +2577,35 @@ "coordinates": [ [ [ - -0.10251247876831882, - 51.50327746700116 + -0.10221810421014177, + 51.502429638798425 ], [ - -0.10248437712642489, - 51.50326417772652 + -0.10227569719112295, + 51.50243256159349 ], [ - -0.10244942378620665, - 51.50329282291674 + -0.10226396277293016, + 51.50252219607369 ], [ - -0.10247752542810057, - 51.503306112191375 + -0.10220636979194898, + 51.50251927327864 ], [ - -0.10251247876831882, - 51.50327746700116 + -0.10221810421014177, + 51.502429638798425 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 1701265000, - "osm_way_id": 958202228, - "src_i": 25496663, - "type": "road" + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7845046175", + "osm_node_id": 7845046175, + "type": "intersection" }, "type": "Feature" }, @@ -581,24 +2614,24 @@ "coordinates": [ [ [ - -0.10256391345498067, - 51.50364138196557 + -0.10222229641518861, + 51.5028404614759 ], [ - -0.10245028765202953, - 51.50363761740554 + -0.10216470343420743, + 51.502837538680836 ], [ - -0.10245796421220145, - 51.50354781205424 + -0.10217643785240023, + 51.50274790330131 ], [ - -0.10257159001515258, - 51.50355157661427 + -0.10223403083338141, + 51.50275082609637 ], [ - -0.10256391345498067, - 51.50364138196557 + -0.10222229641518861, + 51.5028404614759 ] ] ], @@ -607,8 +2640,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25496662", - "osm_node_id": 25496662, + "osm_link": "https://www.openstreetmap.org/node/7845046177", + "osm_node_id": 7845046177, "type": "intersection" }, "type": "Feature" @@ -618,36 +2651,40 @@ "coordinates": [ [ [ - -0.10259053872418063, - 51.503329918132295 + -0.10300208989165102, + 51.50280155322808 ], [ - -0.10259009234535242, - 51.50333513419732 + -0.10301982947744535, + 51.50281349711767 ], [ - -0.10247646654240128, - 51.50333136963729 + -0.10299861709325936, + 51.50282570810577 ], [ - -0.10247752542810057, - 51.503306112191375 + -0.10297409948331623, + 51.50280920015928 ], [ - -0.10251247876831882, - 51.50327746700116 + -0.102974020030774, + 51.50283168319819 ], [ - -0.10253215699614378, - 51.5032688910708 + -0.10294512819723271, + 51.502831643628035 ], [ - -0.1025974120913801, - 51.50332692249219 + -0.10297118574190359, + 51.50278679086473 ], [ - -0.10259053872418063, - 51.503329918132295 + -0.10299998223239418, + 51.50278533935974 + ], + [ + -0.10300208989165102, + 51.50280155322808 ] ] ], @@ -656,8 +2693,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25496663", - "osm_node_id": 25496663, + "osm_link": "https://www.openstreetmap.org/node/9568915239", + "osm_node_id": 9568915239, "type": "intersection" }, "type": "Feature" @@ -667,32 +2704,44 @@ "coordinates": [ [ [ - -0.10286254089105498, - 51.50316171892092 + -0.1029852994025885, + 51.503146600426234 ], [ - -0.10286022521059664, - 51.50319710902281 + -0.10302139830400665, + 51.50314725243437 ], [ - -0.10282644198963682, - 51.50322710949061 + -0.10302056044083395, + 51.50316523167092 ], [ - -0.1027611868944005, - 51.50316907806922 + -0.10298757463447988, + 51.50316463632005 ], [ - -0.1027839623267811, - 51.5031591522572 + -0.1029881279130922, + 51.50316901421739 ], [ - -0.10286252500054653, - 51.50315897059425 + -0.10295932564423489, + 51.503170422554945 ], [ - -0.10286254089105498, - 51.50316171892092 + -0.10295657080790674, + 51.50314858972552 + ], + [ + -0.10295154362887056, + 51.50312691877397 + ], + [ + -0.10298013787652635, + 51.50312434851297 + ], + [ + -0.1029852994025885, + 51.503146600426234 ] ] ], @@ -701,8 +2750,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25496664", - "osm_node_id": 25496664, + "osm_link": "https://www.openstreetmap.org/node/9568915240", + "osm_node_id": 9568915240, "type": "intersection" }, "type": "Feature" @@ -712,38 +2761,54 @@ "coordinates": [ [ [ - -0.10391908201805088, - 51.50321390745016 + -0.10323636799147051, + 51.50295929243043 ], [ - -0.1039001925372816, - 51.50318049765434 + -0.10326358698784975, + 51.502964928478626 ], [ - -0.10391828171426179, - 51.50317653344492 + -0.10325446872518412, + 51.502981995803125 ], [ - -0.1039260709525845, - 51.5031656228758 + -0.10322020012142082, + 51.50297490015605 ], [ - -0.10399786426975123, - 51.503185485291695 + -0.10319164343314863, + 51.502988664272465 ], [ - -0.10391908201805088, - 51.50321390745016 + -0.10317395585265465, + 51.502974442401374 + ], + [ + -0.10320051033686244, + 51.50296164325698 + ], + [ + -0.10319568251147769, + 51.50295839220956 + ], + [ + -0.1032168948956637, + 51.50294618122146 + ], + [ + -0.10323636799147051, + 51.50295929243043 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25496667", - "osm_node_id": 25496667, + "osm_link": "https://www.openstreetmap.org/node/9568915241", + "osm_node_id": 9568915241, "type": "intersection" }, "type": "Feature" @@ -753,34 +2818,46 @@ "coordinates": [ [ [ - -0.10219797671430525, - 51.50375892149435 + -0.10298998854717226, + 51.50320035557363 ], [ - -0.10216282402043557, - 51.503764078204156 + -0.1029539026470792, + 51.503199449956824 ], [ - -0.10212968942113876, - 51.503676543639784 + -0.10295619665866237, + 51.50316405985493 ], [ - -0.10216484211500844, - 51.50367138692998 + -0.10296189701742008, + 51.50319080837598 ], [ - -0.10219797671430525, - 51.50375892149435 + -0.10299069928627737, + 51.50318940003843 + ], + [ + -0.10302838723854028, + 51.50316588367905 + ], + [ + -0.10302606433512357, + 51.50320127378094 + ], + [ + -0.10298998854717226, + 51.50320035557363 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1249482198", - "osm_node_id": 1249482198, + "osm_link": "https://www.openstreetmap.org/node/9568915256", + "osm_node_id": 9568915256, "type": "intersection" }, "type": "Feature" @@ -790,61 +2867,44 @@ "coordinates": [ [ [ - -0.10235642241862895, - 51.5043504466508 + -0.10337329939194773, + 51.503006600341585 ], [ - -0.10232117727089196, - 51.504355353349204 + -0.10333903078818442, + 51.50299950469451 ], [ - -0.10228964616835669, - 51.50426758945784 + -0.10334814905085003, + 51.50298243737001 ], [ - -0.10232489131609368, - 51.504262682759425 + -0.1033719905918883, + 51.50298737374603 ], [ - -0.10235642241862895, - 51.5043504466508 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1668102671", - "osm_node_id": 1668102671, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -0.10337176956936171, + 51.50298413708775 + ], [ - -0.1023193541961955, - 51.50323131291957 + -0.1034006354002528, + 51.50298337626171 ], [ - -0.10235430753641374, - 51.50320266772935 + -0.10340097054552187, + 51.50298828026216 ], [ - -0.10248437712642489, - 51.50326417772652 + -0.10340885223771194, + 51.50298818673272 ], [ - -0.10244942378620665, - 51.50329282291674 + -0.10340940696091593, + 51.50300616956656 ], [ - -0.1023193541961955, - 51.50323131291957 + -0.10337329939194773, + 51.503006600341585 ] ] ], @@ -853,8 +2913,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1701265000", - "osm_node_id": 1701265000, + "osm_link": "https://www.openstreetmap.org/node/9568915258", + "osm_node_id": 9568915258, "type": "intersection" }, "type": "Feature" @@ -864,34 +2924,34 @@ "coordinates": [ [ [ - -0.09905093807959675, - 51.49787243293126 + -0.10336335771202616, + 51.502860590990295 ], [ - -0.09908426192040326, - 51.497863767068736 + -0.10339222354291726, + 51.50285983016426 ], [ - -0.09913994226200401, - 51.49794675016671 + -0.10339776644118215, + 51.502941237650866 ], [ - -0.0991066184211975, - 51.49795541602923 + -0.10336890061029107, + 51.502942000275546 ], [ - -0.09905093807959675, - 51.49787243293126 + -0.10336335771202616, + 51.502860590990295 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/1737173631", - "osm_node_id": 1737173631, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9568915259", + "osm_node_id": 9568915259, "type": "intersection" }, "type": "Feature" @@ -901,34 +2961,54 @@ "coordinates": [ [ [ - -0.09919841211013317, - 51.498019041230705 + -0.10387900037737907, + 51.503104200112816 ], [ - -0.09923158860258861, - 51.49801015953101 + -0.10385940738046305, + 51.50312308676482 ], [ - -0.09928865719679102, - 51.49809277660511 + -0.10383513824028838, + 51.50311332912594 ], [ - -0.09925548070433557, - 51.498101658304805 + -0.10384490223543365, + 51.503103916826525 ], [ - -0.09919841211013317, - 51.498019041230705 + -0.10384288847463582, + 51.503103899739415 + ], + [ + -0.10384327273602192, + 51.50308591510693 + ], + [ + -0.10387938463876517, + 51.50308621548033 + ], + [ + -0.10391540553223275, + 51.503086442109364 + ], + [ + -0.10391511372471399, + 51.50310442674185 + ], + [ + -0.10387900037737907, + 51.503104200112816 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1933344140", - "osm_node_id": 1933344140, + "osm_link": "https://www.openstreetmap.org/node/9586144486", + "osm_node_id": 9586144486, "type": "intersection" }, "type": "Feature" @@ -938,34 +3018,46 @@ "coordinates": [ [ [ - -0.10221810421014177, - 51.502429638798425 + -0.10369091309643368, + 51.50301414205216 ], [ - -0.10227569719112295, - 51.50243256159349 + -0.10371954201428973, + 51.50302784771268 ], [ - -0.10226396277293016, - 51.50252219607369 + -0.10370192955256297, + 51.50304210555663 ], [ - -0.10220636979194898, - 51.50251927327864 + -0.10369682292098455, + 51.50303966030132 ], [ - -0.10221810421014177, - 51.502429638798425 + -0.10368470568599733, + 51.503056302246726 + ], + [ + -0.10365839100400794, + 51.50304887744795 + ], + [ + -0.10367330063470692, + 51.50302839989612 + ], + [ + -0.10369091309643368, + 51.50301414205216 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7845046175", - "osm_node_id": 7845046175, + "osm_link": "https://www.openstreetmap.org/node/9586144488", + "osm_node_id": 9586144488, "type": "intersection" }, "type": "Feature" @@ -975,34 +3067,46 @@ "coordinates": [ [ [ - -0.10222229641518861, - 51.5028404614759 + -0.1029730998258757, + 51.50309400000773 ], [ - -0.10216470343420743, - 51.502837538680836 + -0.10297825990734617, + 51.50311625192099 ], [ - -0.10217643785240023, - 51.50274790330131 + -0.10294966565969037, + 51.503118822182 ], [ - -0.10223403083338141, - 51.50275082609637 + -0.10294428744487666, + 51.50307117522662 ], [ - -0.10222229641518861, - 51.5028404614759 + -0.10297317927841794, + 51.50307121479677 + ], + [ + -0.10298396893365393, + 51.50306601402021 + ], + [ + -0.1030016565141479, + 51.503080235891304 + ], + [ + -0.1029730998258757, + 51.50309400000773 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7845046177", - "osm_node_id": 7845046177, + "osm_link": "https://www.openstreetmap.org/node/9586144492", + "osm_node_id": 9586144492, "type": "intersection" }, "type": "Feature" diff --git a/tests/src/oneway_loop/road_network.dot b/tests/src/oneway_loop/road_network.dot index 09e7133a..22e71e71 100644 --- a/tests/src/oneway_loop/road_network.dot +++ b/tests/src/oneway_loop/road_network.dot @@ -4,22 +4,69 @@ digraph { 2 [ label = "Unknown" ] 3 [ label = "Unknown" ] 4 [ label = "Unknown" ] - 5 [ label = "MapEdge" ] + 5 [ label = "Unknown" ] 6 [ label = "Unknown" ] - 7 [ label = "MapEdge" ] + 7 [ label = "Unknown" ] 8 [ label = "Unknown" ] - 9 [ label = "Unknown" ] + 9 [ label = "MapEdge" ] 10 [ label = "Unknown" ] - 8 -> 4 [ label = "1 lanes" ] + 11 [ label = "Unknown" ] + 12 [ label = "MapEdge" ] + 13 [ label = "Unknown" ] + 14 [ label = "Unknown" ] + 15 [ label = "Unknown" ] + 16 [ label = "Unknown" ] + 17 [ label = "MapEdge" ] + 18 [ label = "Unknown" ] + 19 [ label = "Unknown" ] + 20 [ label = "Unknown" ] + 21 [ label = "Unknown" ] + 22 [ label = "Unknown" ] + 23 [ label = "Unknown" ] + 24 [ label = "Unknown" ] + 25 [ label = "Unknown" ] + 26 [ label = "Unknown" ] + 27 [ label = "Unknown" ] + 28 [ label = "Unknown" ] + 29 [ label = "Unknown" ] + 30 [ label = "Unknown" ] + 18 -> 11 [ label = "1 lanes" ] 0 -> 1 [ label = "2 lanes" ] 1 -> 0 [ label = "2 lanes" ] 1 -> 2 [ label = "2 lanes" ] 2 -> 1 [ label = "2 lanes" ] - 2 -> 3 [ label = "3 lanes" ] - 5 -> 7 [ label = "1 lanes" ] - 3 -> 2 [ label = "2 lanes" ] - 9 -> 10 [ label = "1 lanes" ] - 10 -> 9 [ label = "1 lanes" ] - 1 -> 6 [ label = "1 lanes" ] - 6 -> 1 [ label = "1 lanes" ] + 2 -> 14 [ label = "3 lanes" ] + 3 -> 8 [ label = "3 lanes" ] + 5 -> 3 [ label = "3 lanes" ] + 8 -> 4 [ label = "3 lanes" ] + 14 -> 5 [ label = "3 lanes" ] + 22 -> 30 [ label = "1 lanes" ] + 23 -> 7 [ label = "1 lanes" ] + 30 -> 23 [ label = "1 lanes" ] + 3 -> 9 [ label = "1 lanes" ] + 6 -> 7 [ label = "1 lanes" ] + 7 -> 26 [ label = "1 lanes" ] + 24 -> 22 [ label = "1 lanes" ] + 26 -> 24 [ label = "1 lanes" ] + 6 -> 5 [ label = "1 lanes" ] + 8 -> 28 [ label = "1 lanes" ] + 28 -> 29 [ label = "1 lanes" ] + 29 -> 6 [ label = "1 lanes" ] + 15 -> 14 [ label = "1 lanes" ] + 15 -> 13 [ label = "1 lanes" ] + 16 -> 15 [ label = "1 lanes" ] + 12 -> 17 [ label = "1 lanes" ] + 3 -> 19 [ label = "1 lanes" ] + 10 -> 4 [ label = "1 lanes" ] + 4 -> 25 [ label = "2 lanes" ] + 25 -> 2 [ label = "2 lanes" ] + 20 -> 21 [ label = "1 lanes" ] + 21 -> 20 [ label = "1 lanes" ] + 1 -> 16 [ label = "1 lanes" ] + 16 -> 1 [ label = "1 lanes" ] + 22 -> 14 [ label = "1 lanes" ] + 28 -> 29 [ label = "1 lanes" ] + 23 -> 25 [ label = "1 lanes" ] + 26 -> 27 [ label = "1 lanes" ] + 24 -> 30 [ label = "1 lanes" ] } diff --git a/tests/src/roosevelt_cycletrack/geometry.json b/tests/src/roosevelt_cycletrack/geometry.json index 0d1f5dc8..119ffc00 100644 --- a/tests/src/roosevelt_cycletrack/geometry.json +++ b/tests/src/roosevelt_cycletrack/geometry.json @@ -996,6 +996,78 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31765806977508, + 47.66526442969304 + ], + [ + -122.31766415543056, + 47.665264495343514 + ], + [ + -122.3176645826815, + 47.66524651070985 + ], + [ + -122.31765849702602, + 47.665246445059374 + ], + [ + -122.31765806977508, + 47.66526442969304 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5908863569, + "osm_way_id": 296557976, + "src_i": 5154286399, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31769084659746, + 47.66526478492507 + ], + [ + -122.31771694628884, + 47.665265084399174 + ], + [ + -122.31771740024296, + 47.66524709976551 + ], + [ + -122.31769130055157, + 47.665246800291406 + ], + [ + -122.31769084659746, + 47.66526478492507 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5908851926, + "osm_way_id": 296557976, + "src_i": 5908863569, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1220,6 +1292,150 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3181975568581, + 47.665144913447634 + ], + [ + -122.31810713453872, + 47.66514432978791 + ], + [ + -122.31810687818816, + 47.66516231622022 + ], + [ + -122.31819730050753, + 47.665162899879945 + ], + [ + -122.3181975568581, + 47.665144913447634 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5908863566, + "osm_way_id": 394703522, + "src_i": 3976726723, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31806073642254, + 47.66514410315886 + ], + [ + -122.3180515331704, + 47.66514401772331 + ], + [ + -122.31805116466649, + 47.66516200235697 + ], + [ + -122.31806036791862, + 47.665162087792524 + ], + [ + -122.31806073642254, + 47.66514410315886 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3976726724, + "osm_way_id": 394703522, + "src_i": 5908851932, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31807350054417, + 47.66514411395072 + ], + [ + -122.3180618753133, + 47.66514411395072 + ], + [ + -122.3180618753133, + 47.66516210038303 + ], + [ + -122.31807350054417, + 47.66516210038303 + ], + [ + -122.31807350054417, + 47.66514411395072 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5908851932, + "osm_way_id": 394703522, + "src_i": 5908863566, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3180515331704, + 47.66514401772331 + ], + [ + -122.31803967161638, + 47.6651437263431 + ], + [ + -122.3180386996205, + 47.66516170018491 + ], + [ + -122.31805056117453, + 47.665161991565114 + ], + [ + -122.3180515331704, + 47.66514401772331 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5908851924, + "osm_way_id": 394703523, + "src_i": 3976726724, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1964,6 +2180,78 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31937955591087, + 47.66481537233014 + ], + [ + -122.31860555079064, + 47.664813973885025 + ], + [ + -122.31860547869204, + 47.664831960317336 + ], + [ + -122.31937948381228, + 47.66483335876244 + ], + [ + -122.31937955591087, + 47.66481537233014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7797741149, + "osm_way_id": 477387986, + "src_i": 752191859, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31854363678977, + 47.664853381258894 + ], + [ + -122.31854033627631, + 47.664894530618724 + ], + [ + -122.31856699940487, + 47.664895500087425 + ], + [ + -122.31857029991832, + 47.664854350727595 + ], + [ + -122.31854363678977, + 47.664853381258894 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4694405879, + "osm_way_id": 477387986, + "src_i": 7797741149, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -2049,33 +2337,33 @@ "coordinates": [ [ [ - -122.3174301420835, - 47.666015648326855 + -122.3185414845132, + 47.66400158159628 ], [ - -122.31743682321996, - 47.666015803010175 + -122.31854228427355, + 47.663987381307976 ], [ - -122.31743865772866, - 47.665979851729276 + -122.31851559978244, + 47.66398669962219 ], [ - -122.31743197659219, - 47.665979697045955 + -122.3185148000221, + 47.6640008999105 ], [ - -122.3174301420835, - 47.666015648326855 + -122.3185414845132, + 47.66400158159628 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5443485497, - "osm_way_id": 565125028, - "src_i": 6040524426, + "dst_i": 4829706959, + "osm_way_id": 490786086, + "src_i": 4829706954, "type": "road" }, "type": "Feature" @@ -2085,41 +2373,33 @@ "coordinates": [ [ [ - -122.31720556030079, - 47.66314899053066 - ], - [ - -122.31719362531301, - 47.6636009580983 - ], - [ - -122.31738364249522, - 47.66360327654943 + -122.31849460173424, + 47.663957613762506 ], [ - -122.31738460915045, - 47.66356730908074 + -122.31845470183771, + 47.66395771358721 ], [ - -122.31724797430202, - 47.663565641738465 + -122.3184548006395, + 47.66397570001951 ], [ - -122.31725895865648, - 47.66314963084765 + -122.31849470053602, + 47.66397560019482 ], [ - -122.31720556030079, - 47.66314899053066 + -122.31849460173424, + 47.663957613762506 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5443485510, - "osm_way_id": 565125032, - "src_i": 5443485514, + "dst_i": 4829706955, + "osm_way_id": 490786088, + "src_i": 4829706956, "type": "road" }, "type": "Feature" @@ -2129,49 +2409,33 @@ "coordinates": [ [ [ - -122.31740479809221, - 47.66222651857822 - ], - [ - -122.31712637468097, - 47.66222320367875 - ], - [ - -122.31710943151114, - 47.66257118718462 - ], - [ - -122.3173971049051, - 47.66257646800114 - ], - [ - -122.31739856022858, - 47.66254050772703 + -122.31834823090516, + 47.66404214010182 ], [ - -122.31716456824407, - 47.66253621256699 + -122.31830243094029, + 47.66404384071899 ], [ - -122.31717802664846, - 47.66225979707528 + -122.31830389961537, + 47.66406180017165 ], [ - -122.31740385546983, - 47.66226248604691 + -122.31834969958025, + 47.664060099554476 ], [ - -122.31740479809221, - 47.66222651857822 + -122.31834823090516, + 47.66404214010182 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5443485515, - "osm_way_id": 565125033, - "src_i": 5443485520, + "dst_i": 4831220200, + "osm_way_id": 490957412, + "src_i": 4831220179, "type": "road" }, "type": "Feature" @@ -2181,23 +2445,191 @@ "coordinates": [ [ [ - -122.31738669867455, - 47.663079020611015 + -122.31849933086801, + 47.6640397137321 ], [ - -122.31726695358957, - 47.66307844324653 + -122.31846903076588, + 47.6640396139074 ], [ - -122.3172662005598, - 47.663149279212895 + -122.31846889992029, + 47.66405760033971 ], [ - -122.31738594564479, - 47.66314985657737 + -122.3184992000224, + 47.664057700164406 ], [ - -122.31738669867455, + -122.31849933086801, + 47.6640397137321 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4831220201, + "osm_way_id": 490957413, + "src_i": 4694384138, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3174301420835, + 47.666015648326855 + ], + [ + -122.31743682321996, + 47.666015803010175 + ], + [ + -122.31743865772866, + 47.665979851729276 + ], + [ + -122.31743197659219, + 47.665979697045955 + ], + [ + -122.3174301420835, + 47.666015648326855 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5443485497, + "osm_way_id": 565125028, + "src_i": 6040524426, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31720556030079, + 47.66314899053066 + ], + [ + -122.31719362531301, + 47.6636009580983 + ], + [ + -122.31738364249522, + 47.66360327654943 + ], + [ + -122.31738460915045, + 47.66356730908074 + ], + [ + -122.31724797430202, + 47.663565641738465 + ], + [ + -122.31725895865648, + 47.66314963084765 + ], + [ + -122.31720556030079, + 47.66314899053066 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5443485510, + "osm_way_id": 565125032, + "src_i": 5443485514, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31740479809221, + 47.66222651857822 + ], + [ + -122.31712637468097, + 47.66222320367875 + ], + [ + -122.31710943151114, + 47.66257118718462 + ], + [ + -122.3173971049051, + 47.66257646800114 + ], + [ + -122.31739856022858, + 47.66254050772703 + ], + [ + -122.31716456824407, + 47.66253621256699 + ], + [ + -122.31717802664846, + 47.66225979707528 + ], + [ + -122.31740385546983, + 47.66226248604691 + ], + [ + -122.31740479809221, + 47.66222651857822 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5443485515, + "osm_way_id": 565125033, + "src_i": 5443485520, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31738669867455, + 47.663079020611015 + ], + [ + -122.31726695358957, + 47.66307844324653 + ], + [ + -122.3172662005598, + 47.663149279212895 + ], + [ + -122.31738594564479, + 47.66314985657737 + ], + [ + -122.31738669867455, 47.663079020611015 ] ] @@ -2377,41 +2809,33 @@ "coordinates": [ [ [ - -122.31799679698523, - 47.6612461527968 - ], - [ - -122.31779525737942, - 47.66124555204996 - ], - [ - -122.31775555108096, - 47.66124562489501 + -122.31803814953493, + 47.665143717349885 ], [ - -122.31775601838667, - 47.66136032077655 + -122.31803269407457, + 47.665143792892906 ], [ - -122.3177953428296, - 47.661360247931505 + -122.31803324416015, + 47.665161775727924 ], [ - -122.31799604395546, - 47.6613608468797 + -122.3180386996205, + 47.66516170018491 ], [ - -122.31799679698523, - 47.6612461527968 + -122.31803814953493, + 47.665143717349885 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4694379084, - "osm_way_id": 670796677, - "src_i": 4531063551, + "dst_i": 5908851929, + "osm_way_id": 625839910, + "src_i": 5908851924, "type": "road" }, "type": "Feature" @@ -2421,33 +2845,33 @@ "coordinates": [ [ [ - -122.3186605032716, - 47.66123659120939 + -122.31803044566654, + 47.665143827966446 ], [ - -122.31847615784551, - 47.66123559566036 + -122.31802294474234, + 47.665144027615845 ], [ - -122.31847452628101, - 47.661372770985 + -122.31802399951809, + 47.665161999659006 ], [ - -122.3186588717071, - 47.66137376653403 + -122.31803150044227, + 47.66516180000961 ], [ - -122.3186605032716, - 47.66123659120939 + -122.31803044566654, + 47.665143827966446 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 53079357, - "osm_way_id": 687885754, - "src_i": 53079356, + "dst_i": 3976726725, + "osm_way_id": 625839910, + "src_i": 5908851929, "type": "road" }, "type": "Feature" @@ -2457,33 +2881,33 @@ "coordinates": [ [ [ - -122.31836891118549, - 47.661235389715706 + -122.31775030390544, + 47.66526547830204 ], [ - -122.31825255606964, - 47.66123556148614 + -122.3178013296833, + 47.66526608264616 ], [ - -122.3182530020128, - 47.66137274040806 + -122.31780179965932, + 47.665248099811144 ], [ - -122.31836935712865, - 47.66137256863764 + -122.31775077388147, + 47.66524749546702 ], [ - -122.31836891118549, - 47.661235389715706 + -122.31775030390544, + 47.66526547830204 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8318893544, - "osm_way_id": 687885754, - "src_i": 53079357, + "dst_i": 3003528165, + "osm_way_id": 625839911, + "src_i": 5908851926, "type": "road" }, "type": "Feature" @@ -2493,33 +2917,49 @@ "coordinates": [ [ [ - -122.31818649906988, - 47.66123550572819 + -122.31808718459047, + 47.66513898422023 ], [ - -122.31806365641563, - 47.66123511722126 + -122.3180843420366, + 47.665085879278834 ], [ - -122.31806270044167, - 47.661372294344545 + -122.3180097426885, + 47.665086838855 ], [ - -122.31818554309592, - 47.66137268285148 + -122.31800631399977, + 47.665138537257384 ], [ - -122.31818649906988, - 47.66123550572819 + -122.3180329904799, + 47.66513933945226 + ], + [ + -122.31803530030527, + 47.665104499732884 + ], + [ + -122.31805860016787, + 47.66510420025878 + ], + [ + -122.31806049742904, + 47.66513963173179 + ], + [ + -122.31808718459047, + 47.66513898422023 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4531063551, - "osm_way_id": 687885754, - "src_i": 8318893544, + "dst_i": 5908851929, + "osm_way_id": 625839912, + "src_i": 5908851932, "type": "road" }, "type": "Feature" @@ -2529,33 +2969,33 @@ "coordinates": [ [ [ - -122.3174583860405, - 47.67143587229342 + -122.31798944693402, + 47.66504746025942 ], [ - -122.31745721510592, - 47.67079283845265 + -122.31792330581925, + 47.66500463366478 ], [ - -122.3174305119226, - 47.67079286003637 + -122.3179048005132, + 47.66501760008383 ], [ - -122.31743168285718, - 47.67143589387714 + -122.31797094162798, + 47.66506042667847 ], [ - -122.3174583860405, - 47.67143587229342 + -122.31798944693402, + 47.66504746025942 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4384739624, - "osm_way_id": 712316019, - "src_i": 4384739623, + "dst_i": 5908863567, + "osm_way_id": 625840701, + "src_i": 5908863568, "type": "road" }, "type": "Feature" @@ -2565,33 +3005,41 @@ "coordinates": [ [ [ - -122.31745716169955, - 47.67072190535956 + -122.31810086863676, + 47.66513998336654 ], [ - -122.31745734061087, - 47.67009442618544 + -122.31810324522007, + 47.665060277391085 ], [ - -122.31743063742755, - 47.67009442258816 + -122.31803202783016, + 47.665060370021216 ], [ - -122.31743045851623, - 47.67072190176227 + -122.3180320785662, + 47.66507835645352 ], [ - -122.31745716169955, - 47.67072190535956 - ] + -122.31807599996213, + 47.665078299796264 + ], + [ + -122.31807417079408, + 47.66513962183925 + ], + [ + -122.31810086863676, + 47.66513998336654 + ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4384739627, - "osm_way_id": 712316019, - "src_i": 4384739624, + "dst_i": 5908863568, + "osm_way_id": 625840702, + "src_i": 5908863566, "type": "road" }, "type": "Feature" @@ -2601,33 +3049,57 @@ "coordinates": [ [ [ - -122.31745738467113, - 47.67002335279818 + -122.31796530191566, + 47.66506042937644 ], [ - -122.31745801887173, - 47.66933694017929 + -122.31776599069049, + 47.665060526503176 ], [ - -122.31743131568841, - 47.66933692938743 + -122.31776209336088, + 47.66520145199895 ], [ - -122.3174306814878, - 47.67002334200632 + -122.31766326754972, + 47.665200844057544 ], [ - -122.31745738467113, - 47.67002335279818 + -122.31766395515669, + 47.66522467068442 + ], + [ + -122.31769065299937, + 47.66522432174763 + ], + [ + -122.31769049945608, + 47.66521899956231 + ], + [ + -122.317788299865, + 47.66521960030915 + ], + [ + -122.31779219986493, + 47.66507850034498 + ], + [ + -122.31796532060788, + 47.66507841580875 + ], + [ + -122.31796530191566, + 47.66506042937644 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4384739630, - "osm_way_id": 712316019, - "src_i": 4384739627, + "dst_i": 5908863569, + "osm_way_id": 625840702, + "src_i": 5908863568, "type": "road" }, "type": "Feature" @@ -2637,33 +3109,41 @@ "coordinates": [ [ [ - -122.31745820846433, - 47.66926607093803 + -122.31799679698523, + 47.6612461527968 ], [ - -122.31746109507846, - 47.66861219487586 + -122.31779525737942, + 47.66124555204996 ], [ - -122.31743439189513, - 47.668612140916565 + -122.31775555108096, + 47.66124562489501 ], [ - -122.31743150528101, - 47.66926601697873 + -122.31775601838667, + 47.66136032077655 ], [ - -122.31745820846433, - 47.66926607093803 + -122.3177953428296, + 47.661360247931505 + ], + [ + -122.31799604395546, + 47.6613608468797 + ], + [ + -122.31799679698523, + 47.6612461527968 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4384739631, - "osm_way_id": 712316019, - "src_i": 4384739630, + "dst_i": 4694379084, + "osm_way_id": 670796677, + "src_i": 4531063551, "type": "road" }, "type": "Feature" @@ -2673,33 +3153,41 @@ "coordinates": [ [ [ - -122.31746158508186, - 47.66854135711086 + -122.31868729457543, + 47.66616943951766 ], [ - -122.31747471637226, - 47.66715075318407 + -122.31869571542428, + 47.666083056079216 ], [ - -122.31744801318894, - 47.6671506380709 + -122.3186559971094, + 47.66608156140669 ], [ - -122.31743488189854, - 47.668541241997694 + -122.31865450707178, + 47.66609951906071 ], [ - -122.31746158508186, - 47.66854135711086 + -122.31866730056691, + 47.66610000109709 + ], + [ + -122.31866064746879, + 47.66616826140635 + ], + [ + -122.31868729457543, + 47.66616943951766 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4384739632, - "osm_way_id": 712316019, - "src_i": 4384739631, + "dst_i": 6338033838, + "osm_way_id": 676839402, + "src_i": 6338026453, "type": "road" }, "type": "Feature" @@ -2709,33 +3197,33 @@ "coordinates": [ [ [ - -122.31747535057286, - 47.667079787715394 + -122.3186605032716, + 47.66123659120939 ], [ - -122.31748426142515, - 47.66602113418871 + -122.31847615784551, + 47.66123559566036 ], [ - -122.31745755824183, - 47.66602103166604 + -122.31847452628101, + 47.661372770985 ], [ - -122.31744864738954, - 47.66707968519273 + -122.3186588717071, + 47.66137376653403 ], [ - -122.31747535057286, - 47.667079787715394 + -122.3186605032716, + 47.66123659120939 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5443485497, - "osm_way_id": 712316019, - "src_i": 4384739632, + "dst_i": 53079357, + "osm_way_id": 687885754, + "src_i": 53079356, "type": "road" }, "type": "Feature" @@ -2745,41 +3233,33 @@ "coordinates": [ [ [ - -122.31750139418756, - 47.66487352966036 - ], - [ - -122.31750284417042, - 47.664868487164064 - ], - [ - -122.31751813574834, - 47.66315154640269 + -122.31836891118549, + 47.661235389715706 ], [ - -122.31749143256502, - 47.66315143848409 + -122.31825255606964, + 47.66123556148614 ], [ - -122.31747615700901, - 47.66486671370184 + -122.3182530020128, + 47.66137274040806 ], [ - -122.3174751796725, - 47.66487010864094 + -122.31836935712865, + 47.66137256863764 ], [ - -122.31750139418756, - 47.66487352966036 + -122.31836891118549, + 47.661235389715706 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452243878, - "osm_way_id": 712316019, - "src_i": 4384739635, + "dst_i": 8318893544, + "osm_way_id": 687885754, + "src_i": 53079357, "type": "road" }, "type": "Feature" @@ -2789,57 +3269,69 @@ "coordinates": [ [ [ - -122.317484763445, - 47.66597620138284 - ], - [ - -122.31749465964474, - 47.66526302045607 + -122.31818649906988, + 47.66123550572819 ], [ - -122.31746814605401, - 47.665111244645 + -122.31806365641563, + 47.66123511722126 ], [ - -122.31746715803622, - 47.66502463277886 + -122.31806270044167, + 47.661372294344545 ], [ - -122.31747406614976, - 47.66498789189359 + -122.31818554309592, + 47.66137268285148 ], [ - -122.31744757392157, - 47.66498563279769 - ], + -122.31818649906988, + 47.66123550572819 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4531063551, + "osm_way_id": 687885754, + "src_i": 8318893544, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -122.3174404415013, - 47.66502356798207 + -122.3174583860405, + 47.67143587229342 ], [ - -122.31744145355195, - 47.665112356206514 + -122.31745721510592, + 47.67079283845265 ], [ - -122.3174679404395, - 47.66526397913291 + -122.3174305119226, + 47.67079286003637 ], [ - -122.31745806026167, - 47.665976034109015 + -122.31743168285718, + 47.67143589387714 ], [ - -122.317484763445, - 47.66597620138284 + -122.3174583860405, + 47.67143587229342 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4384739635, + "dst_i": 4384739624, "osm_way_id": 712316019, - "src_i": 5443485497, + "src_i": 4384739623, "type": "road" }, "type": "Feature" @@ -2849,41 +3341,33 @@ "coordinates": [ [ [ - -122.31751888477264, - 47.66308050629032 - ], - [ - -122.31753534595, - 47.66172838073816 - ], - [ - -122.31755197535742, - 47.66161584862443 + -122.31745716169955, + 47.67072190535956 ], [ - -122.31752540301969, - 47.661614067967626 + -122.31745734061087, + 47.67009442618544 ], [ - -122.31750865344794, - 47.66172741846403 + -122.31743063742755, + 47.67009442258816 ], [ - -122.31749218158932, - 47.66308035880158 + -122.31743045851623, + 47.67072190176227 ], [ - -122.31751888477264, - 47.66308050629032 + -122.31745716169955, + 47.67072190535956 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5674754355, + "dst_i": 4384739627, "osm_way_id": 712316019, - "src_i": 5452243878, + "src_i": 4384739624, "type": "road" }, "type": "Feature" @@ -2893,49 +3377,33 @@ "coordinates": [ [ [ - -122.31756987049572, - 47.66152369423917 + -122.31745738467113, + 47.67002335279818 ], [ - -122.31759119165245, - 47.66143343742253 + -122.31745801887173, + 47.66933694017929 ], [ - -122.31761052609234, - 47.66139695734052 + -122.31743131568841, + 47.66933692938743 ], [ - -122.31767966330428, - 47.661326805757916 - ], - [ - -122.31765741688226, - 47.661316857462204 - ], - [ - -122.31758647453512, - 47.66138884186227 - ], - [ - -122.31756520945507, - 47.66142896239817 - ], - [ - -122.31754349843187, - 47.66152086857066 + -122.3174306814878, + 47.67002334200632 ], [ - -122.31756987049572, - 47.66152369423917 + -122.31745738467113, + 47.67002335279818 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5674754357, + "dst_i": 4384739630, "osm_way_id": 712316019, - "src_i": 5674754355, + "src_i": 4384739627, "type": "road" }, "type": "Feature" @@ -2945,49 +3413,33 @@ "coordinates": [ [ [ - -122.3177160090071, - 47.66128879682916 - ], - [ - -122.31778776046069, - 47.66121143898245 - ], - [ - -122.31779797976895, - 47.661183283920636 - ], - [ - -122.31781011369546, - 47.66100457072922 - ], - [ - -122.31778343721531, - 47.66100374874926 + -122.31745820846433, + 47.66926607093803 ], [ - -122.31777142078282, - 47.6611807154581 + -122.31746109507846, + 47.66861219487586 ], [ - -122.31776283837969, - 47.66120436132133 + -122.31743439189513, + 47.668612140916565 ], [ - -122.31769336203732, - 47.661279267617324 + -122.31743150528101, + 47.66926601697873 ], [ - -122.3177160090071, - 47.66128879682916 + -122.31745820846433, + 47.66926607093803 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8428577667, + "dst_i": 4384739631, "osm_way_id": 712316019, - "src_i": 5674754357, + "src_i": 4384739630, "type": "road" }, "type": "Feature" @@ -2997,33 +3449,33 @@ "coordinates": [ [ [ - -122.31745733927572, - 47.67181988801913 + -122.31746158508186, + 47.66854135711086 ], [ - -122.31745833797477, - 47.67150705359928 + -122.31747471637226, + 47.66715075318407 ], [ - -122.31743163479145, - 47.67150701402913 + -122.31744801318894, + 47.6671506380709 ], [ - -122.3174306360924, - 47.671819848448976 + -122.31743488189854, + 47.668541241997694 ], [ - -122.31745733927572, - 47.67181988801913 + -122.31746158508186, + 47.66854135711086 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4384739623, + "dst_i": 4384739632, "osm_way_id": 712316019, - "src_i": 6697419470, + "src_i": 4384739631, "type": "road" }, "type": "Feature" @@ -3033,33 +3485,33 @@ "coordinates": [ [ [ - -122.31781208572554, - 47.660959335751286 + -122.31747535057286, + 47.667079787715394 ], [ - -122.31783160842286, - 47.65995154066059 + -122.31748426142515, + 47.66602113418871 ], [ - -122.31780490790986, - 47.65995130683697 + -122.31745755824183, + 47.66602103166604 ], [ - -122.31778538521253, - 47.660959101927666 + -122.31744864738954, + 47.66707968519273 ], [ - -122.31781208572554, - 47.660959335751286 + -122.31747535057286, + 47.667079787715394 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9451600301, + "dst_i": 5443485497, "osm_way_id": 712316019, - "src_i": 8428577667, + "src_i": 4384739632, "type": "road" }, "type": "Feature" @@ -3069,33 +3521,41 @@ "coordinates": [ [ [ - -122.31768882516647, - 47.661245748102075 + -122.31750139418756, + 47.66487352966036 ], [ - -122.31768713619013, - 47.66124575080004 + -122.31750284417042, + 47.664868487164064 ], [ - -122.3176875394082, - 47.661360446681584 + -122.31751813574834, + 47.66315154640269 ], [ - -122.31768922838454, - 47.66136044398362 + -122.31749143256502, + 47.66315143848409 ], [ - -122.31768882516647, - 47.661245748102075 + -122.31747615700901, + 47.66486671370184 + ], + [ + -122.3174751796725, + 47.66487010864094 + ], + [ + -122.31750139418756, + 47.66487352966036 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5674754357, - "osm_way_id": 754995508, - "src_i": 4694379084, + "dst_i": 5452243878, + "osm_way_id": 712316019, + "src_i": 4384739635, "type": "road" }, "type": "Feature" @@ -3105,77 +3565,57 @@ "coordinates": [ [ [ - -122.31768711482758, - 47.66124575080004 + -122.317484763445, + 47.66597620138284 ], [ - -122.31765625395862, - 47.66124560151265 + -122.31749465964474, + 47.66526302045607 ], [ - -122.31765503095282, - 47.6613602937969 + -122.31746814605401, + 47.665111244645 ], [ - -122.31768589182178, - 47.66136044308429 + -122.31746715803622, + 47.66502463277886 ], [ - -122.31768711482758, - 47.66124575080004 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 53079358, - "osm_way_id": 754995508, - "src_i": 5674754357, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - -122.31765625529377, - 47.66124559971401 + -122.31747406614976, + 47.66498789189359 ], [ - -122.31774371756528, - 47.66110765906667 + -122.31744757392157, + 47.66498563279769 ], [ - -122.3177642896977, - 47.661007944084595 + -122.3174404415013, + 47.66502356798207 ], [ - -122.31767995837446, - 47.66100004983946 + -122.31744145355195, + 47.665112356206514 ], [ - -122.31766095104857, - 47.661092179943026 + -122.3174679404395, + 47.66526397913291 ], [ - -122.31757795621964, - 47.661223075304825 + -122.31745806026167, + 47.665976034109015 ], [ - -122.31765625529377, - 47.66124559971401 + -122.317484763445, + 47.66597620138284 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4583297951, - "osm_way_id": 754995509, - "src_i": 53079358, + "dst_i": 4384739635, + "osm_way_id": 712316019, + "src_i": 5443485497, "type": "road" }, "type": "Feature" @@ -3185,33 +3625,41 @@ "coordinates": [ [ [ - -122.31738007494992, - 47.664433753296535 + -122.31751888477264, + 47.66308050629032 ], [ - -122.31703686961593, - 47.66443415709194 + -122.31753534595, + 47.66172838073816 ], [ - -122.31703696307707, - 47.664470129956555 + -122.31755197535742, + 47.66161584862443 ], [ - -122.31738016841106, - 47.66446972616115 + -122.31752540301969, + 47.661614067967626 ], [ - -122.31738007494992, - 47.664433753296535 + -122.31750865344794, + 47.66172741846403 + ], + [ + -122.31749218158932, + 47.66308035880158 + ], + [ + -122.31751888477264, + 47.66308050629032 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7152797297, - "osm_way_id": 765860708, - "src_i": 7152797295, + "dst_i": 5674754355, + "osm_way_id": 712316019, + "src_i": 5452243878, "type": "road" }, "type": "Feature" @@ -3221,33 +3669,49 @@ "coordinates": [ [ [ - -122.3182467467921, - 47.66123557047935 + -122.31756987049572, + 47.66152369423917 ], [ - -122.31824729954799, - 47.66117652731734 + -122.31759119165245, + 47.66143343742253 ], [ - -122.31819389318134, - 47.66117630068829 + -122.31761052609234, + 47.66139695734052 ], [ - -122.31819334042545, - 47.66123534385031 + -122.31767966330428, + 47.661326805757916 ], [ - -122.3182467467921, - 47.66123557047935 + -122.31765741688226, + 47.661316857462204 + ], + [ + -122.31758647453512, + 47.66138884186227 + ], + [ + -122.31756520945507, + 47.66142896239817 + ], + [ + -122.31754349843187, + 47.66152086857066 + ], + [ + -122.31756987049572, + 47.66152369423917 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8318893546, - "osm_way_id": 894958714, - "src_i": 8318893544, + "dst_i": 5674754357, + "osm_way_id": 712316019, + "src_i": 5674754355, "type": "road" }, "type": "Feature" @@ -3257,33 +3721,49 @@ "coordinates": [ [ [ - -122.31814587418194, - 47.66112469941264 + -122.3177160090071, + 47.66128879682916 ], [ - -122.31799399048066, - 47.66112279285082 + -122.31778776046069, + 47.66121143898245 ], [ - -122.31799299445193, - 47.6611587603195 + -122.31779797976895, + 47.661183283920636 ], [ - -122.31814487815319, - 47.66116066688133 + -122.31781011369546, + 47.66100457072922 ], [ - -122.31814587418194, - 47.66112469941264 + -122.31778343721531, + 47.66100374874926 + ], + [ + -122.31777142078282, + 47.6611807154581 + ], + [ + -122.31776283837969, + 47.66120436132133 + ], + [ + -122.31769336203732, + 47.661279267617324 + ], + [ + -122.3177160090071, + 47.66128879682916 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8318893551, - "osm_way_id": 894958718, - "src_i": 8318893546, + "dst_i": 8428577667, + "osm_way_id": 712316019, + "src_i": 5674754357, "type": "road" }, "type": "Feature" @@ -3293,41 +3773,33 @@ "coordinates": [ [ [ - -122.31793558794841, - 47.66111847250978 - ], - [ - -122.31794103673298, - 47.66096630459448 - ], - [ - -122.31783238815582, - 47.66096432698625 + -122.31745733927572, + 47.67181988801913 ], [ - -122.31783094618392, - 47.661000287260364 + -122.31745833797477, + 47.67150705359928 ], [ - -122.31788636196512, - 47.66100129539989 + -122.31743163479145, + 47.67150701402913 ], [ - -122.31788219760368, - 47.66111760556374 + -122.3174306360924, + 47.671819848448976 ], [ - -122.31793558794841, - 47.66111847250978 + -122.31745733927572, + 47.67181988801913 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8428577667, - "osm_way_id": 894958722, - "src_i": 8318893551, + "dst_i": 4384739623, + "osm_way_id": 712316019, + "src_i": 6697419470, "type": "road" }, "type": "Feature" @@ -3337,32 +3809,32 @@ "coordinates": [ [ [ - -122.31778459746863, - 47.66096355986491 + -122.31781208572554, + 47.660959335751286 ], [ - -122.31776992139908, - 47.660963397987025 + -122.31783160842286, + 47.65995154066059 ], [ - -122.31776904820498, - 47.66099936545571 + -122.31780490790986, + 47.65995130683697 ], [ - -122.31778372427453, - 47.6609995273336 + -122.31778538521253, + 47.660959101927666 ], [ - -122.31778459746863, - 47.66096355986491 + -122.31781208572554, + 47.660959335751286 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4583297951, - "osm_way_id": 894958722, + "dst_i": 9451600301, + "osm_way_id": 712316019, "src_i": 8428577667, "type": "road" }, @@ -3373,49 +3845,69 @@ "coordinates": [ [ [ - -122.31814517055305, - 47.661160670478615 + -122.31768882516647, + 47.661245748102075 ], [ - -122.31813445323043, - 47.661171481223754 + -122.31768713619013, + 47.66124575080004 ], [ - -122.31800228715973, - 47.661170259944996 + -122.3176875394082, + 47.661360446681584 ], [ - -122.31799299578708, - 47.66115875942018 + -122.31768922838454, + 47.66136044398362 ], [ - -122.31794608630494, - 47.66117595444947 + -122.31768882516647, + 47.661245748102075 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5674754357, + "osm_way_id": 754995508, + "src_i": 4694379084, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31768711482758, + 47.66124575080004 ], [ - -122.31797031276801, - 47.66120593963077 + -122.31765625395862, + 47.66124560151265 ], [ - -122.31816274792348, - 47.661207718488924 + -122.31765503095282, + 47.6613602937969 ], [ - -122.31818958595788, - 47.66118064621033 + -122.31768589182178, + 47.66136044308429 ], [ - -122.31814517055305, - 47.661160670478615 + -122.31768711482758, + 47.66124575080004 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8318893551, - "osm_way_id": 894958723, - "src_i": 8318893546, + "dst_i": 53079358, + "osm_way_id": 754995508, + "src_i": 5674754357, "type": "road" }, "type": "Feature" @@ -3425,49 +3917,41 @@ "coordinates": [ [ [ - -122.3181912201927, - 47.66110569854555 - ], - [ - -122.31816596966254, - 47.66107835826912 - ], - [ - -122.31797225408944, - 47.66107646339847 + -122.31765625529377, + 47.66124559971401 ], [ - -122.31794773255619, - 47.66110455910506 + -122.31774371756528, + 47.66110765906667 ], [ - -122.31799377151457, - 47.66112279015285 + -122.3177642896977, + 47.661007944084595 ], [ - -122.31800254618061, - 47.66111273663651 + -122.31767995837446, + 47.66100004983946 ], [ - -122.3181360300534, - 47.661114041552175 + -122.31766095104857, + 47.661092179943026 ], [ - -122.31814587284677, - 47.66112469941264 + -122.31757795621964, + 47.661223075304825 ], [ - -122.3181912201927, - 47.66110569854555 + -122.31765625529377, + 47.66124559971401 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8318893551, - "osm_way_id": 894958724, - "src_i": 8318893546, + "dst_i": 4583297951, + "osm_way_id": 754995509, + "src_i": 53079358, "type": "road" }, "type": "Feature" @@ -3477,34 +3961,1227 @@ "coordinates": [ [ [ - -122.31749218292448, - 47.66308035880158 + -122.31738007494992, + 47.664433753296535 ], [ - -122.31747467097685, - 47.66308007191798 + -122.31703686961593, + 47.66443415709194 + ], + [ + -122.31703696307707, + 47.664470129956555 + ], + [ + -122.31738016841106, + 47.66446972616115 + ], + [ + -122.31738007494992, + 47.664433753296535 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7152797297, + "osm_way_id": 765860708, + "src_i": 7152797295, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31858581313267, + 47.66480716062447 + ], + [ + -122.31859596568297, + 47.66455964123558 + ], + [ + -122.31855129926824, + 47.66449524351266 + ], + [ + -122.3185597294632, + 47.66414182810424 + ], + [ + -122.31862594401174, + 47.6640960058693 + ], + [ + -122.31951752324815, + 47.6640976327421 + ], + [ + -122.31951759534675, + 47.66407964630979 + ], + [ + -122.31861469930124, + 47.66407799965191 + ], + [ + -122.31853319985058, + 47.6641343997077 + ], + [ + -122.31852449995344, + 47.66449909980375 + ], + [ + -122.31856909961023, + 47.664563400399935 + ], + [ + -122.31855912063062, + 47.664806664198935 + ], + [ + -122.31858581313267, + 47.66480716062447 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 752191853, + "osm_way_id": 835402874, + "src_i": 7797741149, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3182467467921, + 47.66123557047935 + ], + [ + -122.31824729954799, + 47.66117652731734 + ], + [ + -122.31819389318134, + 47.66117630068829 + ], + [ + -122.31819334042545, + 47.66123534385031 + ], + [ + -122.3182467467921, + 47.66123557047935 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8318893546, + "osm_way_id": 894958714, + "src_i": 8318893544, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31814587418194, + 47.66112469941264 + ], + [ + -122.31799399048066, + 47.66112279285082 + ], + [ + -122.31799299445193, + 47.6611587603195 + ], + [ + -122.31814487815319, + 47.66116066688133 + ], + [ + -122.31814587418194, + 47.66112469941264 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8318893551, + "osm_way_id": 894958718, + "src_i": 8318893546, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31793558794841, + 47.66111847250978 + ], + [ + -122.31794103673298, + 47.66096630459448 + ], + [ + -122.31783238815582, + 47.66096432698625 + ], + [ + -122.31783094618392, + 47.661000287260364 + ], + [ + -122.31788636196512, + 47.66100129539989 + ], + [ + -122.31788219760368, + 47.66111760556374 + ], + [ + -122.31793558794841, + 47.66111847250978 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8428577667, + "osm_way_id": 894958722, + "src_i": 8318893551, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31778459746863, + 47.66096355986491 + ], + [ + -122.31776992139908, + 47.660963397987025 + ], + [ + -122.31776904820498, + 47.66099936545571 + ], + [ + -122.31778372427453, + 47.6609995273336 + ], + [ + -122.31778459746863, + 47.66096355986491 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4583297951, + "osm_way_id": 894958722, + "src_i": 8428577667, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31814517055305, + 47.661160670478615 + ], + [ + -122.31813445323043, + 47.661171481223754 + ], + [ + -122.31800228715973, + 47.661170259944996 + ], + [ + -122.31799299578708, + 47.66115875942018 + ], + [ + -122.31794608630494, + 47.66117595444947 + ], + [ + -122.31797031276801, + 47.66120593963077 + ], + [ + -122.31816274792348, + 47.661207718488924 + ], + [ + -122.31818958595788, + 47.66118064621033 + ], + [ + -122.31814517055305, + 47.661160670478615 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8318893551, + "osm_way_id": 894958723, + "src_i": 8318893546, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3181912201927, + 47.66110569854555 + ], + [ + -122.31816596966254, + 47.66107835826912 + ], + [ + -122.31797225408944, + 47.66107646339847 + ], + [ + -122.31794773255619, + 47.66110455910506 + ], + [ + -122.31799377151457, + 47.66112279015285 + ], + [ + -122.31800254618061, + 47.66111273663651 + ], + [ + -122.3181360300534, + 47.661114041552175 + ], + [ + -122.31814587284677, + 47.66112469941264 + ], + [ + -122.3181912201927, + 47.66110569854555 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8318893551, + "osm_way_id": 894958724, + "src_i": 8318893546, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31749218292448, + 47.66308035880158 + ], + [ + -122.31747467097685, + 47.66308007191798 + ], + [ + -122.31747211281188, + 47.66315088809927 + ], + [ + -122.31748962475952, + 47.66315117498286 + ], + [ + -122.31749218292448, + 47.66308035880158 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 53222750, + "osm_way_id": 990596236, + "src_i": 5452243878, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31832236753695, + 47.66308836636124 + ], + [ + -122.31753921924674, + 47.66308090289115 + ], + [ + -122.31753773187943, + 47.66315173346158 + ], + [ + -122.31832088016965, + 47.663159196931666 + ], + [ + -122.31832236753695, + 47.66308836636124 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5452243878, + "osm_way_id": 990596236, + "src_i": 9153364295, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31835690276395, + 47.66318456229783 + ], + [ + -122.31835292933027, + 47.663969496499014 + ], + [ + -122.31845809714747, + 47.663969737517206 + ], + [ + -122.31846207058115, + 47.66318480331602 + ], + [ + -122.31835690276395, + 47.66318456229783 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9153364274, + "osm_way_id": 990596237, + "src_i": 9153364295, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31937841434979, + 47.66309568683919 + ], + [ + -122.31850160063858, + 47.66308980707447 + ], + [ + -122.3185005538738, + 47.663160641242186 + ], + [ + -122.319377367585, + 47.66316652100691 + ], + [ + -122.31937841434979, + 47.66309568683919 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9153364295, + "osm_way_id": 990596239, + "src_i": 9153364304, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31708857498981, + 47.661231009120115 + ], + [ + -122.31709244962171, + 47.661138654186146 + ], + [ + -122.31672492035803, + 47.66113268628791 + ], + [ + -122.31672363326459, + 47.661168648360665 + ], + [ + -122.31703755054711, + 47.66117374571558 + ], + [ + -122.3170351899857, + 47.661229992886696 + ], + [ + -122.31708857498981, + 47.661231009120115 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 9729815850, + "osm_way_id": 1058899922, + "src_i": 9729815848, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31955211722216, + 47.663987277885994 + ], + [ + -122.31955188223414, + 47.66404912243484 + ], + [ + -122.31941836631752, + 47.664048892208505 + ], + [ + -122.31941860130553, + 47.66398704765966 + ], + [ + -122.31955211722216, + 47.663987277885994 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53070289", + "osm_node_id": 53070289, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3187940165179, + 47.661237312465325 + ], + [ + -122.31879238228308, + 47.66137448778996 + ], + [ + -122.31865887037193, + 47.66137376653403 + ], + [ + -122.31866050460675, + 47.66123659120939 + ], + [ + -122.3187940165179, + 47.661237312465325 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53079356", + "osm_node_id": 53079356, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31847615784551, + 47.66123559566036 + ], + [ + -122.31847452628101, + 47.661372770985 + ], + [ + -122.31836935846381, + 47.66137256953696 + ], + [ + -122.31836891118549, + 47.661235389715706 + ], + [ + -122.31847615784551, + 47.66123559566036 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53079357", + "osm_node_id": 53079357, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31757136720915, + 47.66135988910218 + ], + [ + -122.31756028538807, + 47.66138271658274 + ], + [ + -122.31750435022995, + 47.661370399473896 + ], + [ + -122.31750649583074, + 47.661233780829335 + ], + [ + -122.31757795621964, + 47.661223075304825 + ], + [ + -122.31765625529377, + 47.66124559971401 + ], + [ + -122.31765502961765, + 47.6613602937969 + ], + [ + -122.31757136720915, + 47.66135988910218 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/53079358", + "osm_node_id": 53079358, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31744396498635, + 47.66647419443212 + ], + [ + -122.31735883256759, + 47.66647342461282 + ], + [ + -122.31735870572747, + 47.666402587747136 + ], + [ + -122.31744512924514, + 47.66640307967606 + ], + [ + -122.31744396498635, + 47.66647419443212 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53097833", + "osm_node_id": 53097833, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3201129121103, + 47.67004438343415 + ], + [ + -122.32011168910451, + 47.67011521580323 + ], + [ + -122.319978182534, + 47.67011416989219 + ], + [ + -122.3199794055398, + 47.67004333752312 + ], + [ + -122.3201129121103, + 47.67004438343415 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53102768", + "osm_node_id": 53102768, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31742027659242, + 47.67002323588637 + ], + [ + -122.3174186850827, + 47.67009406465816 + ], + [ + -122.31733354331783, + 47.670094597056554 + ], + [ + -122.31733333236268, + 47.670022901338726 + ], + [ + -122.31741847279238, + 47.67002321789994 + ], + [ + -122.31742027659242, + 47.67002323588637 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53102770", + "osm_node_id": 53102770, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31847639817417, + 47.66708940596007 + ], + [ + -122.31847632474042, + 47.66716024372508 + ], + [ + -122.31837056277737, + 47.66715989748625 + ], + [ + -122.31837123436244, + 47.667088855575244 + ], + [ + -122.31847639817417, + 47.66708940596007 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53108152", + "osm_node_id": 53108152, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31743249062848, + 47.667079568280926 + ], + [ + -122.31743136375414, + 47.66715040244864 + ], + [ + -122.31734622465959, + 47.66715059760143 + ], + [ + -122.31734675471778, + 47.66707879486433 + ], + [ + -122.31743249062848, + 47.667079568280926 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53108154", + "osm_node_id": 53108154, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31776254597983, + 47.657498311802854 + ], + [ + -122.31784767839859, + 47.657499063635726 + ], + [ + -122.31784592666976, + 47.65758898770337 + ], + [ + -122.31776079425101, + 47.6575882358705 + ], + [ + -122.31776254597983, + 47.657498311802854 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/53149329", + "osm_node_id": 53149329, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31845170707571, + 47.66488563273066 + ], + [ + -122.31849359902971, + 47.66488587284953 + ], + [ + -122.31849214637653, + 47.66500056513379 + ], + [ + -122.31838933645041, + 47.665015470490246 + ], + [ + -122.3183842948894, + 47.66499969638911 + ], + [ + -122.31833912511965, + 47.66499911093074 + ], + [ + -122.31834240160025, + 47.66488443663291 + ], + [ + -122.31844435168387, + 47.66486703386033 + ], + [ + -122.31845170707571, + 47.66488563273066 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/53162654", + "osm_node_id": 53162654, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31746405646149, + 47.664873043127365 + ], + [ + -122.31746070521197, + 47.66498771742519 + ], + [ + -122.31747931866592, + 47.66498845756688 + ], + [ + -122.31736162705573, + 47.66498777947838 + ], + [ + -122.31735797806573, + 47.66487310877785 + ], + [ + -122.31737891736692, + 47.66487280570646 + ], + [ + -122.31746405646149, + 47.664873043127365 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/53162656", + "osm_node_id": 53162656, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31632902296754, + 47.66499094509047 + ], + [ + -122.31633057709281, + 47.664876254604856 + ], + [ + -122.31646408766879, + 47.66487707568549 + ], + [ + -122.31646253354351, + 47.664991766171106 + ], + [ + -122.31632902296754, + 47.66499094509047 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/53162658", + "osm_node_id": 53162658, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3200997153971, + 47.67072588126042 + ], + [ + -122.32009948574972, + 47.67079671902542 + ], + [ + -122.3199659698331, + 47.670796522973305 + ], + [ + -122.31996619948048, + 47.6707256852083 + ], + [ + -122.3200997153971, + 47.67072588126042 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53176049", + "osm_node_id": 53176049, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31742847179939, + 47.670721890071086 + ], + [ + -122.31742756389116, + 47.67079272603745 + ], + [ + -122.31734241945597, + 47.670792484119936 + ], + [ + -122.31734264242755, + 47.67075704275439 + ], + [ + -122.31734216711088, + 47.67072241527491 + ], + [ + -122.31742847179939, + 47.670721890071086 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53190558", + "osm_node_id": 53190558, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31747467097685, + 47.66308007191798 + ], + [ + -122.31747211281188, + 47.66315088809927 + ], + [ + -122.31738697371733, + 47.663150709134264 + ], + [ + -122.31738594564479, + 47.66314985657737 + ], + [ + -122.31738669867455, + 47.663079020611015 + ], + [ + -122.31747300870369, + 47.66307982460454 + ], + [ + -122.31747467097685, + 47.66308007191798 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/53222750", + "osm_node_id": 53222750, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31635523614744, + 47.663145018227084 + ], + [ + -122.31635596514435, + 47.66307418226072 ], [ - -122.31747211281188, - 47.66315088809927 + -122.31648947839065, + 47.66307480638992 ], [ - -122.31748962475952, - 47.66315117498286 + -122.31648874939376, + 47.663145642356284 ], [ - -122.31749218292448, - 47.66308035880158 + -122.31635523614744, + 47.663145018227084 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 53222750, - "osm_way_id": 990596236, - "src_i": 5452243878, - "type": "road" + "complexity": "Terminus", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/53222751", + "osm_node_id": 53222751, + "type": "intersection" }, "type": "Feature" }, @@ -3513,34 +5190,39 @@ "coordinates": [ [ [ - -122.31832236753695, - 47.66308836636124 + -122.31743916775946, + 47.66854120782347 ], [ - -122.31753921924674, - 47.66308090289115 + -122.31743790736921, + 47.66861204019255 ], [ - -122.31753773187943, - 47.66315173346158 + -122.31735277094498, + 47.668611405271484 ], [ - -122.31832088016965, - 47.663159196931666 + -122.31735312743247, + 47.66854056750648 ], [ - -122.31832236753695, - 47.66308836636124 + -122.31743840404842, + 47.668540373253016 + ], + [ + -122.31743916775946, + 47.66854120782347 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5452243878, - "osm_way_id": 990596236, - "src_i": 9153364295, - "type": "road" + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53231060", + "osm_node_id": 53231060, + "type": "intersection" }, "type": "Feature" }, @@ -3549,34 +5231,43 @@ "coordinates": [ [ [ - -122.31835690276395, - 47.66318456229783 + -122.31742348364475, + 47.66941229523677 ], [ - -122.31835292933027, - 47.663969496499014 + -122.31742318857457, + 47.669448214142086 ], [ - -122.31845809714747, - 47.663969737517206 + -122.31733804814485, + 47.66944789758088 ], [ - -122.31846207058115, - 47.66318480331602 + -122.31733626837769, + 47.66937707150706 ], [ - -122.31835690276395, - 47.66318456229783 + -122.31733875444405, + 47.66937704362809 + ], + [ + -122.31742389220345, + 47.669377497785504 + ], + [ + -122.31742348364475, + 47.66941229523677 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9153364274, - "osm_way_id": 990596237, - "src_i": 9153364295, - "type": "road" + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53231061", + "osm_node_id": 53231061, + "type": "intersection" }, "type": "Feature" }, @@ -3585,34 +5276,39 @@ "coordinates": [ [ [ - -122.31937841434979, - 47.66309568683919 + -122.31742441425068, + 47.67143579585108 ], [ - -122.31850160063858, - 47.66308980707447 + -122.31742231538047, + 47.67150661922694 ], [ - -122.3185005538738, - 47.663160641242186 + -122.31733718563203, + 47.67150557151726 ], [ - -122.319377367585, - 47.66316652100691 + -122.3173381442763, + 47.67147026145267 ], [ - -122.31937841434979, - 47.66309568683919 + -122.31733836324241, + 47.671435542242385 + ], + [ + -122.31742441425068, + 47.67143579585108 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9153364295, - "osm_way_id": 990596239, - "src_i": 9153364304, - "type": "road" + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53231062", + "osm_node_id": 53231062, + "type": "intersection" }, "type": "Feature" }, @@ -3621,42 +5317,39 @@ "coordinates": [ [ [ - -122.31708857498981, - 47.661231009120115 - ], - [ - -122.31709244962171, - 47.661138654186146 + -122.31846573692822, + 47.66854711097056 ], [ - -122.31672492035803, - 47.66113268628791 + -122.31846475959172, + 47.66861794513827 ], [ - -122.31672363326459, - 47.661168648360665 + -122.31841241067113, + 47.66861761688588 ], [ - -122.31703755054711, - 47.66117374571558 + -122.31835967989501, + 47.66861731741179 ], [ - -122.3170351899857, - 47.661229992886696 + -122.31836056911102, + 47.668546481445425 ], [ - -122.31708857498981, - 47.661231009120115 + -122.31846573692822, + 47.66854711097056 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 9729815850, - "osm_way_id": 1058899922, - "src_i": 9729815848, - "type": "road" + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/53242039", + "osm_node_id": 53242039, + "type": "intersection" }, "type": "Feature" }, @@ -3665,24 +5358,24 @@ "coordinates": [ [ [ - -122.31955211722216, - 47.663987277885994 + -122.32127875707232, + 47.66855738212273 ], [ - -122.31955188223414, - 47.66404912243484 + -122.32127964361801, + 47.66862821808909 ], [ - -122.31941836631752, - 47.664048892208505 + -122.32114613170687, + 47.66862897711653 ], [ - -122.31941860130553, - 47.66398704765966 + -122.32114524516118, + 47.66855814115017 ], [ - -122.31955211722216, - 47.663987277885994 + -122.32127875707232, + 47.66855738212273 ] ] ], @@ -3691,8 +5384,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53070289", - "osm_node_id": 53070289, + "osm_link": "https://www.openstreetmap.org/node/53252992", + "osm_node_id": 53252992, "type": "intersection" }, "type": "Feature" @@ -3702,24 +5395,24 @@ "coordinates": [ [ [ - -122.3187940165179, - 47.661237312465325 + -122.31620524703703, + 47.671348238797925 ], [ - -122.31879238228308, - 47.66137448778996 + -122.31622235309626, + 47.67131416170328 ], [ - -122.31865887037193, - 47.66137376653403 + -122.31634883405924, + 47.67134296787394 ], [ - -122.31866050460675, - 47.66123659120939 + -122.31633172800001, + 47.671377044968594 ], [ - -122.3187940165179, - 47.661237312465325 + -122.31620524703703, + 47.671348238797925 ] ] ], @@ -3728,8 +5421,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53079356", - "osm_node_id": 53079356, + "osm_link": "https://www.openstreetmap.org/node/59596700", + "osm_node_id": 59596700, "type": "intersection" }, "type": "Feature" @@ -3739,24 +5432,28 @@ "coordinates": [ [ [ - -122.31847615784551, - 47.66123559566036 + -122.31751978734025, + 47.66171803853958 ], [ - -122.31847452628101, - 47.661372770985 + -122.31740237344316, + 47.661712552677734 ], [ - -122.31836935846381, - 47.66137256953696 + -122.31743800350067, + 47.66160805150602 ], [ - -122.31836891118549, - 47.661235389715706 + -122.31749669709762, + 47.66161092034198 ], [ - -122.31847615784551, - 47.66123559566036 + -122.3175435598492, + 47.66162698582331 + ], + [ + -122.31751978734025, + 47.66171803853958 ] ] ], @@ -3765,8 +5462,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53079357", - "osm_node_id": 53079357, + "osm_link": "https://www.openstreetmap.org/node/59711142", + "osm_node_id": 59711142, "type": "intersection" }, "type": "Feature" @@ -3776,36 +5473,28 @@ "coordinates": [ [ [ - -122.31757136720915, - 47.66135988910218 - ], - [ - -122.31756028538807, - 47.66138271658274 - ], - [ - -122.31750435022995, - 47.661370399473896 + -122.31742437019042, + 47.669336876327456 ], [ - -122.31750649583074, - 47.661233780829335 + -122.31733923243104, + 47.66933642127072 ], [ - -122.31757795621964, - 47.661223075304825 + -122.31734033126703, + 47.66926529932009 ], [ - -122.31765625529377, - 47.66124559971401 + -122.31742546368578, + 47.66926603496517 ], [ - -122.31765502961765, - 47.6613602937969 + -122.31742589627736, + 47.66933687183085 ], [ - -122.31757136720915, - 47.66135988910218 + -122.31742437019042, + 47.669336876327456 ] ] ], @@ -3813,9 +5502,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/53079358", - "osm_node_id": 53079358, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/59713117", + "osm_node_id": 59713117, "type": "intersection" }, "type": "Feature" @@ -3825,24 +5514,36 @@ "coordinates": [ [ [ - -122.31744396498635, - 47.66647419443212 + -122.317419283234, + 47.67161831227361 ], [ - -122.31735883256759, - 47.66647342461282 + -122.31741914170713, + 47.67164053451072 ], [ - -122.31735870572747, - 47.666402587747136 + -122.31733400127742, + 47.671640289895244 ], [ - -122.31744512924514, - 47.66640307967606 + -122.31733407738149, + 47.671628372085195 ], [ - -122.31744396498635, - 47.66647419443212 + -122.31731475762835, + 47.67162307238292 + ], + [ + -122.31733490250986, + 47.67158975611435 + ], + [ + -122.31742002958798, + 47.67159080382404 + ], + [ + -122.317419283234, + 47.67161831227361 ] ] ], @@ -3851,8 +5552,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53097833", - "osm_node_id": 53097833, + "osm_link": "https://www.openstreetmap.org/node/59713137", + "osm_node_id": 59713137, "type": "intersection" }, "type": "Feature" @@ -3862,24 +5563,24 @@ "coordinates": [ [ [ - -122.3201129121103, - 47.67004438343415 + -122.31687484938628, + 47.66136681657658 ], [ - -122.32011168910451, - 47.67011521580323 + -122.3168759896122, + 47.661230193435415 ], [ - -122.319978182534, - 47.67011416989219 + -122.31692756948111, + 47.6612303885882 ], [ - -122.3199794055398, - 47.67004333752312 + -122.31692642925519, + 47.661367011729375 ], [ - -122.3201129121103, - 47.67004438343415 + -122.31687484938628, + 47.66136681657658 ] ] ], @@ -3888,8 +5589,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53102768", - "osm_node_id": 53102768, + "osm_link": "https://www.openstreetmap.org/node/59713144", + "osm_node_id": 59713144, "type": "intersection" }, "type": "Feature" @@ -3899,28 +5600,36 @@ "coordinates": [ [ [ - -122.31742027659242, - 47.67002323588637 + -122.31718404154051, + 47.661231486659894 ], [ - -122.3174186850827, - 47.67009406465816 + -122.3171900484216, + 47.66123152892801 ], [ - -122.31733354331783, - 47.670094597056554 + -122.31718790682629, + 47.661368146673254 ], [ - -122.31733333236268, - 47.670022901338726 + -122.31715481223604, + 47.66136791105099 ], [ - -122.31741847279238, - 47.67002321789994 + -122.31712159748146, + 47.661367773454785 ], [ - -122.31742027659242, - 47.67002323588637 + -122.31712284452013, + 47.66123115031361 + ], + [ + -122.31713063517385, + 47.66123118268919 + ], + [ + -122.31718404154051, + 47.661231486659894 ] ] ], @@ -3929,8 +5638,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53102770", - "osm_node_id": 53102770, + "osm_link": "https://www.openstreetmap.org/node/59713145", + "osm_node_id": 59713145, "type": "intersection" }, "type": "Feature" @@ -3940,34 +5649,34 @@ "coordinates": [ [ [ - -122.31847639817417, - 47.66708940596007 + -122.31725391175483, + 47.65688831004502 ], [ - -122.31847632474042, - 47.66716024372508 + -122.31730728874798, + 47.65688948995498 ], [ - -122.31837056277737, - 47.66715989748625 + -122.31730291076107, + 47.65697937355315 ], [ - -122.31837123436244, - 47.667088855575244 + -122.31724953376794, + 47.65697819364319 ], [ - -122.31847639817417, - 47.66708940596007 + -122.31725391175483, + 47.65688831004502 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53108152", - "osm_node_id": 53108152, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/59713148", + "osm_node_id": 59713148, "type": "intersection" }, "type": "Feature" @@ -3977,34 +5686,34 @@ "coordinates": [ [ [ - -122.31743249062848, - 47.667079568280926 + -122.31963820027424, + 47.66410309881888 ], [ - -122.31743136375414, - 47.66715040244864 + -122.31961217802208, + 47.66409780541185 ], [ - -122.31734622465959, - 47.66715059760143 + -122.31951752324815, + 47.6640976327421 ], [ - -122.31734675471778, - 47.66707879486433 + -122.31951759534675, + 47.66407964630979 ], [ - -122.31743249062848, - 47.667079568280926 + -122.31963820027424, + 47.66410309881888 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53108154", - "osm_node_id": 53108154, + "osm_link": "https://www.openstreetmap.org/node/752191853", + "osm_node_id": 752191853, "type": "intersection" }, "type": "Feature" @@ -4014,24 +5723,24 @@ "coordinates": [ [ [ - -122.31776254597983, - 47.657498311802854 + -122.3195130718275, + 47.66481561334833 ], [ - -122.31784767839859, - 47.657499063635726 + -122.3195129997289, + 47.664833599780636 ], [ - -122.31784592666976, - 47.65758898770337 + -122.31937948381228, + 47.66483335876244 ], [ - -122.31776079425101, - 47.6575882358705 + -122.31937955591087, + 47.66481537233014 ], [ - -122.31776254597983, - 47.657498311802854 + -122.3195130718275, + 47.66481561334833 ] ] ], @@ -4039,9 +5748,9 @@ }, "properties": { "complexity": "Terminus", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/53149329", - "osm_node_id": 53149329, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/752191859", + "osm_node_id": 752191859, "type": "intersection" }, "type": "Feature" @@ -4051,40 +5760,32 @@ "coordinates": [ [ [ - -122.31845170707571, - 47.66488563273066 - ], - [ - -122.31849359902971, - 47.66488587284953 - ], - [ - -122.31849214637653, - 47.66500056513379 + -122.31845832145422, + 47.66255879093547 ], [ - -122.31838933645041, - 47.665015470490246 + -122.31845832946517, + 47.66256293411015 ], [ - -122.3183842948894, - 47.66499969638911 + -122.31835316164796, + 47.662563031236886 ], [ - -122.31833912511965, - 47.66499911093074 + -122.31835343135012, + 47.66251768564239 ], [ - -122.31834240160025, - 47.66488443663291 + -122.31845859382669, + 47.662518349341745 ], [ - -122.31844435168387, - 47.66486703386033 + -122.31845853240937, + 47.662522818070855 ], [ - -122.31845170707571, - 47.66488563273066 + -122.31845832145422, + 47.66255879093547 ] ] ], @@ -4092,9 +5793,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/53162654", - "osm_node_id": 53162654, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1099460970", + "osm_node_id": 1099460970, "type": "intersection" }, "type": "Feature" @@ -4104,42 +5805,71 @@ "coordinates": [ [ [ - -122.31746405646149, - 47.664873043127365 + -122.31745949822809, + 47.665267283240524 ], [ - -122.31746070521197, - 47.66498771742519 + -122.31737436046869, + 47.66526679580821 ], [ - -122.31747931866592, - 47.66498845756688 + -122.31735865365627, + 47.665221736197985 ], [ - -122.31736162705573, - 47.66498777947838 + -122.31747634526644, + 47.66522241428649 + ], + [ + -122.31745949822809, + 47.665267283240524 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3003528164", + "osm_node_id": 3003528164, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31790095658997, + 47.66524927432518 + ], + [ + -122.31790048661394, + 47.665267257160195 ], [ - -122.31735797806573, - 47.66487310877785 + -122.3178013296833, + 47.66526608264616 ], [ - -122.31737891736692, - 47.66487280570646 + -122.31780179965932, + 47.665248099811144 ], [ - -122.31746405646149, - 47.664873043127365 + -122.31790095658997, + 47.66524927432518 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/53162656", - "osm_node_id": 53162656, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3003528165", + "osm_node_id": 3003528165, "type": "intersection" }, "type": "Feature" @@ -4149,24 +5879,24 @@ "coordinates": [ [ [ - -122.31632902296754, - 47.66499094509047 + -122.32016102590602, + 47.66489545422203 ], [ - -122.31633057709281, - 47.664876254604856 + -122.32015957325284, + 47.66501014650628 ], [ - -122.31646408766879, - 47.66487707568549 + -122.32002606267686, + 47.66500937938494 ], [ - -122.31646253354351, - 47.664991766171106 + -122.32002751533003, + 47.664894687100684 ], [ - -122.31632902296754, - 47.66499094509047 + -122.32016102590602, + 47.66489545422203 ] ] ], @@ -4174,9 +5904,9 @@ }, "properties": { "complexity": "Terminus", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/53162658", - "osm_node_id": 53162658, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3318126091", + "osm_node_id": 3318126091, "type": "intersection" }, "type": "Feature" @@ -4186,24 +5916,24 @@ "coordinates": [ [ [ - -122.3200997153971, - 47.67072588126042 + -122.3189555974802, + 47.66148513582491 ], [ - -122.32009948574972, - 47.67079671902542 + -122.31900900384684, + 47.66148526352858 ], [ - -122.3199659698331, - 47.670796522973305 + -122.31900852853018, + 47.6615751947908 ], [ - -122.31996619948048, - 47.6707256852083 + -122.31895512216353, + 47.661575067087135 ], [ - -122.3200997153971, - 47.67072588126042 + -122.3189555974802, + 47.66148513582491 ] ] ], @@ -4212,8 +5942,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53176049", - "osm_node_id": 53176049, + "osm_link": "https://www.openstreetmap.org/node/3570362036", + "osm_node_id": 3570362036, "type": "intersection" }, "type": "Feature" @@ -4223,38 +5953,34 @@ "coordinates": [ [ [ - -122.31742847179939, - 47.670721890071086 - ], - [ - -122.31742756389116, - 47.67079272603745 + -122.31825733326913, + 47.66514529925661 ], [ - -122.31734241945597, - 47.670792484119936 + -122.31825707691857, + 47.66516328568892 ], [ - -122.31734264242755, - 47.67075704275439 + -122.31819730050753, + 47.665162899879945 ], [ - -122.31734216711088, - 47.67072241527491 + -122.3181975568581, + 47.665144913447634 ], [ - -122.31742847179939, - 47.670721890071086 + -122.31825733326913, + 47.66514529925661 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53190558", - "osm_node_id": 53190558, + "osm_link": "https://www.openstreetmap.org/node/3976726723", + "osm_node_id": 3976726723, "type": "intersection" }, "type": "Feature" @@ -4264,42 +5990,63 @@ "coordinates": [ [ [ - -122.31747467097685, - 47.66308007191798 + -122.31805153450557, + 47.66514401772331 ], [ - -122.31747211281188, - 47.66315088809927 + -122.31805116466649, + 47.66516200235697 ], [ - -122.31738697371733, - 47.663150709134264 + -122.31805153450557, + 47.66514401772331 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3976726724", + "osm_node_id": 3976726724, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31784805891895, + 47.66516668242666 ], [ - -122.31738594564479, - 47.66314985657737 + -122.31784700414322, + 47.6651487103835 ], [ - -122.31738669867455, - 47.663079020611015 + -122.31802294474234, + 47.665144027615845 ], [ - -122.31747300870369, - 47.66307982460454 + -122.31802399951809, + 47.665161999659006 ], [ - -122.31747467097685, - 47.66308007191798 + -122.31784805891895, + 47.66516668242666 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/53222750", - "osm_node_id": 53222750, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3976726725", + "osm_node_id": 3976726725, "type": "intersection" }, "type": "Feature" @@ -4309,24 +6056,24 @@ "coordinates": [ [ [ - -122.31635523614744, - 47.663145018227084 + -122.31741748343944, + 47.67190215076593 ], [ - -122.31635596514435, - 47.66307418226072 + -122.31733234300974, + 47.67190190615045 ], [ - -122.31648947839065, - 47.66307480638992 + -122.3173329131227, + 47.671811974888236 ], [ - -122.31648874939376, - 47.663145642356284 + -122.31741805355242, + 47.671812219503714 ], [ - -122.31635523614744, - 47.663145018227084 + -122.31741748343944, + 47.67190215076593 ] ] ], @@ -4334,9 +6081,9 @@ }, "properties": { "complexity": "Terminus", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/53222751", - "osm_node_id": 53222751, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4214025137", + "osm_node_id": 4214025137, "type": "intersection" }, "type": "Feature" @@ -4346,38 +6093,34 @@ "coordinates": [ [ [ - -122.31743916775946, - 47.66854120782347 - ], - [ - -122.31743790736921, - 47.66861204019255 + -122.31750030870316, + 47.66176588065088 ], [ - -122.31735277094498, - 47.668611405271484 + -122.31741517628441, + 47.661765073060074 ], [ - -122.31735312743247, - 47.66854056750648 + -122.31740179264892, + 47.66171819592087 ], [ - -122.31743840404842, - 47.668540373253016 + -122.317519206546, + 47.66172367998408 ], [ - -122.31743916775946, - 47.66854120782347 + -122.31750030870316, + 47.66176588065088 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53231060", - "osm_node_id": 53231060, + "osm_link": "https://www.openstreetmap.org/node/4272380198", + "osm_node_id": 4272380198, "type": "intersection" }, "type": "Feature" @@ -4387,32 +6130,36 @@ "coordinates": [ [ [ - -122.31742348364475, - 47.66941229523677 + -122.31745838737567, + 47.671436207740385 ], [ - -122.31742318857457, - 47.669448214142086 + -122.31747924523215, + 47.67143641368503 ], [ - -122.31733804814485, - 47.66944789758088 + -122.31747770445848, + 47.67150724425546 ], [ - -122.31733626837769, - 47.66937707150706 + -122.31745833797477, + 47.67150705359928 ], [ - -122.31733875444405, - 47.66937704362809 + -122.31743163479145, + 47.67150701402913 ], [ - -122.31742389220345, - 47.669377497785504 + -122.31742957731117, + 47.671506717252996 ], [ - -122.31742348364475, - 47.66941229523677 + -122.31743168419234, + 47.67143589387714 + ], + [ + -122.31745838737567, + 47.671436207740385 ] ] ], @@ -4421,8 +6168,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53231061", - "osm_node_id": 53231061, + "osm_link": "https://www.openstreetmap.org/node/4384739623", + "osm_node_id": 4384739623, "type": "intersection" }, "type": "Feature" @@ -4432,28 +6179,32 @@ "coordinates": [ [ [ - -122.31742441425068, - 47.67143579585108 + -122.31745716169955, + 47.67072200068765 ], [ - -122.31742231538047, - 47.67150661922694 + -122.31747729322946, + 47.67072203036526 ], [ - -122.31733718563203, - 47.67150557151726 + -122.31747706358207, + 47.67079286813026 ], [ - -122.3173381442763, - 47.67147026145267 + -122.31745721510592, + 47.67079283845265 ], [ - -122.31733836324241, - 47.671435542242385 + -122.3174305119226, + 47.67079286003637 ], [ - -122.31742441425068, - 47.67143579585108 + -122.31743046519202, + 47.67072190266159 + ], + [ + -122.31745716169955, + 47.67072200068765 ] ] ], @@ -4462,8 +6213,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53231062", - "osm_node_id": 53231062, + "osm_link": "https://www.openstreetmap.org/node/4384739624", + "osm_node_id": 4384739624, "type": "intersection" }, "type": "Feature" @@ -4473,28 +6224,36 @@ "coordinates": [ [ [ - -122.31846573692822, - 47.66854711097056 + -122.31745738467113, + 47.670023583923836 ], [ - -122.31846475959172, - 47.66861794513827 + -122.31747798751222, + 47.67002374580173 + ], + [ + -122.31747676450642, + 47.6700945781708 + ], + [ + -122.31745734061087, + 47.67009442618544 ], [ - -122.31841241067113, - 47.66861761688588 + -122.31743063742755, + 47.67009442258816 ], [ - -122.31835967989501, - 47.66861731741179 + -122.31742909131324, + 47.67009417077811 ], [ - -122.31836056911102, - 47.668546481445425 + -122.31743068282296, + 47.67002334200632 ], [ - -122.31846573692822, - 47.66854711097056 + -122.31745738467113, + 47.670023583923836 ] ] ], @@ -4503,8 +6262,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53242039", - "osm_node_id": 53242039, + "osm_link": "https://www.openstreetmap.org/node/4384739627", + "osm_node_id": 4384739627, "type": "intersection" }, "type": "Feature" @@ -4514,34 +6273,42 @@ "coordinates": [ [ [ - -122.32127875707232, - 47.66855738212273 + -122.31745820846433, + 47.66926609701836 ], [ - -122.32127964361801, - 47.66862821808909 + -122.31747876591001, + 47.66926627868133 ], [ - -122.32114613170687, - 47.66862897711653 + -122.31747738802575, + 47.669337111050396 ], [ - -122.32114524516118, - 47.66855814115017 + -122.31745801887173, + 47.66933694017929 ], [ - -122.32127875707232, - 47.66855738212273 + -122.31743131568841, + 47.66933692938743 + ], + [ + -122.31743088042651, + 47.66926601877738 + ], + [ + -122.31745820846433, + 47.66926609701836 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/53252992", - "osm_node_id": 53252992, + "osm_link": "https://www.openstreetmap.org/node/4384739630", + "osm_node_id": 4384739630, "type": "intersection" }, "type": "Feature" @@ -4551,34 +6318,50 @@ "coordinates": [ [ [ - -122.31620524703703, - 47.671348238797925 + -122.31746158508186, + 47.66854135711086 ], [ - -122.31622235309626, - 47.67131416170328 + -122.3174817219524, + 47.66854147222403 ], [ - -122.31634883405924, - 47.67134296787394 + -122.31748083273641, + 47.66861230819039 ], [ - -122.31633172800001, - 47.671377044968594 + -122.31746109507846, + 47.66861219487586 ], [ - -122.31620524703703, - 47.671348238797925 + -122.31743439189513, + 47.668612140916565 + ], + [ + -122.31744726950528, + 47.66861211573556 + ], + [ + -122.31744852989554, + 47.66854128336649 + ], + [ + -122.31743488189854, + 47.668541241997694 + ], + [ + -122.31746158508186, + 47.66854135711086 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/59596700", - "osm_node_id": 59596700, + "osm_link": "https://www.openstreetmap.org/node/4384739631", + "osm_node_id": 4384739631, "type": "intersection" }, "type": "Feature" @@ -4588,28 +6371,32 @@ "coordinates": [ [ [ - -122.31751978734025, - 47.66171803853958 + -122.31747534923771, + 47.66707991362042 ], [ - -122.31740237344316, - 47.661712552677734 + -122.31749585461219, + 47.66708011776643 ], [ - -122.31743800350067, - 47.66160805150602 + -122.31749429514628, + 47.66715094833686 ], [ - -122.31749669709762, - 47.66161092034198 + -122.31747471637226, + 47.66715075318407 ], [ - -122.3175435598492, - 47.66162698582331 + -122.31744801318894, + 47.6671506380709 ], [ - -122.31751978734025, - 47.66171803853958 + -122.31744865005986, + 47.66707968519273 + ], + [ + -122.31747534923771, + 47.66707991362042 ] ] ], @@ -4618,8 +6405,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/59711142", - "osm_node_id": 59711142, + "osm_link": "https://www.openstreetmap.org/node/4384739632", + "osm_node_id": 4384739632, "type": "intersection" }, "type": "Feature" @@ -4629,28 +6416,40 @@ "coordinates": [ [ [ - -122.31742437019042, - 47.669336876327456 + -122.3175013928524, + 47.66487353055968 ], [ - -122.31733923243104, - 47.66933642127072 + -122.31750641038055, + 47.66487359531084 ], [ - -122.31734033126703, - 47.66926529932009 + -122.31750313389996, + 47.66498826960866 ], [ - -122.31742546368578, - 47.66926603496517 + -122.31747406614976, + 47.66498789279291 ], [ - -122.31742589627736, - 47.66933687183085 + -122.31744757392157, + 47.66498563279769 ], [ - -122.31742437019042, - 47.669336876327456 + -122.31746972421215, + 47.664987837034964 + ], + [ + -122.31747307546165, + 47.664873162737145 + ], + [ + -122.3174751796725, + 47.66487010864094 + ], + [ + -122.3175013928524, + 47.66487353055968 ] ] ], @@ -4659,8 +6458,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/59713117", - "osm_node_id": 59713117, + "osm_link": "https://www.openstreetmap.org/node/4384739635", + "osm_node_id": 4384739635, "type": "intersection" }, "type": "Feature" @@ -4670,46 +6469,34 @@ "coordinates": [ [ [ - -122.317419283234, - 47.67161831227361 - ], - [ - -122.31741914170713, - 47.67164053451072 - ], - [ - -122.31733400127742, - 47.671640289895244 - ], - [ - -122.31733407738149, - 47.671628372085195 + -122.3180636577508, + 47.66123511722126 ], [ - -122.31731475762835, - 47.67162307238292 + -122.31806269910652, + 47.661372294344545 ], [ - -122.31733490250986, - 47.67158975611435 + -122.31799604395546, + 47.6613608468797 ], [ - -122.31742002958798, - 47.67159080382404 + -122.31799679698523, + 47.6612461527968 ], [ - -122.317419283234, - 47.67161831227361 + -122.3180636577508, + 47.66123511722126 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/59713137", - "osm_node_id": 59713137, + "osm_link": "https://www.openstreetmap.org/node/4531063551", + "osm_node_id": 4531063551, "type": "intersection" }, "type": "Feature" @@ -4719,73 +6506,77 @@ "coordinates": [ [ [ - -122.31687484938628, - 47.66136681657658 + -122.31776992273423, + 47.660963397987025 ], [ - -122.3168759896122, - 47.661230193435415 + -122.31776904686981, + 47.66099936545571 ], [ - -122.31692756948111, - 47.6612303885882 + -122.3177642896977, + 47.661007944084595 ], [ - -122.31692642925519, - 47.661367011729375 + -122.31767995837446, + 47.66100004983946 ], [ - -122.31687484938628, - 47.66136681657658 + -122.31768428829562, + 47.660979059672954 + ], + [ + -122.3176849331775, + 47.66095787255502 + ], + [ + -122.31777005491499, + 47.66095904706905 + ], + [ + -122.31776992273423, + 47.660963397987025 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/59713144", - "osm_node_id": 59713144, + "osm_link": "https://www.openstreetmap.org/node/4583297951", + "osm_node_id": 4583297951, "type": "intersection" }, "type": "Feature" }, { "geometry": { - "coordinates": [ - [ - [ - -122.31718404154051, - 47.661231486659894 - ], - [ - -122.3171900484216, - 47.66123152892801 - ], + "coordinates": [ + [ [ - -122.31718790682629, - 47.661368146673254 + -122.31775601838667, + 47.66136032077655 ], [ - -122.31715481223604, - 47.66136791105099 + -122.31771006888397, + 47.661371265520614 ], [ - -122.31712159748146, - 47.661367773454785 + -122.31768925642288, + 47.66136044308429 ], [ - -122.31712284452013, - 47.66123115031361 + -122.31768880246877, + 47.661245748102075 ], [ - -122.31713063517385, - 47.66123118268919 + -122.31775555108096, + 47.66124562489501 ], [ - -122.31718404154051, - 47.661231486659894 + -122.31775601838667, + 47.66136032077655 ] ] ], @@ -4793,9 +6584,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/59713145", - "osm_node_id": 59713145, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/4694379084", + "osm_node_id": 4694379084, "type": "intersection" }, "type": "Feature" @@ -4805,34 +6596,34 @@ "coordinates": [ [ [ - -122.31725391175483, - 47.65688831004502 + -122.31865261381608, + 47.66404021915085 ], [ - -122.31730728874798, - 47.65688948995498 + -122.31865248297048, + 47.66405820558315 ], [ - -122.31730291076107, - 47.65697937355315 + -122.3184992000224, + 47.664057700164406 ], [ - -122.31724953376794, - 47.65697819364319 + -122.31849933086801, + 47.6640397137321 ], [ - -122.31725391175483, - 47.65688831004502 + -122.31865261381608, + 47.66404021915085 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/59713148", - "osm_node_id": 59713148, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4694384138", + "osm_node_id": 4694384138, "type": "intersection" }, "type": "Feature" @@ -4842,42 +6633,34 @@ "coordinates": [ [ [ - -122.31845832145422, - 47.66255879093547 - ], - [ - -122.31845832946517, - 47.66256293411015 - ], - [ - -122.31835316164796, - 47.662563031236886 + -122.3185621981725, + 47.66495537692058 ], [ - -122.31835343135012, - 47.66251768564239 + -122.31853553504395, + 47.66495440745188 ], [ - -122.31845859382669, - 47.662518349341745 + -122.31854033627631, + 47.664894530618724 ], [ - -122.31845853240937, - 47.662522818070855 + -122.31856699940487, + 47.664895500087425 ], [ - -122.31845832145422, - 47.66255879093547 + -122.3185621981725, + 47.66495537692058 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1099460970", - "osm_node_id": 1099460970, + "osm_link": "https://www.openstreetmap.org/node/4694405879", + "osm_node_id": 4694405879, "type": "intersection" }, "type": "Feature" @@ -4887,34 +6670,34 @@ "coordinates": [ [ [ - -122.31745949822809, - 47.665267283240524 + -122.31853532542397, + 47.664110949896575 ], [ - -122.31737436046869, - 47.66526679580821 + -122.31850864093288, + 47.66411026821079 ], [ - -122.31735865365627, - 47.665221736197985 + -122.3185148000221, + 47.6640008999105 ], [ - -122.31747634526644, - 47.66522241428649 + -122.3185414845132, + 47.66400158159628 ], [ - -122.31745949822809, - 47.665267283240524 + -122.31853532542397, + 47.664110949896575 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3003528164", - "osm_node_id": 3003528164, + "osm_link": "https://www.openstreetmap.org/node/4829706954", + "osm_node_id": 4829706954, "type": "intersection" }, "type": "Feature" @@ -4924,24 +6707,24 @@ "coordinates": [ [ [ - -122.32016102590602, - 47.66489545422203 + -122.31831111748582, + 47.66397605974816 ], [ - -122.32015957325284, - 47.66501014650628 + -122.31831101868404, + 47.663958073315854 ], [ - -122.32002606267686, - 47.66500937938494 + -122.31845470183771, + 47.66395771358721 ], [ - -122.32002751533003, - 47.664894687100684 + -122.3184548006395, + 47.66397570001951 ], [ - -122.32016102590602, - 47.66489545422203 + -122.31831111748582, + 47.66397605974816 ] ] ], @@ -4950,8 +6733,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3318126091", - "osm_node_id": 3318126091, + "osm_link": "https://www.openstreetmap.org/node/4829706955", + "osm_node_id": 4829706955, "type": "intersection" }, "type": "Feature" @@ -4961,24 +6744,24 @@ "coordinates": [ [ [ - -122.3189555974802, - 47.66148513582491 + -122.31863828488791, + 47.66395725403386 ], [ - -122.31900900384684, - 47.66148526352858 + -122.31863838368969, + 47.663975240466165 ], [ - -122.31900852853018, - 47.6615751947908 + -122.31849470053602, + 47.66397560019482 ], [ - -122.31895512216353, - 47.661575067087135 + -122.31849460173424, + 47.663957613762506 ], [ - -122.3189555974802, - 47.66148513582491 + -122.31863828488791, + 47.66395725403386 ] ] ], @@ -4987,8 +6770,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3570362036", - "osm_node_id": 3570362036, + "osm_link": "https://www.openstreetmap.org/node/4829706956", + "osm_node_id": 4829706956, "type": "intersection" }, "type": "Feature" @@ -4998,24 +6781,24 @@ "coordinates": [ [ [ - -122.31741748343944, - 47.67190215076593 + -122.31852175887168, + 47.6638773313219 ], [ - -122.31733234300974, - 47.67190190615045 + -122.31854844336277, + 47.66387801300768 ], [ - -122.3173329131227, - 47.671811974888236 + -122.31854228427355, + 47.663987381307976 ], [ - -122.31741805355242, - 47.671812219503714 + -122.31851559978244, + 47.66398669962219 ], [ - -122.31741748343944, - 47.67190215076593 + -122.31852175887168, + 47.6638773313219 ] ] ], @@ -5024,8 +6807,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4214025137", - "osm_node_id": 4214025137, + "osm_link": "https://www.openstreetmap.org/node/4829706959", + "osm_node_id": 4829706959, "type": "intersection" }, "type": "Feature" @@ -5035,34 +6818,34 @@ "coordinates": [ [ [ - -122.31750030870316, - 47.66176588065088 + -122.31848573761253, + 47.664037034653006 ], [ - -122.31741517628441, - 47.661765073060074 + -122.31848720628761, + 47.66405499410567 ], [ - -122.31740179264892, - 47.66171819592087 + -122.31834969958025, + 47.664060099554476 ], [ - -122.317519206546, - 47.66172367998408 + -122.31834823090516, + 47.66404214010182 ], [ - -122.31750030870316, - 47.66176588065088 + -122.31848573761253, + 47.664037034653006 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4272380198", - "osm_node_id": 4272380198, + "osm_link": "https://www.openstreetmap.org/node/4831220179", + "osm_node_id": 4831220179, "type": "intersection" }, "type": "Feature" @@ -5072,46 +6855,34 @@ "coordinates": [ [ [ - -122.31745838737567, - 47.671436207740385 - ], - [ - -122.31747924523215, - 47.67143641368503 - ], - [ - -122.31747770445848, - 47.67150724425546 - ], - [ - -122.31745833797477, - 47.67150705359928 + -122.318166392908, + 47.66406690562046 ], [ - -122.31743163479145, - 47.67150701402913 + -122.31816492423292, + 47.6640489461678 ], [ - -122.31742957731117, - 47.671506717252996 + -122.31830243094029, + 47.66404384071899 ], [ - -122.31743168419234, - 47.67143589387714 + -122.31830389961537, + 47.66406180017165 ], [ - -122.31745838737567, - 47.671436207740385 + -122.318166392908, + 47.66406690562046 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4384739623", - "osm_node_id": 4384739623, + "osm_link": "https://www.openstreetmap.org/node/4831220200", + "osm_node_id": 4831220200, "type": "intersection" }, "type": "Feature" @@ -5121,42 +6892,34 @@ "coordinates": [ [ [ - -122.31745716169955, - 47.67072200068765 - ], - [ - -122.31747729322946, - 47.67072203036526 - ], - [ - -122.31747706358207, - 47.67079286813026 + -122.31831561697221, + 47.66405709492096 ], [ - -122.31745721510592, - 47.67079283845265 + -122.3183157478178, + 47.66403910848865 ], [ - -122.3174305119226, - 47.67079286003637 + -122.31846903076588, + 47.6640396139074 ], [ - -122.31743046519202, - 47.67072190266159 + -122.31846889992029, + 47.66405760033971 ], [ - -122.31745716169955, - 47.67072200068765 + -122.31831561697221, + 47.66405709492096 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4384739624", - "osm_node_id": 4384739624, + "osm_link": "https://www.openstreetmap.org/node/4831220201", + "osm_node_id": 4831220201, "type": "intersection" }, "type": "Feature" @@ -5166,46 +6929,34 @@ "coordinates": [ [ [ - -122.31745738467113, - 47.670023583923836 - ], - [ - -122.31747798751222, - 47.67002374580173 - ], - [ - -122.31747676450642, - 47.6700945781708 - ], - [ - -122.31745734061087, - 47.67009442618544 + -122.31750731027783, + 47.665262797424305 ], [ - -122.31743063742755, - 47.67009442258816 + -122.31750774019908, + 47.66524481279064 ], [ - -122.31742909131324, - 47.67009417077811 + -122.31765849836117, + 47.665246445059374 ], [ - -122.31743068282296, - 47.67002334200632 + -122.31765806843993, + 47.66526442969304 ], [ - -122.31745738467113, - 47.670023583923836 + -122.31750731027783, + 47.665262797424305 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4384739627", - "osm_node_id": 4384739627, + "osm_link": "https://www.openstreetmap.org/node/5154286399", + "osm_node_id": 5154286399, "type": "intersection" }, "type": "Feature" @@ -5215,32 +6966,44 @@ "coordinates": [ [ [ - -122.31745820846433, - 47.66926609701836 + -122.31748445101775, + 47.66599865114832 ], [ - -122.31747876591001, - 47.66926627868133 + -122.31748426142515, + 47.66602113418871 ], [ - -122.31747738802575, - 47.669337111050396 + -122.31745755824183, + 47.66602103166604 ], [ - -122.31745801887173, - 47.66933694017929 + -122.3174575982966, + 47.66601628414723 ], [ - -122.31743131568841, - 47.66933692938743 + -122.31743682321996, + 47.666015803010175 ], [ - -122.31743088042651, - 47.66926601877738 + -122.31743865772866, + 47.665979851729276 ], [ - -122.31745820846433, - 47.66926609701836 + -122.3174580001795, + 47.66598029959144 + ], + [ + -122.31745806026167, + 47.665976034109015 + ], + [ + -122.317484763445, + 47.66597620138284 + ], + [ + -122.31748445101775, + 47.66599865114832 ] ] ], @@ -5249,8 +7012,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4384739630", - "osm_node_id": 4384739630, + "osm_link": "https://www.openstreetmap.org/node/5443485497", + "osm_node_id": 5443485497, "type": "intersection" }, "type": "Feature" @@ -5260,40 +7023,36 @@ "coordinates": [ [ [ - -122.31746158508186, - 47.66854135711086 - ], - [ - -122.3174817219524, - 47.66854147222403 + -122.31747008336995, + 47.66358580992501 ], [ - -122.31748083273641, - 47.66861230819039 + -122.31746997922754, + 47.6636082929654 ], [ - -122.31746109507846, - 47.66861219487586 + -122.31738483879784, + 47.663608114899716 ], [ - -122.31743439189513, - 47.668612140916565 + -122.31738486149554, + 47.663603291837894 ], [ - -122.31744726950528, - 47.66861211573556 + -122.31738460915045, + 47.66356730908074 ], [ - -122.31744852989554, - 47.66854128336649 + -122.31738504841782, + 47.66356314881895 ], [ - -122.31743488189854, - 47.668541241997694 + -122.31747018884754, + 47.663563328683274 ], [ - -122.31746158508186, - 47.66854135711086 + -122.31747008336995, + 47.66358580992501 ] ] ], @@ -5302,8 +7061,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4384739631", - "osm_node_id": 4384739631, + "osm_link": "https://www.openstreetmap.org/node/5443485510", + "osm_node_id": 5443485510, "type": "intersection" }, "type": "Feature" @@ -5313,32 +7072,36 @@ "coordinates": [ [ [ - -122.31747534923771, - 47.66707991362042 + -122.31723357594558, + 47.66307828226797 ], [ - -122.31749585461219, - 47.66708011776643 + -122.31726695358957, + 47.66307844324653 ], [ - -122.31749429514628, - 47.66715094833686 + -122.3172662005598, + 47.663149279212895 ], [ - -122.31747471637226, - 47.66715075318407 + -122.31725896800259, + 47.663149244139355 ], [ - -122.31744801318894, - 47.6671506380709 + -122.31720556030079, + 47.66314899053066 ], [ - -122.31744865005986, - 47.66707968519273 + -122.31719945728824, + 47.66314896265168 ], [ - -122.31747534923771, - 47.66707991362042 + -122.31720018628515, + 47.66307812668533 + ], + [ + -122.31723357594558, + 47.66307828226797 ] ] ], @@ -5347,8 +7110,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4384739632", - "osm_node_id": 4384739632, + "osm_link": "https://www.openstreetmap.org/node/5443485514", + "osm_node_id": 5443485514, "type": "intersection" }, "type": "Feature" @@ -5358,40 +7121,36 @@ "coordinates": [ [ [ - -122.3175013928524, - 47.66487353055968 - ], - [ - -122.31750641038055, - 47.66487359531084 + -122.31748377809753, + 47.66255959492899 ], [ - -122.31750313389996, - 47.66498826960866 + -122.31748331212698, + 47.662582076170736 ], [ - -122.31747406614976, - 47.66498789279291 + -122.31739817970822, + 47.6625812757745 ], [ - -122.31744757392157, - 47.66498563279769 + -122.31739827984516, + 47.66257648958486 ], [ - -122.31746972421215, - 47.664987837034964 + -122.31739856022858, + 47.66254050772703 ], [ - -122.31747307546165, - 47.664873162737145 + -122.31739911031416, + 47.66253631419033 ], [ - -122.3174751796725, - 47.66487010864094 + -122.31748424273292, + 47.66253711278793 ], [ - -122.3175013928524, - 47.66487353055968 + -122.31748377809753, + 47.66255959492899 ] ] ], @@ -5400,8 +7159,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4384739635", - "osm_node_id": 4384739635, + "osm_link": "https://www.openstreetmap.org/node/5443485515", + "osm_node_id": 5443485515, "type": "intersection" }, "type": "Feature" @@ -5411,34 +7170,46 @@ "coordinates": [ [ [ - -122.3180636577508, - 47.66123511722126 + -122.3174902789875, + 47.66224539354029 ], [ - -122.31806269910652, - 47.661372294344545 + -122.31748981435211, + 47.66226787478203 ], [ - -122.31799604395546, - 47.6613608468797 + -122.31740468193335, + 47.662267076184435 ], [ - -122.31799679698523, - 47.6612461527968 + -122.31740477672966, + 47.66226249683877 ], [ - -122.3180636577508, - 47.66123511722126 + -122.31740479809221, + 47.66222651857822 + ], + [ + -122.31740561654478, + 47.66222211010366 + ], + [ + -122.31749074896354, + 47.66222291769448 + ], + [ + -122.3174902789875, + 47.66224539354029 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4531063551", - "osm_node_id": 4531063551, + "osm_link": "https://www.openstreetmap.org/node/5443485520", + "osm_node_id": 5443485520, "type": "intersection" }, "type": "Feature" @@ -5448,36 +7219,36 @@ "coordinates": [ [ [ - -122.31776992273423, - 47.660963397987025 + -122.31751888210232, + 47.663080708637686 ], [ - -122.31776904686981, - 47.66099936545571 + -122.31753921924674, + 47.66308090289115 ], [ - -122.3177642896977, - 47.661007944084595 + -122.31753773187943, + 47.66315173346158 ], [ - -122.31767995837446, - 47.66100004983946 + -122.31751813574834, + 47.66315154640269 ], [ - -122.31768428829562, - 47.660979059672954 + -122.31749143256502, + 47.66315143848409 ], [ - -122.3176849331775, - 47.66095787255502 + -122.31748962475952, + 47.66315117498286 ], [ - -122.31777005491499, - 47.66095904706905 + -122.31749218292448, + 47.66308035880158 ], [ - -122.31776992273423, - 47.660963397987025 + -122.31751888210232, + 47.663080708637686 ] ] ], @@ -5486,8 +7257,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4583297951", - "osm_node_id": 4583297951, + "osm_link": "https://www.openstreetmap.org/node/5452243878", + "osm_node_id": 5452243878, "type": "intersection" }, "type": "Feature" @@ -5497,28 +7268,32 @@ "coordinates": [ [ [ - -122.31775601838667, - 47.66136032077655 + -122.31755197535742, + 47.66161584862443 ], [ - -122.31771006888397, - 47.661371265520614 + -122.31752540301969, + 47.661614067967626 ], [ - -122.31768925642288, - 47.66136044308429 + -122.31750511127068, + 47.66159978224377 ], [ - -122.31768880246877, - 47.661245748102075 + -122.31754349843187, + 47.66152086857066 ], [ - -122.31775555108096, - 47.66124562489501 + -122.31756987049572, + 47.66152369423917 ], [ - -122.31775601838667, - 47.66136032077655 + -122.31759356423028, + 47.66153136904984 + ], + [ + -122.31755197535742, + 47.66161584862443 ] ] ], @@ -5526,9 +7301,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/4694379084", - "osm_node_id": 4694379084, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5674754355", + "osm_node_id": 5674754355, "type": "intersection" }, "type": "Feature" @@ -5538,44 +7313,36 @@ "coordinates": [ [ [ - -122.31748445101775, - 47.66599865114832 - ], - [ - -122.31748426142515, - 47.66602113418871 - ], - [ - -122.31745755824183, - 47.66602103166604 + -122.3176875394082, + 47.661360446681584 ], [ - -122.3174575982966, - 47.66601628414723 + -122.31768589182178, + 47.66136044308429 ], [ - -122.31743682321996, - 47.666015803010175 + -122.31767966330428, + 47.661326805757916 ], [ - -122.31743865772866, - 47.665979851729276 + -122.31765741688226, + 47.661316857462204 ], [ - -122.3174580001795, - 47.66598029959144 + -122.31768713619013, + 47.66124575080004 ], [ - -122.31745806026167, - 47.665976034109015 + -122.31769336203732, + 47.661279267617324 ], [ - -122.317484763445, - 47.66597620138284 + -122.3177160090071, + 47.66128879682916 ], [ - -122.31748445101775, - 47.66599865114832 + -122.3176875394082, + 47.661360446681584 ] ] ], @@ -5584,8 +7351,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5443485497", - "osm_node_id": 5443485497, + "osm_link": "https://www.openstreetmap.org/node/5674754357", + "osm_node_id": 5674754357, "type": "intersection" }, "type": "Feature" @@ -5595,46 +7362,67 @@ "coordinates": [ [ [ - -122.31747008336995, - 47.66358580992501 + -122.31803967161638, + 47.6651437263431 ], [ - -122.31746997922754, - 47.6636082929654 + -122.3180386996205, + 47.66516170018491 ], [ - -122.31738483879784, - 47.663608114899716 + -122.31803814953493, + 47.665143717349885 ], [ - -122.31738486149554, - 47.663603291837894 + -122.31803967161638, + 47.6651437263431 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5908851924", + "osm_node_id": 5908851924, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31771740024296, + 47.66524709976551 ], [ - -122.31738460915045, - 47.66356730908074 + -122.31775077388147, + 47.66524749546702 ], [ - -122.31738504841782, - 47.66356314881895 + -122.31775030390544, + 47.66526547830204 ], [ - -122.31747018884754, - 47.663563328683274 + -122.31771693026693, + 47.66526508260053 ], [ - -122.31747008336995, - 47.66358580992501 + -122.31771740024296, + 47.66524709976551 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5443485510", - "osm_node_id": 5443485510, + "osm_link": "https://www.openstreetmap.org/node/5908851926", + "osm_node_id": 5908851926, "type": "intersection" }, "type": "Feature" @@ -5644,36 +7432,32 @@ "coordinates": [ [ [ - -122.31723357594558, - 47.66307828226797 - ], - [ - -122.31726695358957, - 47.66307844324653 + -122.31800631399977, + 47.665138537257384 ], [ - -122.3172662005598, - 47.663149279212895 + -122.3180329904799, + 47.66513933945226 ], [ - -122.31725896800259, - 47.663149244139355 + -122.31803150044227, + 47.66516180000961 ], [ - -122.31720556030079, - 47.66314899053066 + -122.31803044566654, + 47.665143827966446 ], [ - -122.31719945728824, - 47.66314896265168 + -122.31803269407457, + 47.665143792892906 ], [ - -122.31720018628515, - 47.66307812668533 + -122.31803324416015, + 47.665161775727924 ], [ - -122.31723357594558, - 47.66307828226797 + -122.31800631399977, + 47.665138537257384 ] ] ], @@ -5682,8 +7466,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5443485514", - "osm_node_id": 5443485514, + "osm_link": "https://www.openstreetmap.org/node/5908851929", + "osm_node_id": 5908851929, "type": "intersection" }, "type": "Feature" @@ -5693,36 +7477,28 @@ "coordinates": [ [ [ - -122.31748377809753, - 47.66255959492899 - ], - [ - -122.31748331212698, - 47.662582076170736 - ], - [ - -122.31739817970822, - 47.6625812757745 + -122.31806036791862, + 47.665162087792524 ], [ - -122.31739827984516, - 47.66257648958486 + -122.31806073642254, + 47.66514410315886 ], [ - -122.31739856022858, - 47.66254050772703 + -122.3180618753133, + 47.66516210038303 ], [ - -122.31739911031416, - 47.66253631419033 + -122.31806049742904, + 47.66513963173179 ], [ - -122.31748424273292, - 47.66253711278793 + -122.31808718459047, + 47.66513898422023 ], [ - -122.31748377809753, - 47.66255959492899 + -122.31806036791862, + 47.665162087792524 ] ] ], @@ -5731,8 +7507,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5443485515", - "osm_node_id": 5443485515, + "osm_link": "https://www.openstreetmap.org/node/5908851932", + "osm_node_id": 5908851932, "type": "intersection" }, "type": "Feature" @@ -5742,36 +7518,32 @@ "coordinates": [ [ [ - -122.3174902789875, - 47.66224539354029 - ], - [ - -122.31748981435211, - 47.66226787478203 + -122.31810687818816, + 47.66516231622022 ], [ - -122.31740468193335, - 47.662267076184435 + -122.31807350054417, + 47.66516210038303 ], [ - -122.31740477672966, - 47.66226249683877 + -122.31807350054417, + 47.66514411395072 ], [ - -122.31740479809221, - 47.66222651857822 + -122.31807417079408, + 47.66513962183925 ], [ - -122.31740561654478, - 47.66222211010366 + -122.31810086863676, + 47.66513998336654 ], [ - -122.31749074896354, - 47.66222291769448 + -122.31810713453872, + 47.66514432978791 ], [ - -122.3174902789875, - 47.66224539354029 + -122.31810687818816, + 47.66516231622022 ] ] ], @@ -5780,8 +7552,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5443485520", - "osm_node_id": 5443485520, + "osm_link": "https://www.openstreetmap.org/node/5908863566", + "osm_node_id": 5908863566, "type": "intersection" }, "type": "Feature" @@ -5791,46 +7563,34 @@ "coordinates": [ [ [ - -122.31751888210232, - 47.663080708637686 - ], - [ - -122.31753921924674, - 47.66308090289115 - ], - [ - -122.31753773187943, - 47.66315173346158 - ], - [ - -122.31751813574834, - 47.66315154640269 + -122.31786634926438, + 47.664992703264225 ], [ - -122.31749143256502, - 47.66315143848409 + -122.31788485457042, + 47.664979736845176 ], [ - -122.31748962475952, - 47.66315117498286 + -122.31792330581925, + 47.66500463366478 ], [ - -122.31749218292448, - 47.66308035880158 + -122.3179048005132, + 47.66501760008383 ], [ - -122.31751888210232, - 47.663080708637686 + -122.31786634926438, + 47.664992703264225 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5452243878", - "osm_node_id": 5452243878, + "osm_link": "https://www.openstreetmap.org/node/5908863567", + "osm_node_id": 5908863567, "type": "intersection" }, "type": "Feature" @@ -5840,32 +7600,40 @@ "coordinates": [ [ [ - -122.31755197535742, - 47.66161584862443 + -122.31800943026126, + 47.665060398799504 ], [ - -122.31752540301969, - 47.661614067967626 + -122.31803202783016, + 47.665060370021216 ], [ - -122.31750511127068, - 47.66159978224377 + -122.3180320785662, + 47.66507835645352 ], [ - -122.31754349843187, - 47.66152086857066 + -122.31799869958704, + 47.66507839962096 ], [ - -122.31756987049572, - 47.66152369423917 + -122.31796532060788, + 47.66507841580875 ], [ - -122.31759356423028, - 47.66153136904984 + -122.31796530191566, + 47.66506042937644 ], [ - -122.31755197535742, - 47.66161584862443 + -122.31797094162798, + 47.66506042667847 + ], + [ + -122.31798944693402, + 47.66504746025942 + ], + [ + -122.31800943026126, + 47.665060398799504 ] ] ], @@ -5874,8 +7642,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5674754355", - "osm_node_id": 5674754355, + "osm_link": "https://www.openstreetmap.org/node/5908863568", + "osm_node_id": 5908863568, "type": "intersection" }, "type": "Feature" @@ -5885,36 +7653,32 @@ "coordinates": [ [ [ - -122.3176875394082, - 47.661360446681584 - ], - [ - -122.31768589182178, - 47.66136044308429 + -122.31769130055157, + 47.665246800291406 ], [ - -122.31767966330428, - 47.661326805757916 + -122.31769084659746, + 47.66526478492507 ], [ - -122.31765741688226, - 47.661316857462204 + -122.31766415543056, + 47.665264495343514 ], [ - -122.31768713619013, - 47.66124575080004 + -122.3176645826815, + 47.66524651070985 ], [ - -122.31769336203732, - 47.661279267617324 + -122.31766395515669, + 47.66522467068442 ], [ - -122.3177160090071, - 47.66128879682916 + -122.31769065299937, + 47.66522432174763 ], [ - -122.3176875394082, - 47.661360446681584 + -122.31769130055157, + 47.665246800291406 ] ] ], @@ -5923,8 +7687,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5674754357", - "osm_node_id": 5674754357, + "osm_link": "https://www.openstreetmap.org/node/5908863569", + "osm_node_id": 5908863569, "type": "intersection" }, "type": "Feature" @@ -5978,6 +7742,80 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31867854661256, + 47.666259178325056 + ], + [ + -122.31865189950592, + 47.66625800021374 + ], + [ + -122.31866064746879, + 47.66616826140635 + ], + [ + -122.31868729457543, + 47.66616943951766 + ], + [ + -122.31867854661256, + 47.666259178325056 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6338026453", + "osm_node_id": 6338026453, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31852119943999, + 47.66609449994677 + ], + [ + -122.31852268947762, + 47.66607654229276 + ], + [ + -122.3186559971094, + 47.66608156140669 + ], + [ + -122.31865450707178, + 47.66609951906071 + ], + [ + -122.31852119943999, + 47.66609449994677 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6338033838", + "osm_node_id": 6338033838, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -6101,6 +7939,59 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.31857209971288, + 47.66483190006279 + ], + [ + -122.31857029991832, + 47.664854350727595 + ], + [ + -122.31854363678977, + 47.664853381258894 + ], + [ + -122.31855912063062, + 47.664806664198935 + ], + [ + -122.31858581313267, + 47.66480716062447 + ], + [ + -122.31858722039044, + 47.664813940610124 + ], + [ + -122.31860555079064, + 47.664813973885025 + ], + [ + -122.31860547869204, + 47.664831960317336 + ], + [ + -122.31857209971288, + 47.66483190006279 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7797741149", + "osm_node_id": 7797741149, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ diff --git a/tests/src/roosevelt_cycletrack/road_network.dot b/tests/src/roosevelt_cycletrack/road_network.dot index 9d4284d2..7043153d 100644 --- a/tests/src/roosevelt_cycletrack/road_network.dot +++ b/tests/src/roosevelt_cycletrack/road_network.dot @@ -43,13 +43,13 @@ digraph { 41 [ label = "Unknown" ] 42 [ label = "Unknown" ] 43 [ label = "Unknown" ] - 44 [ label = "Lights RoadIntersection" ] + 44 [ label = "Unknown" ] 45 [ label = "Unknown" ] 46 [ label = "Unknown" ] 47 [ label = "Unknown" ] 48 [ label = "Unknown" ] 49 [ label = "Unknown" ] - 50 [ label = "Unknown" ] + 50 [ label = "Lights RoadIntersection" ] 51 [ label = "Unknown" ] 52 [ label = "Unknown" ] 53 [ label = "Unknown" ] @@ -64,7 +64,7 @@ digraph { 62 [ label = "Unknown" ] 63 [ label = "Unknown" ] 64 [ label = "Unknown" ] - 65 [ label = "MapEdge" ] + 65 [ label = "Unknown" ] 66 [ label = "Unknown" ] 67 [ label = "Unknown" ] 68 [ label = "Unknown" ] @@ -73,67 +73,100 @@ digraph { 71 [ label = "Unknown" ] 72 [ label = "Unknown" ] 73 [ label = "Unknown" ] - 0 -> 68 [ label = "2 lanes" ] - 68 -> 0 [ label = "1 lanes" ] - 5 -> 37 [ label = "2 lanes" ] - 37 -> 5 [ label = "2 lanes" ] - 37 -> 6 [ label = "2 lanes" ] - 6 -> 37 [ label = "2 lanes" ] - 13 -> 36 [ label = "2 lanes" ] - 36 -> 13 [ label = "2 lanes" ] - 36 -> 14 [ label = "2 lanes" ] - 14 -> 36 [ label = "2 lanes" ] - 35 -> 19 [ label = "2 lanes" ] - 19 -> 35 [ label = "2 lanes" ] - 62 -> 35 [ label = "2 lanes" ] - 35 -> 62 [ label = "2 lanes" ] - 18 -> 66 [ label = "2 lanes" ] - 66 -> 18 [ label = "2 lanes" ] - 2 -> 29 [ label = "2 lanes" ] - 29 -> 2 [ label = "2 lanes" ] - 29 -> 69 [ label = "2 lanes" ] - 69 -> 29 [ label = "2 lanes" ] - 17 -> 65 [ label = "2 lanes" ] - 65 -> 17 [ label = "2 lanes" ] - 20 -> 39 [ label = "2 lanes" ] - 39 -> 20 [ label = "2 lanes" ] + 74 [ label = "Unknown" ] + 75 [ label = "Unknown" ] + 76 [ label = "Unknown" ] + 77 [ label = "Unknown" ] + 78 [ label = "Unknown" ] + 79 [ label = "Unknown" ] + 80 [ label = "Unknown" ] + 81 [ label = "Unknown" ] + 82 [ label = "Unknown" ] + 83 [ label = "Unknown" ] + 84 [ label = "Unknown" ] + 85 [ label = "Unknown" ] + 86 [ label = "Unknown" ] + 87 [ label = "Unknown" ] + 88 [ label = "Unknown" ] + 89 [ label = "Unknown" ] + 90 [ label = "Unknown" ] + 91 [ label = "Unknown" ] + 92 [ label = "MapEdge" ] + 93 [ label = "Unknown" ] + 94 [ label = "Unknown" ] + 95 [ label = "Unknown" ] + 96 [ label = "Unknown" ] + 97 [ label = "Unknown" ] + 98 [ label = "Unknown" ] + 99 [ label = "Unknown" ] + 100 [ label = "Unknown" ] + 0 -> 95 [ label = "2 lanes" ] + 95 -> 0 [ label = "1 lanes" ] + 5 -> 43 [ label = "2 lanes" ] + 43 -> 5 [ label = "2 lanes" ] + 43 -> 6 [ label = "2 lanes" ] + 6 -> 43 [ label = "2 lanes" ] + 13 -> 42 [ label = "2 lanes" ] + 42 -> 13 [ label = "2 lanes" ] + 42 -> 14 [ label = "2 lanes" ] + 14 -> 42 [ label = "2 lanes" ] + 41 -> 19 [ label = "2 lanes" ] + 19 -> 41 [ label = "2 lanes" ] + 89 -> 41 [ label = "2 lanes" ] + 41 -> 89 [ label = "2 lanes" ] + 18 -> 93 [ label = "2 lanes" ] + 93 -> 18 [ label = "2 lanes" ] + 2 -> 31 [ label = "2 lanes" ] + 31 -> 2 [ label = "2 lanes" ] + 31 -> 96 [ label = "2 lanes" ] + 96 -> 31 [ label = "2 lanes" ] + 17 -> 92 [ label = "2 lanes" ] + 92 -> 17 [ label = "2 lanes" ] + 20 -> 45 [ label = "2 lanes" ] + 45 -> 20 [ label = "2 lanes" ] 21 -> 20 [ label = "2 lanes" ] 20 -> 21 [ label = "2 lanes" ] - 39 -> 17 [ label = "2 lanes" ] - 17 -> 39 [ label = "2 lanes" ] + 45 -> 17 [ label = "2 lanes" ] + 17 -> 45 [ label = "2 lanes" ] 25 -> 22 [ label = "1 lanes" ] 22 -> 25 [ label = "1 lanes" ] 28 -> 27 [ label = "1 lanes" ] 27 -> 28 [ label = "1 lanes" ] - 29 -> 32 [ label = "1 lanes" ] - 32 -> 29 [ label = "1 lanes" ] + 31 -> 35 [ label = "1 lanes" ] + 35 -> 31 [ label = "1 lanes" ] 7 -> 20 [ label = "2 lanes" ] 20 -> 7 [ label = "2 lanes" ] 10 -> 7 [ label = "2 lanes" ] 7 -> 10 [ label = "2 lanes" ] - 68 -> 10 [ label = "2 lanes" ] - 10 -> 68 [ label = "2 lanes" ] - 7 -> 40 [ label = "2 lanes" ] - 40 -> 7 [ label = "2 lanes" ] - 40 -> 8 [ label = "2 lanes" ] - 8 -> 40 [ label = "2 lanes" ] - 64 -> 7 [ label = "2 lanes" ] - 7 -> 64 [ label = "2 lanes" ] - 38 -> 24 [ label = "2 lanes" ] - 24 -> 38 [ label = "2 lanes" ] - 63 -> 38 [ label = "2 lanes" ] - 38 -> 63 [ label = "2 lanes" ] - 27 -> 72 [ label = "3 lanes" ] - 72 -> 27 [ label = "4 lanes" ] - 72 -> 26 [ label = "3 lanes" ] - 26 -> 72 [ label = "4 lanes" ] - 10 -> 41 [ label = "3 lanes" ] - 41 -> 10 [ label = "3 lanes" ] - 31 -> 10 [ label = "3 lanes" ] - 10 -> 31 [ label = "3 lanes" ] - 41 -> 11 [ label = "3 lanes" ] - 11 -> 41 [ label = "3 lanes" ] - 43 -> 9 [ label = "3 lanes" ] + 95 -> 10 [ label = "2 lanes" ] + 10 -> 95 [ label = "2 lanes" ] + 7 -> 46 [ label = "2 lanes" ] + 46 -> 7 [ label = "2 lanes" ] + 46 -> 8 [ label = "2 lanes" ] + 8 -> 46 [ label = "2 lanes" ] + 91 -> 7 [ label = "2 lanes" ] + 7 -> 91 [ label = "2 lanes" ] + 44 -> 24 [ label = "2 lanes" ] + 24 -> 44 [ label = "2 lanes" ] + 90 -> 44 [ label = "2 lanes" ] + 44 -> 90 [ label = "2 lanes" ] + 77 -> 60 [ label = "1 lanes" ] + 71 -> 77 [ label = "1 lanes" ] + 27 -> 99 [ label = "3 lanes" ] + 99 -> 27 [ label = "4 lanes" ] + 99 -> 26 [ label = "3 lanes" ] + 26 -> 99 [ label = "4 lanes" ] + 10 -> 47 [ label = "3 lanes" ] + 47 -> 10 [ label = "3 lanes" ] + 34 -> 10 [ label = "3 lanes" ] + 10 -> 34 [ label = "3 lanes" ] + 47 -> 11 [ label = "3 lanes" ] + 11 -> 47 [ label = "3 lanes" ] + 49 -> 9 [ label = "3 lanes" ] + 74 -> 36 [ label = "1 lanes" ] + 37 -> 73 [ label = "1 lanes" ] + 73 -> 74 [ label = "1 lanes" ] + 70 -> 37 [ label = "1 lanes" ] 6 -> 18 [ label = "3 lanes" ] 14 -> 6 [ label = "3 lanes" ] 17 -> 8 [ label = "3 lanes" ] @@ -141,85 +174,100 @@ digraph { 19 -> 14 [ label = "3 lanes" ] 24 -> 17 [ label = "3 lanes" ] 25 -> 19 [ label = "3 lanes" ] - 33 -> 25 [ label = "3 lanes" ] - 4 -> 54 [ label = "3 lanes" ] + 39 -> 25 [ label = "3 lanes" ] + 4 -> 78 [ label = "3 lanes" ] 8 -> 4 [ label = "3 lanes" ] - 54 -> 30 [ label = "3 lanes" ] - 34 -> 23 [ label = "4 lanes" ] + 78 -> 32 [ label = "3 lanes" ] + 40 -> 23 [ label = "4 lanes" ] 23 -> 3 [ label = "4 lanes" ] - 30 -> 11 [ label = "4 lanes" ] - 11 -> 56 [ label = "3 lanes" ] - 15 -> 48 [ label = "3 lanes" ] - 46 -> 15 [ label = "3 lanes" ] - 48 -> 49 [ label = "3 lanes" ] - 49 -> 34 [ label = "3 lanes" ] - 56 -> 46 [ label = "3 lanes" ] - 23 -> 52 [ label = "2 lanes" ] - 52 -> 44 [ label = "2 lanes" ] - 54 -> 45 [ label = "1 lanes" ] - 45 -> 54 [ label = "1 lanes" ] - 47 -> 46 [ label = "1 lanes" ] - 46 -> 47 [ label = "1 lanes" ] - 49 -> 48 [ label = "1 lanes" ] - 48 -> 49 [ label = "1 lanes" ] - 15 -> 47 [ label = "2 lanes" ] - 47 -> 15 [ label = "2 lanes" ] - 47 -> 16 [ label = "2 lanes" ] - 16 -> 47 [ label = "2 lanes" ] - 4 -> 67 [ label = "2 lanes" ] - 67 -> 4 [ label = "2 lanes" ] + 32 -> 11 [ label = "4 lanes" ] + 11 -> 82 [ label = "3 lanes" ] + 15 -> 64 [ label = "3 lanes" ] + 62 -> 15 [ label = "3 lanes" ] + 64 -> 65 [ label = "3 lanes" ] + 65 -> 40 [ label = "3 lanes" ] + 82 -> 62 [ label = "3 lanes" ] + 84 -> 30 [ label = "1 lanes" ] + 52 -> 84 [ label = "1 lanes" ] + 23 -> 68 [ label = "2 lanes" ] + 68 -> 50 [ label = "2 lanes" ] + 56 -> 53 [ label = "1 lanes" ] + 54 -> 55 [ label = "1 lanes" ] + 58 -> 57 [ label = "1 lanes" ] + 59 -> 51 [ label = "1 lanes" ] + 78 -> 61 [ label = "1 lanes" ] + 61 -> 78 [ label = "1 lanes" ] + 63 -> 62 [ label = "1 lanes" ] + 62 -> 63 [ label = "1 lanes" ] + 65 -> 64 [ label = "1 lanes" ] + 64 -> 65 [ label = "1 lanes" ] + 15 -> 63 [ label = "2 lanes" ] + 63 -> 15 [ label = "2 lanes" ] + 63 -> 16 [ label = "2 lanes" ] + 16 -> 63 [ label = "2 lanes" ] + 4 -> 94 [ label = "2 lanes" ] + 94 -> 4 [ label = "2 lanes" ] 12 -> 11 [ label = "3 lanes" ] 11 -> 12 [ label = "3 lanes" ] 3 -> 27 [ label = "3 lanes" ] 27 -> 3 [ label = "4 lanes" ] - 42 -> 44 [ label = "3 lanes" ] - 44 -> 42 [ label = "3 lanes" ] + 72 -> 70 [ label = "1 lanes" ] + 38 -> 72 [ label = "1 lanes" ] + 33 -> 71 [ label = "1 lanes" ] + 72 -> 73 [ label = "1 lanes" ] + 75 -> 76 [ label = "1 lanes" ] + 76 -> 74 [ label = "1 lanes" ] + 77 -> 76 [ label = "1 lanes" ] + 48 -> 50 [ label = "3 lanes" ] + 50 -> 48 [ label = "3 lanes" ] + 80 -> 79 [ label = "1 lanes" ] 1 -> 2 [ label = "3 lanes" ] 2 -> 1 [ label = "4 lanes" ] - 2 -> 58 [ label = "3 lanes" ] - 58 -> 2 [ label = "4 lanes" ] - 58 -> 42 [ label = "3 lanes" ] - 42 -> 58 [ label = "4 lanes" ] - 36 -> 35 [ label = "1 lanes" ] - 37 -> 36 [ label = "1 lanes" ] - 38 -> 37 [ label = "1 lanes" ] - 39 -> 38 [ label = "1 lanes" ] - 40 -> 39 [ label = "1 lanes" ] - 45 -> 40 [ label = "1 lanes" ] - 51 -> 41 [ label = "1 lanes" ] - 41 -> 45 [ label = "1 lanes" ] - 52 -> 51 [ label = "1 lanes" ] - 53 -> 52 [ label = "1 lanes" ] - 61 -> 53 [ label = "1 lanes" ] - 35 -> 55 [ label = "1 lanes" ] - 71 -> 61 [ label = "1 lanes" ] - 44 -> 53 [ label = "3 lanes" ] - 53 -> 44 [ label = "3 lanes" ] - 53 -> 3 [ label = "3 lanes" ] - 3 -> 53 [ label = "3 lanes" ] - 3 -> 43 [ label = "3 lanes" ] - 56 -> 57 [ label = "1 lanes" ] - 57 -> 56 [ label = "1 lanes" ] - 58 -> 59 [ label = "1 lanes" ] - 59 -> 58 [ label = "1 lanes" ] - 59 -> 60 [ label = "1 lanes" ] - 60 -> 59 [ label = "1 lanes" ] - 60 -> 61 [ label = "1 lanes" ] - 61 -> 60 [ label = "1 lanes" ] - 61 -> 43 [ label = "1 lanes" ] - 43 -> 61 [ label = "1 lanes" ] - 59 -> 60 [ label = "1 lanes" ] - 60 -> 59 [ label = "1 lanes" ] - 59 -> 60 [ label = "1 lanes" ] - 60 -> 59 [ label = "1 lanes" ] - 51 -> 15 [ label = "2 lanes" ] - 15 -> 51 [ label = "2 lanes" ] - 69 -> 51 [ label = "2 lanes" ] - 51 -> 69 [ label = "2 lanes" ] - 69 -> 68 [ label = "2 lanes" ] - 68 -> 69 [ label = "2 lanes" ] - 70 -> 69 [ label = "2 lanes" ] - 69 -> 70 [ label = "2 lanes" ] - 72 -> 73 [ label = "1 lanes" ] - 73 -> 72 [ label = "1 lanes" ] + 2 -> 85 [ label = "3 lanes" ] + 85 -> 2 [ label = "4 lanes" ] + 85 -> 48 [ label = "3 lanes" ] + 48 -> 85 [ label = "4 lanes" ] + 42 -> 41 [ label = "1 lanes" ] + 43 -> 42 [ label = "1 lanes" ] + 44 -> 43 [ label = "1 lanes" ] + 45 -> 44 [ label = "1 lanes" ] + 46 -> 45 [ label = "1 lanes" ] + 61 -> 46 [ label = "1 lanes" ] + 67 -> 47 [ label = "1 lanes" ] + 47 -> 61 [ label = "1 lanes" ] + 68 -> 67 [ label = "1 lanes" ] + 69 -> 68 [ label = "1 lanes" ] + 88 -> 69 [ label = "1 lanes" ] + 41 -> 81 [ label = "1 lanes" ] + 98 -> 88 [ label = "1 lanes" ] + 50 -> 69 [ label = "3 lanes" ] + 69 -> 50 [ label = "3 lanes" ] + 69 -> 3 [ label = "3 lanes" ] + 3 -> 69 [ label = "3 lanes" ] + 3 -> 49 [ label = "3 lanes" ] + 82 -> 83 [ label = "1 lanes" ] + 83 -> 82 [ label = "1 lanes" ] + 29 -> 84 [ label = "1 lanes" ] + 85 -> 86 [ label = "1 lanes" ] + 86 -> 85 [ label = "1 lanes" ] + 86 -> 87 [ label = "1 lanes" ] + 87 -> 86 [ label = "1 lanes" ] + 87 -> 88 [ label = "1 lanes" ] + 88 -> 87 [ label = "1 lanes" ] + 88 -> 49 [ label = "1 lanes" ] + 49 -> 88 [ label = "1 lanes" ] + 86 -> 87 [ label = "1 lanes" ] + 87 -> 86 [ label = "1 lanes" ] + 86 -> 87 [ label = "1 lanes" ] + 87 -> 86 [ label = "1 lanes" ] + 67 -> 15 [ label = "2 lanes" ] + 15 -> 67 [ label = "2 lanes" ] + 96 -> 67 [ label = "2 lanes" ] + 67 -> 96 [ label = "2 lanes" ] + 96 -> 95 [ label = "2 lanes" ] + 95 -> 96 [ label = "2 lanes" ] + 97 -> 96 [ label = "2 lanes" ] + 96 -> 97 [ label = "2 lanes" ] + 99 -> 100 [ label = "1 lanes" ] + 100 -> 99 [ label = "1 lanes" ] } diff --git a/tests/src/seattle_triangle/geometry.json b/tests/src/seattle_triangle/geometry.json index a8085d52..83cb9440 100644 --- a/tests/src/seattle_triangle/geometry.json +++ b/tests/src/seattle_triangle/geometry.json @@ -360,6 +360,366 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33829655327564, + 47.6166115217303 + ], + [ + -122.33827745275664, + 47.616633221465776 + ], + [ + -122.33830039952808, + 47.61664239994397 + ], + [ + -122.33831950004708, + 47.616620700208486 + ], + [ + -122.33829655327564, + 47.6166115217303 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5772021889, + "osm_way_id": 609362310, + "src_i": 5772021890, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.3383658431866, + 47.616909995840636 + ], + [ + -122.33837604382697, + 47.616876295555194 + ], + [ + -122.3383499005169, + 47.61687270006667 + ], + [ + -122.33833969987653, + 47.61690640035212 + ], + [ + -122.3383658431866, + 47.616909995840636 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5772021891, + "osm_way_id": 609362311, + "src_i": 5772021892, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33794494203141, + 47.616606945981026 + ], + [ + -122.33794164143184, + 47.61659484650566 + ], + [ + -122.33791539939729, + 47.6165981002519 + ], + [ + -122.33791869999686, + 47.61661019972726 + ], + [ + -122.33794494203141, + 47.616606945981026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5772021895, + "osm_way_id": 609362315, + "src_i": 5772021896, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33773980723352, + 47.61651973335109 + ], + [ + -122.33775830740093, + 47.616529732910074 + ], + [ + -122.33777499984305, + 47.61651569989286 + ], + [ + -122.33775649967562, + 47.616505700333875 + ], + [ + -122.33773980723352, + 47.61651973335109 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5772021897, + "osm_way_id": 609362316, + "src_i": 5772021898, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33778510842951, + 47.61651114213003 + ], + [ + -122.33779390824954, + 47.61650384233506 + ], + [ + -122.33777320012243, + 47.61649250008863 + ], + [ + -122.3377644003024, + 47.616499799883606 + ], + [ + -122.33778510842951, + 47.61651114213003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5772021899, + "osm_way_id": 609362318, + "src_i": 5772021900, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33786133440236, + 47.61637814143046 + ], + [ + -122.33783563535246, + 47.61642014155671 + ], + [ + -122.33786030046353, + 47.616426999784686 + ], + [ + -122.33788599951343, + 47.61638499965843 + ], + [ + -122.33786133440236, + 47.61637814143046 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5772021901, + "osm_way_id": 609362319, + "src_i": 5772021878, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33816049626448, + 47.61613798833822 + ], + [ + -122.33814529669662, + 47.61617948844155 + ], + [ + -122.33817119986607, + 47.616183799790214 + ], + [ + -122.33818639943391, + 47.61614229968688 + ], + [ + -122.33816049626448, + 47.61613798833822 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5772021902, + "osm_way_id": 609362321, + "src_i": 5772021903, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33825620964957, + 47.616360280899706 + ], + [ + -122.338231608576, + 47.61631838059817 + ], + [ + -122.33820679938054, + 47.61632499960655 + ], + [ + -122.33823140045412, + 47.61636689990808 + ], + [ + -122.33825620964957, + 47.616360280899706 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5772021904, + "osm_way_id": 609362322, + "src_i": 5772021905, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33791690294447, + 47.61638486116288 + ], + [ + -122.3379704036089, + 47.61638296089593 + ], + [ + -122.33796900012032, + 47.616364999641135 + ], + [ + -122.33791549945589, + 47.61636689990808 + ], + [ + -122.33791690294447, + 47.61638486116288 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5772021906, + "osm_way_id": 609362324, + "src_i": 5768923253, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33801034299825, + 47.616807476753834 + ], + [ + -122.33807184301395, + 47.61680287672287 + ], + [ + -122.3380688999571, + 47.61678500000433 + ], + [ + -122.3380073999414, + 47.61678960003528 + ], + [ + -122.33801034299825, + 47.616807476753834 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5772021893, + "osm_way_id": 758464860, + "src_i": 7083431696, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -990,6 +1350,746 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33778721766473, + 47.616389467489086 + ], + [ + -122.33778581417614, + 47.61637150623429 + ], + [ + -122.33791549945589, + 47.61636689990808 + ], + [ + -122.33791690294447, + 47.61638486116288 + ], + [ + -122.33778721766473, + 47.616389467489086 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5768923253", + "osm_node_id": 5768923253, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33790558164782, + 47.6163058269653 + ], + [ + -122.33793024675889, + 47.61631268519327 + ], + [ + -122.33788599951343, + 47.61638499965843 + ], + [ + -122.33786133440236, + 47.61637814143046 + ], + [ + -122.33790558164782, + 47.6163058269653 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021878", + "osm_node_id": 5772021878, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33822589322898, + 47.61672704590951 + ], + [ + -122.33820294645753, + 47.61671786743132 + ], + [ + -122.33827745275664, + 47.616633221465776 + ], + [ + -122.33830039952808, + 47.61664239994397 + ], + [ + -122.33822589322898, + 47.61672704590951 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021889", + "osm_node_id": 5772021889, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33837105957475, + 47.61652687576475 + ], + [ + -122.33839400634619, + 47.61653605424294 + ], + [ + -122.33831950004708, + 47.616620700208486 + ], + [ + -122.33829655327564, + 47.6166115217303 + ], + [ + -122.33837105957475, + 47.61652687576475 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021890", + "osm_node_id": 5772021890, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33837637335328, + 47.61678524012324 + ], + [ + -122.33840251666335, + 47.616788835611764 + ], + [ + -122.33837604382697, + 47.616876295555194 + ], + [ + -122.3383499005169, + 47.61687270006667 + ], + [ + -122.33837637335328, + 47.61678524012324 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021891", + "osm_node_id": 5772021891, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33833937035021, + 47.616997455784066 + ], + [ + -122.33831322704015, + 47.61699386029555 + ], + [ + -122.33833969987653, + 47.61690640035212 + ], + [ + -122.3383658431866, + 47.616909995840636 + ], + [ + -122.33833937035021, + 47.616997455784066 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021892", + "osm_node_id": 5772021892, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33818972137931, + 47.61677596271966 + ], + [ + -122.33819266443616, + 47.6167938394382 + ], + [ + -122.33807184301395, + 47.61680287672287 + ], + [ + -122.3380688999571, + 47.61678500000433 + ], + [ + -122.33818972137931, + 47.61677596271966 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021893", + "osm_node_id": 5772021893, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33788552456863, + 47.616488582642916 + ], + [ + -122.33791176660318, + 47.61648532889668 + ], + [ + -122.33794164143184, + 47.61659484650566 + ], + [ + -122.33791539939729, + 47.6165981002519 + ], + [ + -122.33788552456863, + 47.616488582642916 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021895", + "osm_node_id": 5772021895, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33797481686007, + 47.61671646359001 + ], + [ + -122.33794857482552, + 47.616719717336245 + ], + [ + -122.33791869999686, + 47.61661019972726 + ], + [ + -122.33794494203141, + 47.616606945981026 + ], + [ + -122.33797481686007, + 47.61671646359001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021896", + "osm_node_id": 5772021896, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33789961548723, + 47.61658305639699 + ], + [ + -122.33788292304513, + 47.616597089414206 + ], + [ + -122.33775830740093, + 47.616529732910074 + ], + [ + -122.33777499984305, + 47.61651569989286 + ], + [ + -122.33789961548723, + 47.61658305639699 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021897", + "osm_node_id": 5772021897, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33761519158932, + 47.616452376846965 + ], + [ + -122.33763188403144, + 47.61643834382974 + ], + [ + -122.33775649967562, + 47.616505700333875 + ], + [ + -122.33773980723352, + 47.61651973335109 + ], + [ + -122.33761519158932, + 47.616452376846965 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021898", + "osm_node_id": 5772021898, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33788008671745, + 47.61640383325536 + ], + [ + -122.33790079484456, + 47.616415175501785 + ], + [ + -122.33779390824954, + 47.61650384233506 + ], + [ + -122.33777320012243, + 47.61649250008863 + ], + [ + -122.33788008671745, + 47.61640383325536 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021899", + "osm_node_id": 5772021899, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33767822183448, + 47.6165998089633 + ], + [ + -122.33765751370737, + 47.61658846671688 + ], + [ + -122.3377644003024, + 47.616499799883606 + ], + [ + -122.33778510842951, + 47.61651114213003 + ], + [ + -122.33767822183448, + 47.6165998089633 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021900", + "osm_node_id": 5772021900, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33781605321809, + 47.61649931424984 + ], + [ + -122.33779138810702, + 47.61649245602187 + ], + [ + -122.33783563535246, + 47.61642014155671 + ], + [ + -122.33786030046353, + 47.616426999784686 + ], + [ + -122.33781605321809, + 47.61649931424984 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021901", + "osm_node_id": 5772021901, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33814242968431, + 47.616262351051994 + ], + [ + -122.33811652651487, + 47.616258039703325 + ], + [ + -122.33814529669662, + 47.61617948844155 + ], + [ + -122.33817119986607, + 47.616183799790214 + ], + [ + -122.33814242968431, + 47.616262351051994 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021902", + "osm_node_id": 5772021902, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33818926644624, + 47.616059437076444 + ], + [ + -122.33821516961567, + 47.616063748425105 + ], + [ + -122.33818639943391, + 47.61614229968688 + ], + [ + -122.33816049626448, + 47.61613798833822 + ], + [ + -122.33818926644624, + 47.616059437076444 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021903", + "osm_node_id": 5772021903, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33816389292029, + 47.616251920717865 + ], + [ + -122.33818870211574, + 47.61624530170949 + ], + [ + -122.338231608576, + 47.61631838059817 + ], + [ + -122.33820679938054, + 47.61632499960655 + ], + [ + -122.33816389292029, + 47.616251920717865 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021904", + "osm_node_id": 5772021904, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33829911610982, + 47.61643335978838 + ], + [ + -122.33827430691437, + 47.61643997879676 + ], + [ + -122.33823140045412, + 47.61636689990808 + ], + [ + -122.33825620964957, + 47.616360280899706 + ], + [ + -122.33829911610982, + 47.61643335978838 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021905", + "osm_node_id": 5772021905, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33809868540007, + 47.61636039331493 + ], + [ + -122.33810008888865, + 47.616378354569726 + ], + [ + -122.3379704036089, + 47.61638296089593 + ], + [ + -122.33796900012032, + 47.616364999641135 + ], + [ + -122.33809868540007, + 47.61636039331493 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5772021906", + "osm_node_id": 5772021906, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -122.33788952157603, + 47.616816514038504 + ], + [ + -122.33788657851919, + 47.61679863731995 + ], + [ + -122.3380073999414, + 47.61678960003528 + ], + [ + -122.33801034299825, + 47.616807476753834 + ], + [ + -122.33788952157603, + 47.616816514038504 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/7083431696", + "osm_node_id": 7083431696, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ diff --git a/tests/src/seattle_triangle/road_network.dot b/tests/src/seattle_triangle/road_network.dot index db7420ed..6e3a1d74 100644 --- a/tests/src/seattle_triangle/road_network.dot +++ b/tests/src/seattle_triangle/road_network.dot @@ -13,30 +13,60 @@ digraph { 11 [ label = "Unknown" ] 12 [ label = "Unknown" ] 13 [ label = "Unknown" ] + 14 [ label = "Unknown" ] + 15 [ label = "Unknown" ] + 16 [ label = "Unknown" ] + 17 [ label = "Unknown" ] + 18 [ label = "Unknown" ] + 19 [ label = "Unknown" ] + 20 [ label = "Unknown" ] + 21 [ label = "Unknown" ] + 22 [ label = "Unknown" ] + 23 [ label = "Unknown" ] + 24 [ label = "Unknown" ] + 25 [ label = "Unknown" ] + 26 [ label = "Unknown" ] + 27 [ label = "Unknown" ] + 28 [ label = "Unknown" ] + 29 [ label = "Unknown" ] + 30 [ label = "Unknown" ] + 31 [ label = "Unknown" ] + 32 [ label = "Unknown" ] + 33 [ label = "Unknown" ] 10 -> 9 [ label = "3 lanes" ] 9 -> 10 [ label = "3 lanes" ] 7 -> 9 [ label = "1 lanes" ] 9 -> 7 [ label = "2 lanes" ] 9 -> 8 [ label = "2 lanes" ] 8 -> 9 [ label = "3 lanes" ] - 8 -> 12 [ label = "3 lanes" ] - 12 -> 8 [ label = "3 lanes" ] - 12 -> 2 [ label = "3 lanes" ] - 2 -> 12 [ label = "3 lanes" ] + 8 -> 32 [ label = "3 lanes" ] + 32 -> 8 [ label = "3 lanes" ] + 32 -> 2 [ label = "3 lanes" ] + 2 -> 32 [ label = "3 lanes" ] 7 -> 8 [ label = "3 lanes" ] - 11 -> 3 [ label = "4 lanes" ] - 3 -> 11 [ label = "1 lanes" ] + 31 -> 3 [ label = "4 lanes" ] + 3 -> 31 [ label = "1 lanes" ] 0 -> 7 [ label = "4 lanes" ] 7 -> 0 [ label = "2 lanes" ] - 1 -> 13 [ label = "2 lanes" ] - 13 -> 1 [ label = "2 lanes" ] - 13 -> 7 [ label = "2 lanes" ] - 7 -> 13 [ label = "2 lanes" ] - 13 -> 5 [ label = "1 lanes" ] - 11 -> 12 [ label = "1 lanes" ] - 12 -> 13 [ label = "1 lanes" ] + 1 -> 33 [ label = "2 lanes" ] + 33 -> 1 [ label = "2 lanes" ] + 33 -> 7 [ label = "2 lanes" ] + 7 -> 33 [ label = "2 lanes" ] + 13 -> 14 [ label = "1 lanes" ] + 15 -> 16 [ label = "1 lanes" ] + 18 -> 19 [ label = "1 lanes" ] + 20 -> 21 [ label = "1 lanes" ] + 22 -> 23 [ label = "1 lanes" ] + 24 -> 12 [ label = "1 lanes" ] + 25 -> 26 [ label = "1 lanes" ] + 27 -> 28 [ label = "1 lanes" ] + 29 -> 11 [ label = "1 lanes" ] + 17 -> 30 [ label = "1 lanes" ] + 33 -> 5 [ label = "1 lanes" ] + 31 -> 32 [ label = "1 lanes" ] + 32 -> 33 [ label = "1 lanes" ] 9 -> 6 [ label = "3 lanes" ] 6 -> 9 [ label = "1 lanes" ] - 8 -> 11 [ label = "3 lanes" ] - 11 -> 8 [ label = "1 lanes" ] + 8 -> 31 [ label = "3 lanes" ] + 31 -> 8 [ label = "1 lanes" ] } diff --git a/tests/src/service_road_loop/geometry.json b/tests/src/service_road_loop/geometry.json index 85239726..6090d785 100644 --- a/tests/src/service_road_loop/geometry.json +++ b/tests/src/service_road_loop/geometry.json @@ -1,5 +1,41 @@ { "features": [ + { + "geometry": { + "coordinates": [ + [ + [ + -2.5676260945223515, + 51.46101685900866 + ], + [ + -2.5676696000875663, + 51.460993622341995 + ], + [ + -2.567595605552044, + 51.46093984112285 + ], + [ + -2.567552099986829, + 51.46096307778952 + ], + [ + -2.5676260945223515, + 51.46101685900866 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5908769456, + "osm_way_id": 340292788, + "src_i": 30984582, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -45,12 +81,8 @@ "coordinates": [ [ [ - -2.5677314686069193, - 51.46095975569622 - ], - [ - -2.567787092971296, - 51.460928697631225 + -2.567813860852485, + 51.460917023539956 ], [ -2.568150550134447, @@ -69,16 +101,12 @@ 51.46071001503915 ], [ - -2.5677163056739514, - 51.46087310158147 - ], - [ - -2.567655591875815, - 51.460907001502136 + -2.5677486624058257, + 51.46085899032918 ], [ - -2.5677314686069193, - 51.46095975569622 + -2.567813860852485, + 51.460917023539956 ] ] ], @@ -87,7 +115,7 @@ "properties": { "dst_i": 30984483, "osm_way_id": 340292788, - "src_i": 5908769456, + "src_i": 3710247245, "type": "road" }, "type": "Feature" @@ -97,39 +125,67 @@ "coordinates": [ [ [ - -2.567584680445939, - 51.461042770257215 + -2.567731467163518, + 51.46095975569622 ], [ - -2.5676023346899304, - 51.46102954933312 + -2.5677627644386765, + 51.46094228098185 ], [ - -2.5676696000875663, - 51.460993623241315 + -2.5676868877075716, + 51.46088952678775 ], [ - -2.567595605552044, - 51.46093984022353 + -2.567655590432413, + 51.460907001502136 + ], + [ + -2.567731467163518, + 51.46095975569622 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3710247245, + "osm_way_id": 340292788, + "src_i": 5908769456, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5675735316125983, + 51.46105111775857 ], [ - -2.567521065410747, - 51.46097965138384 + -2.567582319041052, + 51.46104453742379 ], [ - -2.5674972795970987, - 51.46099746424307 + -2.567494921079015, + 51.460999229611005 ], [ - -2.567584680445939, - 51.461042770257215 + -2.567486133650561, + 51.46100580994578 + ], + [ + -2.5675735316125983, + 51.46105111775857 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5908769456, + "dst_i": 30984582, "osm_way_id": 340292788, "src_i": 6036958563, "type": "road" @@ -177,41 +233,33 @@ "coordinates": [ [ [ - -2.567516254553481, - 51.4606842341922 - ], - [ - -2.567431086646792, - 51.46071121923052 - ], - [ - -2.567604121621012, - 51.46092330440071 + -2.568332117055052, + 51.46106127559393 ], [ - -2.567655590432413, - 51.460907003300775 + -2.5682599599696645, + 51.46106211735877 ], [ - -2.5675087127805387, - 51.460726980737604 + -2.5682604998018332, + 51.46108010018975 ], [ - -2.5675424263098416, - 51.46071629859786 + -2.5683326568872205, + 51.4610792584249 ], [ - -2.567516254553481, - 51.4606842341922 + -2.568332117055052, + 51.46106127559393 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5908769456, - "osm_way_id": 625826660, - "src_i": 5908769458, + "dst_i": 3710247247, + "osm_way_id": 367060822, + "src_i": 3606095831, "type": "road" }, "type": "Feature" @@ -221,33 +269,33 @@ "coordinates": [ [ [ - -2.5662118987886853, - 51.46024976662164 + -2.5679090921545717, + 51.461140211732314 ], [ - -2.5661439217941, - 51.46026902738834 + -2.5679096103357173, + 51.46118517690365 ], [ - -2.5661558731586855, - 51.46028540043399 + -2.5679384783661177, + 51.46118504740136 ], [ - -2.5662238501532713, - 51.46026613966728 + -2.567937960184972, + 51.46114008223003 ], [ - -2.5662118987886853, - 51.46024976662164 + -2.5679090921545717, + 51.461140211732314 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": -2, - "osm_way_id": 640910749, - "src_i": 6036958542, + "dst_i": 2933464148, + "osm_way_id": 367060822, + "src_i": 3710247242, "type": "road" }, "type": "Feature" @@ -257,33 +305,33 @@ "coordinates": [ [ [ - -2.567415482032959, - 51.461060478795154 + -2.56822388070527, + 51.461062538241194 ], [ - -2.5672595556969555, - 51.46097246400711 + -2.56794090183727, + 51.46106583605282 ], [ - -2.567240173701345, - 51.46098579374909 + -2.567941441669438, + 51.461083818883786 ], [ - -2.567396100037348, - 51.461073808537144 + -2.5682244205374385, + 51.46108052107217 ], [ - -2.567415482032959, - 51.461060478795154 + -2.56822388070527, + 51.461062538241194 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6036958644, - "osm_way_id": 640910758, - "src_i": 6036958646, + "dst_i": 3710247242, + "osm_way_id": 367060822, + "src_i": 3710247247, "type": "road" }, "type": "Feature" @@ -293,33 +341,33 @@ "coordinates": [ [ [ - -2.5673651722729787, - 51.46095017162792 + -2.56792615460394, + 51.461066008722526 ], [ - -2.5674648463649437, - 51.461017960677395 + -2.5678047515454923, + 51.460924568846615 ], [ - -2.567486133650561, - 51.4610058108451 + -2.567779295716285, + 51.46093305124618 ], [ - -2.567386459558596, - 51.460938021795634 + -2.5679006987747326, + 51.46107449112209 ], [ - -2.5673651722729787, - 51.46095017162792 + -2.56792615460394, + 51.461066008722526 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6036958563, - "osm_way_id": 640910762, - "src_i": 6036958564, + "dst_i": 3710247245, + "osm_way_id": 367061135, + "src_i": 3710247242, "type": "road" }, "type": "Feature" @@ -329,33 +377,33 @@ "coordinates": [ [ [ - -2.5670838071278776, - 51.460708447521924 + -2.568232118197745, + 51.461102822444566 ], [ - -2.5670840568363404, - 51.46070792231822 + -2.5682337824396977, + 51.461180316970726 ], [ - -2.5670286995012446, - 51.46069770422832 + -2.568262647583295, + 51.46118007595259 ], [ - -2.5670284497927818, - 51.460698229432026 + -2.5682609833413426, + 51.46110258142643 ], [ - -2.5670838071278776, - 51.460708447521924 + -2.568232118197745, + 51.461102822444566 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6036958634, - "osm_way_id": 640910764, - "src_i": 6036958615, + "dst_i": 3710247249, + "osm_way_id": 367061139, + "src_i": 3710247247, "type": "road" }, "type": "Feature" @@ -365,49 +413,49 @@ "coordinates": [ [ [ - -2.5670860934758855, - 51.460708625587564 + -2.567543181208837, + 51.4609678396964 ], [ - -2.5671225740059023, - 51.460721421132625 + -2.5674560156344444, + 51.460914011712546 ], [ - -2.5672331400057375, - 51.46085755681084 + -2.5672841454852504, + 51.4607223357425 ], [ - -2.5673166985197318, - 51.46091657567789 + -2.5672046068444896, + 51.46074255338719 ], [ - -2.567338346655729, - 51.4609046776556 + -2.567215510299572, + 51.46075920702112 ], [ - -2.567257236150713, - 51.4608473872843 + -2.5672714002498287, + 51.46074500044075 ], [ - -2.567144375142461, - 51.460708427736854 + -2.567432799964396, + 51.46092499962157 ], [ - -2.5671002561316, - 51.460692952213975 + -2.567522858115435, + 51.46098061365775 ], [ - -2.5670860934758855, - 51.460708625587564 + -2.567543181208837, + 51.4609678396964 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6036958564, - "osm_way_id": 640910765, - "src_i": 6036958634, + "dst_i": 6036958569, + "osm_way_id": 590064037, + "src_i": 30984582, "type": "road" }, "type": "Feature" @@ -417,49 +465,33 @@ "coordinates": [ [ [ - -2.566806134203865, - 51.460348231524506 - ], - [ - -2.5670030747940595, - 51.460587525664046 - ], - [ - -2.567028849615003, - 51.46063917009551 - ], - [ - -2.567032078504203, - 51.46066668753211 - ], - [ - -2.567089661564443, - 51.46066406511087 + -2.567137966439712, + 51.46075916385369 ], [ - -2.567085950579135, - 51.460632430580844 + -2.5670721545474064, + 51.460775245519194 ], [ - -2.567056726028559, - 51.460573873965 + -2.5670826942653058, + 51.460791990883905 ], [ - -2.5668575106375684, - 51.46033181711008 + -2.567148506157611, + 51.4607759092184 ], [ - -2.566806134203865, - 51.460348231524506 + -2.567137966439712, + 51.46075916385369 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6036958634, - "osm_way_id": 640910767, - "src_i": -1, + "dst_i": 6036958639, + "osm_way_id": 590064037, + "src_i": 6036958569, "type": "road" }, "type": "Feature" @@ -469,33 +501,41 @@ "coordinates": [ [ [ - -2.5670012950799856, - 51.460717375085586 + -2.5670078091510455, + 51.46078727304378 + ], + [ + -2.566900525446267, + 51.46080145983906 + ], + [ + -2.5661418389657067, + 51.461000414017306 ], [ - -2.566140843018658, - 51.46095058801374 + -2.5661530368746988, + 51.46101699210823 ], [ - -2.566163873933311, - 51.460983575123166 + -2.566909200289402, + 51.460818699830554 ], [ - -2.567024325994639, - 51.46075036219502 + -2.5670138021541566, + 51.4608048673679 ], [ - -2.5670012950799856, - 51.460717375085586 + -2.5670078091510455, + 51.46078727304378 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6036958604, - "osm_way_id": 640910767, - "src_i": 6036958615, + "dst_i": -2, + "osm_way_id": 590064037, + "src_i": 6036958639, "type": "road" }, "type": "Feature" @@ -505,73 +545,113 @@ "coordinates": [ [ [ - -2.567099247193937, - 51.46091824931504 + -2.567516254553481, + 51.4606842341922 ], [ - -2.566622713955708, - 51.46103204135276 + -2.567431086646792, + 51.46071121923052 ], [ - -2.5666047594842003, - 51.461032488315496 + -2.567604121621012, + 51.46092330440071 ], [ - -2.5665978556947304, - 51.46102873095064 + -2.567655590432413, + 51.460907003300775 ], [ - -2.5665604571613465, - 51.46096496006924 + -2.5675087127805387, + 51.460726980737604 ], [ - -2.566563559031213, - 51.46095485439452 + -2.5675424263098416, + 51.46071629859786 ], [ - -2.5670268952493447, - 51.460824976194694 + -2.567516254553481, + 51.4606842341922 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5908769456, + "osm_way_id": 625826660, + "src_i": 5908769458, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5660805073917192, + 51.460286995830174 ], [ - -2.5670150506964715, - 51.46080857257212 + -2.566012530397134, + 51.46030625659688 ], [ - -2.566538025258324, - 51.46094228727709 + -2.5660244817617195, + 51.46032262964252 ], [ - -2.5665306047311094, - 51.46096646553328 + -2.566092458756305, + 51.46030336887582 ], [ - -2.566573283227253, - 51.46103923862202 + -2.5660805073917192, + 51.460286995830174 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958604, + "osm_way_id": 640910749, + "src_i": 6036958542, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.567415482032959, + 51.461060478795154 ], [ - -2.5665944247293173, - 51.46105074633883 + -2.5672595556969555, + 51.46097246400711 ], [ - -2.5666286145811217, - 51.461049894681445 + -2.567240173701345, + 51.46098579374909 ], [ - -2.5671095790620178, - 51.46093504504176 + -2.567396100037348, + 51.461073808537144 ], [ - -2.567099247193937, - 51.46091824931504 + -2.567415482032959, + 51.461060478795154 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6036958616, - "osm_way_id": 640910770, - "src_i": 6036958633, + "dst_i": 6036958644, + "osm_way_id": 640910758, + "src_i": 6036958646, "type": "road" }, "type": "Feature" @@ -581,42 +661,679 @@ "coordinates": [ [ [ - -2.5670619901139027, - 51.46078108301449 - ], - [ - -2.567054674954999, - 51.460761047032726 - ], - [ - -2.567057020482469, - 51.460752129361595 + -2.5673651722729787, + 51.46095017162792 + ], + [ + -2.5674648463649437, + 51.46101795977807 + ], + [ + -2.567486133650561, + 51.46100580994578 + ], + [ + -2.567386459558596, + 51.460938021795634 + ], + [ + -2.5673651722729787, + 51.46095017162792 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958563, + "osm_way_id": 640910762, + "src_i": 6036958564, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5670838172316883, + 51.460708427736854 + ], + [ + -2.5670840654967497, + 51.46070790343247 + ], + [ + -2.5670286879540325, + 51.46069772491271 + ], + [ + -2.567028439688971, + 51.460698249217096 + ], + [ + -2.5670838172316883, + 51.460708427736854 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958634, + "osm_way_id": 640910764, + "src_i": 6036958615, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5671818819309586, + 51.460792836246036 + ], + [ + -2.567233083713078, + 51.46085751634138 + ], + [ + -2.5673166985197318, + 51.46091657567789 + ], + [ + -2.567338346655729, + 51.4609046776556 + ], + [ + -2.567257272235751, + 51.460847411565986 + ], + [ + -2.567207770780622, + 51.46078488084881 + ], + [ + -2.5671818819309586, + 51.460792836246036 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958564, + "osm_way_id": 640910765, + "src_i": 6036958569, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5670860934758855, + 51.460708625587564 + ], + [ + -2.5671227096856453, + 51.46072146969598 + ], + [ + -2.567149339000288, + 51.46075302958233 + ], + [ + -2.5671748900939955, + 51.46074466049726 + ], + [ + -2.5671442943119755, + 51.460708398958566 + ], + [ + -2.5671002561316, + 51.460692952213975 + ], + [ + -2.5670860934758855, + 51.460708625587564 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958569, + "osm_way_id": 640910765, + "src_i": 6036958634, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.566806134203865, + 51.460348231524506 + ], + [ + -2.5670030747940595, + 51.460587525664046 + ], + [ + -2.567028849615003, + 51.46063917009551 + ], + [ + -2.567032078504203, + 51.46066668753211 + ], + [ + -2.567089661564443, + 51.46066406511087 + ], + [ + -2.567085950579135, + 51.460632430580844 + ], + [ + -2.567056726028559, + 51.460573873965 + ], + [ + -2.5668575106375684, + 51.46033181711008 + ], + [ + -2.566806134203865, + 51.460348231524506 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958634, + "osm_way_id": 640910767, + "src_i": -1, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.567001296523387, + 51.46071737328695 + ], + [ + -2.566140848792264, + 51.46095055114156 + ], + [ + -2.5661638768201143, + 51.460983538250986 + ], + [ + -2.5670243245512374, + 51.460750360396375 + ], + [ + -2.567001296523387, + 51.46071737328695 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958484, + "osm_way_id": 640910767, + "src_i": 6036958615, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.567102477526539, + 51.46092349775481 + ], + [ + -2.566624560066252, + 51.4610376207428 + ], + [ + -2.5666015291515984, + 51.46103819361054 + ], + [ + -2.566590176798644, + 51.46103201617176 + ], + [ + -2.5665511284573226, + 51.46096543041433 + ], + [ + -2.56655557990761, + 51.46095092615859 + ], + [ + -2.5670231929244456, + 51.46081985006264 + ], + [ + -2.5670172720914106, + 51.46081164825135 + ], + [ + -2.566542811577764, + 51.4609446434992 + ], + [ + -2.5665362036856054, + 51.460966182247034 + ], + [ + -2.5665778934517083, + 51.46103727180609 + ], + [ + -2.566596361774157, + 51.46104732352153 + ], + [ + -2.566627507492156, + 51.46104654740715 + ], + [ + -2.5671076420171777, + 51.46093189561817 + ], + [ + -2.567102477526539, + 51.46092349775481 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958616, + "osm_way_id": 640910770, + "src_i": 6036958633, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.567067467822671, + 51.460798615285434 + ], + [ + -2.5670659219396432, + 51.46079613315833 + ], + [ + -2.5670390082749006, + 51.46080264064808 + ], + [ + -2.5670405541579284, + 51.46080512277518 + ], + [ + -2.567067467822671, + 51.460798615285434 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958639, + "osm_way_id": 640910773, + "src_i": 6036958616, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5671354477040595, + 51.46089568354215 + ], + [ + -2.567116188397578, + 51.46087662062616 + ], + [ + -2.567082303103494, + 51.46082237445785 + ], + [ + -2.5670554009859634, + 51.460828898135375 + ], + [ + -2.5670902880007027, + 51.46088474689444 + ], + [ + -2.5671110166899314, + 51.46090526491248 + ], + [ + -2.5671354477040595, + 51.46089568354215 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958616, + "osm_way_id": 640910773, + "src_i": 6036958633, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.567050672402584, + 51.46077704506134 + ], + [ + -2.567045473270309, + 51.46076128445358 + ], + [ + -2.567048684838691, + 51.46074907436675 + ], + [ + -2.5670344413524915, + 51.46074761926471 + ], + [ + -2.567030796763653, + 51.460761471512434 + ], + [ + -2.5670365328412936, + 51.46077885629467 + ], + [ + -2.567050672402584, + 51.46077704506134 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958615, + "osm_way_id": 640910773, + "src_i": 6036958639, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.567205703829645, + 51.46094236371941 + ], + [ + -2.567178358587848, + 51.46092722814003 + ], + [ + -2.5671591873288593, + 51.460940674793804 + ], + [ + -2.567186532570656, + 51.46095581037318 + ], + [ + -2.567205703829645, + 51.46094236371941 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6036958633, + "osm_way_id": 640910773, + "src_i": 6036958644, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.56602, + 51.461051878584485 + ], + [ + -2.5660088020910075, + 51.461035300493556 + ], + [ + -2.5661418389657067, + 51.461000414017306 + ], + [ + -2.5661530368746988, + 51.46101699210823 + ], + [ + -2.56602, + 51.461051878584485 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-2", + "osm_node_id": -2, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.566740273235908, + 51.460268207207214 + ], + [ + -2.5667916496696113, + 51.46025179279278 + ], + [ + -2.5668575106375684, + 51.46033181711008 + ], + [ + -2.566806134203865, + 51.460348231524506 + ], + [ + -2.566740273235908, + 51.460268207207214 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-1", + "osm_node_id": -1, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5683924772198163, + 51.46060581786159 + ], + [ + -2.568447522780184, + 51.46066779909338 + ], + [ + -2.568321228033985, + 51.46071134063891 + ], + [ + -2.5682661824736175, + 51.46064935940712 + ], + [ + -2.5683924772198163, + 51.46060581786159 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/30984483", + "osm_node_id": 30984483, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5676023303597257, + 51.461029552031086 + ], + [ + -2.567582320484454, + 51.46104453652447 + ], + [ + -2.5674949196356134, + 51.460999230510325 + ], + [ + -2.567522858115435, + 51.46098061365775 + ], + [ + -2.567543181208837, + 51.4609678396964 + ], + [ + -2.567552099986829, + 51.4609630768902 + ], + [ + -2.5676260945223515, + 51.461016859907986 + ], + [ + -2.5676023303597257, + 51.461029552031086 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/30984582", + "osm_node_id": 30984582, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5672901356015587, + 51.461289480201124 ], [ - -2.56702853351007, - 51.460749220956146 + -2.5671951828759654, + 51.461250519798874 ], [ - -2.5670252757528393, - 51.460761610007935 + -2.5672745771765744, + 51.46117540217921 ], [ - -2.567033840897459, - 51.46078507240428 + -2.567369512581349, + 51.46121438056789 ], [ - -2.5670619901139027, - 51.46078108301449 + -2.5672901356015587, + 51.461289480201124 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6036958615, - "osm_way_id": 640910773, - "src_i": 6036958616, - "type": "road" + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/358460198", + "osm_node_id": 358460198, + "type": "intersection" }, "type": "Feature" }, @@ -625,42 +1342,35 @@ "coordinates": [ [ [ - -2.5671354477040595, - 51.46089568354215 - ], - [ - -2.567116188397578, - 51.46087662062616 - ], - [ - -2.567082303103494, - 51.46082237445785 + -2.5679393848222722, + 51.46126373622636 ], [ - -2.5670554009859634, - 51.460828898135375 + -2.567910516791872, + 51.46126386572864 ], [ - -2.5670902880007027, - 51.46088474689444 + -2.5679096103357173, + 51.46118517690365 ], [ - -2.5671110166899314, - 51.46090526491248 + -2.5679384783661177, + 51.46118504740136 ], [ - -2.5671354477040595, - 51.46089568354215 + -2.5679393848222722, + 51.46126373622636 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6036958616, - "osm_way_id": 640910773, - "src_i": 6036958633, - "type": "road" + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/2933464148", + "osm_node_id": 2933464148, + "type": "intersection" }, "type": "Feature" }, @@ -669,34 +1379,35 @@ "coordinates": [ [ [ - -2.567205703829645, - 51.46094236371941 + -2.568458393037031, + 51.46105980250545 ], [ - -2.567178358587848, - 51.46092722814003 + -2.5684589328692, + 51.46107778533643 ], [ - -2.5671591873288593, - 51.460940674793804 + -2.5683326568872205, + 51.4610792584249 ], [ - -2.567186532570656, - 51.46095581037318 + -2.568332117055052, + 51.46106127559393 ], [ - -2.567205703829645, - 51.46094236371941 + -2.568458393037031, + 51.46105980250545 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6036958633, - "osm_way_id": 640910773, - "src_i": 6036958644, - "type": "road" + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/3606095831", + "osm_node_id": 3606095831, + "type": "intersection" }, "type": "Feature" }, @@ -705,34 +1416,46 @@ "coordinates": [ [ [ - -2.5660244817617195, - 51.46032262964252 + -2.567937700372698, + 51.46111760009403 ], [ - -2.566012530397134, - 51.46030625659688 + -2.567937960184972, + 51.46114008223003 ], [ - -2.5661439217941, - 51.46026902738834 + -2.5679090921545717, + 51.461140211732314 ], [ - -2.5661558731586855, - 51.46028540043399 + -2.5679006987747326, + 51.46107449112209 ], [ - -2.5660244817617195, - 51.46032262964252 + -2.56792615460394, + 51.461066008722526 + ], + [ + -2.56794090183727, + 51.46106583605282 + ], + [ + -2.567941441669438, + 51.461083818883786 + ], + [ + -2.567937700372698, + 51.46111760009403 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-2", - "osm_node_id": -2, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3710247242", + "osm_node_id": 3710247242, "type": "intersection" }, "type": "Feature" @@ -742,34 +1465,46 @@ "coordinates": [ [ [ - -2.566740273235908, - 51.460268207207214 + -2.567802520046742, + 51.46092196890841 ], [ - -2.5667916496696113, - 51.46025179279278 + -2.5678047515454923, + 51.460924568846615 ], [ - -2.5668575106375684, - 51.46033181711008 + -2.567779295716285, + 51.46093305124618 ], [ - -2.566806134203865, - 51.460348231524506 + -2.5677627644386765, + 51.46094228098185 ], [ - -2.566740273235908, - 51.460268207207214 + -2.5676868877075716, + 51.46088952678775 + ], + [ + -2.5677486624058257, + 51.46085899032918 + ], + [ + -2.567813860852485, + 51.460917023539956 + ], + [ + -2.567802520046742, + 51.46092196890841 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-1", - "osm_node_id": -1, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3710247245", + "osm_node_id": 3710247245, "type": "intersection" }, "type": "Feature" @@ -779,34 +1514,46 @@ "coordinates": [ [ [ - -2.5683924772198163, - 51.46060581786159 + -2.5682604998018332, + 51.46108010018975 ], [ - -2.568447522780184, - 51.46066779909338 + -2.5682609833413426, + 51.46110258142643 ], [ - -2.568321228033985, - 51.46071134063891 + -2.568232118197745, + 51.461102822444566 ], [ - -2.5682661824736175, - 51.46064935940712 + -2.568231636101637, + 51.46108043653596 ], [ - -2.5683924772198163, - 51.46060581786159 + -2.5682244205374385, + 51.46108052107217 + ], + [ + -2.56822388070527, + 51.461062538241194 + ], + [ + -2.5682599599696645, + 51.46106211735877 + ], + [ + -2.5682604998018332, + 51.46108010018975 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/30984483", - "osm_node_id": 30984483, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3710247247", + "osm_node_id": 3710247247, "type": "intersection" }, "type": "Feature" @@ -816,24 +1563,24 @@ "coordinates": [ [ [ - -2.5672901356015587, - 51.461289480201124 + -2.568264578854529, + 51.46127 ], [ - -2.5671951828759654, - 51.461250519798874 + -2.5682357137109313, + 51.461270241018134 ], [ - -2.5672745771765744, - 51.46117540217921 + -2.5682337824396977, + 51.461180316970726 ], [ - -2.567369512581349, - 51.46121438056789 + -2.568262647583295, + 51.46118007595259 ], [ - -2.5672901356015587, - 51.461289480201124 + -2.568264578854529, + 51.46127 ] ] ], @@ -842,8 +1589,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/358460198", - "osm_node_id": 358460198, + "osm_link": "https://www.openstreetmap.org/node/3710247249", + "osm_node_id": 3710247249, "type": "intersection" }, "type": "Feature" @@ -854,11 +1601,11 @@ [ [ -2.5676696000875663, - 51.460993623241315 + 51.460993622341995 ], [ -2.567595605552044, - 51.46093984022353 + 51.46093984112285 ], [ -2.567610934476187, @@ -873,12 +1620,12 @@ 51.460907003300775 ], [ - -2.5677314686069193, + -2.567731467163518, 51.46095975569622 ], [ -2.5676696000875663, - 51.460993623241315 + 51.460993622341995 ] ] ], @@ -935,24 +1682,61 @@ "coordinates": [ [ [ - -2.5663245851453533, - 51.46021783801351 + -2.5660315140139254, + 51.46101940768555 ], [ - -2.5663365365099393, - 51.46023421105916 + -2.5660084859860746, + 51.46098642057612 ], [ - -2.5662238501532713, - 51.46026613966728 + -2.566140848792264, + 51.46095055114156 + ], + [ + -2.5661638768201143, + 51.460983538250986 ], + [ + -2.5660315140139254, + 51.46101940768555 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/6036958484", + "osm_node_id": 6036958484, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ -2.5662118987886853, 51.46024976662164 ], [ - -2.5663245851453533, - 51.46021783801351 + -2.5662238501532713, + 51.46026613966728 + ], + [ + -2.566092458756305, + 51.46030336887582 + ], + [ + -2.5660805073917192, + 51.460286995830174 + ], + [ + -2.5662118987886853, + 51.46024976662164 ] ] ], @@ -972,8 +1756,8 @@ "coordinates": [ [ [ - -2.567561975740029, - 51.461059771029205 + -2.5675619410983925, + 51.46105979800885 ], [ -2.5675397545736285, @@ -989,23 +1773,19 @@ ], [ -2.5674648463649437, - 51.461017960677395 + 51.46101795977807 ], [ -2.567486133650561, - 51.4610058108451 - ], - [ - -2.5674972795970987, - 51.46099746424307 + 51.46100580994578 ], [ - -2.567584680445939, - 51.461042770257215 + -2.5675735316125983, + 51.46105111775857 ], [ - -2.567561975740029, - 51.461059771029205 + -2.5675619410983925, + 51.46105979800885 ] ] ], @@ -1066,24 +1846,89 @@ "coordinates": [ [ [ - -2.5660315154573268, - 51.461019449054334 + -2.5671921488459706, + 51.46076514524041 + ], + [ + -2.567207770780622, + 51.46078488084881 + ], + [ + -2.5671818819309586, + 51.460792836246036 + ], + [ + -2.567148506157611, + 51.4607759092184 + ], + [ + -2.567137966439712, + 51.46075916385369 + ], + [ + -2.56715168597116, + 51.46075581118346 + ], + [ + -2.567149339000288, + 51.46075302958233 + ], + [ + -2.5671748900939955, + 51.46074466049726 + ], + [ + -2.567178674692781, + 51.460749145413146 + ], + [ + -2.5672046068444896, + 51.46074255338719 + ], + [ + -2.567215510299572, + 51.46075920702112 + ], + [ + -2.5671921488459706, + 51.46076514524041 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6036958569", + "osm_node_id": 6036958569, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5659117954050514, + 51.46035455825065 ], [ - -2.566008484542673, - 51.4609864619449 + -2.565899844040466, + 51.460338185205 ], [ - -2.566140843018658, - 51.46095058801374 + -2.566012530397134, + 51.46030625659688 ], [ - -2.566163873933311, - 51.460983575123166 + -2.5660244817617195, + 51.46032262964252 ], [ - -2.5660315154573268, - 51.461019449054334 + -2.5659117954050514, + 51.46035455825065 ] ] ], @@ -1103,20 +1948,20 @@ "coordinates": [ [ [ - -2.567057020482469, - 51.460752129361595 + -2.567048684838691, + 51.46074907436675 ], [ - -2.56702853351007, - 51.460749220956146 + -2.5670344413524915, + 51.46074761926471 ], [ - -2.567024325994639, - 51.46075036219502 + -2.5670243245512374, + 51.460750360396375 ], [ - -2.5670012950799856, - 51.460717375085586 + -2.567001296523387, + 51.46071737328695 ], [ -2.5670220338730254, @@ -1131,8 +1976,8 @@ 51.460708436730066 ], [ - -2.567057020482469, - 51.460752129361595 + -2.567048684838691, + 51.46074907436675 ] ] ], @@ -1152,8 +1997,8 @@ "coordinates": [ [ [ - -2.5670696978780194, - 51.460802196383305 + -2.56706921433851, + 51.46080142206757 ], [ -2.567082303103494, @@ -1164,32 +2009,28 @@ 51.460828898135375 ], [ - -2.5670490687834953, - 51.46081876098441 - ], - [ - -2.5670268952493447, - 51.460824976194694 + -2.5670457922620447, + 51.460813515242606 ], [ - -2.5670150506964715, - 51.46080857257212 + -2.5670231929244456, + 51.46081985006264 ], [ - -2.567039878646017, - 51.46080161272371 + -2.5670172720914106, + 51.46081164825135 ], [ - -2.567033840897459, - 51.46078507240428 + -2.5670405541579284, + 51.46080512277518 ], [ - -2.5670619901139027, - 51.46078108301449 + -2.567067467822671, + 51.460798615285434 ], [ - -2.5670696978780194, - 51.460802196383305 + -2.56706921433851, + 51.46080142206757 ] ] ], @@ -1221,20 +2062,20 @@ 51.460940674793804 ], [ - -2.5671371292668304, - 51.46092846650562 + -2.56713257100483, + 51.460925943009734 ], [ - -2.5671095790620178, - 51.46093504504176 + -2.5671076420171777, + 51.46093189561817 ], [ - -2.567099247193937, - 51.46091824931504 + -2.567102477526539, + 51.46092349775481 ], [ - -2.5671192960410503, - 51.46091346132784 + -2.567124196389211, + 51.460918311368225 ], [ -2.5671110166899314, @@ -1274,12 +2115,12 @@ 51.460708625587564 ], [ - -2.5670840568363404, - 51.46070792231822 + -2.5670840654967497, + 51.46070790343247 ], [ - -2.5670286995012446, - 51.46069770422832 + -2.5670286879540325, + 51.46069772491271 ], [ -2.567034324436968, @@ -1310,6 +2151,63 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.5670365328412936, + 51.46077885629467 + ], + [ + -2.567050672402584, + 51.46077704506134 + ], + [ + -2.5670659219396432, + 51.46079613315833 + ], + [ + -2.5670390082749006, + 51.46080264064808 + ], + [ + -2.5670138021541566, + 51.4608048673679 + ], + [ + -2.5670078091510455, + 51.46078727304378 + ], + [ + -2.567040770668157, + 51.46078291493221 + ], + [ + -2.5670721545474064, + 51.460775245519194 + ], + [ + -2.5670826942653058, + 51.460791990883905 + ], + [ + -2.5670365328412936, + 51.46077885629467 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6036958639", + "osm_node_id": 6036958639, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ diff --git a/tests/src/service_road_loop/road_network.dot b/tests/src/service_road_loop/road_network.dot index 7e6f5409..081c875b 100644 --- a/tests/src/service_road_loop/road_network.dot +++ b/tests/src/service_road_loop/road_network.dot @@ -2,42 +2,66 @@ digraph { 0 [ label = "MapEdge" ] 1 [ label = "MapEdge" ] 2 [ label = "MapEdge" ] - 3 [ label = "MapEdge" ] - 4 [ label = "Unknown" ] - 5 [ label = "Unknown" ] + 3 [ label = "Unknown" ] + 4 [ label = "MapEdge" ] + 5 [ label = "MapEdge" ] 6 [ label = "MapEdge" ] 7 [ label = "Unknown" ] 8 [ label = "Unknown" ] - 9 [ label = "MapEdge" ] - 10 [ label = "Unknown" ] + 9 [ label = "Unknown" ] + 10 [ label = "MapEdge" ] 11 [ label = "Unknown" ] 12 [ label = "Unknown" ] - 13 [ label = "Unknown" ] - 14 [ label = "Unknown" ] + 13 [ label = "MapEdge" ] + 14 [ label = "MapEdge" ] 15 [ label = "Unknown" ] - 16 [ label = "MapEdge" ] - 3 -> 15 [ label = "2 lanes" ] + 16 [ label = "Unknown" ] + 17 [ label = "Unknown" ] + 18 [ label = "MapEdge" ] + 19 [ label = "Unknown" ] + 20 [ label = "Unknown" ] + 21 [ label = "Unknown" ] + 22 [ label = "Unknown" ] + 23 [ label = "Unknown" ] + 24 [ label = "Unknown" ] + 25 [ label = "Unknown" ] + 26 [ label = "MapEdge" ] + 3 -> 11 [ label = "2 lanes" ] + 11 -> 3 [ label = "2 lanes" ] + 4 -> 25 [ label = "2 lanes" ] + 25 -> 4 [ label = "2 lanes" ] + 8 -> 2 [ label = "2 lanes" ] + 2 -> 8 [ label = "2 lanes" ] + 11 -> 8 [ label = "2 lanes" ] + 8 -> 11 [ label = "2 lanes" ] 15 -> 3 [ label = "2 lanes" ] - 4 -> 2 [ label = "2 lanes" ] - 2 -> 4 [ label = "2 lanes" ] - 7 -> 4 [ label = "2 lanes" ] - 4 -> 7 [ label = "2 lanes" ] - 15 -> 7 [ label = "2 lanes" ] - 7 -> 15 [ label = "2 lanes" ] - 5 -> 4 [ label = "1 lanes" ] - 4 -> 5 [ label = "1 lanes" ] - 6 -> 0 [ label = "1 lanes" ] - 15 -> 14 [ label = "1 lanes" ] - 8 -> 7 [ label = "1 lanes" ] - 10 -> 13 [ label = "1 lanes" ] - 13 -> 10 [ label = "1 lanes" ] - 13 -> 8 [ label = "1 lanes" ] - 1 -> 13 [ label = "1 lanes" ] - 13 -> 1 [ label = "1 lanes" ] - 10 -> 9 [ label = "1 lanes" ] + 3 -> 15 [ label = "2 lanes" ] + 25 -> 15 [ label = "2 lanes" ] + 15 -> 25 [ label = "2 lanes" ] + 6 -> 9 [ label = "1 lanes" ] + 7 -> 5 [ label = "1 lanes" ] + 9 -> 7 [ label = "1 lanes" ] + 7 -> 8 [ label = "1 lanes" ] 9 -> 10 [ label = "1 lanes" ] + 3 -> 17 [ label = "1 lanes" ] + 17 -> 23 [ label = "1 lanes" ] + 23 -> 0 [ label = "1 lanes" ] 12 -> 11 [ label = "1 lanes" ] - 11 -> 10 [ label = "1 lanes" ] - 12 -> 11 [ label = "1 lanes" ] - 14 -> 12 [ label = "1 lanes" ] + 11 -> 12 [ label = "1 lanes" ] + 14 -> 18 [ label = "1 lanes" ] + 25 -> 24 [ label = "1 lanes" ] + 16 -> 15 [ label = "1 lanes" ] + 19 -> 22 [ label = "1 lanes" ] + 22 -> 19 [ label = "1 lanes" ] + 17 -> 16 [ label = "1 lanes" ] + 22 -> 17 [ label = "1 lanes" ] + 1 -> 22 [ label = "1 lanes" ] + 22 -> 1 [ label = "1 lanes" ] + 19 -> 13 [ label = "1 lanes" ] + 13 -> 19 [ label = "1 lanes" ] + 21 -> 20 [ label = "1 lanes" ] + 20 -> 23 [ label = "1 lanes" ] + 21 -> 20 [ label = "1 lanes" ] + 23 -> 19 [ label = "1 lanes" ] + 24 -> 21 [ label = "1 lanes" ] } diff --git a/tests/src/st_georges_cycletrack/geometry.json b/tests/src/st_georges_cycletrack/geometry.json index 147a17a8..0cd15f73 100644 --- a/tests/src/st_georges_cycletrack/geometry.json +++ b/tests/src/st_georges_cycletrack/geometry.json @@ -404,6 +404,182 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10770733703674776, + 51.494974749611956 + ], + [ + -0.1075388032554504, + 51.49525387475394 + ], + [ + -0.1073038669188037, + 51.495596528872866 + ], + [ + -0.10712101076286196, + 51.49590265884377 + ], + [ + -0.10701576001193341, + 51.49608475527935 + ], + [ + -0.10695957823356886, + 51.49624886078639 + ], + [ + -0.10698782726533695, + 51.49625261095744 + ], + [ + -0.10704359888393553, + 51.49608970154813 + ], + [ + -0.10714811596880386, + 51.495908873156004 + ], + [ + -0.10733070061053432, + 51.49560320004047 + ], + [ + -0.10756559939734328, + 51.495260599880844 + ], + [ + -0.10773437291991228, + 51.49498107903735 + ], + [ + -0.10770733703674776, + 51.494974749611956 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3374579450, + "osm_way_id": 8614531, + "src_i": 61334096, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10665414785348497, + 51.496951989081666 + ], + [ + -0.10664035262079333, + 51.49696309390474 + ], + [ + -0.10666320025282659, + 51.49697409980244 + ], + [ + -0.10667699548551826, + 51.49696299497936 + ], + [ + -0.10665414785348497, + 51.496951989081666 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4169653680, + "osm_way_id": 8614531, + "src_i": 61334099, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10682889468870188, + 51.49663144478421 + ], + [ + -0.10675084446253406, + 51.496870234453255 + ], + [ + -0.10677914837483421, + 51.49687382094778 + ], + [ + -0.10685719860100203, + 51.496635031278736 + ], + [ + -0.10682889468870188, + 51.49663144478421 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 61334099, + "osm_way_id": 8614531, + "src_i": 61334104, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1069445193044152, + 51.49629283671315 + ], + [ + -0.10684368210364428, + 51.496587259315504 + ], + [ + -0.10687193113541235, + 51.49659101128521 + ], + [ + -0.10697276833618329, + 51.49629658868285 + ], + [ + -0.1069445193044152, + 51.49629283671315 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 61334104, + "osm_way_id": 8614531, + "src_i": 3374579450, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -457,28 +633,20 @@ 51.49645332874601 ], [ - -0.10259148071028384, - 51.496505536163355 - ], - [ - -0.10295979551476682, - 51.49650861184321 - ], - [ - -0.10338661441065537, - 51.49663397097857 + -0.10259148937563102, + 51.49650554065996 ], [ - -0.10343514324324593, - 51.49656990150937 + -0.10280985179159416, + 51.49650732221605 ], [ - -0.10298600530150133, - 51.49643798811821 + -0.10281134223130706, + 51.49643648984843 ], [ - -0.10263591949901105, - 51.49643506352438 + -0.10263591083366387, + 51.49643505902777 ], [ -0.10262989130583108, @@ -501,13 +669,57 @@ "type": "Polygon" }, "properties": { - "dst_i": 730857210, + "dst_i": 9136430547, "osm_way_id": 10873089, "src_i": 3799274007, "type": "road" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10288200524901406, + 51.49650793015744 + ], + [ + -0.10295978107252154, + 51.496508608245925 + ], + [ + -0.10338661441065537, + 51.49663397097857 + ], + [ + -0.10343514324324593, + 51.49656990150937 + ], + [ + -0.10298601974374663, + 51.496437991715496 + ], + [ + -0.10288359678444392, + 51.496437099588476 + ], + [ + -0.10288200524901406, + 51.49650793015744 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 730857210, + "osm_way_id": 10873089, + "src_i": 9136430547, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -668,6 +880,50 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1060707966821269, + 51.49605579712393 + ], + [ + -0.10642531625391821, + 51.49615803829831 + ], + [ + -0.10693612980413192, + 51.4962831114494 + ], + [ + -0.10694669863922798, + 51.49626637327584 + ], + [ + -0.10643670829699524, + 51.496141501572794 + ], + [ + -0.10608293683350944, + 51.49603947623559 + ], + [ + -0.1060707966821269, + 51.49605579712393 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3374579450, + "osm_way_id": 24397614, + "src_i": 264790813, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -677,12 +933,12 @@ 51.4958562259704 ], [ - -0.10375490466332138, - 51.49587358467586 + -0.10375509963363266, + 51.49587334725496 ], [ - -0.10380629594892649, - 51.49589001528144 + -0.10380649091923777, + 51.49588977786053 ], [ -0.10382060821399916, @@ -704,6 +960,50 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10373723313199652, + 51.49589353792413 + ], + [ + -0.10359936601432715, + 51.496049334598936 + ], + [ + -0.103592631595353, + 51.49607010263257 + ], + [ + -0.10364925675064762, + 51.49607722166233 + ], + [ + -0.10365423499259573, + 51.496061865746064 + ], + [ + -0.1037878300941112, + 51.495910898428235 + ], + [ + -0.10373723313199652, + 51.49589353792413 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 265241535, + "osm_way_id": 24420020, + "src_i": 3799274008, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -897,76 +1197,424 @@ "coordinates": [ [ [ - -0.10814364593200994, - 51.497274679160455 + -0.1068983691096223, + 51.49663253296334 ], [ - -0.10814327621053077, - 51.49727603803539 + -0.10804926008220568, + 51.49668341478065 ], [ - -0.10808465080426483, - 51.497296998523844 + -0.10797380223906566, + 51.49674211709856 ], [ - -0.10811297204725931, - 51.497327713953666 + -0.10786804456532778, + 51.496729665991055 ], [ - -0.10819486968756978, - 51.49729843294179 + -0.10772145866418273, + 51.49667898112517 ], [ - -0.10819972517043297, - 51.49728060029385 + -0.10754826292610892, + 51.49667273623601 ], [ - -0.10814364593200994, - 51.497274679160455 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 6022813718, - "osm_way_id": 195553642, - "src_i": 2059768444, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -0.10733311968661877, + 51.496693004246836 + ], [ - -0.10769646635872535, - 51.49743050461355 + -0.10721065955621431, + 51.496759810351655 ], [ - -0.10786083499648388, - 51.49751319363709 + -0.10715947046204315, + 51.49692178176854 ], [ - -0.1078965795535524, - 51.49748564202065 + -0.1071828784531933, + 51.496953910931914 ], [ - -0.10773221091579384, - 51.497402952997106 + -0.10746448490546298, + 51.4970680366412 ], [ - -0.10769646635872535, - 51.49743050461355 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 3328901241, - "osm_way_id": 195553644, + -0.10759538219556013, + 51.49708307599627 + ], + [ + -0.10781942185814292, + 51.49705847775195 + ], + [ + -0.10796266293528103, + 51.49699245225827 + ], + [ + -0.1079454766633976, + 51.49697799476428 + ], + [ + -0.1078077005318735, + 51.49704150035885 + ], + [ + -0.10759550062197143, + 51.49706479998278 + ], + [ + -0.10747540035444575, + 51.49705099989287 + ], + [ + -0.10720570008918508, + 51.49694169994327 + ], + [ + -0.10718959987414672, + 51.49691960001435 + ], + [ + -0.10723710041887331, + 51.49676929999315 + ], + [ + -0.10734579997797478, + 51.49670999962637 + ], + [ + -0.10754960027802186, + 51.4966908000096 + ], + [ + -0.10771320058833152, + 51.49669669955927 + ], + [ + -0.1078580996352278, + 51.496746799866116 + ], + [ + -0.10798550045774263, + 51.49676179965103 + ], + [ + -0.10810620007844743, + 51.496667899684454 + ], + [ + -0.10690041413155398, + 51.496614591497476 + ], + [ + -0.1068983691096223, + 51.49663253296334 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1819350081, + "osm_way_id": 170791368, + "src_i": 61334104, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10756674033472041, + 51.49681789033903 + ], + [ + -0.10755995825633684, + 51.49681865206442 + ], + [ + -0.10751915746919573, + 51.49683536685562 + ], + [ + -0.10749191795037273, + 51.49686063419521 + ], + [ + -0.10749063259054278, + 51.496864864604 + ], + [ + -0.10751901449096744, + 51.4968682082817 + ], + [ + -0.10751919935170703, + 51.496867600340295 + ], + [ + -0.10753989942186716, + 51.4968483998242 + ], + [ + -0.1075708997013611, + 51.49683569960461 + ], + [ + -0.10757186733179488, + 51.4968355907867 + ], + [ + -0.10756674033472041, + 51.49681789033903 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1819350134, + "osm_way_id": 170791370, + "src_i": 1819350122, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10765180515942083, + 51.49695833559417 + ], + [ + -0.10766981897195883, + 51.49695495504429 + ], + [ + -0.10771300850646928, + 51.496926821566774 + ], + [ + -0.10771764013453064, + 51.4969155377787 + ], + [ + -0.10768965684007571, + 51.496911082539505 + ], + [ + -0.10768689981545174, + 51.49691779777387 + ], + [ + -0.10765419823946376, + 51.49693910000454 + ], + [ + -0.10764346909544509, + 51.49694111358559 + ], + [ + -0.10765180515942083, + 51.49695833559417 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1819350194, + "osm_way_id": 170791370, + "src_i": 1819350128, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10749440779345903, + 51.496916849888905 + ], + [ + -0.1075000705978334, + 51.49692923084933 + ], + [ + -0.10754697467782992, + 51.49695710802019 + ], + [ + -0.10756719526544675, + 51.49696003261403 + ], + [ + -0.10757373182566057, + 51.49694251203068 + ], + [ + -0.10756120028943095, + 51.49694069899834 + ], + [ + -0.10752569980630766, + 51.49691959911503 + ], + [ + -0.10752218889648005, + 51.4969119234052 + ], + [ + -0.10749440779345903, + 51.496916849888905 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1819350128, + "osm_way_id": 170791370, + "src_i": 1819350134, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10771712310214962, + 51.49686291937139 + ], + [ + -0.10771222429255056, + 51.49685156543622 + ], + [ + -0.1076682563210195, + 51.496823706251796 + ], + [ + -0.10765004320549665, + 51.49682047139201 + ], + [ + -0.10764212018973593, + 51.49683776714496 + ], + [ + -0.1076529995331055, + 51.496839699787074 + ], + [ + -0.10768630046227261, + 51.49686079967038 + ], + [ + -0.10768922934961543, + 51.49686758685047 + ], + [ + -0.10771712310214962, + 51.49686291937139 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1819350122, + "osm_way_id": 170791370, + "src_i": 1819350194, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10814364593200994, + 51.497274679160455 + ], + [ + -0.10814327621053077, + 51.49727603803539 + ], + [ + -0.10808465080426483, + 51.497296998523844 + ], + [ + -0.10811297204725931, + 51.497327713953666 + ], + [ + -0.10819486968756978, + 51.49729843294179 + ], + [ + -0.10819972517043297, + 51.49728060029385 + ], + [ + -0.10814364593200994, + 51.497274679160455 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6022813718, + "osm_way_id": 195553642, + "src_i": 2059768444, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10769646635872535, + 51.49743050461355 + ], + [ + -0.10786083499648388, + 51.49751319363709 + ], + [ + -0.1078965795535524, + 51.49748564202065 + ], + [ + -0.10773221091579384, + 51.497402952997106 + ], + [ + -0.10769646635872535, + 51.49743050461355 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3328901241, + "osm_way_id": 195553644, "src_i": 364274, "type": "road" }, @@ -1209,17 +1857,53 @@ "coordinates": [ [ [ - -0.10610052459981167, - 51.49668519543741 + -0.10670260447484911, + 51.496973991883856 ], [ - -0.10642670993058775, - 51.496841261009365 + -0.10694476771103403, + 51.497104292791384 ], [ - -0.10652573462957601, - 51.49676100914735 - ], + -0.10705103086335671, + 51.49702771555741 + ], + [ + -0.10680886762717182, + 51.49689741464988 + ], + [ + -0.10670260447484911, + 51.496973991883856 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2059768440, + "osm_way_id": 238634697, + "src_i": 61334099, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10610052459981167, + 51.49668519543741 + ], + [ + -0.10642670993058775, + 51.496841261009365 + ], + [ + -0.10652573462957601, + 51.49676100914735 + ], [ -0.10619954929879993, 51.496604943575385 @@ -1253,20 +1937,12 @@ 51.4969361960951 ], [ - -0.10668081545939488, - 51.496962268327515 - ], - [ - -0.10694476771103403, - 51.497104292791384 - ], - [ - -0.10705103086335671, - 51.49702771555741 + -0.10665414785348497, + 51.496951989980985 ], [ - -0.10677730987701003, - 51.49688043545813 + -0.10673968638383058, + 51.496865933897375 ], [ -0.10670816762773105, @@ -1285,7 +1961,7 @@ "type": "Polygon" }, "properties": { - "dst_i": 2059768440, + "dst_i": 61334099, "osm_way_id": 238634697, "src_i": 8936977833, "type": "road" @@ -1508,6 +2184,194 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10748490479606466, + 51.49741052618427 + ], + [ + -0.10748673318431713, + 51.497414167537414 + ], + [ + -0.10751430054210799, + 51.497408800386125 + ], + [ + -0.10751247215385552, + 51.49740515903298 + ], + [ + -0.10748490479606466, + 51.49741052618427 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6022813731, + "osm_way_id": 289700826, + "src_i": 2932500926, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10752760329423558, + 51.49739165931649 + ], + [ + -0.10754210330849692, + 51.49737335902132 + ], + [ + -0.10751619969736234, + 51.49736540002518 + ], + [ + -0.10750169968310101, + 51.497383700320356 + ], + [ + -0.10752760329423558, + 51.49739165931649 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6022813715, + "osm_way_id": 289700827, + "src_i": 2932500926, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10737623700990281, + 51.49741174296639 + ], + [ + -0.10746951802794313, + 51.4974043730259 + ], + [ + -0.10746588147058157, + 51.49738653048542 + ], + [ + -0.10737260045254125, + 51.497393900425905 + ], + [ + -0.10737623700990281, + 51.49741174296639 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2932500926, + "osm_way_id": 289700827, + "src_i": 8947442152, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10770240067731097, + 51.4973062867173 + ], + [ + -0.10771844745604181, + 51.4973062867173 + ], + [ + -0.10771844745604181, + 51.497288300285355 + ], + [ + -0.10770240067731097, + 51.497288300285355 + ], + [ + -0.10770240067731097, + 51.4973062867173 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6022813725, + "osm_way_id": 289700829, + "src_i": 6231431196, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10762956265746479, + 51.49730944873203 + ], + [ + -0.10764144718110587, + 51.497296735921935 + ], + [ + -0.10766004157190413, + 51.49729984397737 + ], + [ + -0.1076675284318574, + 51.49728247268141 + ], + [ + -0.1076275999563312, + 51.49727579971516 + ], + [ + -0.10760460068072247, + 51.497300399758124 + ], + [ + -0.10762956265746479, + 51.49730944873203 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6231431196, + "osm_way_id": 289700829, + "src_i": 8936997805, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1560,6 +2424,50 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10796050381961164, + 51.497403654467945 + ], + [ + -0.10796513833612206, + 51.49742875633236 + ], + [ + -0.10794476466070528, + 51.497472376127774 + ], + [ + -0.10797249954854139, + 51.497477399738216 + ], + [ + -0.10799449942077671, + 51.49743029956822 + ], + [ + -0.1079892005609834, + 51.49740160041742 + ], + [ + -0.10796050381961164, + 51.497403654467945 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6022813723, + "osm_way_id": 326268789, + "src_i": 2932500936, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -2109,41 +3017,33 @@ "coordinates": [ [ [ - -0.10578878295854033, - 51.49641659325742 - ], - [ - -0.10630311752815334, - 51.49574771382652 - ], - [ - -0.10592924823613559, - 51.49564974353039 + -0.10769085410220945, + 51.49687135320932 ], [ - -0.10589878376394153, - 51.49569482292476 + -0.10767775931841389, + 51.49687142245708 ], [ - -0.10619668106888727, - 51.495772885838015 + -0.10767800483658366, + 51.496889408889025 ], [ - -0.10571794374544091, - 51.49639547179039 + -0.10769109962037922, + 51.49688933964126 ], [ - -0.10578878295854033, - 51.49641659325742 + -0.10769085410220945, + 51.49687135320932 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25472582, - "osm_way_id": 414489467, - "src_i": 25472584, + "dst_i": 1819350153, + "osm_way_id": 391783139, + "src_i": 1819350194, "type": "road" }, "type": "Feature" @@ -2153,33 +3053,33 @@ "coordinates": [ [ [ - -0.1031906129230596, - 51.49572473346175 + -0.10781296906295171, + 51.49686790610964 ], [ - -0.10358200499127582, - 51.49584573898126 + -0.10773329263996534, + 51.49687026592951 ], [ - -0.10361411587943183, - 51.49580546376286 + -0.10773466465326696, + 51.496888232576374 ], [ - -0.10322272381121561, - 51.49568445824335 + -0.10781434107625332, + 51.4968858727565 ], [ - -0.1031906129230596, - 51.49572473346175 + -0.10781296906295171, + 51.49686790610964 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3799274015, - "osm_way_id": 414489468, - "src_i": 3799274007, + "dst_i": 1819350194, + "osm_way_id": 391783265, + "src_i": 1819350182, "type": "road" }, "type": "Feature" @@ -2189,33 +3089,33 @@ "coordinates": [ [ [ - -0.10379634090925483, - 51.49591204686192 + -0.10757255189422119, + 51.49692075923989 ], [ - -0.10465261152234652, - 51.496184260717435 + -0.10757967480959338, + 51.49692270177454 ], [ - -0.10468544452276654, - 51.49614421212809 + -0.10759126326720621, + 51.49690622620288 ], [ - -0.10382917390967486, - 51.49587199827256 + -0.107584140351834, + 51.496904283668236 ], [ - -0.10379634090925483, - 51.49591204686192 + -0.10757255189422119, + 51.49692075923989 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3799274009, - "osm_way_id": 414489468, - "src_i": 3799274008, + "dst_i": 1819350092, + "osm_way_id": 391783435, + "src_i": 1819350066, "type": "road" }, "type": "Feature" @@ -2225,33 +3125,33 @@ "coordinates": [ [ [ - -0.10472454401341365, - 51.49620828879186 + -0.10757885882273505, + 51.49685832024074 ], [ - -0.10486606646336344, - 51.49625755452826 + -0.10757458247390757, + 51.496859495654064 ], [ - -0.10490130265339809, - 51.496218304536484 + -0.10758624603119588, + 51.496875949642 ], [ - -0.1047597802034483, - 51.49616903880009 + -0.10759052238002333, + 51.49687477422867 ], [ - -0.10472454401341365, - 51.49620828879186 + -0.10757885882273505, + 51.49685832024074 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3799274014, - "osm_way_id": 414489468, - "src_i": 3799274009, + "dst_i": 1819350066, + "osm_way_id": 391783435, + "src_i": 1819350083, "type": "road" }, "type": "Feature" @@ -2261,33 +3161,33 @@ "coordinates": [ [ [ - -0.10606847581331036, - 51.49671703142194 + -0.10765866955860251, + 51.49691271211024 ], [ - -0.10638937094964032, - 51.49687062385951 + -0.10766889322403637, + 51.496896005412935 ], [ - -0.10643337647100909, - 51.49683497295276 + -0.10764190066760768, + 51.49688960044452 ], [ - -0.10611248133467915, - 51.49668138051519 + -0.10763167700217381, + 51.49690630714183 ], [ - -0.10606847581331036, - 51.49671703142194 + -0.10765866955860251, + 51.49691271211024 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8936977834, - "osm_way_id": 414489468, - "src_i": 3799274011, + "dst_i": 1819350153, + "osm_way_id": 391783435, + "src_i": 1819350092, "type": "road" }, "type": "Feature" @@ -2297,12 +3197,272 @@ "coordinates": [ [ [ - -0.1056718859810178, - 51.49653739463092 + -0.10766032752836069, + 51.49687151508721 ], [ - -0.10600531409780192, - 51.496687623605716 + -0.10765725566278958, + 51.49686736022143 + ], + [ + -0.10763101699156451, + 51.49687488214727 + ], + [ + -0.10763408885713562, + 51.496879037013045 + ], + [ + -0.10766032752836069, + 51.49687151508721 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1819350083, + "osm_way_id": 391783435, + "src_i": 1819350153, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10578893460211578, + 51.49641691881184 + ], + [ + -0.10606687705675785, + 51.49606010127709 + ], + [ + -0.10599620826215275, + 51.49603875677831 + ], + [ + -0.10571826580751066, + 51.496395574313055 + ], + [ + -0.10578893460211578, + 51.49641691881184 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 264790813, + "osm_way_id": 414489467, + "src_i": 25472584, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10609818928874987, + 51.49601923250644 + ], + [ + -0.10630281857367604, + 51.49574763558554 + ], + [ + -0.10592924823613559, + 51.49564974353039 + ], + [ + -0.10589878376394153, + 51.49569482292476 + ], + [ + -0.10619698002336458, + 51.495772964078995 + ], + [ + -0.1060270843383373, + 51.49599845817755 + ], + [ + -0.10609818928874987, + 51.49601923250644 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 25472582, + "osm_way_id": 414489467, + "src_i": 264790813, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1031906129230596, + 51.49572473346175 + ], + [ + -0.10358200499127582, + 51.49584573898126 + ], + [ + -0.10361411587943183, + 51.49580546376286 + ], + [ + -0.10322272381121561, + 51.49568445824335 + ], + [ + -0.1031906129230596, + 51.49572473346175 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3799274015, + "osm_way_id": 414489468, + "src_i": 3799274007, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10379634090925483, + 51.49591204686192 + ], + [ + -0.10465261152234652, + 51.496184260717435 + ], + [ + -0.10468544452276654, + 51.49614421212809 + ], + [ + -0.10382917390967486, + 51.49587199827256 + ], + [ + -0.10379634090925483, + 51.49591204686192 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3799274009, + "osm_way_id": 414489468, + "src_i": 3799274008, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10472454401341365, + 51.49620828879186 + ], + [ + -0.10486606646336344, + 51.49625755452826 + ], + [ + -0.10490130265339809, + 51.496218304536484 + ], + [ + -0.1047597802034483, + 51.49616903880009 + ], + [ + -0.10472454401341365, + 51.49620828879186 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3799274014, + "osm_way_id": 414489468, + "src_i": 3799274009, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10606847581331036, + 51.49671703142194 + ], + [ + -0.10638937094964032, + 51.49687062385951 + ], + [ + -0.10643337647100909, + 51.49683497295276 + ], + [ + -0.10611248133467915, + 51.49668138051519 + ], + [ + -0.10606847581331036, + 51.49671703142194 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8936977834, + "osm_way_id": 414489468, + "src_i": 3799274011, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1056718859810178, + 51.49653739463092 + ], + [ + -0.10600531409780192, + 51.496687623605716 ], [ -0.10604764431871819, @@ -2537,24 +3697,24 @@ "coordinates": [ [ [ - -0.1064455816124954, - 51.49689810442954 + -0.10666843845518974, + 51.49700572804368 ], [ - -0.10716354606366121, - 51.49725657581671 + -0.10716350851382347, + 51.49725636177816 ], [ - -0.10720871851844864, - 51.497221495079856 + -0.10720906224388632, + 51.49722147169749 ], [ - -0.10649075406728284, - 51.49686302369269 + -0.10671399218525257, + 51.49697083796301 ], [ - -0.1064455816124954, - 51.49689810442954 + -0.10666843845518974, + 51.49700572804368 ] ] ], @@ -2563,6 +3723,42 @@ "properties": { "dst_i": 3799274019, "osm_way_id": 414489468, + "src_i": 4169653680, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1064464467029877, + 51.49689804057771 + ], + [ + -0.10661254841017986, + 51.49697811437405 + ], + [ + -0.10665675323453352, + 51.496942558795396 + ], + [ + -0.10649065152734133, + 51.496862484999056 + ], + [ + -0.1064464467029877, + 51.49689804057771 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4169653680, + "osm_way_id": 414489468, "src_i": 8936977834, "type": "road" }, @@ -2865,11 +4061,119 @@ "coordinates": [ [ [ - -0.1012094733749304, - 51.49485158751926 + -0.10105022451312368, + 51.4947691521044 ], [ - -0.10119939990884745, + -0.1010624253219364, + 51.49476385240223 + ], + [ + -0.10104590050488678, + 51.49474909993076 + ], + [ + -0.10103369969607406, + 51.494754399632924 + ], + [ + -0.10105022451312368, + 51.4947691521044 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8942303836, + "osm_way_id": 416813995, + "src_i": 6329043357, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10112244440487188, + 51.49472164993765 + ], + [ + -0.10113042663383826, + 51.49471152987172 + ], + [ + -0.10110449991511122, + 51.49470359965388 + ], + [ + -0.10109651768614486, + 51.49471371971981 + ], + [ + -0.10112244440487188, + 51.49472164993765 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6896299617, + "osm_way_id": 416813995, + "src_i": 6329043358, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10106252064075524, + 51.49476381103344 + ], + [ + -0.10106768952034104, + 51.49476154654165 + ], + [ + -0.10105106938447257, + 51.494746835438974 + ], + [ + -0.10104590050488678, + 51.49474909993076 + ], + [ + -0.10106252064075524, + 51.49476381103344 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6329043358, + "osm_way_id": 416813995, + "src_i": 8942303836, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1012094733749304, + 51.49485158751926 + ], + [ + -0.10119939990884745, 51.494846938026605 ], [ @@ -2937,28 +4241,44 @@ "coordinates": [ [ [ - -0.10087037812109832, - 51.49352566732695 + -0.10086900177512313, + 51.49352547127484 ], [ - -0.10082109829175322, - 51.493962868024674 + -0.10083438226896195, + 51.49379521289529 ], [ - -0.10086265440832248, - 51.49447690046438 + -0.10087037234420022, + 51.49379700434392 ], [ - -0.10090242257492606, - 51.49458928508706 + -0.1009049918503614, + 51.49352726272346 ], [ - -0.10095180349998814, - 51.4946777954193 - ], + -0.10086900177512313, + 51.49352547127484 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 8942303872, + "osm_way_id": 497716975, + "src_i": 3890206821, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ [ - -0.1010692189541162, - 51.494745727474765 + -0.10110770320511438, + 51.49475396436127 ], [ -0.10114956838573262, @@ -2993,8 +4313,56 @@ 51.49474354931786 ], [ - -0.10108818739906722, - 51.49472601434536 + -0.10111943897362907, + 51.49473270260008 + ], + [ + -0.10110770320511438, + 51.49475396436127 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 3890206822, + "osm_way_id": 497716975, + "src_i": 6329043358, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10082985318084207, + 51.493840561186815 + ], + [ + -0.1008211127339985, + 51.493963031701206 + ], + [ + -0.10086265440832248, + 51.49447690046438 + ], + [ + -0.10090242257492606, + 51.49458928508706 + ], + [ + -0.10095180349998814, + 51.4946777954193 + ], + [ + -0.10103940293873523, + 51.494728477587216 + ], + [ + -0.10106397786330401, + 51.49471200741149 ], [ -0.10098296408840471, @@ -3009,25 +4377,25 @@ 51.4944738949316 ], [ - -0.10085726745083297, - 51.49396308925778 + -0.10085725878548579, + 51.49396297594326 ], [ - -0.10090639419237811, - 51.493527241139745 + -0.10086592413265393, + 51.49384155943379 ], [ - -0.10087037812109832, - 51.49352566732695 + -0.10082985318084207, + 51.493840561186815 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 3890206822, + "dst_i": 6329043358, "osm_way_id": 497716975, - "src_i": 3890206821, + "src_i": 8942303872, "type": "road" }, "type": "Feature" @@ -3084,6 +4452,86 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10773286370528051, + 51.49747779184243 + ], + [ + -0.10771450039040673, + 51.49747396972565 + ], + [ + -0.1077053440068991, + 51.497491028057695 + ], + [ + -0.10772370732177286, + 51.49749485017448 + ], + [ + -0.10773286370528051, + 51.49747779184243 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6022813734, + "osm_way_id": 639129602, + "src_i": 6022813726, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10763115419289467, + 51.49746939937329 + ], + [ + -0.10759250241185125, + 51.497472960686814 + ], + [ + -0.10758968184134804, + 51.4974692707703 + ], + [ + -0.10756359914637198, + 51.497476999540105 + ], + [ + -0.1075755992079753, + 51.49749270079587 + ], + [ + -0.1076353828823127, + 51.49748719155176 + ], + [ + -0.10763115419289467, + 51.49746939937329 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6022813729, + "osm_way_id": 639129602, + "src_i": 6022813734, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3332,6 +4780,78 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1076690029851005, + 51.49730821216483 + ], + [ + -0.10766547041190497, + 51.497324725507994 + ], + [ + -0.10769410071894844, + 51.49732709971701 + ], + [ + -0.10769763329214399, + 51.49731058637385 + ], + [ + -0.1076690029851005, + 51.49730821216483 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6231431191, + "osm_way_id": 665723648, + "src_i": 6231431196, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10764713164884815, + 51.49745790604328 + ], + [ + -0.10764683847126896, + 51.49745939082324 + ], + [ + -0.10767550632815018, + 51.49746158516793 + ], + [ + -0.10767579950572936, + 51.497460100387976 + ], + [ + -0.10764713164884815, + 51.49745790604328 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6022813734, + "osm_way_id": 665723650, + "src_i": 6231431193, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3405,8 +4925,44 @@ "coordinates": [ [ [ - -0.10169871309914454, - 51.49510984390359 + -0.10169373341297193, + 51.49515775076506 + ], + [ + -0.10169466349356798, + 51.49515654747277 + ], + [ + -0.10162959540168254, + 51.49513704658326 + ], + [ + -0.10162866532108648, + 51.49513824987555 + ], + [ + -0.10169373341297193, + 51.49515775076506 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 4169653677, + "osm_way_id": 692655614, + "src_i": 4169653676, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10166997591948598, + 51.49509619759768 ], [ -0.10157670934369095, @@ -3425,12 +4981,12 @@ 51.49508689771305 ], [ - -0.1016550195302738, - 51.495145644097725 + -0.1016263112351058, + 51.495132010382314 ], [ - -0.10169871309914454, - 51.49510984390359 + -0.10166997591948598, + 51.49509619759768 ] ] ], @@ -3439,7 +4995,7 @@ "properties": { "dst_i": 3890206822, "osm_way_id": 692655614, - "src_i": 4169653676, + "src_i": 4169653677, "type": "road" }, "type": "Feature" @@ -3552,6 +5108,78 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10178710686138204, + 51.49530031302324 + ], + [ + -0.10180387430815235, + 51.49530605788961 + ], + [ + -0.10181779952105152, + 51.49529029997658 + ], + [ + -0.1018010320742812, + 51.495284555110224 + ], + [ + -0.10178710686138204, + 51.49530031302324 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6502835823, + "osm_way_id": 692655619, + "src_i": 6502835822, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10169465916089439, + 51.49515655196937 + ], + [ + -0.10174978809957799, + 51.49517921127633 + ], + [ + -0.1017657005654277, + 51.495164199800236 + ], + [ + -0.10171057162674411, + 51.49514154049328 + ], + [ + -0.10169465916089439, + 51.49515655196937 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6502835826, + "osm_way_id": 692655620, + "src_i": 4169653677, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3624,6 +5252,42 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10282946436068466, + 51.49553878523177 + ], + [ + -0.10275266483295811, + 51.49551978526439 + ], + [ + -0.10274200067904321, + 51.49553650005559 + ], + [ + -0.10281880020676976, + 51.49555550002297 + ], + [ + -0.10282946436068466, + 51.49553878523177 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6970648941, + "osm_way_id": 744805933, + "src_i": 6970648945, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -3837,33 +5501,33 @@ "coordinates": [ [ [ - -0.10090180444682806, - 51.495462699926705 + -0.10090102600980745, + 51.49347752754119 ], [ - -0.10090439394140681, - 51.495416338999064 + -0.10085455519716935, + 51.49379506720519 ], [ - -0.10086831143579875, - 51.49541555658928 + -0.10088332126131845, + 51.49379670037322 ], [ - -0.10086572194122, - 51.49546191751692 + -0.10092979207395658, + 51.493479160709214 ], [ - -0.10090180444682806, - 51.495462699926705 + -0.10090102600980745, + 51.49347752754119 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4421018012, - "osm_way_id": 967715649, - "src_i": 3874597641, + "dst_i": 8942303872, + "osm_way_id": 966551635, + "src_i": 8942303831, "type": "road" }, "type": "Feature" @@ -3873,69 +5537,57 @@ "coordinates": [ [ [ - -0.10541540181441304, - 51.49641186282582 + -0.10081699380564457, + 51.49380071314618 ], [ - -0.10564319646076867, - 51.49648533740029 + -0.10076770675517682, + 51.49380071314618 ], [ - -0.10571794952233902, - 51.49639547179039 + -0.10081851457407259, + 51.49451449840238 ], [ - -0.1054901548759834, - 51.49632199721593 + -0.10091590585511964, + 51.494703769625666 ], [ - -0.10541540181441304, - 51.49641186282582 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 25472584, - "osm_way_id": 1067864759, - "src_i": 96619956, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ + -0.10099968387576559, + 51.49474821140102 + ], [ - -0.10494917725227745, - 51.49623876590146 + -0.10101841546789403, + 51.49473452012903 ], [ - -0.10534695423713203, - 51.496376415165756 + -0.10094089960480158, + 51.49469340044765 ], [ - -0.10540879593142188, - 51.49630711883943 + -0.10084719976164813, + 51.494511300414786 ], [ - -0.10501101894656728, - 51.49616946957513 + -0.10079789971315962, + 51.49381869957812 ], [ - -0.10494917725227745, - 51.49623876590146 + -0.10081699380564457, + 51.49381869957812 + ], + [ + -0.10081699380564457, + 51.49380071314618 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 96619956, - "osm_way_id": 1067864760, - "src_i": 2467649384, + "dst_i": 8942303836, + "osm_way_id": 966551635, + "src_i": 8942303872, "type": "road" }, "type": "Feature" @@ -3945,33 +5597,33 @@ "coordinates": [ [ [ - -0.1038266869550376, - 51.49587462519095 + -0.10458574392669917, + 51.496112448089285 ], [ - -0.10469701131701148, - 51.49615628821849 + -0.1045940438850617, + 51.496101447587506 ], [ - -0.10475572193252455, - 51.49608594508182 + -0.10456790053265548, + 51.49609379975665 ], [ - -0.1038853975705507, - 51.49580428205428 + -0.10455960057429295, + 51.49610480025842 ], [ - -0.1038266869550376, - 51.49587462519095 + -0.10458574392669917, + 51.496112448089285 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4156273389, - "osm_way_id": 1067864761, - "src_i": 265241531, + "dst_i": 8947417390, + "osm_way_id": 967112705, + "src_i": 8947417389, "type": "road" }, "type": "Feature" @@ -3981,33 +5633,33 @@ "coordinates": [ [ [ - -0.10322278302442126, - 51.49568388627482 + -0.10788560344713943, + 51.49733841588067 ], [ - -0.10358277620717378, - 51.49579582843127 + -0.10789680340835422, + 51.49734781648932 ], [ - -0.10363965265753629, - 51.495724902534214 + -0.10792000054272331, + 51.49733710017317 ], [ - -0.10327965947478378, - 51.49561296037776 + -0.10790880058150851, + 51.497327699564515 ], [ - -0.10322278302442126, - 51.49568388627482 + -0.10788560344713943, + 51.49733841588067 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 25472725, - "osm_way_id": 1067864763, - "src_i": 96619952, + "dst_i": 6022823874, + "osm_way_id": 967116266, + "src_i": 8947442148, "type": "road" }, "type": "Feature" @@ -4017,33 +5669,33 @@ "coordinates": [ [ [ - -0.10298152531701542, - 51.49560339968986 + -0.10090180444682806, + 51.495462699926705 ], [ - -0.10312185194905601, - 51.49565111499583 + -0.10090439394140681, + 51.495416338999064 ], [ - -0.10318286754691583, - 51.49558153628252 + -0.10086831143579875, + 51.49541555658928 ], [ - -0.10304254091487523, - 51.495533820976554 + -0.10086572194122, + 51.49546191751692 ], [ - -0.10298152531701542, - 51.49560339968986 + -0.10090180444682806, + 51.495462699926705 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 96619952, - "osm_way_id": 1067864763, - "src_i": 287248398, + "dst_i": 4421018012, + "osm_way_id": 967715649, + "src_i": 3874597641, "type": "road" }, "type": "Feature" @@ -4053,33 +5705,57 @@ "coordinates": [ [ [ - -0.10265132070937785, - 51.49552068368667 + -0.10373958144107909, + 51.496597271462846 ], [ - -0.10289391432447212, - 51.4955782375709 + -0.10384483363623218, + 51.496471031891645 ], [ - -0.10293923986705951, - 51.49550415505504 + -0.10385402612535302, + 51.49638197746984 ], [ - -0.10269664625196526, - 51.495446601170805 + -0.10378486221270612, + 51.496296404321924 ], [ - -0.10265132070937785, - 51.49552068368667 + -0.10369794300371173, + 51.4962238641426 + ], + [ + -0.10367479208452755, + 51.4962346200289 + ], + [ + -0.10376020063466564, + 51.49630589935935 + ], + [ + -0.10382469970208705, + 51.49638570066124 + ], + [ + -0.1038163997437245, + 51.49646610001201 + ], + [ + -0.10371394645570672, + 51.49658898331501 + ], + [ + -0.10373958144107909, + 51.496597271462846 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 287248398, - "osm_way_id": 1067864764, - "src_i": 25472957, + "dst_i": 9136430541, + "osm_way_id": 988447904, + "src_i": 9136430525, "type": "road" }, "type": "Feature" @@ -4089,33 +5765,33 @@ "coordinates": [ [ [ - -0.10368205220122992, - 51.49582743418947 + -0.103674325600005, + 51.4961909885423 ], [ - -0.10376240163284633, - 51.49585371146721 + -0.10364928707936272, + 51.49611415680032 ], [ - -0.10382159750780084, - 51.4957835248125 + -0.10362098027861351, + 51.49611773430163 ], [ - -0.10374124807618443, - 51.49575724753476 + -0.1036460187992558, + 51.49619456604361 ], [ - -0.10368205220122992, - 51.49582743418947 + -0.103674325600005, + 51.4961909885423 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 265241531, - "osm_way_id": 1069976319, - "src_i": 25472725, + "dst_i": 265241535, + "osm_way_id": 988447904, + "src_i": 9136430541, "type": "road" }, "type": "Feature" @@ -4125,63 +5801,50 @@ "coordinates": [ [ [ - -0.10772930369181893, - 51.49740149159951 - ], - [ - -0.10773221091579384, - 51.497402952997106 - ], - [ - -0.10769646635872535, - 51.49743050461355 - ], - [ - -0.10769400828857864, - 51.497429268046346 + -0.10361591393896921, + 51.4962043677497 ], [ - -0.10759550639886954, - 51.497454324944684 + -0.10313758244261523, + 51.49616299625828 ], [ - -0.10755248583862886, - 51.49738874821248 + -0.10305084665013588, + 51.49617246251741 ], [ - -0.10762963198024214, - 51.49732568508414 + -0.10284851079376019, + 51.496429092928295 ], [ - -0.10771641832057993, - 51.49736685242956 + -0.10287443751248722, + 51.49643701954885 ], [ - -0.107804788975225, - 51.49732968166932 + -0.10307030035452833, + 51.49618859994414 ], [ - -0.10783662834916974, - 51.49735903192895 + -0.10313809947499625, + 51.49618120032604 ], [ - -0.1078424297990988, - 51.497394264651156 + -0.1036119394330681, + 51.496222183310536 ], [ - -0.10772930369181893, - 51.49740149159951 + -0.10361591393896921, + 51.4962043677497 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/364274", - "osm_node_id": 364274, - "type": "intersection" + "dst_i": 9136430547, + "osm_way_id": 988447905, + "src_i": 9136430541, + "type": "road" }, "type": "Feature" }, @@ -4190,35 +5853,34 @@ "coordinates": [ [ [ - -0.10576566814496935, - 51.49565994003866 + -0.10753990664298979, + 51.49687214101504 ], [ - -0.10579613261716342, - 51.495614860644295 + -0.10751777679054694, + 51.49687227951057 ], [ - -0.10592924823613559, - 51.49564974353039 + -0.10751806563545255, + 51.49689026414386 ], [ - -0.10589878376394153, - 51.49569482292476 + -0.1075401954878954, + 51.496890125648335 ], [ - -0.10576566814496935, - 51.49565994003866 + -0.10753990664298979, + 51.49687214101504 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25472582", - "osm_node_id": 25472582, - "type": "intersection" + "dst_i": 1819350134, + "osm_way_id": 1066518362, + "src_i": 1819350066, + "type": "road" }, "type": "Feature" }, @@ -4227,51 +5889,34 @@ "coordinates": [ [ [ - -0.10578575875237864, - 51.496420527789404 - ], - [ - -0.10579262459578487, - 51.49642356479844 - ], - [ - -0.1056985015948447, - 51.49650607215902 - ], - [ - -0.10569195925773275, - 51.49650317814213 - ], - [ - -0.10566115394855008, - 51.49649145278715 + -0.10757982212049522, + 51.4969335350025 ], [ - -0.10564319646076867, - 51.49648533740029 + -0.10757995643337633, + 51.496943413150916 ], [ - -0.10571794952233902, - 51.49639547179039 + -0.10760884092393674, + 51.49694326026624 ], [ - -0.10578878295854033, - 51.49641659325742 + -0.10760870661105565, + 51.496933382117824 ], [ - -0.10578575875237864, - 51.496420527789404 + -0.10757982212049522, + 51.4969335350025 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25472584", - "osm_node_id": 25472584, - "type": "intersection" + "dst_i": 1819350128, + "osm_way_id": 1066518363, + "src_i": 1819350092, + "type": "road" }, "type": "Feature" }, @@ -4280,47 +5925,34 @@ "coordinates": [ [ [ - -0.10374125096463349, - 51.49575724933341 - ], - [ - -0.10368205220122992, - 51.49582743418947 - ], - [ - -0.10367548820075007, - 51.495825285710175 - ], - [ - -0.10360811801496696, - 51.495809101518724 + -0.10757855553558415, + 51.496834839853165 ], [ - -0.10358277620717378, - 51.49579582843127 + -0.10757872162140489, + 51.496847663279816 ], [ - -0.10363965265753629, - 51.495724902534214 + -0.10760760611196529, + 51.496847517589714 ], [ - -0.10374466799986677, - 51.49575214298538 + -0.10760744002614456, + 51.49683469416307 ], [ - -0.10374125096463349, - 51.49575724933341 + -0.10757855553558415, + 51.496834839853165 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25472725", - "osm_node_id": 25472725, - "type": "intersection" + "dst_i": 1819350083, + "osm_way_id": 1066518364, + "src_i": 1819350122, + "type": "road" }, "type": "Feature" }, @@ -4329,35 +5961,34 @@ "coordinates": [ [ [ - -0.10354075938298007, - 51.49353520912909 + -0.10541540181441304, + 51.49641186282582 ], [ - -0.10365363997209016, - 51.49354399010517 + -0.1056435170786139, + 51.49648544082227 ], [ - -0.1036357359206163, - 51.4936332288879 + -0.10571827014018426, + 51.49639557521238 ], [ - -0.10352285533150621, - 51.493624447911834 + -0.1054901548759834, + 51.49632199721593 ], [ - -0.10354075938298007, - 51.49353520912909 + -0.10541540181441304, + 51.49641186282582 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25472731", - "osm_node_id": 25472731, - "type": "intersection" + "dst_i": 25472584, + "osm_way_id": 1067864759, + "src_i": 96619956, + "type": "road" }, "type": "Feature" }, @@ -4366,35 +5997,34 @@ "coordinates": [ [ [ - -0.10268078000130043, - 51.49363597811403 + -0.10494917725227745, + 51.49623876590146 ], [ - -0.10279401875809346, - 51.49362922241019 + -0.10534695423713203, + 51.496376415165756 ], [ - -0.10279182642525991, - 51.49372579336191 + -0.10540879593142188, + 51.49630711883943 ], [ - -0.10267869742953101, - 51.4937183559723 + -0.10501101894656728, + 51.49616946957513 ], [ - -0.10268078000130043, - 51.49363597811403 + -0.10494917725227745, + 51.49623876590146 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25472738", - "osm_node_id": 25472738, - "type": "intersection" + "dst_i": 96619956, + "osm_way_id": 1067864760, + "src_i": 2467649384, + "type": "road" }, "type": "Feature" }, @@ -4403,55 +6033,34 @@ "coordinates": [ [ [ - -0.10243422921099939, - 51.49538830174896 - ], - [ - -0.10239707509079153, - 51.49544077626482 - ], - [ - -0.10236979513368175, - 51.49543328671456 - ], - [ - -0.10237139244600973, - 51.49540791325502 - ], - [ - -0.10233405202083776, - 51.4954308189761 - ], - [ - -0.10231378088536247, - 51.495418005441984 + -0.1038266869550376, + 51.49587462519095 ], [ - -0.1022923717009591, - 51.49541218773057 + -0.10469701131701148, + 51.49615628821849 ], [ - -0.10232920809177078, - 51.49535962598053 + -0.10475572193252455, + 51.49608594508182 ], [ - -0.10243831492218916, - 51.49537968085213 + -0.1038853975705507, + 51.49580428205428 ], [ - -0.10243422921099939, - 51.49538830174896 + -0.1038266869550376, + 51.49587462519095 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25472956", - "osm_node_id": 25472956, - "type": "intersection" + "dst_i": 4156273389, + "osm_way_id": 1067864761, + "src_i": 265241531, + "type": "road" }, "type": "Feature" }, @@ -4460,39 +6069,34 @@ "coordinates": [ [ [ - -0.10269664625196526, - 51.495446601170805 - ], - [ - -0.10265132070937785, - 51.49552068368667 + -0.10322278302442126, + 51.49568388627482 ], [ - -0.10254793878498855, - 51.49549113018035 + -0.10358277620717378, + 51.49579582843127 ], [ - -0.10255341239594976, - 51.49548370178396 + -0.10363965265753629, + 51.495724902534214 ], [ - -0.10259056940460667, - 51.495431228167426 + -0.10327965947478378, + 51.49561296037776 ], [ - -0.10269664625196526, - 51.495446601170805 + -0.10322278302442126, + 51.49568388627482 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/25472957", - "osm_node_id": 25472957, - "type": "intersection" + "dst_i": 25472725, + "osm_way_id": 1067864763, + "src_i": 96619952, + "type": "road" }, "type": "Feature" }, @@ -4501,39 +6105,34 @@ "coordinates": [ [ [ - -0.1013272816581301, - 51.495441171067 - ], - [ - -0.10118153629566037, - 51.49539638305283 + -0.10298152531701542, + 51.49560339968986 ], [ - -0.10119445632828804, - 51.49538007835228 + -0.10312185194905601, + 51.49565111499583 ], [ - -0.10120332097844104, - 51.49536276191493 + -0.10318286754691583, + 51.49558153628252 ], [ - -0.1013581707323354, - 51.49539349892847 + -0.10304254091487523, + 51.495533820976554 ], [ - -0.1013272816581301, - 51.495441171067 + -0.10298152531701542, + 51.49560339968986 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/29158929", - "osm_node_id": 29158929, - "type": "intersection" + "dst_i": 96619952, + "osm_way_id": 1067864763, + "src_i": 287248398, + "type": "road" }, "type": "Feature" }, @@ -4542,35 +6141,34 @@ "coordinates": [ [ [ - -0.10466598937414959, - 51.493517948449686 + -0.10265132070937785, + 51.49552068368667 ], [ - -0.10477960940621801, - 51.49352145220663 + -0.10289391432447212, + 51.4955782375709 ], [ - -0.10477246627170242, - 51.49361127644772 + -0.10293923986705951, + 51.49550415505504 ], [ - -0.10465884623963399, - 51.493607767294854 + -0.10269664625196526, + 51.495446601170805 ], [ - -0.10466598937414959, - 51.493517948449686 + -0.10265132070937785, + 51.49552068368667 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/96619946", - "osm_node_id": 96619946, - "type": "intersection" + "dst_i": 287248398, + "osm_way_id": 1067864764, + "src_i": 25472957, + "type": "road" }, "type": "Feature" }, @@ -4579,32 +6177,2560 @@ "coordinates": [ [ [ - -0.10322845882681637, + -0.10368205220122992, + 51.49582743418947 + ], + [ + -0.10376240163284633, + 51.49585371146721 + ], + [ + -0.10382159750780084, + 51.4957835248125 + ], + [ + -0.10374124807618443, + 51.49575724753476 + ], + [ + -0.10368205220122992, + 51.49582743418947 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 265241531, + "osm_way_id": 1069976319, + "src_i": 25472725, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10772930369181893, + 51.49740149159951 + ], + [ + -0.10773221091579384, + 51.497402952997106 + ], + [ + -0.10769646635872535, + 51.49743050461355 + ], + [ + -0.10769400828857864, + 51.497429268046346 + ], + [ + -0.10759550639886954, + 51.497454324944684 + ], + [ + -0.10755248583862886, + 51.49738874821248 + ], + [ + -0.10762963198024214, + 51.49732568508414 + ], + [ + -0.10771641832057993, + 51.49736685242956 + ], + [ + -0.107804788975225, + 51.49732968166932 + ], + [ + -0.10783662834916974, + 51.49735903192895 + ], + [ + -0.1078424297990988, + 51.497394264651156 + ], + [ + -0.10772930369181893, + 51.49740149159951 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/364274", + "osm_node_id": 364274, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10576566814496935, + 51.49565994003866 + ], + [ + -0.10579613261716342, + 51.495614860644295 + ], + [ + -0.10592924823613559, + 51.49564974353039 + ], + [ + -0.10589878376394153, + 51.49569482292476 + ], + [ + -0.10576566814496935, + 51.49565994003866 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25472582", + "osm_node_id": 25472582, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10578603026658992, + 51.49642064739918 + ], + [ + -0.10579262459578487, + 51.49642356479844 + ], + [ + -0.1056985015948447, + 51.49650607215902 + ], + [ + -0.10569195925773275, + 51.49650317814213 + ], + [ + -0.10566115394855008, + 51.49649145278715 + ], + [ + -0.1056435170786139, + 51.49648544082227 + ], + [ + -0.10571827014018426, + 51.49639557521238 + ], + [ + -0.10578893460211578, + 51.49641691881184 + ], + [ + -0.10578603026658992, + 51.49642064739918 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25472584", + "osm_node_id": 25472584, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10374125096463349, + 51.49575724933341 + ], + [ + -0.10368205220122992, + 51.49582743418947 + ], + [ + -0.10367548820075007, + 51.495825285710175 + ], + [ + -0.10360811801496696, + 51.495809101518724 + ], + [ + -0.10358277620717378, + 51.49579582843127 + ], + [ + -0.10363965265753629, + 51.495724902534214 + ], + [ + -0.10374466799986677, + 51.49575214298538 + ], + [ + -0.10374125096463349, + 51.49575724933341 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25472725", + "osm_node_id": 25472725, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10354075938298007, + 51.49353520912909 + ], + [ + -0.10365363997209016, + 51.49354399010517 + ], + [ + -0.1036357359206163, + 51.4936332288879 + ], + [ + -0.10352285533150621, + 51.493624447911834 + ], + [ + -0.10354075938298007, + 51.49353520912909 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25472731", + "osm_node_id": 25472731, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10268078000130043, + 51.49363597811403 + ], + [ + -0.10279401875809346, + 51.49362922241019 + ], + [ + -0.10279182642525991, + 51.49372579336191 + ], + [ + -0.10267869742953101, + 51.4937183559723 + ], + [ + -0.10268078000130043, + 51.49363597811403 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25472738", + "osm_node_id": 25472738, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10243422921099939, + 51.49538830174896 + ], + [ + -0.10239707509079153, + 51.49544077626482 + ], + [ + -0.10236979513368175, + 51.49543328671456 + ], + [ + -0.10237139244600973, + 51.49540791325502 + ], + [ + -0.10233405202083776, + 51.4954308189761 + ], + [ + -0.10231378088536247, + 51.495418005441984 + ], + [ + -0.1022923717009591, + 51.49541218773057 + ], + [ + -0.10232920809177078, + 51.49535962598053 + ], + [ + -0.10243831492218916, + 51.49537968085213 + ], + [ + -0.10243422921099939, + 51.49538830174896 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25472956", + "osm_node_id": 25472956, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10269664625196526, + 51.495446601170805 + ], + [ + -0.10265132070937785, + 51.49552068368667 + ], + [ + -0.10254793878498855, + 51.49549113018035 + ], + [ + -0.10255341239594976, + 51.49548370178396 + ], + [ + -0.10259056940460667, + 51.495431228167426 + ], + [ + -0.10269664625196526, + 51.495446601170805 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/25472957", + "osm_node_id": 25472957, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1013272816581301, + 51.495441171067 + ], + [ + -0.10118153629566037, + 51.49539638305283 + ], + [ + -0.10119445632828804, + 51.49538007835228 + ], + [ + -0.10120332097844104, + 51.49536276191493 + ], + [ + -0.1013581707323354, + 51.49539349892847 + ], + [ + -0.1013272816581301, + 51.495441171067 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/29158929", + "osm_node_id": 29158929, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10775816363056238, + 51.49489057041252 + ], + [ + -0.10778519951372692, + 51.49489689983792 + ], + [ + -0.10773437291991228, + 51.49498107903735 + ], + [ + -0.10770733703674776, + 51.494974749611956 + ], + [ + -0.10775816363056238, + 51.49489057041252 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/61334096", + "osm_node_id": 61334096, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10680886762717182, + 51.49689741464988 + ], + [ + -0.10670260447484911, + 51.496973991883856 + ], + [ + -0.10667699548551826, + 51.49696299497936 + ], + [ + -0.10665414785348497, + 51.496951989081666 + ], + [ + -0.10673968638383058, + 51.496865933897375 + ], + [ + -0.10675084446253406, + 51.496870234453255 + ], + [ + -0.10677914837483421, + 51.49687382094778 + ], + [ + -0.10680886762717182, + 51.49689741464988 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/61334099", + "osm_node_id": 61334099, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10686439950449873, + 51.49661299969825 + ], + [ + -0.10690041413155398, + 51.496614591497476 + ], + [ + -0.1068983691096223, + 51.49663253296334 + ], + [ + -0.10685719860100203, + 51.496635031278736 + ], + [ + -0.10682889468870188, + 51.49663144478421 + ], + [ + -0.10684368210364428, + 51.496587259315504 + ], + [ + -0.10687193113541235, + 51.49659101128521 + ], + [ + -0.10686439950449873, + 51.49661299969825 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/61334104", + "osm_node_id": 61334104, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10466598937414959, + 51.493517948449686 + ], + [ + -0.10477960940621801, + 51.49352145220663 + ], + [ + -0.10477246627170242, + 51.49361127644772 + ], + [ + -0.10465884623963399, + 51.493607767294854 + ], + [ + -0.10466598937414959, + 51.493517948449686 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/96619946", + "osm_node_id": 96619946, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10322845882681637, + 51.49559703878821 + ], + [ + -0.10327965947478378, + 51.49561296037776 + ], + [ + -0.10322278302442126, + 51.49568388627482 + ], + [ + -0.10312013332186767, + 51.495653353407285 + ], + [ + -0.10312185194905601, + 51.49565111499583 + ], + [ + -0.10318286754691583, + 51.49558153628252 + ], + [ + -0.10322845882681637, 51.49559703878821 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/96619952", + "osm_node_id": 96619952, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1054901548759834, + 51.49632199721593 + ], + [ + -0.10541540181441304, + 51.49641186282582 + ], + [ + -0.10540614866786202, + 51.496408879776084 + ], + [ + -0.10534264611536495, + 51.496380096089055 + ], + [ + -0.10534695423713203, + 51.496376415165756 + ], + [ + -0.10540879593142188, + 51.49630711883943 + ], + [ + -0.1054901548759834, + 51.49632199721593 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/96619956", + "osm_node_id": 96619956, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10454838905928193, + 51.49730944153746 + ], + [ + -0.1046177782709552, + 51.49733235445311 + ], + [ + -0.10463775767307584, + 51.49737965337317 + ], + [ + -0.10454838905928193, + 51.49730944153746 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/96619957", + "osm_node_id": 96619957, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10924499133793503, + 51.49811783452633 + ], + [ + -0.10919620832182755, + 51.49815616541144 + ], + [ + -0.10908301866866847, + 51.49810030944637 + ], + [ + -0.10913180168477594, + 51.49806197856127 + ], + [ + -0.10924499133793503, + 51.49811783452633 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/96620001", + "osm_node_id": 96620001, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.11022986436834886, + 51.49672184638977 + ], + [ + -0.11027073592249184, + 51.496787953721714 + ], + [ + -0.11013595655686337, + 51.49682026454804 + ], + [ + -0.1100950850027204, + 51.4967541572161 + ], + [ + -0.11022986436834886, + 51.49672184638977 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/158863955", + "osm_node_id": 158863955, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10208670835127084, + 51.496145321890936 + ], + [ + -0.1019930908289155, + 51.496105077249474 + ], + [ + -0.1020751401128014, + 51.496031067578656 + ], + [ + -0.10216875763515675, + 51.49607131222012 + ], + [ + -0.10208670835127084, + 51.496145321890936 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/264341502", + "osm_node_id": 264341502, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10619954929879993, + 51.496604943575385 + ], + [ + -0.10610052459981167, + 51.49668519543741 + ], + [ + -0.10603465207486412, + 51.49665856022967 + ], + [ + -0.1060368314096769, + 51.49665573186325 + ], + [ + -0.10613095441061707, + 51.49657322450266 + ], + [ + -0.10619954929879993, + 51.496604943575385 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/264341506", + "osm_node_id": 264341506, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10608293538928491, + 51.49603947713491 + ], + [ + -0.1060707966821269, + 51.49605579712393 + ], + [ + -0.10606687705675785, + 51.49606010127709 + ], + [ + -0.10599620826215275, + 51.49603875677831 + ], + [ + -0.10601186654448555, + 51.4960186560413 + ], + [ + -0.1060270843383373, + 51.49599845817755 + ], + [ + -0.10609818928874987, + 51.49601923250644 + ], + [ + -0.10608293538928491, + 51.49603947713491 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/264790813", + "osm_node_id": 264790813, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1038853975705507, + 51.49580428205428 + ], + [ + -0.1038266869550376, + 51.49587462519095 + ], + [ + -0.10382060821399916, + 51.495872656575976 + ], + [ + -0.10376921692839407, + 51.4958562259704 + ], + [ + -0.10376240163284633, + 51.49585371146721 + ], + [ + -0.10382159750780084, + 51.4957835248125 + ], + [ + -0.1038853975705507, + 51.49580428205428 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/265241531", + "osm_node_id": 265241531, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10364326899575446, + 51.496095691029964 + ], + [ + -0.10364928707936272, + 51.49611415680032 + ], + [ + -0.10362098027861351, + 51.49611773430163 + ], + [ + -0.103592631595353, + 51.49607010263257 + ], + [ + -0.10364925675064762, + 51.49607722166233 + ], + [ + -0.10364326899575446, + 51.496095691029964 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/265241535", + "osm_node_id": 265241535, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10304254235909976, + 51.495533820976554 + ], + [ + -0.10298152531701542, + 51.49560339968986 + ], + [ + -0.10295451831834143, + 51.495602830419294 + ], + [ + -0.10289403419510793, + 51.49557826634919 + ], + [ + -0.10293923986705951, + 51.49550415505504 + ], + [ + -0.10304254235909976, + 51.495533820976554 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/287248398", + "osm_node_id": 287248398, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10356576468645823, + 51.496608265669366 + ], + [ + -0.10351723585386768, + 51.49667233513857 + ], + [ + -0.10338661441065537, + 51.49663397097857 + ], + [ + -0.10343514324324593, + 51.49656990150937 + ], + [ + -0.10356576468645823, + 51.496608265669366 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/730857210", + "osm_node_id": 730857210, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10315418380356481, + 51.49536195072685 + ], + [ + -0.1031435340918952, + 51.49538183472736 + ], + [ + -0.10303561874671242, + 51.49535942183452 + ], + [ + -0.10303914409878533, + 51.49535283880043 + ], + [ + -0.10305989038413035, + 51.495319252736074 + ], + [ + -0.1030631138932769, + 51.495314610437994 + ], + [ + -0.1031675371035509, + 51.49534271423789 + ], + [ + -0.10315418380356481, + 51.49536195072685 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1186174556", + "osm_node_id": 1186174556, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10306541598717456, + 51.49399442701815 + ], + [ + -0.10312318496829538, + 51.49399417340946 + ], + [ + -0.10312666266095885, + 51.49408085811886 + ], + [ + -0.10306981798353597, + 51.49408726308727 + ], + [ + -0.10306541598717456, + 51.49399442701815 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1186174609", + "osm_node_id": 1186174609, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10757629965687139, + 51.496889899918614 + ], + [ + -0.107584140351834, + 51.496904283668236 + ], + [ + -0.10757255189422119, + 51.49692075923989 + ], + [ + -0.1075401954878954, + 51.496890125648335 + ], + [ + -0.10753990664298979, + 51.49687214101504 + ], + [ + -0.10755713335316003, + 51.49687203309645 + ], + [ + -0.1075745839181321, + 51.496859494754744 + ], + [ + -0.10758624458697133, + 51.49687595054132 + ], + [ + -0.10757629965687139, + 51.496889899918614 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1819350066", + "osm_node_id": 1819350066, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10798899981377402, + 51.496898500131046 + ], + [ + -0.10801642274911208, + 51.49690414787067 + ], + [ + -0.10796266293528103, + 51.49699245225827 + ], + [ + -0.1079454766633976, + 51.49697799476428 + ], + [ + -0.10798899981377402, + 51.496898500131046 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1819350081", + "osm_node_id": 1819350081, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10765725421856506, + 51.49686736022143 + ], + [ + -0.10763101843578904, + 51.49687488214727 + ], + [ + -0.10760789928954448, + 51.496869999730315 + ], + [ + -0.10759052238002333, + 51.49687477422867 + ], + [ + -0.10757885882273505, + 51.49685832024074 + ], + [ + -0.10757872162140489, + 51.496847663279816 + ], + [ + -0.10760760611196529, + 51.496847517589714 + ], + [ + -0.10765725421856506, + 51.49686736022143 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1819350083", + "osm_node_id": 1819350083, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10760870661105565, + 51.496933382117824 + ], + [ + -0.10757982212049522, + 51.4969335350025 + ], + [ + -0.10757967480959338, + 51.49692270177454 + ], + [ + -0.10759126326720621, + 51.49690622620288 + ], + [ + -0.10760840043545569, + 51.49691089997722 + ], + [ + -0.10763167700217381, + 51.49690630714183 + ], + [ + -0.10765866955860251, + 51.49691271211024 + ], + [ + -0.10760870661105565, + 51.496933382117824 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1819350092", + "osm_node_id": 1819350092, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10765004320549665, + 51.49682047139201 + ], + [ + -0.10764212018973593, + 51.49683776714496 + ], + [ + -0.10760739958785778, + 51.49683159959745 + ], + [ + -0.10760744002614456, + 51.49683469416307 + ], + [ + -0.10757855553558415, + 51.496834839853165 + ], + [ + -0.10757186733179488, + 51.4968355907867 + ], + [ + -0.10756674033472041, + 51.49681789033903 + ], + [ + -0.10765004320549665, + 51.49682047139201 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1819350122", + "osm_node_id": 1819350122, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10756719526544675, + 51.49696003261403 + ], + [ + -0.10757373182566057, + 51.49694251203068 + ], + [ + -0.10757995643337633, + 51.496943413150916 + ], + [ + -0.10760884092393674, + 51.49694326026624 + ], + [ + -0.10760890013714239, + 51.49694760039227 + ], + [ + -0.10764346909544509, + 51.49694111358559 + ], + [ + -0.10765180515942083, + 51.49695833559417 + ], + [ + -0.10756719526544675, + 51.49696003261403 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1819350128", + "osm_node_id": 1819350128, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10751230029113668, + 51.496890300116725 + ], + [ + -0.10752218889648005, + 51.4969119234052 + ], + [ + -0.10749440779345903, + 51.496916849888905 + ], + [ + -0.10749063259054278, + 51.496864864604 + ], + [ + -0.10751901449096744, + 51.4968682082817 + ], + [ + -0.10751777679054694, + 51.49687227951057 + ], + [ + -0.10751806563545255, + 51.49689026414386 + ], + [ + -0.10751230029113668, + 51.496890300116725 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1819350134", + "osm_node_id": 1819350134, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10766889322403637, + 51.496896005412935 + ], + [ + -0.10764190066760768, + 51.49688960044452 + ], + [ + -0.10763408885713562, + 51.496879037013045 + ], + [ + -0.10766032752836069, + 51.49687151508721 + ], + [ + -0.10767775931841389, + 51.49687142245708 + ], + [ + -0.10767800483658366, + 51.496889408889025 + ], + [ + -0.10766889322403637, + 51.496896005412935 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1819350153", + "osm_node_id": 1819350153, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10795722831838209, + 51.49686363343273 + ], + [ + -0.10795860033168372, + 51.4968816000796 + ], + [ + -0.10781434107625332, + 51.4968858727565 + ], + [ + -0.10781296906295171, + 51.49686790610964 + ], + [ + -0.10795722831838209, + 51.49686363343273 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1819350182", + "osm_node_id": 1819350182, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10771764013453064, + 51.4969155377787 + ], + [ + -0.10768965684007571, + 51.496911082539505 + ], + [ + -0.10769859947835322, + 51.49688930007111 + ], + [ + -0.10769109962037922, + 51.49688933964126 + ], + [ + -0.10769085410220945, + 51.49687135320932 + ], + [ + -0.10768922934961543, + 51.49686758685047 + ], + [ + -0.10771712310214962, + 51.49686291937139 + ], + [ + -0.10772045781658482, + 51.496870645443224 + ], + [ + -0.10773329263996534, + 51.49687026592951 + ], + [ + -0.10773466465326696, + 51.496888232576374 + ], + [ + -0.10771764013453064, + 51.4969155377787 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1819350194", + "osm_node_id": 1819350194, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10709338419186545, + 51.497063740581936 + ], + [ + -0.10701442554846952, + 51.497125928670364 + ], + [ + -0.10694476771103403, + 51.497104292791384 + ], + [ + -0.10705103086335671, + 51.49702771555741 + ], + [ + -0.10709338419186545, + 51.497063740581936 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2059768440", + "osm_node_id": 2059768440, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10819972517043297, + 51.49728060029385 + ], + [ + -0.10814364593200994, + 51.497274679160455 + ], + [ + -0.10814398821322307, + 51.497273424606824 + ], + [ + -0.10814204139855929, + 51.49727303789854 + ], + [ + -0.10815938075824272, + 51.497239304345435 + ], + [ + -0.1082026540577758, + 51.497215597328825 + ], + [ + -0.10824191963424362, + 51.49728208237584 + ], + [ + -0.10819972517043297, + 51.49728060029385 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2059768444", + "osm_node_id": 2059768444, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10137703808156945, + 51.49535664113214 + ], + [ + -0.10122218832767509, + 51.4953259041186 + ], + [ + -0.10122950476913405, + 51.49531161209978 + ], + [ + -0.10123152668347327, + 51.495285967944454 + ], + [ + -0.10139385752042278, + 51.49529092860238 + ], + [ + -0.10140625763222037, + 51.495312043774156 + ], + [ + -0.10137703808156945, + 51.49535664113214 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2180693485", + "osm_node_id": 2180693485, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10140611754244115, + 51.49504578792421 + ], + [ + -0.10134881360161835, + 51.49509068205833 + ], + [ + -0.10119791669025718, + 51.49512828089565 + ], + [ + -0.10118092250023597, + 51.49510183274681 + ], + [ + -0.10109766873309368, + 51.495077316340755 + ], + [ + -0.10113241966368691, + 51.49504781229713 + ], + [ + -0.10126107840576562, + 51.49498597494412 + ], + [ + -0.10140611754244115, + 51.49504578792421 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2180693488", + "osm_node_id": 2180693488, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10265013933371393, + 51.49552229077436 + ], + [ + -0.10262134438507425, + 51.495563526468224 + ], + [ + -0.10261988427407642, + 51.49556430078412 + ], + [ + -0.10251568347437974, + 51.49553588042301 + ], + [ + -0.10254283489550653, + 51.49549421305478 + ], + [ + -0.10254675452087558, + 51.4954927354694 + ], + [ + -0.10265013933371393, + 51.49552229077436 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2464418698", + "osm_node_id": 2464418698, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10530450414557993, + 51.49551061578139 + ], + [ + -0.10537729595024123, + 51.49552898352569 + ], + [ + -0.10532305665386689, + 51.495612332651284 + ], + [ + -0.10525026484920558, + 51.49559396490699 + ], + [ + -0.10530450414557993, + 51.49551061578139 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2467649381", + "osm_node_id": 2467649381, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10499868526909799, + 51.49616520139483 + ], + [ + -0.10501101894656728, + 51.49616946957513 + ], + [ + -0.10494917725227745, + 51.49623876590146 + ], + [ + -0.10494788467132486, + 51.49623830994541 + ], + [ + -0.1049139872774277, + 51.496230078454836 + ], + [ + -0.10486846820875355, + 51.49621191035993 + ], + [ + -0.10492731458137228, + 51.4961416103907 + ], + [ + -0.1050017629115672, + 51.49615719203669 + ], + [ + -0.10499868526909799, + 51.49616520139483 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2467649384", + "osm_node_id": 2467649384, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10728145544257786, + 51.49754483536816 + ], + [ + -0.10722240976697428, + 51.49746397736338 + ], + [ + -0.10725259694805897, + 51.49745543021093 + ], + [ + -0.10727640932207697, + 51.49742341076479 + ], + [ + -0.10734193667736232, + 51.49744230731018 + ], + [ + -0.107384957237603, + 51.497507883143065 + ], + [ + -0.10728145544257786, + 51.49754483536816 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2932500919", + "osm_node_id": 2932500919, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10751247215385552, + 51.49740515903298 + ], + [ + -0.10748490479606466, + 51.49741052618427 + ], + [ + -0.10746951802794313, + 51.4974043730259 + ], + [ + -0.10746588147058157, + 51.49738653048542 + ], + [ + -0.10750169968310101, + 51.497383700320356 + ], + [ + -0.10752760329423558, + 51.49739165931649 + ], + [ + -0.10751247215385552, + 51.49740515903298 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2932500926", + "osm_node_id": 2932500926, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10792547704213357, + 51.4973865295861 + ], + [ + -0.10790893489438962, + 51.497352641349686 + ], + [ + -0.10793965355010061, + 51.49734682633624 + ], + [ + -0.1079678505897857, + 51.49733727554088 + ], + [ + -0.10799503089540304, + 51.497368388470846 + ], + [ + -0.10792547704213357, + 51.4973865295861 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/2932500935", + "osm_node_id": 2932500935, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10795078996543618, + 51.4973510387586 + ], + [ + -0.10798081539337373, + 51.497356182878136 + ], + [ + -0.1079892005609834, + 51.49740160041742 + ], + [ + -0.10796050381961164, + 51.497403654467945 + ], + [ + -0.10795078996543618, + 51.4973510387586 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2932500936", + "osm_node_id": 2932500936, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10065603353777217, + 51.49447893832712 + ], + [ + -0.10081639156401641, + 51.49446245735953 + ], + [ + -0.1008399107604552, + 51.494551188924895 + ], + [ + -0.10067955273421098, + 51.494567669892476 + ], + [ + -0.10065603353777217, + 51.49447893832712 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3071561909", + "osm_node_id": 3071561909, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1100742780599452, + 51.49683505029442 + ], + [ + -0.10996902730901664, + 51.49686192562102 + ], + [ + -0.10996821709905644, + 51.49686069534908 + ], + [ + -0.1099267201956928, + 51.49679474000248 + ], + [ + -0.11003340650580222, + 51.496768942063156 + ], + [ + -0.1100742780599452, + 51.49683505029442 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3314367620", + "osm_node_id": 3314367620, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10848367126643804, + 51.497222859350714 + ], + [ + -0.10838008137371671, + 51.49725213406734 + ], + [ + -0.10837802768643787, + 51.49724931649278 + ], + [ + -0.10833454786279728, + 51.497183857571706 + ], + [ + -0.10844217436307443, + 51.4971569031048 + ], + [ + -0.10848367126643804, + 51.497222859350714 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3314367623", + "osm_node_id": 3314367623, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10796598609592001, + 51.4975020258615 + ], + [ + -0.10791924810174422, + 51.49754133340986 + ], + [ + -0.10786083499648388, + 51.49751319363709 + ], + [ + -0.1078965795535524, + 51.49748564202065 + ], + [ + -0.10796598609592001, + 51.4975020258615 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3328901241", + "osm_node_id": 3328901241, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1069802999670969, + 51.49627460026981 + ], + [ + -0.10697276833618329, + 51.49629658868285 + ], + [ + -0.1069445193044152, + 51.49629283671315 + ], + [ + -0.10694694415739775, + 51.496285759052185 + ], + [ + -0.10693612980413192, + 51.4962831114494 + ], + [ + -0.10694669863922798, + 51.49626637327584 + ], + [ + -0.10695305178292674, + 51.49626792820288 + ], + [ + -0.10695957823356886, + 51.49624886078639 + ], + [ + -0.10698782726533695, + 51.49625261095744 + ], + [ + -0.1069802999670969, + 51.49627460026981 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3374579450", + "osm_node_id": 3374579450, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10322272381121561, + 51.49568445824335 ], [ - -0.10327965947478378, - 51.49561296037776 + -0.1031906129230596, + 51.49572473346175 ], [ - -0.10322278302442126, - 51.49568388627482 + -0.10318971317117864, + 51.495725845922564 ], [ - -0.10312013332186767, - 51.495653353407285 + -0.10308810042183617, + 51.49569399554889 ], [ - -0.10312185194905601, - 51.49565111499583 + -0.10311865876862457, + 51.49565325538123 ], [ - -0.10318286754691583, - 51.49558153628252 + -0.10322272381121561, + 51.49568445824335 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3799274007", + "osm_node_id": 3799274007, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10382917390967486, + 51.49587199827256 ], [ - -0.10322845882681637, - 51.49559703878821 + -0.10379634090925483, + 51.49591204686192 + ], + [ + -0.10378890604138458, + 51.49590968344476 + ], + [ + -0.1037878300941112, + 51.495910898428235 + ], + [ + -0.10373723313199652, + 51.49589353792413 + ], + [ + -0.1037322375593541, + 51.495892000983524 + ], + [ + -0.10376421846730259, + 51.495851684396335 + ], + [ + -0.10375509963363266, + 51.49587334725496 + ], + [ + -0.10380649091923777, + 51.49588977786053 + ], + [ + -0.10382917390967486, + 51.49587199827256 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/3799274008", + "osm_node_id": 3799274008, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10475978164767283, + 51.49616903880009 + ], + [ + -0.10472454401341365, + 51.49620828879186 + ], + [ + -0.10472191552477267, + 51.49620737328247 + ], + [ + -0.10465108208857136, + 51.4961862455202 + ], + [ + -0.10465261007812199, + 51.496184260717435 + ], + [ + -0.10468544452276654, + 51.49614421212809 + ], + [ + -0.1046897873059223, + 51.496145593486055 + ], + [ + -0.1046971210780756, + 51.49613955094425 + ], + [ + -0.10475978164767283, + 51.49616903880009 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/3799274009", + "osm_node_id": 3799274009, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10611248133467915, + 51.49668138051519 + ], + [ + -0.10606847581331036, + 51.49671703142194 + ], + [ + -0.10600158799851962, + 51.496691392662534 + ], + [ + -0.10600531409780192, + 51.496687623605716 + ], + [ + -0.10604764431871819, + 51.49665119388647 + ], + [ + -0.10602352865754931, + 51.49666922708313 + ], + [ + -0.10608940551517043, + 51.496695861391544 + ], + [ + -0.10611248133467915, + 51.49668138051519 ] ] ], @@ -4613,8 +8739,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/96619952", - "osm_node_id": 96619952, + "osm_link": "https://www.openstreetmap.org/node/3799274011", + "osm_node_id": 3799274011, "type": "intersection" }, "type": "Feature" @@ -4624,32 +8750,36 @@ "coordinates": [ [ [ - -0.1054901548759834, - 51.49632199721593 + -0.1057142162019341, + 51.496500964911675 ], [ - -0.10541540181441304, - 51.49641186282582 + -0.1056718859810178, + 51.49653739463092 ], [ - -0.10540614866786202, - 51.496408879776084 + -0.1056443417308194, + 51.496524983992884 ], [ - -0.10534264611536495, - 51.496380096089055 + -0.10561466291676858, + 51.49651464719045 ], [ - -0.10534695423713203, - 51.496376415165756 + -0.1056499135490485, + 51.496475402594605 ], [ - -0.10540879593142188, - 51.49630711883943 + -0.10565147764421234, + 51.49650131025117 ], [ - -0.1054901548759834, - 51.49632199721593 + -0.10568228295339502, + 51.49651303560615 + ], + [ + -0.1057142162019341, + 51.496500964911675 ] ] ], @@ -4658,8 +8788,53 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/96619956", - "osm_node_id": 96619956, + "osm_link": "https://www.openstreetmap.org/node/3799274013", + "osm_node_id": 3799274013, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10496419718736885, + 51.496239950308 + ], + [ + -0.10492957334853409, + 51.49627941074103 + ], + [ + -0.10486606646336344, + 51.49625755452826 + ], + [ + -0.10490130265339809, + 51.496218304536484 + ], + [ + -0.10489946993247204, + 51.496239625652905 + ], + [ + -0.10492568838455371, + 51.496255083192516 + ], + [ + -0.10496419718736885, + 51.496239950308 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3799274014", + "osm_node_id": 3799274014, "type": "intersection" }, "type": "Feature" @@ -4669,30 +8844,46 @@ "coordinates": [ [ [ - -0.10454838905928193, - 51.49730944153746 + -0.10367876081353056, + 51.495825399024696 ], [ - -0.1046177782709552, - 51.49733235445311 + -0.10364677990558206, + 51.495865715611885 ], [ - -0.10463775767307584, - 51.49737965337317 + -0.10361440905701103, + 51.49585575832317 ], [ - -0.10454838905928193, - 51.49730944153746 + -0.10358200499127582, + 51.49584573898126 + ], + [ + -0.10361411587943183, + 51.49580546376286 + ], + [ + -0.10359671441809372, + 51.495827507933846 + ], + [ + -0.10366408460387681, + 51.4958436921253 + ], + [ + -0.10367876081353056, + 51.495825399024696 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/96619957", - "osm_node_id": 96619957, + "osm_link": "https://www.openstreetmap.org/node/3799274015", + "osm_node_id": 3799274015, "type": "intersection" }, "type": "Feature" @@ -4702,34 +8893,42 @@ "coordinates": [ [ [ - -0.10924499133793503, - 51.49811783452633 + -0.10733832178336869, + 51.49728344125077 ], [ - -0.10919620832182755, - 51.49815616541144 + -0.10732182585080964, + 51.49729820631275 ], [ - -0.10908301866866847, - 51.49810030944637 + -0.10726639795764872, + 51.497327026871965 ], [ - -0.10913180168477594, - 51.49806197856127 + -0.10718882288135063, + 51.49726917711092 ], [ - -0.10924499133793503, - 51.49811783452633 + -0.10716350851382347, + 51.49725636177816 + ], + [ + -0.10720906224388632, + 51.49722147169749 + ], + [ + -0.10733832178336869, + 51.49728344125077 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/96620001", - "osm_node_id": 96620001, + "osm_link": "https://www.openstreetmap.org/node/3799274019", + "osm_node_id": 3799274019, "type": "intersection" }, "type": "Feature" @@ -4739,34 +8938,42 @@ "coordinates": [ [ [ - -0.11022986436834886, - 51.49672184638977 + -0.10112764216894823, + 51.4951659597726 ], [ - -0.11027073592249184, - 51.496787953721714 + -0.10107140695427616, + 51.49517127296459 ], [ - -0.11013595655686337, - 51.49682026454804 + -0.10106684320476761, + 51.49515254189437 ], [ - -0.1100950850027204, - 51.4967541572161 + -0.10103438714694941, + 51.495131887175255 ], [ - -0.11022986436834886, - 51.49672184638977 + -0.10107503917896413, + 51.49510711446255 + ], + [ + -0.10115829294610641, + 51.4951316308686 + ], + [ + -0.10112764216894823, + 51.4951659597726 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/158863955", - "osm_node_id": 158863955, + "osm_link": "https://www.openstreetmap.org/node/3874597627", + "osm_node_id": 3874597627, "type": "intersection" }, "type": "Feature" @@ -4776,34 +8983,38 @@ "coordinates": [ [ [ - -0.10208670835127084, - 51.496145321890936 + -0.10086572194122, + 51.49546191841624 ], [ - -0.1019930908289155, - 51.496105077249474 + -0.10090180444682806, + 51.495462699027385 ], [ - -0.1020751401128014, - 51.496031067578656 + -0.10090150838079982, + 51.495468003226165 ], [ - -0.10216875763515675, - 51.49607131222012 + -0.10090694299769876, + 51.49546678914201 ], [ - -0.10208670835127084, - 51.496145321890936 + -0.10092614251857426, + 51.49550012879225 + ], + [ + -0.10086572194122, + 51.49546191841624 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/264341502", - "osm_node_id": 264341502, + "osm_link": "https://www.openstreetmap.org/node/3874597641", + "osm_node_id": 3874597641, "type": "intersection" }, "type": "Feature" @@ -4813,38 +9024,34 @@ "coordinates": [ [ [ - -0.10619954929879993, - 51.496604943575385 - ], - [ - -0.10610052459981167, - 51.49668519543741 + -0.10118785188952141, + 51.49557327511433 ], [ - -0.10603465207486412, - 51.49665856022967 + -0.10105827895331645, + 51.49551218060097 ], [ - -0.1060368314096769, - 51.49665573186325 + -0.10114546101117496, + 51.495440486683265 ], [ - -0.10613095441061707, - 51.49657322450266 + -0.101275039724278, + 51.495501575800695 ], [ - -0.10619954929879993, - 51.496604943575385 + -0.10118785188952141, + 51.49557327511433 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/264341506", - "osm_node_id": 264341506, + "complexity": "Terminus", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/3881302130", + "osm_node_id": 3881302130, "type": "intersection" }, "type": "Feature" @@ -4854,32 +9061,32 @@ "coordinates": [ [ [ - -0.1038853975705507, - 51.49580428205428 + -0.10160126838178993, + 51.49522713342626 ], [ - -0.1038266869550376, - 51.49587462519095 + -0.10156011375963946, + 51.49526408295339 ], [ - -0.10382060821399916, - 51.495872656575976 + -0.10153582334730268, + 51.495253593266284 ], [ - -0.10376921692839407, - 51.4958562259704 + -0.1015341191623596, + 51.49525457442615 ], [ - -0.10376240163284633, - 51.49585371146721 + -0.10150959045297571, + 51.49523807727078 ], [ - -0.10382159750780084, - 51.4957835248125 + -0.10154225447912595, + 51.495201218575126 ], [ - -0.1038853975705507, - 51.49580428205428 + -0.10160126838178993, + 51.49522713342626 ] ] ], @@ -4888,8 +9095,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/265241531", - "osm_node_id": 265241531, + "osm_link": "https://www.openstreetmap.org/node/3890206820", + "osm_node_id": 3890206820, "type": "intersection" }, "type": "Feature" @@ -4899,38 +9106,34 @@ "coordinates": [ [ [ - -0.10304254235909976, - 51.495533820976554 - ], - [ - -0.10298152531701542, - 51.49560339968986 + -0.10088050646771335, + 51.493435825099425 ], [ - -0.10295451831834143, - 51.495602830419294 + -0.10091649654295162, + 51.49343761654804 ], [ - -0.10289403419510793, - 51.49557826634919 + -0.1009049918503614, + 51.49352726272346 ], [ - -0.10293923986705951, - 51.49550415505504 + -0.10086900177512313, + 51.49352547127484 ], [ - -0.10304254235909976, - 51.495533820976554 + -0.10088050646771335, + 51.493435825099425 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/287248398", - "osm_node_id": 287248398, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/3890206821", + "osm_node_id": 3890206821, "type": "intersection" }, "type": "Feature" @@ -4940,34 +9143,42 @@ "coordinates": [ [ [ - -0.10356576468645823, - 51.496608265669366 + -0.10123771085290226, + 51.49486559984906 ], [ - -0.10351723585386768, - 51.49667233513857 + -0.10125486390762155, + 51.4948750373299 ], [ - -0.10338661441065537, - 51.49663397097857 + -0.1012070514103969, + 51.49490873491013 ], [ - -0.10343514324324593, - 51.49656990150937 + -0.10118115502038497, + 51.494894487857394 ], [ - -0.10356576468645823, - 51.496608265669366 + -0.10116647303383311, + 51.49488771146916 + ], + [ + -0.1012094733749304, + 51.49485158751926 + ], + [ + -0.10123771085290226, + 51.49486559984906 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/730857210", - "osm_node_id": 730857210, + "osm_link": "https://www.openstreetmap.org/node/3890206822", + "osm_node_id": 3890206822, "type": "intersection" }, "type": "Feature" @@ -4975,38 +9186,34 @@ { "geometry": { "coordinates": [ - [ - [ - -0.10315418380356481, - 51.49536195072685 - ], + [ [ - -0.1031435340918952, - 51.49538183472736 + -0.10167622941169231, + 51.495164819432816 ], [ - -0.10303561874671242, - 51.49535942183452 + -0.10163188016488586, + 51.49521508071822 ], [ - -0.10303914409878533, - 51.49535283880043 + -0.10160803746215276, + 51.49521521561646 ], [ - -0.10305989038413035, - 51.495319252736074 + -0.10156388174143306, + 51.49519202031383 ], [ - -0.1030631138932769, - 51.495314610437994 + -0.10160766051955095, + 51.4951415665736 ], [ - -0.1031675371035509, - 51.49534271423789 + -0.10163201447776696, + 51.49514166549898 ], [ - -0.10315418380356481, - 51.49536195072685 + -0.10167622941169231, + 51.495164819432816 ] ] ], @@ -5014,9 +9221,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1186174556", - "osm_node_id": 1186174556, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/3890206825", + "osm_node_id": 3890206825, "type": "intersection" }, "type": "Feature" @@ -5026,34 +9233,50 @@ "coordinates": [ [ [ - -0.10306541598717456, - 51.49399442701815 + -0.10109069024017428, + 51.49484851094007 ], [ - -0.10312318496829538, - 51.49399417340946 + -0.10096203005387105, + 51.494910348293075 ], [ - -0.10312666266095885, - 51.49408085811886 + -0.10096524778611947, + 51.494862370385206 ], [ - -0.10306981798353597, - 51.49408726308727 + -0.10094333601158034, + 51.49482908469426 ], [ - -0.10306541598717456, - 51.49399442701815 + -0.10089383521588244, + 51.49485664170663 + ], + [ + -0.10101869131477888, + 51.49479185098151 + ], + [ + -0.10103978854668419, + 51.49480761429046 + ], + [ + -0.10110893224018772, + 51.494814378088186 + ], + [ + -0.10109069024017428, + 51.49484851094007 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/1186174609", - "osm_node_id": 1186174609, + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/3890206831", + "osm_node_id": 3890206831, "type": "intersection" }, "type": "Feature" @@ -5063,34 +9286,42 @@ "coordinates": [ [ [ - -0.10709338419186545, - 51.497063740581936 + -0.1029523620911211, + 51.495604888966426 ], [ - -0.10701442554846952, - 51.497125928670364 + -0.1029218023001082, + 51.49564563003341 ], [ - -0.10694476771103403, - 51.497104292791384 + -0.10288455863797959, + 51.495634797704774 ], [ - -0.10705103086335671, - 51.49702771555741 + -0.1028518917233803, + 51.49562595287687 ], [ - -0.10709338419186545, - 51.497063740581936 + -0.10288068667201998, + 51.49558471718301 + ], + [ + -0.1028918779678876, + 51.49558032399701 + ], + [ + -0.1029523620911211, + 51.495604888966426 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2059768440", - "osm_node_id": 2059768440, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4156272581", + "osm_node_id": 4156272581, "type": "intersection" }, "type": "Feature" @@ -5100,36 +9331,32 @@ "coordinates": [ [ [ - -0.10819972517043297, - 51.49728060029385 - ], - [ - -0.10814364593200994, - 51.497274679160455 + -0.10541811406807666, + 51.496394665098926 ], [ - -0.10814398821322307, - 51.497273424606824 + -0.10538286343579674, + 51.496433909694765 ], [ - -0.10814204139855929, - 51.49727303789854 + -0.10531347277989894, + 51.4964109958798 ], [ - -0.10815938075824272, - 51.497239304345435 + -0.1053487407428732, + 51.49637077821799 ], [ - -0.1082026540577758, - 51.497215597328825 + -0.10533538311021354, + 51.49638631040129 ], [ - -0.10824191963424362, - 51.49728208237584 + -0.10539888277426154, + 51.49641509408832 ], [ - -0.10819972517043297, - 51.49728060029385 + -0.10541811406807666, + 51.496394665098926 ] ] ], @@ -5137,9 +9364,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2059768444", - "osm_node_id": 2059768444, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4156272585", + "osm_node_id": 4156272585, "type": "intersection" }, "type": "Feature" @@ -5149,32 +9376,36 @@ "coordinates": [ [ [ - -0.10137703808156945, - 51.49535664113214 + -0.10478781548998622, + 51.49609633134694 ], [ - -0.10122218832767509, - 51.4953259041186 + -0.10481983250354793, + 51.49610672390732 ], [ - -0.10122950476913405, - 51.49531161209978 + -0.10476098613092918, + 51.49617702387655 ], [ - -0.10123152668347327, - 51.495285967944454 + -0.10477296019649102, + 51.49615818129045 ], [ - -0.10139385752042278, - 51.49529092860238 + -0.10471029818266925, + 51.49612869253529 ], [ - -0.10140625763222037, - 51.495312043774156 + -0.10469701131701148, + 51.49615628821849 ], [ - -0.10137703808156945, - 51.49535664113214 + -0.10475572193252455, + 51.49608594508182 + ], + [ + -0.10478781548998622, + 51.49609633134694 ] ] ], @@ -5183,8 +9414,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2180693485", - "osm_node_id": 2180693485, + "osm_link": "https://www.openstreetmap.org/node/4156273389", + "osm_node_id": 4156273389, "type": "intersection" }, "type": "Feature" @@ -5194,36 +9425,36 @@ "coordinates": [ [ [ - -0.10140611754244115, - 51.49504578792421 + -0.10233239260685507, + 51.49543875548919 ], [ - -0.10134881360161835, - 51.49509068205833 + -0.10230029038404623, + 51.49547903430487 ], [ - -0.10119791669025718, - 51.49512828089565 + -0.1022726522592535, + 51.49547049254834 ], [ - -0.10118092250023597, - 51.49510183274681 + -0.10224224988871414, + 51.49546720552791 ], [ - -0.10109766873309368, - 51.495077316340755 + -0.10225460378532683, + 51.4954229031474 ], [ - -0.10113241966368691, - 51.49504781229713 + -0.10230462161340576, + 51.49542362440332 ], [ - -0.10126107840576562, - 51.49498597494412 + -0.10232489274888106, + 51.495436437937435 ], [ - -0.10140611754244115, - 51.49504578792421 + -0.10233239260685507, + 51.49543875548919 ] ] ], @@ -5232,8 +9463,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2180693488", - "osm_node_id": 2180693488, + "osm_link": "https://www.openstreetmap.org/node/4156273393", + "osm_node_id": 4156273393, "type": "intersection" }, "type": "Feature" @@ -5243,42 +9474,34 @@ "coordinates": [ [ [ - -0.10265013933371393, - 51.49552229077436 - ], - [ - -0.10262134438507425, - 51.495563526468224 - ], - [ - -0.10261988427407642, - 51.49556430078412 + -0.10168330611187962, + 51.495159576387906 ], [ - -0.10251568347437974, - 51.49553588042301 + -0.1016390926221788, + 51.49513642425271 ], [ - -0.10254283489550653, - 51.49549421305478 + -0.10162866965376006, + 51.495138245378946 ], [ - -0.10254675452087558, - 51.4954927354694 + -0.10169372908029833, + 51.495157755261665 ], [ - -0.10265013933371393, - 51.49552229077436 + -0.10168330611187962, + 51.495159576387906 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2464418698", - "osm_node_id": 2464418698, + "complexity": "Connection", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/4169653676", + "osm_node_id": 4169653676, "type": "intersection" }, "type": "Feature" @@ -5288,34 +9511,38 @@ "coordinates": [ [ [ - -0.10530450414557993, - 51.49551061578139 + -0.10171057162674411, + 51.49514154049328 ], [ - -0.10537729595024123, - 51.49552898352569 + -0.10169465916089439, + 51.49515655196937 ], [ - -0.10532305665386689, - 51.495612332651284 + -0.10162959540168254, + 51.49513704658326 ], [ - -0.10525026484920558, - 51.49559396490699 + -0.1016263112351058, + 51.495132010382314 ], [ - -0.10530450414557993, - 51.49551061578139 + -0.10166997591948598, + 51.49509619759768 + ], + [ + -0.10171057162674411, + 51.49514154049328 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2467649381", - "osm_node_id": 2467649381, + "osm_link": "https://www.openstreetmap.org/node/4169653677", + "osm_node_id": 4169653677, "type": "intersection" }, "type": "Feature" @@ -5325,40 +9552,36 @@ "coordinates": [ [ [ - -0.10499868526909799, - 51.49616520139483 - ], - [ - -0.10501101894656728, - 51.49616946957513 + -0.10671399218525257, + 51.49697083796301 ], [ - -0.10494917725227745, - 51.49623876590146 + -0.10666843845518974, + 51.49700572804368 ], [ - -0.10494788467132486, - 51.49623830994541 + -0.10664073822874229, + 51.496991704022705 ], [ - -0.1049139872774277, - 51.496230078454836 + -0.10661254841017986, + 51.49697811437405 ], [ - -0.10486846820875355, - 51.49621191035993 + -0.10665675323453352, + 51.496942558795396 ], [ - -0.10492731458137228, - 51.4961416103907 + -0.10664035262079333, + 51.49696309390474 ], [ - -0.1050017629115672, - 51.49615719203669 + -0.10666320025282659, + 51.49697409980244 ], [ - -0.10499868526909799, - 51.49616520139483 + -0.10671399218525257, + 51.49697083796301 ] ] ], @@ -5367,8 +9590,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2467649384", - "osm_node_id": 2467649384, + "osm_link": "https://www.openstreetmap.org/node/4169653680", + "osm_node_id": 4169653680, "type": "intersection" }, "type": "Feature" @@ -5378,32 +9601,61 @@ "coordinates": [ [ [ - -0.10728145544257786, - 51.49754483536816 + -0.10119939990884745, + 51.494846938026605 ], [ - -0.10722240976697428, - 51.49746397736338 + -0.10115639956775017, + 51.49488306197651 ], [ - -0.10725259694805897, - 51.49745543021093 + -0.10113166289003422, + 51.49486490017686 ], [ - -0.10727640932207697, - 51.49742341076479 + -0.10116790714878944, + 51.494836888107756 ], [ - -0.10734193667736232, - 51.49744230731018 + -0.10119939990884745, + 51.494846938026605 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/4175070882", + "osm_node_id": 4175070882, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10090439394140681, + 51.495416338999064 ], [ - -0.107384957237603, - 51.497507883143065 + -0.10086831143579875, + 51.49541555658928 ], [ - -0.10728145544257786, - 51.49754483536816 + -0.10089169198668287, + 51.495369663308864 + ], + [ + -0.10091585963993477, + 51.49537951447764 + ], + [ + -0.10090439394140681, + 51.495416338999064 ] ] ], @@ -5412,8 +9664,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2932500919", - "osm_node_id": 2932500919, + "osm_link": "https://www.openstreetmap.org/node/4421018012", + "osm_node_id": 4421018012, "type": "intersection" }, "type": "Feature" @@ -5423,38 +9675,34 @@ "coordinates": [ [ [ - -0.10792547704213357, - 51.4973865295861 - ], - [ - -0.10790893489438962, - 51.497352641349686 + -0.10659284196649502, + 51.497727126956526 ], [ - -0.10793965355010061, - 51.49734682633624 + -0.10654635815583616, + 51.49766247292828 ], [ - -0.1079678505897857, - 51.49733727554088 + -0.1066781739727331, + 51.49762572574851 ], [ - -0.10799503089540304, - 51.497368388470846 + -0.10672465778339199, + 51.497690379776756 ], [ - -0.10792547704213357, - 51.4973865295861 + -0.10659284196649502, + 51.497727126956526 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/2932500935", - "osm_node_id": 2932500935, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5425497684", + "osm_node_id": 5425497684, "type": "intersection" }, "type": "Feature" @@ -5464,24 +9712,24 @@ "coordinates": [ [ [ - -0.10065603353777217, - 51.49447893832712 + -0.10758956485916127, + 51.497272806772884 ], [ - -0.10081639156401641, - 51.49446245735953 + -0.10761546847029584, + 51.49728076576902 ], [ - -0.1008399107604552, - 51.494551188924895 + -0.10754210330849692, + 51.49737335902132 ], [ - -0.10067955273421098, - 51.494567669892476 + -0.10751619969736234, + 51.49736540002518 ], [ - -0.10065603353777217, - 51.49447893832712 + -0.10758956485916127, + 51.497272806772884 ] ] ], @@ -5490,8 +9738,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3071561909", - "osm_node_id": 3071561909, + "osm_link": "https://www.openstreetmap.org/node/6022813715", + "osm_node_id": 6022813715, "type": "intersection" }, "type": "Feature" @@ -5501,28 +9749,32 @@ "coordinates": [ [ [ - -0.1100742780599452, - 51.49683505029442 + -0.10830521421840865, + 51.497278903273994 ], [ - -0.10996902730901664, - 51.49686192562102 + -0.10826945810754393, + 51.49727577723212 ], [ - -0.10996821709905644, - 51.49686069534908 + -0.10823018964262704, + 51.497209292185104 ], [ - -0.1099267201956928, - 51.49679474000248 + -0.10828079960276246, + 51.49719770172837 ], [ - -0.11003340650580222, - 51.496768942063156 + -0.10831312423614863, + 51.49718937580902 ], [ - -0.1100742780599452, - 51.49683505029442 + -0.10835660405978922, + 51.49725483562942 + ], + [ + -0.10830521421840865, + 51.497278903273994 ] ] ], @@ -5531,8 +9783,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3314367620", - "osm_node_id": 3314367620, + "osm_link": "https://www.openstreetmap.org/node/6022813716", + "osm_node_id": 6022813716, "type": "intersection" }, "type": "Feature" @@ -5542,28 +9794,36 @@ "coordinates": [ [ [ - -0.10848367126643804, - 51.497222859350714 + -0.10811297204725931, + 51.497327713953666 ], [ - -0.10838008137371671, - 51.49725213406734 + -0.10810123194607102, + 51.49734897571486 ], [ - -0.10837802768643787, - 51.49724931649278 + -0.10807127439668629, + 51.49734256175323 ], [ - -0.10833454786279728, - 51.497183857571706 + -0.10804259787445791, + 51.497352275325795 ], [ - -0.10844217436307443, - 51.4971569031048 + -0.10801541756884056, + 51.49732116239583 ], [ - -0.10848367126643804, - 51.497222859350714 + -0.10804675579687409, + 51.49731054770302 + ], + [ + -0.10808465080426483, + 51.497296998523844 + ], + [ + -0.10811297204725931, + 51.497327713953666 ] ] ], @@ -5571,9 +9831,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3314367623", - "osm_node_id": 3314367623, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/6022813718", + "osm_node_id": 6022813718, "type": "intersection" }, "type": "Feature" @@ -5583,34 +9843,42 @@ "coordinates": [ [ [ - -0.10796598609592001, - 51.4975020258615 + -0.10746578326331366, + 51.49734762223586 ], [ - -0.10791924810174422, - 51.49754133340986 + -0.10739533976773494, + 51.49731346510228 ], [ - -0.10786083499648388, - 51.49751319363709 + -0.10739669589456674, + 51.49729549845542 ], [ - -0.1078965795535524, - 51.49748564202065 + -0.10747429841113088, + 51.49725127701386 ], [ - -0.10796598609592001, - 51.4975020258615 + -0.10751456627942114, + 51.497271102558464 + ], + [ + -0.10754293084915147, + 51.49728455820819 + ], + [ + -0.10746578326331366, + 51.49734762223586 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3328901241", - "osm_node_id": 3328901241, + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/6022813720", + "osm_node_id": 6022813720, "type": "intersection" }, "type": "Feature" @@ -5620,38 +9888,34 @@ "coordinates": [ [ [ - -0.10322272381121561, - 51.49568445824335 - ], - [ - -0.1031906129230596, - 51.49572473346175 + -0.10795199589291708, + 51.497521297424 ], [ - -0.10318971317117864, - 51.495725845922564 + -0.10792101149989292, + 51.497523230965434 ], [ - -0.10308810042183617, - 51.49569399554889 + -0.10794476466070528, + 51.497472376127774 ], [ - -0.10311865876862457, - 51.49565325538123 + -0.10797249954854139, + 51.497477399738216 ], [ - -0.10322272381121561, - 51.49568445824335 + -0.10795199589291708, + 51.497521297424 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3799274007", - "osm_node_id": 3799274007, + "osm_link": "https://www.openstreetmap.org/node/6022813723", + "osm_node_id": 6022813723, "type": "intersection" }, "type": "Feature" @@ -5661,46 +9925,34 @@ "coordinates": [ [ [ - -0.10382917390967486, - 51.49587199827256 - ], - [ - -0.10379634090925483, - 51.49591204686192 - ], - [ - -0.10376446976237047, - 51.4959019151048 - ], - [ - -0.1037322375593541, - 51.495892000983524 + -0.10787188764679684, + 51.49729921715022 ], [ - -0.10376421846730259, - 51.495851684396335 + -0.10786909018388605, + 51.49732507894139 ], [ - -0.10375490466332138, - 51.49587358467586 + -0.10771844745604181, + 51.4973062867173 ], [ - -0.10380629594892649, - 51.49589001528144 + -0.10771844745604181, + 51.497288300285355 ], [ - -0.10382917390967486, - 51.49587199827256 + -0.10787188764679684, + 51.49729921715022 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/3799274008", - "osm_node_id": 3799274008, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6022813725", + "osm_node_id": 6022813725, "type": "intersection" }, "type": "Feature" @@ -5710,50 +9962,34 @@ "coordinates": [ [ [ - -0.10475978164767283, - 51.49616903880009 - ], - [ - -0.10472454401341365, - 51.49620828879186 - ], - [ - -0.10472191552477267, - 51.49620737328247 - ], - [ - -0.10465108208857136, - 51.4961862455202 - ], - [ - -0.10465261007812199, - 51.496184260717435 + -0.10783276071588369, + 51.497527330073275 ], [ - -0.10468544452276654, - 51.49614421212809 + -0.1078396005632484, + 51.497547099859936 ], [ - -0.1046897873059223, - 51.496145593486055 + -0.10772370732177286, + 51.49749485017448 ], [ - -0.1046971210780756, - 51.49613955094425 + -0.10773286370528051, + 51.49747779184243 ], [ - -0.10475978164767283, - 51.49616903880009 + -0.10783276071588369, + 51.497527330073275 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/3799274009", - "osm_node_id": 3799274009, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6022813726", + "osm_node_id": 6022813726, "type": "intersection" }, "type": "Feature" @@ -5763,46 +9999,34 @@ "coordinates": [ [ [ - -0.10611248133467915, - 51.49668138051519 - ], - [ - -0.10606847581331036, - 51.49671703142194 - ], - [ - -0.10600158799851962, - 51.496691392662534 - ], - [ - -0.10600531409780192, - 51.496687623605716 + -0.10753174966285554, + 51.49743532587662 ], [ - -0.10604764431871819, - 51.49665119388647 + -0.10753946615450875, + 51.49740357712629 ], [ - -0.10602352865754931, - 51.49666922708313 + -0.10758968184134804, + 51.4974692707703 ], [ - -0.10608940551517043, - 51.496695861391544 + -0.10756359914637198, + 51.497476999540105 ], [ - -0.10611248133467915, - 51.49668138051519 + -0.10753174966285554, + 51.49743532587662 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3799274011", - "osm_node_id": 3799274011, + "osm_link": "https://www.openstreetmap.org/node/6022813729", + "osm_node_id": 6022813729, "type": "intersection" }, "type": "Feature" @@ -5812,46 +10036,34 @@ "coordinates": [ [ [ - -0.1057142162019341, - 51.496500964911675 - ], - [ - -0.1056718859810178, - 51.49653739463092 - ], - [ - -0.1056443417308194, - 51.496524983992884 - ], - [ - -0.10561466291676858, - 51.49651464719045 + -0.10757173301891379, + 51.49752318150275 ], [ - -0.1056499135490485, - 51.496475402594605 + -0.10754416566112293, + 51.49752854865404 ], [ - -0.10565147764421234, - 51.49650131025117 + -0.10748673318431713, + 51.497414167537414 ], [ - -0.10568228295339502, - 51.49651303560615 + -0.10751430054210799, + 51.497408800386125 ], [ - -0.1057142162019341, - 51.496500964911675 + -0.10757173301891379, + 51.49752318150275 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3799274013", - "osm_node_id": 3799274013, + "osm_link": "https://www.openstreetmap.org/node/6022813731", + "osm_node_id": 6022813731, "type": "intersection" }, "type": "Feature" @@ -5861,32 +10073,36 @@ "coordinates": [ [ [ - -0.10496419718736885, - 51.496239950308 + -0.10771450039040673, + 51.49747396972565 ], [ - -0.10492957334853409, - 51.49627941074103 + -0.1077053440068991, + 51.497491028057695 ], [ - -0.10486606646336344, - 51.49625755452826 + -0.10767109999911519, + 51.497483900034716 ], [ - -0.10490130265339809, - 51.496218304536484 + -0.1076353828823127, + 51.49748719155176 ], [ - -0.10489946993247204, - 51.496239625652905 + -0.10763115419289467, + 51.49746939937329 ], [ - -0.10492568838455371, - 51.496255083192516 + -0.10764683847126896, + 51.49745939082324 ], [ - -0.10496419718736885, - 51.496239950308 + -0.10767550632815018, + 51.49746158516793 + ], + [ + -0.10771450039040673, + 51.49747396972565 ] ] ], @@ -5895,8 +10111,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3799274014", - "osm_node_id": 3799274014, + "osm_link": "https://www.openstreetmap.org/node/6022813734", + "osm_node_id": 6022813734, "type": "intersection" }, "type": "Feature" @@ -5906,46 +10122,34 @@ "coordinates": [ [ [ - -0.10367876081353056, - 51.495825399024696 - ], - [ - -0.10364677990558206, - 51.495865715611885 - ], - [ - -0.10361440905701103, - 51.49585575832317 - ], - [ - -0.10358200499127582, - 51.49584573898126 + -0.10720268743681963, + 51.49755711380592 ], [ - -0.10361411587943183, - 51.49580546376286 + -0.10715620362616075, + 51.497492459777675 ], [ - -0.10359671441809372, - 51.495827507933846 + -0.10721573889387935, + 51.497465866838056 ], [ - -0.10366408460387681, - 51.4958436921253 + -0.10727479612327917, + 51.49754672124555 ], [ - -0.10367876081353056, - 51.495825399024696 + -0.10720268743681963, + 51.49755711380592 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3799274015", - "osm_node_id": 3799274015, + "osm_link": "https://www.openstreetmap.org/node/6022819613", + "osm_node_id": 6022819613, "type": "intersection" }, "type": "Feature" @@ -5955,42 +10159,34 @@ "coordinates": [ [ [ - -0.10733832178336869, - 51.49728344125077 - ], - [ - -0.10732182585080964, - 51.49729820631275 - ], - [ - -0.10726639795764872, - 51.497327026871965 + -0.10802712012019111, + 51.49742700984982 ], [ - -0.10718889942525062, - 51.497269234667506 + -0.10800392298582207, + 51.49743772616597 ], [ - -0.10716354606366121, - 51.49725657581671 + -0.10789680340835422, + 51.49734781648932 ], [ - -0.10720871851844864, - 51.497221495079856 + -0.10792000054272331, + 51.49733710017317 ], [ - -0.10733832178336869, - 51.49728344125077 + -0.10802712012019111, + 51.49742700984982 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3799274019", - "osm_node_id": 3799274019, + "osm_link": "https://www.openstreetmap.org/node/6022823874", + "osm_node_id": 6022823874, "type": "intersection" }, "type": "Feature" @@ -6000,42 +10196,38 @@ "coordinates": [ [ [ - -0.10112764216894823, - 51.4951659597726 - ], - [ - -0.10107140695427616, - 51.49517127296459 + -0.10790583414432796, + 51.497329921788186 ], [ - -0.10106684320476761, - 51.49515254189437 + -0.10787676334880342, + 51.49734214986394 ], [ - -0.10103438714694941, - 51.495131887175255 + -0.10784492397485868, + 51.4973127996043 ], [ - -0.10107503917896413, - 51.49510711446255 + -0.10790655770081649, + 51.49728831287586 ], [ - -0.10115829294610641, - 51.4951316308686 + -0.10793588412408248, + 51.49731866138247 ], [ - -0.10112764216894823, - 51.4951659597726 + -0.10790583414432796, + 51.497329921788186 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Connection", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3874597627", - "osm_node_id": 3874597627, + "osm_link": "https://www.openstreetmap.org/node/6022823875", + "osm_node_id": 6022823875, "type": "intersection" }, "type": "Feature" @@ -6045,38 +10237,34 @@ "coordinates": [ [ [ - -0.10086572194122, - 51.49546191841624 - ], - [ - -0.10090180444682806, - 51.495462699027385 + -0.10767617933678024, + 51.49741087422173 ], [ - -0.10090150838079982, - 51.495468003226165 + -0.10764754902973675, + 51.49740850001271 ], [ - -0.10090694299769876, - 51.49546678914201 + -0.10766547041190497, + 51.497324725507994 ], [ - -0.10092614251857426, - 51.49550012879225 + -0.10769410071894844, + 51.49732709971701 ], [ - -0.10086572194122, - 51.49546191841624 + -0.10767617933678024, + 51.49741087422173 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3874597641", - "osm_node_id": 3874597641, + "osm_link": "https://www.openstreetmap.org/node/6231431191", + "osm_node_id": 6231431191, "type": "intersection" }, "type": "Feature" @@ -6086,34 +10274,34 @@ "coordinates": [ [ [ - -0.10118785188952141, - 51.49557327511433 + -0.10767107255884915, + 51.497336657706946 ], [ - -0.10105827895331645, - 51.49551218060097 + -0.10769974041573036, + 51.49733885205164 ], [ - -0.10114546101117496, - 51.495440486683265 + -0.10767579950572936, + 51.497460100387976 ], [ - -0.101275039724278, - 51.495501575800695 + -0.10764713164884815, + 51.49745790604328 ], [ - -0.10118785188952141, - 51.49557327511433 + -0.10767107255884915, + 51.497336657706946 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/3881302130", - "osm_node_id": 3881302130, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6231431193", + "osm_node_id": 6231431193, "type": "intersection" }, "type": "Feature" @@ -6123,32 +10311,36 @@ "coordinates": [ [ [ - -0.10160126838178993, - 51.49522713342626 + -0.10770240067731097, + 51.497288300285355 ], [ - -0.10156011375963946, - 51.49526408295339 + -0.10770240067731097, + 51.4973062867173 ], [ - -0.10153582334730268, - 51.495253593266284 + -0.10769763329214399, + 51.49731058637385 ], [ - -0.1015341191623596, - 51.49525457442615 + -0.1076690029851005, + 51.49730821216483 ], [ - -0.10150959045297571, - 51.49523807727078 + -0.10767042121358703, + 51.497301577869415 ], [ - -0.10154225447912595, - 51.495201218575126 + -0.10766004157190413, + 51.49729984397737 ], [ - -0.10160126838178993, - 51.49522713342626 + -0.1076675284318574, + 51.49728247268141 + ], + [ + -0.10770240067731097, + 51.497288300285355 ] ] ], @@ -6157,8 +10349,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3890206820", - "osm_node_id": 3890206820, + "osm_link": "https://www.openstreetmap.org/node/6231431196", + "osm_node_id": 6231431196, "type": "intersection" }, "type": "Feature" @@ -6168,24 +10360,24 @@ "coordinates": [ [ [ - -0.10088049058124353, - 51.493435955501056 + -0.10089955434501341, + 51.49483459933429 ], [ - -0.10091650665252332, - 51.49343752931385 + -0.1008830295279638, + 51.49481984686282 ], [ - -0.10090639419237811, - 51.493527241139745 + -0.10103369969607406, + 51.494754399632924 ], [ - -0.10087037812109832, - 51.49352566732695 + -0.10105022451312368, + 51.4947691521044 ], [ - -0.10088049058124353, - 51.493435955501056 + -0.10089955434501341, + 51.49483459933429 ] ] ], @@ -6194,8 +10386,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3890206821", - "osm_node_id": 3890206821, + "osm_link": "https://www.openstreetmap.org/node/6329043357", + "osm_node_id": 6329043357, "type": "intersection" }, "type": "Feature" @@ -6205,32 +10397,52 @@ "coordinates": [ [ [ - -0.10123771085290226, - 51.49486559984906 + -0.10111455027360172, + 51.49473165578974 ], [ - -0.10125486390762155, - 51.4948750373299 + -0.10111943897362907, + 51.49473270260008 ], [ - -0.1012070514103969, - 51.49490873491013 + -0.10110770320511438, + 51.49475396436127 ], [ - -0.10118115502038497, - 51.494894487857394 + -0.10109245074987395, + 51.494750699823875 ], [ - -0.10116647303383311, - 51.49488771146916 + -0.10106768952034104, + 51.49476154654165 ], [ - -0.1012094733749304, - 51.49485158751926 + -0.10105106938447257, + 51.494746835438974 ], [ - -0.10123771085290226, - 51.49486559984906 + -0.10103940293873523, + 51.494728477587216 + ], + [ + -0.10106397786330401, + 51.49471200741149 + ], + [ + -0.10108724720889949, + 51.494725470255794 + ], + [ + -0.10109651768614486, + 51.49471371971981 + ], + [ + -0.10112244440487188, + 51.49472164993765 + ], + [ + -0.10111455027360172, + 51.49473165578974 ] ] ], @@ -6239,8 +10451,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/3890206822", - "osm_node_id": 3890206822, + "osm_link": "https://www.openstreetmap.org/node/6329043358", + "osm_node_id": 6329043358, "type": "intersection" }, "type": "Feature" @@ -6250,32 +10462,40 @@ "coordinates": [ [ [ - -0.10167622941169231, - 51.495164819432816 + -0.10516365037158662, + 51.49585728537124 ], [ - -0.10163188016488586, - 51.49521508071822 + -0.1051525211773737, + 51.49587790321817 ], [ - -0.10160803746215276, - 51.49521521561646 + -0.10507807140295422, + 51.495862319773536 ], [ - -0.10156388174143306, - 51.49519202031383 + -0.10508148843818751, + 51.49585598944882 ], [ - -0.10160766051955095, - 51.4951415665736 + -0.10507835591518624, + 51.49585512699941 ], [ - -0.10163201447776696, - 51.49514166549898 + -0.10510172057960057, + 51.49582222801675 ], [ - -0.10167622941169231, - 51.495164819432816 + -0.10510396346029258, + 51.49581877911842 + ], + [ + -0.10517675526495388, + 51.49583714686272 + ], + [ + -0.10516365037158662, + 51.49585728537124 ] ] ], @@ -6283,9 +10503,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/3890206825", - "osm_node_id": 3890206825, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6491174860", + "osm_node_id": 6491174860, "type": "intersection" }, "type": "Feature" @@ -6295,50 +10515,71 @@ "coordinates": [ [ [ - -0.10109069024017428, - 51.49484851094007 + -0.10440379185531198, + 51.495398822013 ], [ - -0.10096203005387105, - 51.494910348293075 + -0.10445780874110899, + 51.49541157799053 ], [ - -0.10096524778611947, - 51.494862370385206 + -0.10440659942779444, + 51.49549566635849 ], [ - -0.10094333601158034, - 51.49482908469426 + -0.10435258254199742, + 51.49548291038096 ], [ - -0.10089383521588244, - 51.49485664170663 + -0.10440379185531198, + 51.495398822013 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6491174866", + "osm_node_id": 6491174866, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.1016298929119353, + 51.49524644455891 ], [ - -0.10101869131477888, - 51.49479185098151 + -0.10164381812483447, + 51.49523068664589 ], [ - -0.10103978854668419, - 51.49480761429046 + -0.1018010320742812, + 51.495284555110224 ], [ - -0.10110893224018772, - 51.494814378088186 + -0.10178710686138204, + 51.49530031302324 ], [ - -0.10109069024017428, - 51.49484851094007 + -0.1016298929119353, + 51.49524644455891 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/3890206831", - "osm_node_id": 3890206831, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6502835822", + "osm_node_id": 6502835822, "type": "intersection" }, "type": "Feature" @@ -6348,42 +10589,34 @@ "coordinates": [ [ [ - -0.1029523620911211, - 51.495604888966426 - ], - [ - -0.1029218023001082, - 51.49564563003341 - ], - [ - -0.10288455863797959, - 51.495634797704774 + -0.10197501635894732, + 51.49534416574295 ], [ - -0.1028518917233803, - 51.49562595287687 + -0.10196109114604816, + 51.495359923655975 ], [ - -0.10288068667201998, - 51.49558471718301 + -0.10180387430815235, + 51.49530605788961 ], [ - -0.1028918779678876, - 51.49558032399701 + -0.10181779952105152, + 51.49529029997658 ], [ - -0.1029523620911211, - 51.495604888966426 + -0.10197501635894732, + 51.49534416574295 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4156272581", - "osm_node_id": 4156272581, + "osm_link": "https://www.openstreetmap.org/node/6502835823", + "osm_node_id": 6502835823, "type": "intersection" }, "type": "Feature" @@ -6393,42 +10626,34 @@ "coordinates": [ [ [ - -0.10541811406807666, - 51.496394665098926 - ], - [ - -0.10538286343579674, - 51.496433909694765 - ], - [ - -0.10531347277989894, - 51.4964109958798 + -0.10187630361245711, + 51.49520966050696 ], [ - -0.1053487407428732, - 51.49637077821799 + -0.1018603911466074, + 51.49522467198305 ], [ - -0.10533538311021354, - 51.49638631040129 + -0.10174978809957799, + 51.49517921127633 ], [ - -0.10539888277426154, - 51.49641509408832 + -0.1017657005654277, + 51.495164199800236 ], [ - -0.10541811406807666, - 51.496394665098926 + -0.10187630361245711, + 51.49520966050696 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4156272585", - "osm_node_id": 4156272585, + "osm_link": "https://www.openstreetmap.org/node/6502835826", + "osm_node_id": 6502835826, "type": "intersection" }, "type": "Feature" @@ -6438,46 +10663,71 @@ "coordinates": [ [ [ - -0.10478781548998622, - 51.49609633134694 + -0.10160179841219172, + 51.49522666487971 ], [ - -0.10481983250354793, - 51.49610672390732 + -0.10154280184022207, + 51.49520073563943 ], [ - -0.10476098613092918, - 51.49617702387655 + -0.10155022226584705, + 51.49520210260825 ], [ - -0.10477296019649102, - 51.49615818129045 + -0.10159437798656674, + 51.495225297910885 ], [ - -0.10471029818266925, - 51.49612869253529 + -0.10160179841219172, + 51.49522666487971 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Connection", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/6502835827", + "osm_node_id": 6502835827, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.10118406224435987, + 51.49460272814629 ], [ - -0.10469701131701148, - 51.49615628821849 + -0.1012099889630869, + 51.49461065836413 ], [ - -0.10475572193252455, - 51.49608594508182 + -0.10113042663383826, + 51.49471152987172 ], [ - -0.10478781548998622, - 51.49609633134694 + -0.10110449991511122, + 51.49470359965388 + ], + [ + -0.10118406224435987, + 51.49460272814629 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4156273389", - "osm_node_id": 4156273389, + "osm_link": "https://www.openstreetmap.org/node/6896299617", + "osm_node_id": 6896299617, "type": "intersection" }, "type": "Feature" @@ -6487,46 +10737,34 @@ "coordinates": [ [ [ - -0.10233239260685507, - 51.49543875548919 - ], - [ - -0.10230029038404623, - 51.49547903430487 - ], - [ - -0.1022726522592535, - 51.49547049254834 - ], - [ - -0.10224224988871414, - 51.49546720552791 + -0.10263425141968119, + 51.49550984326414 ], [ - -0.10225460378532683, - 51.4954229031474 + -0.10264491557359608, + 51.49549312847294 ], [ - -0.10230462161340576, - 51.49542362440332 + -0.10275266483295811, + 51.49551978526439 ], [ - -0.10232489274888106, - 51.495436437937435 + -0.10274200067904321, + 51.49553650005559 ], [ - -0.10233239260685507, - 51.49543875548919 + -0.10263425141968119, + 51.49550984326414 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4156273393", - "osm_node_id": 4156273393, + "osm_link": "https://www.openstreetmap.org/node/6970648941", + "osm_node_id": 6970648941, "type": "intersection" }, "type": "Feature" @@ -6536,34 +10774,42 @@ "coordinates": [ [ [ - -0.10168330611187962, - 51.495159576387906 + -0.10240513241943335, + 51.49545942010084 ], [ - -0.1016390926221788, - 51.49513642425271 + -0.10237798099830657, + 51.49550108746907 ], [ - -0.1016550195302738, - 51.495145644097725 + -0.10230970672796892, + 51.49548194450956 ], [ - -0.10169871309914454, - 51.49510984390359 + -0.10234180895077777, + 51.495441665693875 ], [ - -0.10168330611187962, - 51.495159576387906 + -0.10235983431711199, + 51.49544723609185 + ], + [ + -0.10238622607613704, + 51.49545454397914 + ], + [ + -0.10240513241943335, + 51.49545942010084 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/4169653676", - "osm_node_id": 4169653676, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6970648943", + "osm_node_id": 6970648943, "type": "intersection" }, "type": "Feature" @@ -6573,34 +10819,34 @@ "coordinates": [ [ [ - -0.10119939990884745, - 51.494846938026605 + -0.1029372136200467, + 51.49556544202322 ], [ - -0.10115639956775017, - 51.49488306197651 + -0.10292654946613179, + 51.49558215681442 ], [ - -0.10113166289003422, - 51.49486490017686 + -0.10281880020676976, + 51.49555550002297 ], [ - -0.10116790714878944, - 51.494836888107756 + -0.10282946436068466, + 51.49553878523177 ], [ - -0.10119939990884745, - 51.494846938026605 + -0.1029372136200467, + 51.49556544202322 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/4175070882", - "osm_node_id": 4175070882, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6970648945", + "osm_node_id": 6970648945, "type": "intersection" }, "type": "Feature" @@ -6610,34 +10856,34 @@ "coordinates": [ [ [ - -0.10090439394140681, - 51.495416338999064 + -0.10078150487631753, + 51.49490927180513 ], [ - -0.10086831143579875, - 51.49541555658928 + -0.10075959310177841, + 51.49487598611418 ], [ - -0.10089169198668287, - 51.495369663308864 + -0.10090544389263868, + 51.494838756898034 ], [ - -0.10091585963993477, - 51.49537951447764 + -0.1009273556671778, + 51.49487204258898 ], [ - -0.10090439394140681, - 51.495416338999064 + -0.10078150487631753, + 51.49490927180513 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4421018012", - "osm_node_id": 4421018012, + "complexity": "Connection", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/7004860404", + "osm_node_id": 7004860404, "type": "intersection" }, "type": "Feature" @@ -6647,34 +10893,46 @@ "coordinates": [ [ [ - -0.10659284196649502, - 51.497727126956526 + -0.10252011291100718, + 51.49512652452057 ], [ - -0.10654635815583616, - 51.49766247292828 + -0.10251504945981195, + 51.49515100585308 ], [ - -0.1066781739727331, - 51.49762572574851 + -0.10240222375123392, + 51.49514195687917 ], [ - -0.10672465778339199, - 51.497690379776756 + -0.1023992905312175, + 51.49510602898138 ], [ - -0.10659284196649502, - 51.497727126956526 + -0.10240972505343245, + 51.49510569803103 + ], + [ + -0.10241190294402072, + 51.495095173270386 + ], + [ + -0.10252472865259875, + 51.495104229438866 + ], + [ + -0.10252011291100718, + 51.49512652452057 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5425497684", - "osm_node_id": 5425497684, + "osm_link": "https://www.openstreetmap.org/node/7728093176", + "osm_node_id": 7728093176, "type": "intersection" }, "type": "Feature" @@ -6684,42 +10942,34 @@ "coordinates": [ [ [ - -0.10830521421840865, - 51.497278903273994 - ], - [ - -0.10826945810754393, - 51.49727577723212 - ], - [ - -0.10823018964262704, - 51.497209292185104 + -0.10187188861807496, + 51.495073093126535 ], [ - -0.10828079960276246, - 51.49719770172837 + -0.10190331205535562, + 51.495042906497815 ], [ - -0.10831312423614863, - 51.49718937580902 + -0.10202450126817542, + 51.49509182509608 ], [ - -0.10835660405978922, - 51.49725483562942 + -0.10199307783089476, + 51.495122009926156 ], [ - -0.10830521421840865, - 51.497278903273994 + -0.10187188861807496, + 51.495073093126535 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6022813716", - "osm_node_id": 6022813716, + "osm_link": "https://www.openstreetmap.org/node/7728093180", + "osm_node_id": 7728093180, "type": "intersection" }, "type": "Feature" @@ -6729,36 +10979,28 @@ "coordinates": [ [ [ - -0.10811297204725931, - 51.497327713953666 - ], - [ - -0.10810123194607102, - 51.49734897571486 - ], - [ - -0.10807127439668629, - 51.49734256175323 + -0.10658691053635844, + 51.49679133337227 ], [ - -0.10804259787445791, - 51.497352275325795 + -0.1064833249763107, + 51.49686932074251 ], [ - -0.10801541756884056, - 51.49732116239583 + -0.10648228657887507, + 51.49686997005271 ], [ - -0.10804675579687409, - 51.49731054770302 + -0.10642670993058775, + 51.49684126190869 ], [ - -0.10808465080426483, - 51.497296998523844 + -0.10652573462957601, + 51.49676100914735 ], [ - -0.10811297204725931, - 51.497327713953666 + -0.10658691053635844, + 51.49679133337227 ] ] ], @@ -6766,9 +11008,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/6022813718", - "osm_node_id": 6022813718, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8936977833", + "osm_node_id": 8936977833, "type": "intersection" }, "type": "Feature" @@ -6778,32 +11020,36 @@ "coordinates": [ [ [ - -0.10746578326331366, - 51.49734762223586 + -0.10649065152734133, + 51.496862484999056 ], [ - -0.10739533976773494, - 51.49731346510228 + -0.1064464467029877, + 51.49689804057771 ], [ - -0.10739669589456674, - 51.49729549845542 + -0.10641789727251777, + 51.49688427735999 ], [ - -0.10747429841113088, - 51.49725127701386 + -0.10638937094964032, + 51.49687062385951 ], [ - -0.10751456627942114, - 51.497271102558464 + -0.10643337647100909, + 51.49683497295276 ], [ - -0.10754293084915147, - 51.49728455820819 + -0.10641221136055096, + 51.49685214549866 ], [ - -0.10746578326331366, - 51.49734762223586 + -0.10646778800883824, + 51.49688085364267 + ], + [ + -0.10649065152734133, + 51.496862484999056 ] ] ], @@ -6811,9 +11057,9 @@ }, "properties": { "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/6022813720", - "osm_node_id": 6022813720, + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8936977834", + "osm_node_id": 8936977834, "type": "intersection" }, "type": "Feature" @@ -6823,34 +11069,34 @@ "coordinates": [ [ [ - -0.10720268743681963, - 51.49755711380592 + -0.10755122791906495, + 51.4973932421225 ], [ - -0.10715620362616075, - 51.497492459777675 + -0.1075484882251353, + 51.49736041778353 ], [ - -0.10721573889387935, - 51.497465866838056 + -0.10760460068072247, + 51.497300399758124 ], [ - -0.10727479612327917, - 51.49754672124555 + -0.10762956265746479, + 51.49730944873203 ], [ - -0.10720268743681963, - 51.49755711380592 + -0.10755122791906495, + 51.4973932421225 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6022819613", - "osm_node_id": 6022819613, + "osm_link": "https://www.openstreetmap.org/node/8936997805", + "osm_node_id": 8936997805, "type": "intersection" }, "type": "Feature" @@ -6860,38 +11106,34 @@ "coordinates": [ [ [ - -0.10790583414432796, - 51.497329921788186 - ], - [ - -0.10787676334880342, - 51.49734214986394 + -0.10357020423265736, + 51.49769634497691 ], [ - -0.10784492397485868, - 51.4973127996043 + -0.1035007948018407, + 51.497673455443625 ], [ - -0.10790655770081649, - 51.49728831287586 + -0.10356838162130301, + 51.49759397969614 ], [ - -0.10793588412408248, - 51.49731866138247 + -0.10363779394056874, + 51.497616869229425 ], [ - -0.10790583414432796, - 51.497329921788186 + -0.10357020423265736, + 51.49769634497691 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6022823875", - "osm_node_id": 6022823875, + "osm_link": "https://www.openstreetmap.org/node/8942217485", + "osm_node_id": 8942217485, "type": "intersection" }, "type": "Feature" @@ -6901,50 +11143,34 @@ "coordinates": [ [ [ - -0.10516365037158662, - 51.49585728537124 - ], - [ - -0.1051525211773737, - 51.49587790321817 - ], - [ - -0.10507807140295422, - 51.495862319773536 - ], - [ - -0.10508148843818751, - 51.49585598944882 - ], - [ - -0.10507835591518624, - 51.49585512699941 + -0.10091413379162377, + 51.49338796680132 ], [ - -0.10510172057960057, - 51.49582222801675 + -0.1009428998557729, + 51.49338959996934 ], [ - -0.10510396346029258, - 51.49581877911842 + -0.10092979207395658, + 51.493479160709214 ], [ - -0.10517675526495388, - 51.49583714686272 + -0.10090102600980745, + 51.49347752754119 ], [ - -0.10516365037158662, - 51.49585728537124 + -0.10091413379162377, + 51.49338796680132 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6491174860", - "osm_node_id": 6491174860, + "osm_link": "https://www.openstreetmap.org/node/8942303831", + "osm_node_id": 8942303831, "type": "intersection" }, "type": "Feature" @@ -6954,34 +11180,34 @@ "coordinates": [ [ [ - -0.10440379185531198, - 51.495398822013 + -0.10104590050488678, + 51.49474909993076 ], [ - -0.10445780874110899, - 51.49541157799053 + -0.1010624253219364, + 51.49476385240223 ], [ - -0.10440659942779444, - 51.49549566635849 + -0.10099968387576559, + 51.49474821140102 ], [ - -0.10435258254199742, - 51.49548291038096 + -0.10101841546789403, + 51.49473452012903 ], [ - -0.10440379185531198, - 51.495398822013 + -0.10104590050488678, + 51.49474909993076 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6491174866", - "osm_node_id": 6491174866, + "osm_link": "https://www.openstreetmap.org/node/8942303836", + "osm_node_id": 8942303836, "type": "intersection" }, "type": "Feature" @@ -6991,34 +11217,58 @@ "coordinates": [ [ [ - -0.10160179841219172, - 51.49522666487971 + -0.10086592413265393, + 51.49384155943379 ], [ - -0.10154280184022207, - 51.49520073563943 + -0.10082985318084207, + 51.493840561186815 ], [ - -0.10155022226584705, - 51.49520210260825 + -0.10083141294333234, + 51.49381869957812 ], [ - -0.10159437798656674, - 51.495225297910885 + -0.10081699380564457, + 51.49381869957812 ], [ - -0.10160179841219172, - 51.49522666487971 + -0.10081699380564457, + 51.49380071314618 + ], + [ + -0.10083367604316774, + 51.49380071314618 + ], + [ + -0.10083438226896195, + 51.49379521289529 + ], + [ + -0.10087037234420022, + 51.49379700434392 + ], + [ + -0.10085455519716935, + 51.49379506720519 + ], + [ + -0.10088332126131845, + 51.49379670037322 + ], + [ + -0.10086592413265393, + 51.49384155943379 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/6502835827", - "osm_node_id": 6502835827, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8942303872", + "osm_node_id": 8942303872, "type": "intersection" }, "type": "Feature" @@ -7028,42 +11278,34 @@ "coordinates": [ [ [ - -0.10240513241943335, - 51.49545942010084 - ], - [ - -0.10237798099830657, - 51.49550108746907 - ], - [ - -0.10230970672796892, - 51.49548194450956 + -0.10450960007690835, + 51.49621336726092 ], [ - -0.10234180895077777, - 51.495441665693875 + -0.10448345672450211, + 51.49620571943006 ], [ - -0.10235983431711199, - 51.49544723609185 + -0.10455960057429295, + 51.49610480025842 ], [ - -0.10238622607613704, - 51.49545454397914 + -0.10458574392669917, + 51.496112448089285 ], [ - -0.10240513241943335, - 51.49545942010084 + -0.10450960007690835, + 51.49621336726092 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6970648943", - "osm_node_id": 6970648943, + "osm_link": "https://www.openstreetmap.org/node/8947417389", + "osm_node_id": 8947417389, "type": "intersection" }, "type": "Feature" @@ -7073,34 +11315,34 @@ "coordinates": [ [ [ - -0.10078150487631753, - 51.49490927180513 + -0.1046440443824463, + 51.49599288058501 ], [ - -0.10075959310177841, - 51.49487598611418 + -0.10467018773485255, + 51.49600052841587 ], [ - -0.10090544389263868, - 51.494838756898034 + -0.1045940438850617, + 51.496101447587506 ], [ - -0.1009273556671778, - 51.49487204258898 + -0.10456790053265548, + 51.49609379975665 ], [ - -0.10078150487631753, - 51.49490927180513 + -0.1046440443824463, + 51.49599288058501 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/7004860404", - "osm_node_id": 7004860404, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/8947417390", + "osm_node_id": 8947417390, "type": "intersection" }, "type": "Feature" @@ -7110,46 +11352,34 @@ "coordinates": [ [ [ - -0.10252011291100718, - 51.49512652452057 - ], - [ - -0.10251504945981195, - 51.49515100585308 - ], - [ - -0.10240222375123392, - 51.49514195687917 - ], - [ - -0.1023992905312175, - 51.49510602898138 + -0.10777848386967163, + 51.497248506204016 ], [ - -0.10240972505343245, - 51.49510569803103 + -0.1078016810040407, + 51.49723778988787 ], [ - -0.10241190294402072, - 51.495095173270386 + -0.10790880058150851, + 51.497327699564515 ], [ - -0.10252472865259875, - 51.495104229438866 + -0.10788560344713943, + 51.49733841588067 ], [ - -0.10252011291100718, - 51.49512652452057 + -0.10777848386967163, + 51.497248506204016 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7728093176", - "osm_node_id": 7728093176, + "osm_link": "https://www.openstreetmap.org/node/8947442148", + "osm_node_id": 8947442148, "type": "intersection" }, "type": "Feature" @@ -7159,24 +11389,24 @@ "coordinates": [ [ [ - -0.10187188861807496, - 51.495073093126535 + -0.10727251713697394, + 51.49741993758478 ], [ - -0.10190331205535562, - 51.495042906497815 + -0.1072688805796124, + 51.4974020950443 ], [ - -0.10202450126817542, - 51.49509182509608 + -0.10737260045254125, + 51.497393900425905 ], [ - -0.10199307783089476, - 51.495122009926156 + -0.10737623700990281, + 51.49741174296639 ], [ - -0.10187188861807496, - 51.495073093126535 + -0.10727251713697394, + 51.49741993758478 ] ] ], @@ -7185,8 +11415,8 @@ "properties": { "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/7728093180", - "osm_node_id": 7728093180, + "osm_link": "https://www.openstreetmap.org/node/8947442152", + "osm_node_id": 8947442152, "type": "intersection" }, "type": "Feature" @@ -7196,38 +11426,38 @@ "coordinates": [ [ [ - -0.10658691053635844, - 51.49679133337227 + -0.10086064404777946, + 51.49490592722811 ], [ - -0.1064833249763107, - 51.49686932074251 + -0.10082554939174858, + 51.49493380080168 ], [ - -0.10648228657887507, - 51.49686997005271 + -0.10081178015509842, + 51.49492707837275 ], [ - -0.10642670993058775, - 51.49684126190869 + -0.10080526670247705, + 51.49493545375478 ], [ - -0.10652573462957601, - 51.49676100914735 + -0.10077926777252363, + 51.49492761706638 ], [ - -0.10658691053635844, - 51.49679133337227 + -0.10086064404777946, + 51.49490592722811 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8936977833", - "osm_node_id": 8936977833, + "complexity": "Connection", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/8952790002", + "osm_node_id": 8952790002, "type": "intersection" }, "type": "Feature" @@ -7237,46 +11467,34 @@ "coordinates": [ [ [ - -0.10649075406728284, - 51.49686302369269 + -0.10367303446327696, + 51.49667708805321 ], [ - -0.1064455816124954, - 51.49689810442954 + -0.10364739947790458, + 51.49666879990537 ], [ - -0.10641769508108385, - 51.49688418023326 + -0.10371394645570672, + 51.49658898331501 ], [ - -0.10638937094964032, - 51.49687062385951 - ], - [ - -0.10643337647100909, - 51.49683497295276 - ], - [ - -0.10641221136055096, - 51.49685214549866 - ], - [ - -0.10646778800883824, - 51.49688085364267 + -0.10373958144107909, + 51.496597271462846 ], [ - -0.10649075406728284, - 51.49686302369269 + -0.10367303446327696, + 51.49667708805321 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8936977834", - "osm_node_id": 8936977834, + "osm_link": "https://www.openstreetmap.org/node/9136430525", + "osm_node_id": 9136430525, "type": "intersection" }, "type": "Feature" @@ -7286,34 +11504,50 @@ "coordinates": [ [ [ - -0.10357020423265736, - 51.49769634497691 + -0.10368021948030386, + 51.496209073000294 ], [ - -0.1035007948018407, - 51.497673455443625 + -0.10369794300371173, + 51.4962238641426 ], [ - -0.10356838162130301, - 51.49759397969614 + -0.10367479208452755, + 51.4962346200289 ], [ - -0.10363779394056874, - 51.497616869229425 + -0.10365319948360911, + 51.49621660032206 ], [ - -0.10357020423265736, - 51.49769634497691 + -0.1036119394330681, + 51.496222183310536 + ], + [ + -0.10361591393896921, + 51.4962043677497 + ], + [ + -0.1036460187992558, + 51.49619456604361 + ], + [ + -0.103674325600005, + 51.4961909885423 + ], + [ + -0.10368021948030386, + 51.496209073000294 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", + "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8942217485", - "osm_node_id": 8942217485, + "osm_link": "https://www.openstreetmap.org/node/9136430541", + "osm_node_id": 9136430541, "type": "intersection" }, "type": "Feature" @@ -7323,38 +11557,50 @@ "coordinates": [ [ [ - -0.10086064404777946, - 51.49490592722811 + -0.10287443751248722, + 51.49643701954885 ], [ - -0.10082554939174858, - 51.49493380080168 + -0.10288359678444392, + 51.496437099588476 ], [ - -0.10081178015509842, - 51.49492707837275 + -0.10288200524901406, + 51.49650793015744 ], [ - -0.10080526670247705, - 51.49493545375478 + -0.10284590396848713, + 51.49650761539488 ], [ - -0.10077926777252363, - 51.49492761706638 + -0.10280985179159416, + 51.49650732221605 ], [ - -0.10086064404777946, - 51.49490592722811 + -0.10281134223130706, + 51.49643648984843 + ], + [ + -0.10284247826790664, + 51.49643674345712 + ], + [ + -0.10284851079376019, + 51.496429092928295 + ], + [ + -0.10287443751248722, + 51.49643701954885 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Connection", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/8952790002", - "osm_node_id": 8952790002, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/9136430547", + "osm_node_id": 9136430547, "type": "intersection" }, "type": "Feature" diff --git a/tests/src/st_georges_cycletrack/road_network.dot b/tests/src/st_georges_cycletrack/road_network.dot index 6ea89705..2b23671a 100644 --- a/tests/src/st_georges_cycletrack/road_network.dot +++ b/tests/src/st_georges_cycletrack/road_network.dot @@ -9,7 +9,7 @@ digraph { 7 [ label = "Unknown" ] 8 [ label = "Unknown" ] 9 [ label = "Unknown" ] - 10 [ label = "Unknown" ] + 10 [ label = "Lights RoadIntersection" ] 11 [ label = "Unknown" ] 12 [ label = "Unknown" ] 13 [ label = "Unknown" ] @@ -17,11 +17,11 @@ digraph { 15 [ label = "Unknown" ] 16 [ label = "Unknown" ] 17 [ label = "Unknown" ] - 18 [ label = "Lights RoadIntersection" ] + 18 [ label = "Unknown" ] 19 [ label = "Unknown" ] 20 [ label = "Unknown" ] 21 [ label = "Unknown" ] - 22 [ label = "Lights RoadIntersection" ] + 22 [ label = "Unknown" ] 23 [ label = "Lights RoadIntersection" ] 24 [ label = "Unknown" ] 25 [ label = "Unknown" ] @@ -29,166 +29,268 @@ digraph { 27 [ label = "Unknown" ] 28 [ label = "Unknown" ] 29 [ label = "Unknown" ] - 30 [ label = "Lights RoadIntersection" ] + 30 [ label = "Unknown" ] 31 [ label = "Unknown" ] 32 [ label = "Unknown" ] 33 [ label = "Unknown" ] 34 [ label = "Unknown" ] 35 [ label = "Unknown" ] - 36 [ label = "Lights RoadIntersection" ] - 37 [ label = "Lights RoadIntersection" ] - 38 [ label = "Unknown" ] + 36 [ label = "Unknown" ] + 37 [ label = "Unknown" ] + 38 [ label = "Lights RoadIntersection" ] 39 [ label = "Unknown" ] 40 [ label = "Unknown" ] 41 [ label = "Unknown" ] 42 [ label = "Unknown" ] 43 [ label = "Unknown" ] 44 [ label = "Unknown" ] - 45 [ label = "Lights RoadIntersection" ] - 46 [ label = "Unknown" ] + 45 [ label = "Unknown" ] + 46 [ label = "Lights RoadIntersection" ] 47 [ label = "Unknown" ] 48 [ label = "Unknown" ] - 49 [ label = "Lights RoadIntersection" ] - 50 [ label = "Lights RoadIntersection" ] + 49 [ label = "Unknown" ] + 50 [ label = "Unknown" ] 51 [ label = "Unknown" ] 52 [ label = "Unknown" ] 53 [ label = "Unknown" ] - 54 [ label = "Unknown" ] + 54 [ label = "Lights RoadIntersection" ] 55 [ label = "Lights RoadIntersection" ] - 56 [ label = "Lights RoadIntersection" ] + 56 [ label = "Unknown" ] 57 [ label = "Unknown" ] 58 [ label = "Unknown" ] 59 [ label = "Unknown" ] - 60 [ label = "Lights RoadIntersection" ] - 61 [ label = "Lights RoadIntersection" ] + 60 [ label = "Unknown" ] + 61 [ label = "Unknown" ] 62 [ label = "Unknown" ] - 63 [ label = "Unknown" ] + 63 [ label = "Lights RoadIntersection" ] 64 [ label = "Unknown" ] 65 [ label = "Unknown" ] - 66 [ label = "Lights RoadIntersection" ] - 67 [ label = "Unknown" ] + 66 [ label = "Unknown" ] + 67 [ label = "Lights RoadIntersection" ] 68 [ label = "Lights RoadIntersection" ] 69 [ label = "Unknown" ] 70 [ label = "Unknown" ] 71 [ label = "Unknown" ] 72 [ label = "Unknown" ] - 73 [ label = "Unknown" ] - 74 [ label = "Lights RoadIntersection" ] - 39 -> 2 [ label = "1 lanes" ] - 9 -> 3 [ label = "2 lanes" ] - 3 -> 9 [ label = "2 lanes" ] - 4 -> 20 [ label = "2 lanes" ] - 20 -> 4 [ label = "2 lanes" ] - 20 -> 18 [ label = "2 lanes" ] - 18 -> 20 [ label = "2 lanes" ] - 5 -> 69 [ label = "2 lanes" ] - 69 -> 5 [ label = "2 lanes" ] - 69 -> 6 [ label = "2 lanes" ] - 6 -> 69 [ label = "2 lanes" ] - 7 -> 26 [ label = "2 lanes" ] - 26 -> 7 [ label = "2 lanes" ] - 37 -> 53 [ label = "3 lanes" ] - 73 -> 37 [ label = "3 lanes" ] - 10 -> 35 [ label = "2 lanes" ] - 35 -> 10 [ label = "2 lanes" ] - 35 -> 19 [ label = "2 lanes" ] - 19 -> 35 [ label = "2 lanes" ] - 12 -> 52 [ label = "3 lanes" ] - 52 -> 11 [ label = "3 lanes" ] - 16 -> 38 [ label = "3 lanes" ] - 38 -> 12 [ label = "3 lanes" ] - 17 -> 36 [ label = "1 lanes" ] - 36 -> 17 [ label = "1 lanes" ] - 25 -> 24 [ label = "5 lanes" ] - 31 -> 50 [ label = "5 lanes" ] - 20 -> 21 [ label = "1 lanes" ] - 21 -> 20 [ label = "1 lanes" ] - 23 -> 60 [ label = "2 lanes" ] - 0 -> 34 [ label = "2 lanes" ] - 60 -> 30 [ label = "2 lanes" ] - 22 -> 61 [ label = "4 lanes" ] + 73 [ label = "Lights RoadIntersection" ] + 74 [ label = "Unknown" ] + 75 [ label = "Unknown" ] + 76 [ label = "Lights RoadIntersection" ] + 77 [ label = "Unknown" ] + 78 [ label = "Unknown" ] + 79 [ label = "Unknown" ] + 80 [ label = "Unknown" ] + 81 [ label = "Lights RoadIntersection" ] + 82 [ label = "Lights RoadIntersection" ] + 83 [ label = "Unknown" ] + 84 [ label = "Unknown" ] + 85 [ label = "Unknown" ] + 86 [ label = "Unknown" ] + 87 [ label = "Unknown" ] + 88 [ label = "Unknown" ] + 89 [ label = "Unknown" ] + 90 [ label = "Unknown" ] + 91 [ label = "Unknown" ] + 92 [ label = "Unknown" ] + 93 [ label = "Unknown" ] + 94 [ label = "Unknown" ] + 95 [ label = "Unknown" ] + 96 [ label = "Unknown" ] + 97 [ label = "Unknown" ] + 98 [ label = "Unknown" ] + 99 [ label = "Unknown" ] + 100 [ label = "Unknown" ] + 101 [ label = "Unknown" ] + 102 [ label = "Lights RoadIntersection" ] + 103 [ label = "Unknown" ] + 104 [ label = "Unknown" ] + 105 [ label = "Unknown" ] + 106 [ label = "Unknown" ] + 107 [ label = "Lights RoadIntersection" ] + 108 [ label = "Unknown" ] + 109 [ label = "Unknown" ] + 110 [ label = "Unknown" ] + 111 [ label = "Unknown" ] + 112 [ label = "Unknown" ] + 113 [ label = "Unknown" ] + 114 [ label = "Unknown" ] + 115 [ label = "Unknown" ] + 116 [ label = "Unknown" ] + 117 [ label = "Unknown" ] + 118 [ label = "Unknown" ] + 119 [ label = "Unknown" ] + 120 [ label = "Unknown" ] + 121 [ label = "Lights RoadIntersection" ] + 122 [ label = "Unknown" ] + 123 [ label = "Unknown" ] + 124 [ label = "Unknown" ] + 57 -> 2 [ label = "1 lanes" ] + 12 -> 3 [ label = "2 lanes" ] + 3 -> 12 [ label = "2 lanes" ] + 4 -> 25 [ label = "2 lanes" ] + 25 -> 4 [ label = "2 lanes" ] + 25 -> 23 [ label = "2 lanes" ] + 23 -> 25 [ label = "2 lanes" ] + 5 -> 108 [ label = "2 lanes" ] + 108 -> 5 [ label = "2 lanes" ] + 108 -> 6 [ label = "2 lanes" ] + 6 -> 108 [ label = "2 lanes" ] + 7 -> 41 [ label = "2 lanes" ] + 41 -> 7 [ label = "2 lanes" ] + 55 -> 71 [ label = "3 lanes" ] + 113 -> 55 [ label = "3 lanes" ] + 9 -> 52 [ label = "1 lanes" ] + 10 -> 75 [ label = "1 lanes" ] + 11 -> 10 [ label = "1 lanes" ] + 52 -> 11 [ label = "1 lanes" ] + 13 -> 53 [ label = "2 lanes" ] + 53 -> 13 [ label = "2 lanes" ] + 53 -> 124 [ label = "2 lanes" ] + 124 -> 53 [ label = "2 lanes" ] + 124 -> 24 [ label = "2 lanes" ] + 24 -> 124 [ label = "2 lanes" ] + 15 -> 70 [ label = "3 lanes" ] + 70 -> 14 [ label = "3 lanes" ] + 19 -> 56 [ label = "3 lanes" ] + 56 -> 15 [ label = "3 lanes" ] + 20 -> 52 [ label = "1 lanes" ] + 21 -> 54 [ label = "1 lanes" ] + 54 -> 21 [ label = "1 lanes" ] + 54 -> 22 [ label = "1 lanes" ] + 22 -> 54 [ label = "1 lanes" ] + 40 -> 39 [ label = "5 lanes" ] + 48 -> 68 [ label = "5 lanes" ] + 25 -> 26 [ label = "1 lanes" ] + 26 -> 25 [ label = "1 lanes" ] + 11 -> 28 [ label = "1 lanes" ] + 31 -> 33 [ label = "1 lanes" ] + 32 -> 36 [ label = "1 lanes" ] + 33 -> 32 [ label = "1 lanes" ] + 36 -> 31 [ label = "1 lanes" ] + 38 -> 81 [ label = "2 lanes" ] + 0 -> 51 [ label = "2 lanes" ] + 81 -> 46 [ label = "2 lanes" ] + 37 -> 82 [ label = "4 lanes" ] 6 -> 7 [ label = "3 lanes" ] - 49 -> 6 [ label = "3 lanes" ] - 8 -> 45 [ label = "5 lanes" ] - 2 -> 16 [ label = "5 lanes" ] - 16 -> 71 [ label = "5 lanes" ] - 71 -> 22 [ label = "5 lanes" ] - 27 -> 64 [ label = "3 lanes" ] - 64 -> 28 [ label = "3 lanes" ] - 14 -> 32 [ label = "2 lanes" ] - 32 -> 14 [ label = "2 lanes" ] - 32 -> 33 [ label = "2 lanes" ] - 33 -> 32 [ label = "2 lanes" ] - 33 -> 59 [ label = "2 lanes" ] - 59 -> 33 [ label = "2 lanes" ] - 29 -> 0 [ label = "2 lanes" ] - 0 -> 29 [ label = "2 lanes" ] - 32 -> 33 [ label = "2 lanes" ] - 33 -> 32 [ label = "2 lanes" ] - 53 -> 28 [ label = "4 lanes" ] - 26 -> 51 [ label = "2 lanes" ] - 42 -> 61 [ label = "1 lanes" ] - 58 -> 62 [ label = "2 lanes" ] - 62 -> 58 [ label = "2 lanes" ] - 43 -> 25 [ label = "3 lanes" ] - 43 -> 74 [ label = "2 lanes" ] - 44 -> 43 [ label = "2 lanes" ] - 25 -> 49 [ label = "3 lanes" ] - 46 -> 54 [ label = "2 lanes" ] - 54 -> 67 [ label = "2 lanes" ] - 67 -> 26 [ label = "2 lanes" ] - 46 -> 24 [ label = "1 lanes" ] - 2 -> 1 [ label = "3 lanes" ] - 35 -> 41 [ label = "2 lanes" ] - 36 -> 37 [ label = "2 lanes" ] - 37 -> 40 [ label = "2 lanes" ] - 38 -> 72 [ label = "2 lanes" ] - 39 -> 38 [ label = "2 lanes" ] - 40 -> 52 [ label = "2 lanes" ] - 41 -> 36 [ label = "2 lanes" ] - 42 -> 29 [ label = "2 lanes" ] - 51 -> 35 [ label = "2 lanes" ] - 52 -> 39 [ label = "2 lanes" ] - 72 -> 42 [ label = "2 lanes" ] - 54 -> 6 [ label = "1 lanes" ] - 3 -> 41 [ label = "2 lanes" ] - 28 -> 40 [ label = "1 lanes" ] - 18 -> 51 [ label = "2 lanes" ] - 26 -> 15 [ label = "2 lanes" ] - 15 -> 26 [ label = "2 lanes" ] - 50 -> 68 [ label = "2 lanes" ] - 56 -> 50 [ label = "2 lanes" ] - 48 -> 56 [ label = "2 lanes" ] - 0 -> 63 [ label = "2 lanes" ] - 47 -> 48 [ label = "1 lanes" ] - 59 -> 60 [ label = "1 lanes" ] - 62 -> 29 [ label = "3 lanes" ] - 29 -> 62 [ label = "2 lanes" ] - 63 -> 23 [ label = "2 lanes" ] - 59 -> 23 [ label = "2 lanes" ] - 23 -> 59 [ label = "2 lanes" ] - 30 -> 0 [ label = "2 lanes" ] - 34 -> 13 [ label = "3 lanes" ] - 61 -> 0 [ label = "4 lanes" ] - 64 -> 65 [ label = "1 lanes" ] - 65 -> 64 [ label = "1 lanes" ] - 55 -> 48 [ label = "2 lanes" ] - 46 -> 66 [ label = "2 lanes" ] - 49 -> 55 [ label = "2 lanes" ] - 66 -> 49 [ label = "2 lanes" ] - 50 -> 25 [ label = "5 lanes" ] - 6 -> 67 [ label = "1 lanes" ] - 57 -> 74 [ label = "1 lanes" ] - 24 -> 8 [ label = "5 lanes" ] - 69 -> 70 [ label = "1 lanes" ] - 70 -> 69 [ label = "1 lanes" ] - 71 -> 72 [ label = "2 lanes" ] - 44 -> 57 [ label = "1 lanes" ] - 11 -> 2 [ label = "5 lanes" ] - 28 -> 11 [ label = "4 lanes" ] - 17 -> 53 [ label = "4 lanes" ] - 10 -> 3 [ label = "4 lanes" ] - 18 -> 10 [ label = "4 lanes" ] - 7 -> 18 [ label = "4 lanes" ] - 3 -> 17 [ label = "4 lanes" ] + 67 -> 6 [ label = "3 lanes" ] + 8 -> 63 [ label = "5 lanes" ] + 2 -> 19 [ label = "5 lanes" ] + 10 -> 37 [ label = "5 lanes" ] + 19 -> 110 [ label = "5 lanes" ] + 110 -> 10 [ label = "5 lanes" ] + 42 -> 97 [ label = "3 lanes" ] + 97 -> 43 [ label = "3 lanes" ] + 17 -> 49 [ label = "2 lanes" ] + 49 -> 17 [ label = "2 lanes" ] + 49 -> 50 [ label = "2 lanes" ] + 50 -> 49 [ label = "2 lanes" ] + 50 -> 80 [ label = "2 lanes" ] + 80 -> 50 [ label = "2 lanes" ] + 44 -> 0 [ label = "2 lanes" ] + 0 -> 44 [ label = "2 lanes" ] + 45 -> 87 [ label = "1 lanes" ] + 45 -> 79 [ label = "1 lanes" ] + 120 -> 45 [ label = "1 lanes" ] + 94 -> 84 [ label = "1 lanes" ] + 112 -> 94 [ label = "1 lanes" ] + 49 -> 50 [ label = "2 lanes" ] + 50 -> 49 [ label = "2 lanes" ] + 47 -> 83 [ label = "1 lanes" ] + 71 -> 43 [ label = "4 lanes" ] + 41 -> 69 [ label = "2 lanes" ] + 60 -> 82 [ label = "1 lanes" ] + 78 -> 89 [ label = "2 lanes" ] + 89 -> 78 [ label = "2 lanes" ] + 61 -> 40 [ label = "3 lanes" ] + 61 -> 121 [ label = "2 lanes" ] + 62 -> 61 [ label = "2 lanes" ] + 40 -> 67 [ label = "3 lanes" ] + 64 -> 72 [ label = "2 lanes" ] + 72 -> 105 [ label = "2 lanes" ] + 105 -> 41 [ label = "2 lanes" ] + 64 -> 39 [ label = "1 lanes" ] + 36 -> 34 [ label = "1 lanes" ] + 35 -> 36 [ label = "1 lanes" ] + 27 -> 30 [ label = "1 lanes" ] + 29 -> 27 [ label = "1 lanes" ] + 30 -> 34 [ label = "1 lanes" ] + 34 -> 29 [ label = "1 lanes" ] + 2 -> 20 [ label = "3 lanes" ] + 20 -> 1 [ label = "3 lanes" ] + 53 -> 59 [ label = "2 lanes" ] + 54 -> 55 [ label = "2 lanes" ] + 55 -> 58 [ label = "2 lanes" ] + 56 -> 111 [ label = "2 lanes" ] + 57 -> 56 [ label = "2 lanes" ] + 58 -> 70 [ label = "2 lanes" ] + 59 -> 54 [ label = "2 lanes" ] + 60 -> 44 [ label = "2 lanes" ] + 69 -> 53 [ label = "2 lanes" ] + 70 -> 57 [ label = "2 lanes" ] + 75 -> 60 [ label = "2 lanes" ] + 111 -> 75 [ label = "2 lanes" ] + 72 -> 6 [ label = "1 lanes" ] + 3 -> 59 [ label = "2 lanes" ] + 43 -> 58 [ label = "1 lanes" ] + 23 -> 69 [ label = "2 lanes" ] + 41 -> 18 [ label = "2 lanes" ] + 18 -> 41 [ label = "2 lanes" ] + 68 -> 107 [ label = "2 lanes" ] + 76 -> 68 [ label = "2 lanes" ] + 95 -> 115 [ label = "1 lanes" ] + 96 -> 103 [ label = "1 lanes" ] + 115 -> 96 [ label = "1 lanes" ] + 66 -> 76 [ label = "2 lanes" ] + 0 -> 91 [ label = "2 lanes" ] + 65 -> 116 [ label = "1 lanes" ] + 96 -> 66 [ label = "1 lanes" ] + 116 -> 96 [ label = "1 lanes" ] + 80 -> 81 [ label = "1 lanes" ] + 85 -> 88 [ label = "1 lanes" ] + 88 -> 86 [ label = "1 lanes" ] + 89 -> 44 [ label = "3 lanes" ] + 44 -> 89 [ label = "2 lanes" ] + 91 -> 38 [ label = "2 lanes" ] + 80 -> 38 [ label = "2 lanes" ] + 38 -> 80 [ label = "2 lanes" ] + 46 -> 0 [ label = "2 lanes" ] + 51 -> 16 [ label = "3 lanes" ] + 82 -> 0 [ label = "4 lanes" ] + 94 -> 92 [ label = "1 lanes" ] + 93 -> 88 [ label = "1 lanes" ] + 97 -> 98 [ label = "1 lanes" ] + 98 -> 97 [ label = "1 lanes" ] + 73 -> 74 [ label = "2 lanes" ] + 74 -> 66 [ label = "2 lanes" ] + 64 -> 102 [ label = "2 lanes" ] + 67 -> 73 [ label = "2 lanes" ] + 102 -> 67 [ label = "2 lanes" ] + 99 -> 100 [ label = "1 lanes" ] + 74 -> 101 [ label = "1 lanes" ] + 68 -> 40 [ label = "5 lanes" ] + 6 -> 105 [ label = "1 lanes" ] + 106 -> 104 [ label = "1 lanes" ] + 77 -> 121 [ label = "1 lanes" ] + 39 -> 8 [ label = "5 lanes" ] + 108 -> 109 [ label = "1 lanes" ] + 109 -> 108 [ label = "1 lanes" ] + 110 -> 111 [ label = "2 lanes" ] + 114 -> 116 [ label = "1 lanes" ] + 116 -> 115 [ label = "1 lanes" ] + 117 -> 118 [ label = "1 lanes" ] + 119 -> 90 [ label = "1 lanes" ] + 62 -> 77 [ label = "1 lanes" ] + 122 -> 123 [ label = "1 lanes" ] + 123 -> 22 [ label = "1 lanes" ] + 123 -> 124 [ label = "1 lanes" ] + 27 -> 33 [ label = "1 lanes" ] + 30 -> 32 [ label = "1 lanes" ] + 31 -> 29 [ label = "1 lanes" ] + 14 -> 2 [ label = "5 lanes" ] + 43 -> 14 [ label = "4 lanes" ] + 21 -> 71 [ label = "4 lanes" ] + 13 -> 3 [ label = "4 lanes" ] + 23 -> 13 [ label = "4 lanes" ] + 7 -> 23 [ label = "4 lanes" ] + 3 -> 21 [ label = "4 lanes" ] } diff --git a/tests/src/taipei/geometry.json b/tests/src/taipei/geometry.json index dddaf16e..fb1ff4ff 100644 --- a/tests/src/taipei/geometry.json +++ b/tests/src/taipei/geometry.json @@ -9,40 +9,8 @@ 25.05214278891446 ], [ - 121.52246249391685, - 25.052086539041618 - ], - [ - 121.52250105065625, - 25.052080670068364 - ], - [ - 121.52251148301399, - 25.052136919941205 - ], - [ - 121.52247292627457, - 25.05214278891446 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605982, - "osm_way_id": 33090413, - "src_i": 656416254, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52245197320819, - 25.052042544225248 + 121.52245857967318, + 25.052065432861212 ], [ 121.52233099200758, @@ -61,12 +29,16 @@ 25.051613870857405 ], [ - 121.52248979931525, - 25.052033585182716 + 121.52249684654215, + 25.052058000866886 + ], + [ + 121.52251148301399, + 25.052136919941205 ], [ - 121.52245197320819, - 25.052042544225248 + 121.52247292627457, + 25.05214278891446 ] ] ], @@ -75,7 +47,7 @@ "properties": { "dst_i": 656416259, "osm_way_id": 33090413, - "src_i": 5246605982, + "src_i": 656416254, "type": "road" }, "type": "Feature" @@ -85,31 +57,31 @@ "coordinates": [ [ [ - 121.52338125813202, - 25.051542489897372 + 121.52338125912472, + 25.051542493494658 ], [ - 121.52260293912336, - 25.05172562866271 + 121.52256573246547, + 25.05173445820292 ], [ - 121.52259794779263, - 25.051708219593714 + 121.52256073914931, + 25.051717049133924 ], [ - 121.52337626680128, - 25.051525080828377 + 121.52337626580857, + 25.051525084425663 ], [ - 121.52338125813202, - 25.051542489897372 + 121.52338125912472, + 25.051542493494658 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8807946132, + "dst_i": 656415898, "osm_way_id": 51423083, "src_i": 656415900, "type": "road" @@ -152,42 +124,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52257894241735, - 25.051731274604187 - ], - [ - 121.52256575430502, - 25.051734403344295 - ], - [ - 121.52256072525141, - 25.051717003268518 - ], - [ - 121.52257391336374, - 25.051713874528406 - ], - [ - 121.52257894241735, - 25.051731274604187 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656415898, - "osm_way_id": 51423083, - "src_i": 8807946132, - "type": "road" - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -301,45 +237,13 @@ "coordinates": [ [ [ - 121.52354387842723, - 25.052078009874847 + 121.5235438873616, + 25.05207805034432 ], [ - 121.52354137978374, + 121.52354137879104, 25.05206698688907 ], - [ - 121.52361797506951, - 25.05205273803644 - ], - [ - 121.523620473713, - 25.052063761022218 - ], - [ - 121.52354387842723, - 25.052078009874847 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 4335733875, - "osm_way_id": 51423093, - "src_i": 656415974, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52353121843501, - 25.052037082644713 - ], [ 121.5234823345648, 25.051893208263735 @@ -349,12 +253,16 @@ 25.05187236918187 ], [ - 121.52360595140247, - 25.052016243562846 + 121.52361722160491, + 25.052049412344886 + ], + [ + 121.52362048264736, + 25.05206379789441 ], [ - 121.52353121843501, - 25.052037082644713 + 121.5235438873616, + 25.05207805034432 ] ] ], @@ -363,7 +271,7 @@ "properties": { "dst_i": 656415914, "osm_way_id": 51423093, - "src_i": 4335733875, + "src_i": 656415974, "type": "road" }, "type": "Feature" @@ -377,12 +285,12 @@ 25.053076573495957 ], [ - 121.5224453419255, - 25.05307630459878 + 121.52242798642924, + 25.05307433688295 ], [ - 121.52245081372642, - 25.053036698472184 + 121.52243345823015, + 25.05303473075636 ], [ 121.52245318530342, @@ -409,8 +317,8 @@ "coordinates": [ [ [ - 121.52240319059409, - 25.053075295559857 + 121.52240335637616, + 25.053075286566642 ], [ 121.52117034977128, @@ -421,12 +329,12 @@ 25.053098147323634 ], [ - 121.52240072073911, - 25.053035443019127 + 121.52240088652118, + 25.053035434025908 ], [ - 121.52240319059409, - 25.053075295559857 + 121.52240335637616, + 25.053075286566642 ] ] ], @@ -449,12 +357,20 @@ 25.052292740911323 ], [ - 121.52364076464383, - 25.052305988818926 + 121.523651117585, + 25.052331688734448 + ], + [ + 121.52366996611259, + 25.052742069000086 + ], + [ + 121.52365012984156, + 25.05274281723572 ], [ - 121.52362211366494, - 25.052312154568334 + 121.52363141036588, + 25.052335230263207 ], [ 121.52361677687217, @@ -469,7 +385,7 @@ "type": "Polygon" }, "properties": { - "dst_i": 4335733886, + "dst_i": 662161900, "osm_way_id": 51885154, "src_i": 662161891, "type": "road" @@ -553,67 +469,31 @@ "coordinates": [ [ [ - 121.52365223239495, - 25.052355957829185 - ], - [ - 121.52366996611259, - 25.052742069000086 - ], - [ - 121.52365012984156, - 25.05274281723572 - ], - [ - 121.52363239612393, - 25.052356706064817 - ], - [ - 121.52365223239495, - 25.052355957829185 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 662161900, - "osm_way_id": 51885154, - "src_i": 4335733886, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52305247357764, - 25.052764252567858 + 121.52305238125588, + 25.052764298433264 ], [ - 121.52303334113586, - 25.052384286461965 + 121.52302802717534, + 25.052317840079965 ], [ - 121.52305317542147, - 25.052383466280595 + 121.52304785749014, + 25.05231695155015 ], [ - 121.52307230786325, - 25.05276343238649 + 121.52307221157066, + 25.05276340990345 ], [ - 121.52305247357764, - 25.052764252567858 + 121.52305238125588, + 25.052764298433264 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4335735090, + "dst_i": 662161955, "osm_way_id": 51885159, "src_i": 662161961, "type": "road" @@ -692,42 +572,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52303053376049, - 25.052339393223242 - ], - [ - 121.5230289444366, - 25.052318130560867 - ], - [ - 121.52304875291185, - 25.052316914677963 - ], - [ - 121.52305034223573, - 25.052338177340335 - ], - [ - 121.52303053376049, - 25.052339393223242 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 662161955, - "osm_way_id": 51885159, - "src_i": 4335735090, - "type": "road" - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -806,43 +650,7 @@ [ [ 121.52273580203392, - 25.052787390315927 - ], - [ - 121.52274698388543, - 25.05278696853406 - ], - [ - 121.52274780981764, - 25.052804938779783 - ], - [ - 121.52273662796613, - 25.05280536056165 - ], - [ - 121.52273580203392, - 25.052787390315927 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 8807946195, - "osm_way_id": 51885164, - "src_i": 662161980, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5227718839548, - 25.052786030541554 + 25.052787391215247 ], [ 121.52304068816026, @@ -853,12 +661,12 @@ 25.052793872626566 ], [ - 121.52277270988702, - 25.052804000787276 + 121.52273662796613, + 25.05280536146097 ], [ - 121.5227718839548, - 25.052786030541554 + 121.52273580203392, + 25.052787391215247 ] ] ], @@ -867,7 +675,7 @@ "properties": { "dst_i": 662161961, "osm_way_id": 51885164, - "src_i": 8807946195, + "src_i": 662161980, "type": "road" }, "type": "Feature" @@ -882,19 +690,19 @@ ], [ 121.52148249854196, - 25.052107366432303 + 25.052107299882497 ], [ - 121.52152169458466, - 25.052282476053715 + 121.52153095951898, + 25.052317769033554 ], [ - 121.52146878330221, - 25.052292195922387 + 121.52147810978437, + 25.05232775600076 ], [ 121.52142850123806, - 25.05211223356121 + 25.052112301010336 ], [ 121.52142936092231, @@ -909,7 +717,7 @@ "type": "Polygon" }, "properties": { - "dst_i": 5246605994, + "dst_i": 2137955866, "osm_way_id": 203799162, "src_i": 2137955743, "type": "road" @@ -988,42 +796,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52152660451343, - 25.052304410509382 - ], - [ - 121.52152978911744, - 25.052317187172427 - ], - [ - 121.52147712799716, - 25.05232795924746 - ], - [ - 121.52147394339313, - 25.052315182584415 - ], - [ - 121.52152660451343, - 25.052304410509382 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 2137955866, - "osm_way_id": 203799162, - "src_i": 5246605994, - "type": "road" - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -1065,23 +837,23 @@ "coordinates": [ [ [ - 121.52218486851709, + 121.52218486653167, 25.051426913572236 ], [ - 121.5221752392593, - 25.05142935612991 + 121.52217939473076, + 25.05142830122558 ], [ - 121.52216335854207, - 25.051390919121495 + 121.52216751798434, + 25.051389864217168 ], [ - 121.52217298779985, + 121.52217298978526, 25.051388476563822 ], [ - 121.52218486851709, + 121.52218486653167, 25.051426913572236 ] ] @@ -1101,8 +873,8 @@ "coordinates": [ [ [ - 121.52212567935564, - 25.051442059048576 + 121.52212758733847, + 25.051441565320975 ], [ 121.5219322146616, @@ -1113,12 +885,12 @@ 25.05145373494189 ], [ - 121.52211357825746, - 25.051403677798106 + 121.52211548624028, + 25.051403184070505 ], [ - 121.52212567935564, - 25.051442059048576 + 121.52212758733847, + 25.051441565320975 ] ] ], @@ -1181,31 +953,31 @@ "coordinates": [ [ [ - 121.52256853984082, - 25.051746016285094 + 121.52256864208964, + 25.051745852608548 ], [ - 121.52263724608416, - 25.052011846779173 + 121.52266536053877, + 25.05211079104924 ], [ - 121.522599179742, - 25.052019920889176 + 121.52262734383196, + 25.05211905941273 ], [ - 121.52253047349866, - 25.051754090395097 + 121.52253062538284, + 25.05175412097203 ], [ - 121.52256853984082, - 25.051746016285094 + 121.52256864208964, + 25.051745852608548 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4335733876, + "dst_i": 656416189, "osm_way_id": 289004429, "src_i": 656415898, "type": "road" @@ -1248,42 +1020,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52264964598714, - 25.052057683406336 - ], - [ - 121.52266450780346, - 25.052110399844313 - ], - [ - 121.52262662610481, - 25.052119164633364 - ], - [ - 121.52261176428848, - 25.052066448195387 - ], - [ - 121.52264964598714, - 25.052057683406336 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656416189, - "osm_way_id": 289004429, - "src_i": 4335733876, - "type": "road" - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -1325,31 +1061,31 @@ "coordinates": [ [ [ - 121.52285377433965, - 25.052106901482997 + 121.52285691427186, + 25.052107347546546 ], [ - 121.52286604320531, - 25.052106343903557 + 121.52354388537618, + 25.05207805034432 ], [ - 121.52287021058925, - 25.05218158295358 + 121.52354779664171, + 25.052153301984845 ], [ - 121.52285794172359, - 25.052182140533017 + 121.52286082553738, + 25.05218259918707 ], [ - 121.52285377433965, - 25.052106901482997 + 121.52285691427186, + 25.052107347546546 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5246605985, + "dst_i": 656415974, "osm_way_id": 306251259, "src_i": 656416189, "type": "road" @@ -1361,33 +1097,33 @@ "coordinates": [ [ [ - 121.52289104055997, - 25.05210529889177 + 121.52250008574507, + 25.052266243297474 ], [ - 121.52354387941993, - 25.05207801167349 + 121.52249345247697, + 25.052220450737074 ], [ - 121.5235477112689, - 25.052153265112658 + 121.52252483393026, + 25.052216720350764 ], [ - 121.52289487240894, - 25.052180552330938 + 121.52253146719836, + 25.052262512911163 ], [ - 121.52289104055997, - 25.05210529889177 + 121.52250008574507, + 25.052266243297474 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 656415974, - "osm_way_id": 306251259, - "src_i": 5246605985, + "dst_i": 656416254, + "osm_way_id": 306251260, + "src_i": 656416249, "type": "road" }, "type": "Feature" @@ -1397,44 +1133,8 @@ "coordinates": [ [ [ - 121.52250008574507, - 25.052266243297474 - ], - [ - 121.52249345247697, - 25.052220450737074 - ], - [ - 121.52252483393026, - 25.052216720350764 - ], - [ - 121.52253146719836, - 25.052262512911163 - ], - [ - 121.52250008574507, - 25.052266243297474 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656416254, - "osm_way_id": 306251260, - "src_i": 656416249, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52249918436712, - 25.052341574078305 + 121.52249918436712, + 25.052341574078305 ], [ 121.52247631934706, @@ -1513,31 +1213,39 @@ "coordinates": [ [ [ - 121.52240088056493, - 25.052155849763153 + 121.52240048248943, + 25.05215591271567 + ], + [ + 121.52225684275183, + 25.051646491952543 + ], + [ + 121.52218781387872, + 25.05142896492498 ], [ - 121.522385831127, - 25.05210099833552 + 121.5222253878382, + 25.051419178506507 ], [ - 121.5224237743735, - 25.0520924547796 + 121.52229457951526, + 25.05163721994607 ], [ - 121.52243882381143, - 25.052147306207235 + 121.52243836220268, + 25.05214714612798 ], [ - 121.52240088056493, - 25.052155849763153 + 121.52240048248943, + 25.05215591271567 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5246605981, + "dst_i": 2137955831, "osm_way_id": 310620429, "src_i": 656416177, "type": "road" @@ -1585,60 +1293,24 @@ "coordinates": [ [ [ - 121.5223725765033, - 25.05205457894791 - ], - [ - 121.5221872569701, - 25.051428651061713 - ], - [ - 121.52222501954391, - 25.05141947618198 - ], - [ - 121.52241033907711, - 25.052045404068178 - ], - [ - 121.5223725765033, - 25.05205457894791 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 2137955831, - "osm_way_id": 310620429, - "src_i": 5246605981, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52241728405521, - 25.05226064502004 + 121.52241727214272, + 25.052260528108224 ], [ - 121.52241640153869, - 25.052252257046774 + 121.52241640054598, + 25.05225224355695 ], [ - 121.52246984094126, - 25.052247643526577 + 121.52246983994856, + 25.052247630036753 ], [ - 121.52247072345777, - 25.052256031499848 + 121.5224707115453, + 25.05225591458803 ], [ - 121.52241728405521, - 25.05226064502004 + 121.52241727214272, + 25.052260528108224 ] ] ], @@ -1657,60 +1329,24 @@ "coordinates": [ [ [ - 121.5224392606025, - 25.052355849910583 - ], - [ - 121.52232713732634, - 25.052377090089916 - ], - [ - 121.52230516276445, - 25.052281886098697 - ], - [ - 121.52241728604062, - 25.052260645919365 - ], - [ - 121.5224392606025, - 25.052355849910583 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605980, - "osm_way_id": 310677986, - "src_i": 656416176, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52227496163977, - 25.052386846830775 + 121.52243872255531, + 25.05235583192415 ], [ - 121.52117946083601, - 25.05258866990324 + 121.52117948069015, + 25.052588415395206 ], [ - 121.521158066015, - 25.05249335799342 + 121.52115803226297, + 25.052493112478604 ], [ - 121.52225356681876, - 25.052291534920954 + 121.52241727412813, + 25.052260529007548 ], [ - 121.52227496163977, - 25.052386846830775 + 121.52243872255531, + 25.05235583192415 ] ] ], @@ -1719,7 +1355,7 @@ "properties": { "dst_i": 9260164952, "osm_way_id": 310677986, - "src_i": 5246605980, + "src_i": 656416176, "type": "road" }, "type": "Feature" @@ -1837,24 +1473,24 @@ "coordinates": [ [ [ - 121.523063151134, - 25.053209051672663 + 121.52306315014128, + 25.05320904987402 ], [ - 121.5229970805277, + 121.52299683433638, 25.05321123342705 ], [ - 121.52299635783702, + 121.52299611363111, 25.05319325958404 ], [ - 121.52306242844331, - 25.053191077829656 + 121.52306242943601, + 25.053191076031013 ], [ - 121.523063151134, - 25.053209051672663 + 121.52306315014128, + 25.05320904987402 ] ] ], @@ -1873,33 +1509,33 @@ "coordinates": [ [ [ - 121.52371453865635, - 25.052352528715634 + 121.52245785102626, + 25.053075245197842 ], [ - 121.5236649827235, - 25.0523550746953 + 121.52246026231154, + 25.053120158221642 ], [ - 121.52366217336274, - 25.052310180557253 + 121.52243051683935, + 25.053121469432647 ], [ - 121.52371172929557, - 25.05230763457759 + 121.52242810555407, + 25.053076556408847 ], [ - 121.52371453865635, - 25.052352528715634 + 121.52245785102626, + 25.053075245197842 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4335733886, - "osm_way_id": 435677300, - "src_i": 4335733879, + "dst_i": 4568593157, + "osm_way_id": 461272339, + "src_i": 4568589283, "type": "road" }, "type": "Feature" @@ -1909,69 +1545,41 @@ "coordinates": [ [ [ - 121.52361527093568, - 25.052357492971286 - ], - [ - 121.52307064309363, - 25.052382515697587 + 121.52239700900768, + 25.052415288778086 ], [ - 121.52306812955953, - 25.052337607170394 + 121.52242407714913, + 25.05244584233269 ], [ - 121.52361275740158, - 25.052312584444092 + 121.5224554407337, + 25.053030333972686 ], [ - 121.52361527093568, - 25.052357492971286 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 4335735090, - "osm_way_id": 435677300, - "src_i": 4335733886, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52302120330751, - 25.052384899799346 - ], - [ - 121.5229084605822, - 25.05239059610284 + 121.5224256952615, + 25.053031643385047 ], [ - 121.52290569688594, - 25.052345700166153 + 121.52239480023464, + 25.052455900346313 ], [ - 121.52301843961126, - 25.05234000386266 + 121.52237378363499, + 25.05243217624051 ], [ - 121.52302120330751, - 25.052384899799346 + 121.52239700900768, + 25.052415288778086 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5246605991, - "osm_way_id": 435677300, - "src_i": 4335735090, + "dst_i": 4568589283, + "osm_way_id": 461272339, + "src_i": 4568593109, "type": "road" }, "type": "Feature" @@ -1981,33 +1589,33 @@ "coordinates": [ [ [ - 121.52275419193087, - 25.052509964867482 + 121.5227171182957, + 25.052188727164967 ], [ - 121.52277086245931, - 25.05277447245938 + 121.52272551957493, + 25.05224076191712 ], [ - 121.52272130851189, - 25.052777035526155 + 121.52261928602934, + 25.052254838099984 ], [ - 121.52270463798345, - 25.052512527934258 + 121.5226108847501, + 25.052202803347836 ], [ - 121.52275419193087, - 25.052509964867482 + 121.5227171182957, + 25.052188727164967 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8807946195, - "osm_way_id": 435677300, - "src_i": 5246605987, + "dst_i": 656416186, + "osm_way_id": 468047661, + "src_i": 656416189, "type": "road" }, "type": "Feature" @@ -2017,49 +1625,33 @@ "coordinates": [ [ [ - 121.52285993706462, - 25.052393905606607 - ], - [ - 121.52279585683586, - 25.05239941395187 - ], - [ - 121.5227604618682, - 25.052437541593626 - ], - [ - 121.52275583783906, - 25.05246943603685 - ], - [ - 121.52270662538284, - 25.052463581452745 + 121.52259178804577, + 25.05220062609006 ], [ - 121.52271313754068, - 25.052418657637084 + 121.52260226507532, + 25.052253846148176 ], [ - 121.52277094386129, - 25.052356386805624 + 121.52255460521283, + 25.05226154614036 ], [ - 121.52285524950223, - 25.052349140970883 + 121.52254412818328, + 25.052208326082244 ], [ - 121.52285993706462, - 25.052393905606607 + 121.52259178804577, + 25.05220062609006 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5246605987, - "osm_way_id": 435677300, - "src_i": 5246605991, + "dst_i": 656416158, + "osm_way_id": 468047664, + "src_i": 656416087, "type": "road" }, "type": "Feature" @@ -2069,33 +1661,33 @@ "coordinates": [ [ [ - 121.52277365196595, - 25.05281940616758 + 121.52115489729431, + 25.052388391865414 ], [ - 121.52279134299718, - 25.053108962566103 + 121.52140136062901, + 25.05234239785696 ], [ - 121.52274178309352, - 25.053111448291215 + 121.52142302149548, + 25.05243766120341 ], [ - 121.52272409206229, - 25.052821891892687 + 121.52117655816078, + 25.052483655211862 ], [ - 121.52277365196595, - 25.05281940616758 + 121.52115489729431, + 25.052388391865414 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8807946196, - "osm_way_id": 435677300, - "src_i": 8807946195, + "dst_i": 6982946642, + "osm_way_id": 506351786, + "src_i": 2137955730, "type": "road" }, "type": "Feature" @@ -2105,33 +1697,33 @@ "coordinates": [ [ [ - 121.52353278889747, - 25.05208202624545 + 121.5215309615044, + 25.05231776813423 ], [ - 121.52289021760588, - 25.05210044255472 + 121.52239478931486, + 25.052156973015926 ], [ - 121.52288864714342, - 25.052055499853306 + 121.52241639856057, + 25.052252245355593 ], [ - 121.52353121843501, - 25.052037083544036 + 121.5215525707501, + 25.052413040473898 ], [ - 121.52353278889747, - 25.05208202624545 + 121.5215309615044, + 25.05231776813423 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5246605992, - "osm_way_id": 435677315, - "src_i": 4335733875, + "dst_i": 656416177, + "osm_way_id": 506351786, + "src_i": 2137955866, "type": "road" }, "type": "Feature" @@ -2141,33 +1733,33 @@ "coordinates": [ [ [ - 121.52262546265221, - 25.052017112307585 + 121.52145437912382, + 25.052332337145376 ], [ - 121.5225571584552, - 25.0517473400866 + 121.52147811176978, + 25.052327771289228 ], [ - 121.52260553703755, - 25.05173728746891 + 121.52150041392497, + 25.05242291232793 ], [ - 121.52267384123456, - 25.052007059689895 + 121.52147668127901, + 25.05242747818408 ], [ - 121.52262546265221, - 25.052017112307585 + 121.52145437912382, + 25.052332337145376 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 8807946132, - "osm_way_id": 435677315, - "src_i": 5246605984, + "dst_i": 2137955866, + "osm_way_id": 506351786, + "src_i": 6982946642, "type": "road" }, "type": "Feature" @@ -2177,41 +1769,41 @@ "coordinates": [ [ [ - 121.52283996578545, - 25.05210186977822 + 121.5227131276136, + 25.052325369201032 ], [ - 121.5227442251527, - 25.052104565045283 + 121.52272595438059, + 25.05248317047748 ], [ - 121.52266483142594, - 25.052064574908336 + 121.52273545260105, + 25.052776588563283 ], [ - 121.52268895023492, - 25.052025274551113 + 121.52267217745765, + 25.052778270294816 ], [ - 121.52275637390082, - 25.052059235635546 + 121.52266272093088, + 25.052486134641722 ], [ - 121.52283842311878, - 25.052056925278162 + 121.52264999542001, + 25.052329581623763 ], [ - 121.52283996578545, - 25.05210186977822 + 121.5227131276136, + 25.052325369201032 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5246605984, - "osm_way_id": 435677315, - "src_i": 5246605992, + "dst_i": 662161980, + "osm_way_id": 506351807, + "src_i": 656416186, "type": "road" }, "type": "Feature" @@ -2221,33 +1813,33 @@ "coordinates": [ [ [ - 121.52371093215186, - 25.05207621392946 + 121.52273740327028, + 25.05282076054602 ], [ - 121.52361404692796, - 25.05207951444001 + 121.52275350795576, + 25.053108388798876 ], [ - 121.52361218262423, - 25.05203458073181 + 121.52269028641852, + 25.053111293607888 ], [ - 121.52370906784813, - 25.05203128022126 + 121.52267418173305, + 25.05282366535503 ], [ - 121.52371093215186, - 25.05207621392946 + 121.52273740327028, + 25.05282076054602 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4335733875, - "osm_way_id": 435677315, - "src_i": 5987407036, + "dst_i": 662162162, + "osm_way_id": 506351807, + "src_i": 662161980, "type": "road" }, "type": "Feature" @@ -2257,33 +1849,33 @@ "coordinates": [ [ [ - 121.52254522016096, - 25.05170479317813 + 121.52262620618974, + 25.052329910775494 ], [ - 121.52247057554443, - 25.051462665206127 + 121.52261331191868, + 25.05233088653951 ], [ - 121.52251838232755, - 25.051450569329592 + 121.52260638878015, + 25.05225581296468 ], [ - 121.5225930269441, - 25.05169269730159 + 121.52261928305121, + 25.05225483720066 ], [ - 121.52254522016096, - 25.05170479317813 + 121.52262620618974, + 25.052329910775494 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 7702095005, - "osm_way_id": 435677315, - "src_i": 8807946132, + "dst_i": 656416158, + "osm_way_id": 506351814, + "src_i": 656416186, "type": "road" }, "type": "Feature" @@ -2293,33 +1885,33 @@ "coordinates": [ [ [ - 121.52245289344756, - 25.053075464632332 + 121.5224483528058, + 25.052155244519664 ], [ - 121.52245530473284, - 25.053120377656132 + 121.52246458058693, + 25.052149801824886 ], [ - 121.52240572894587, - 25.05312256210848 + 121.52249345247697, + 25.052220450737074 ], [ - 121.52240331766059, - 25.05307764908468 + 121.52247722469583, + 25.052225893431856 ], [ - 121.52245289344756, - 25.053075464632332 + 121.5224483528058, + 25.052155244519664 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4568593157, - "osm_way_id": 461272339, - "src_i": 4568589283, + "dst_i": 656416254, + "osm_way_id": 506351821, + "src_i": 656416177, "type": "road" }, "type": "Feature" @@ -2329,41 +1921,41 @@ "coordinates": [ [ [ - 121.52232913167468, - 25.052379022732197 + 121.52260146296807, + 25.052332363225705 ], [ - 121.5223746661515, - 25.05239725108324 + 121.52261727579769, + 25.052476814071877 ], [ - 121.52239862215654, - 25.052424293686023 + 121.52264959436638, + 25.05310965774176 ], [ - 121.52235991055484, - 25.05245243705854 + 121.52262541400957, + 25.053110670377965 ], [ - 121.52234353287496, - 25.052433948803532 + 121.52259312323667, + 25.052478386086168 ], [ - 121.52230906906645, - 25.052420152309708 + 121.52257737592572, + 25.052334526993654 ], [ - 121.52232913167468, - 25.052379022732197 + 121.52260146296807, + 25.052332363225705 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4568593153, - "osm_way_id": 461272339, - "src_i": 4568593109, + "dst_i": 4498536439, + "osm_way_id": 506351826, + "src_i": 656416158, "type": "road" }, "type": "Feature" @@ -2373,33 +1965,33 @@ "coordinates": [ [ [ - 121.52242103847303, - 25.052481819696325 + 121.52256780821577, + 25.05233592543886 ], [ - 121.52245048414771, - 25.053030552507856 + 121.52255661048095, + 25.05233756220431 ], [ - 121.52240090637531, - 25.05303273606088 + 121.5225433637989, + 25.052263190100383 ], [ - 121.52237146070064, - 25.05248400324935 + 121.52255456153372, + 25.052261553334933 ], [ - 121.52242103847303, - 25.052481819696325 + 121.52256780821577, + 25.05233592543886 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4568589283, - "osm_way_id": 461272339, - "src_i": 4568593153, + "dst_i": 656416249, + "osm_way_id": 506351832, + "src_i": 656416158, "type": "road" }, "type": "Feature" @@ -2409,33 +2001,33 @@ "coordinates": [ [ [ - 121.52116210236163, - 25.052582112948905 + 121.52259100678538, + 25.052124415772628 ], [ - 121.52226703388176, - 25.05237308720914 + 121.52259674165364, + 25.052123570410252 ], [ - 121.52227717934717, - 25.05241710360923 + 121.52261009753346, + 25.05219792632639 ], [ - 121.52117224782704, - 25.052626129348994 + 121.52260436266519, + 25.052198771688765 ], [ - 121.52116210236163, - 25.052582112948905 + 121.52259100678538, + 25.052124415772628 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4568593109, - "osm_way_id": 464590785, - "src_i": 5235938222, + "dst_i": 656416189, + "osm_way_id": 506351837, + "src_i": 656416087, "type": "road" }, "type": "Feature" @@ -2445,33 +2037,33 @@ "coordinates": [ [ [ - 121.52271708851448, - 25.052188544602668 + 121.52358223960336, + 25.052294889390804 ], [ - 121.52272551957493, - 25.052240761017796 + 121.52306502337937, + 25.052316242884668 ], [ - 121.52261928602934, - 25.052254838999303 + 121.52306123719492, + 25.052240985848215 ], [ - 121.52261085496889, - 25.05220262258418 - ], + 121.5235784534189, + 25.05221963235435 + ], [ - 121.52271708851448, - 25.052188544602668 + 121.52358223960336, + 25.052294889390804 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 656416186, - "osm_way_id": 468047661, - "src_i": 656416189, + "dst_i": 662161955, + "osm_way_id": 506351852, + "src_i": 662161891, "type": "road" }, "type": "Feature" @@ -2481,33 +2073,33 @@ "coordinates": [ [ [ - 121.52259178804577, - 25.05220062609006 + 121.52301453033114, + 25.052317909327734 ], [ - 121.52260226507532, - 25.052253846148176 + 121.52272922733553, + 25.052324971700852 ], [ - 121.52255460521283, - 25.05226154614036 + 121.52272695602194, + 25.052249666101027 ], [ - 121.52254412818328, - 25.052208326082244 + 121.52301225901755, + 25.05224260372791 ], [ - 121.52259178804577, - 25.05220062609006 + 121.52301453033114, + 25.052317909327734 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 656416158, - "osm_way_id": 468047664, - "src_i": 656416087, + "dst_i": 656416186, + "osm_way_id": 506351852, + "src_i": 662161955, "type": "road" }, "type": "Feature" @@ -2517,33 +2109,33 @@ "coordinates": [ [ [ - 121.52228930427033, - 25.05217665826808 + 121.52371214226167, + 25.05228970210338 ], [ - 121.52239475556281, - 25.052156991901683 + 121.52363542785106, + 25.052292740911323 ], [ - 121.52241640451682, - 25.052252257046774 + 121.52363179454349, + 25.052217478478937 ], [ - 121.52231095322432, - 25.052271923413176 + 121.5237085089541, + 25.052214439670994 ], [ - 121.52228930427033, - 25.05217665826808 + 121.52371214226167, + 25.05228970210338 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 656416177, - "osm_way_id": 506351786, - "src_i": 656416266, + "dst_i": 662161891, + "osm_way_id": 506351852, + "src_i": 4961152331, "type": "road" }, "type": "Feature" @@ -2553,33 +2145,33 @@ "coordinates": [ [ [ - 121.52115489729431, - 25.052388391865414 + 121.52245060922878, + 25.05312990956657 ], [ - 121.52140136062901, - 25.05234239785696 + 121.52244817014771, + 25.053084997442095 ], [ - 121.52142302149548, - 25.05243766120341 + 121.52251139565577, + 25.053082178967962 ], [ - 121.52117655816078, - 25.052483655211862 + 121.52251383473684, + 25.053127091092442 ], [ - 121.52115489729431, - 25.052388391865414 + 121.52245060922878, + 25.05312990956657 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 6982946642, - "osm_way_id": 506351786, - "src_i": 2137955730, + "dst_i": 662161241, + "osm_way_id": 515156284, + "src_i": 662161208, "type": "road" }, "type": "Feature" @@ -2589,33 +2181,41 @@ "coordinates": [ [ [ - 121.5215299817026, - 25.052317952495176 + 121.52246595151529, + 25.05303841437794 + ], + [ + 121.52245327365434, + 25.052466664327447 ], [ - 121.52223352605009, - 25.05218704903072 + 121.52243945219494, + 25.0523556970259 ], [ - 121.52225512536873, - 25.05228232316903 + 121.52247090313774, + 25.05235248285023 ], [ - 121.52155158102124, - 25.052413226633483 + 121.52248488938649, + 25.052464779349215 ], [ - 121.5215299817026, - 25.052317952495176 + 121.52249759702865, + 25.05303783881207 + ], + [ + 121.52246595151529, + 25.05303841437794 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 656416266, - "osm_way_id": 506351786, - "src_i": 2137955866, + "dst_i": 656416176, + "osm_way_id": 515156284, + "src_i": 662161241, "type": "road" }, "type": "Feature" @@ -2625,33 +2225,41 @@ "coordinates": [ [ [ - 121.52144957938553, - 25.052333260748735 + 121.52255358669547, + 25.053111201877076 + ], + [ + 121.52252035384363, + 25.052473652956188 + ], + [ + 121.52250520017147, + 25.052342608298233 ], [ - 121.52147712700445, - 25.052327961046103 + 121.52255334844578, + 25.05233803974412 ], [ - 121.52149942915963, - 25.052423102084806 + 121.52256864705318, + 25.05247034704971 ], [ - 121.52147188154072, - 25.052428401787438 + 121.52260194542367, + 25.05310913343722 ], [ - 121.52144957938553, - 25.052333260748735 + 121.52255358669547, + 25.053111201877076 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2137955866, - "osm_way_id": 506351786, - "src_i": 6982946642, + "dst_i": 656416249, + "osm_way_id": 515156285, + "src_i": 4498536440, "type": "road" }, "type": "Feature" @@ -2661,33 +2269,49 @@ "coordinates": [ [ [ - 121.52271317526355, - 25.0523259528608 + 121.52240152483176, + 25.051445650939346 + ], + [ + 121.52244974656641, + 25.051595444655597 + ], + [ + 121.52257366717241, + 25.052044876166352 + ], + [ + 121.52259069209725, + 25.052122966965406 + ], + [ + 121.5225285883481, + 25.052134078984032 ], [ - 121.52272373071695, - 25.052455812212788 + 121.52251187116242, + 25.05205739652272 ], [ - 121.52266059852334, - 25.052460024635515 + 121.52238862559717, + 25.051610416562852 ], [ - 121.52265004306994, - 25.05233016528353 + 121.52234075329538, + 25.051461707428544 ], [ - 121.52271317526355, - 25.0523259528608 + 121.52240152483176, + 25.051445650939346 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4335735091, - "osm_way_id": 506351807, - "src_i": 656416186, + "dst_i": 656416087, + "osm_way_id": 515156290, + "src_i": 656416084, "type": "road" }, "type": "Feature" @@ -2697,33 +2321,57 @@ "coordinates": [ [ [ - 121.52273740327028, - 25.05282076054602 + 121.5214147284213, + 25.052334242808005 ], [ - 121.52275350795576, - 25.053108388798876 + 121.52141414073877, + 25.05232419738489 ], [ - 121.52269028641852, - 25.053111293607888 + 121.52131975713648, + 25.0518561355263 ], [ - 121.52267418173305, - 25.05282366535503 + 121.52128279766262, + 25.051813729811332 ], [ - 121.52273740327028, - 25.05282076054602 + 121.52122089146215, + 25.051804600797006 + ], + [ + 121.52122727059725, + 25.051769095577253 + ], + [ + 121.5213044029375, + 25.051780469298485 + ], + [ + 121.52135704321095, + 25.05184086504425 + ], + [ + 121.52145365841855, + 25.052320002948594 + ], + [ + 121.52145438110924, + 25.052332338044696 + ], + [ + 121.5214147284213, + 25.052334242808005 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 662162162, - "osm_way_id": 506351807, - "src_i": 662161980, + "dst_i": 6982946638, + "osm_way_id": 746179639, + "src_i": 6982946642, "type": "road" }, "type": "Feature" @@ -2733,33 +2381,33 @@ "coordinates": [ [ [ - 121.5227267078452, - 25.052506434130585 + 121.52218027923267, + 25.051431528891076 ], [ - 121.52273545260105, - 25.052776588563283 + 121.5223332117004, + 25.0519902189922 ], [ - 121.52267217745765, - 25.052778270294816 + 121.52230430605833, + 25.051996712094695 ], [ - 121.52266343270179, - 25.052508115862118 + 121.5221513735906, + 25.051438021993572 ], [ - 121.5227267078452, - 25.052506434130585 + 121.52218027923267, + 25.051431528891076 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 662161980, - "osm_way_id": 506351807, - "src_i": 4335735091, + "dst_i": 5262459478, + "osm_way_id": 1012478860, + "src_i": 4568593105, "type": "road" }, "type": "Feature" @@ -2769,33 +2417,33 @@ "coordinates": [ [ [ - 121.52262620618974, - 25.052329910775494 + 121.52214673367814, + 25.051343564439346 ], [ - 121.52261331191868, - 25.05233088653951 + 121.522164398899, + 25.05138558704328 ], [ - 121.52260638878015, - 25.05225581296468 + 121.52213656736588, + 25.05139518820149 ], [ - 121.52261928305121, - 25.05225483720066 + 121.52211890214502, + 25.051353165597554 ], [ - 121.52262620618974, - 25.052329910775494 + 121.52214673367814, + 25.051343564439346 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 656416158, - "osm_way_id": 506351814, - "src_i": 656416186, + "dst_i": 4568593105, + "osm_way_id": 1012478860, + "src_i": 7702095012, "type": "road" }, "type": "Feature" @@ -2805,33 +2453,41 @@ "coordinates": [ [ [ - 121.5224483528058, - 25.052155244519664 + 121.5236114241961, + 25.05223738676287 ], [ - 121.52246458058693, - 25.052149801824886 + 121.52290185113907, + 25.052267709191803 ], [ - 121.52249345247697, - 25.052220450737074 + 121.52273242285933, + 25.05228646094806 ], [ - 121.52247722469583, - 25.052225893431856 + 121.52273001455218, + 25.05226860761416 ], [ - 121.5224483528058, - 25.052155244519664 + 121.52290018339133, + 25.052249773120305 + ], + [ + 121.52361048906612, + 25.052219420114433 + ], + [ + 121.5236114241961, + 25.05223738676287 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 656416254, - "osm_way_id": 506351821, - "src_i": 656416177, + "dst_i": 656416186, + "osm_way_id": 1047456820, + "src_i": 9631718933, "type": "road" }, "type": "Feature" @@ -2841,33 +2497,41 @@ "coordinates": [ [ [ - 121.52260146296807, - 25.052332363225705 + 121.52286082454468, + 25.05218259918707 ], [ - 121.52261450118165, - 25.0524514729857 + 121.52287159740091, + 25.052184313294184 ], [ - 121.5225904141393, - 25.052453636753654 + 121.52361026669975, + 25.052153743551788 ], [ - 121.52257737592572, - 25.052334526993654 + 121.52361117204852, + 25.052171711998866 ], [ - 121.52260146296807, - 25.052332363225705 + 121.52287032276513, + 25.05220237167343 + ], + [ + 121.5228573897785, + 25.052200314025438 + ], + [ + 121.52286082454468, + 25.05218259918707 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 5246605990, - "osm_way_id": 506351826, - "src_i": 656416158, + "dst_i": 9735064047, + "osm_way_id": 1047456821, + "src_i": 656416189, "type": "road" }, "type": "Feature" @@ -2877,34 +2541,35 @@ "coordinates": [ [ [ - 121.52261853157202, - 25.052501402425808 + 121.52295082336019, + 25.05319475065938 ], [ - 121.52264959436638, - 25.05310965774176 + 121.52295154406546, + 25.053212724502387 ], [ - 121.52262541400957, - 25.053110670377965 + 121.52299683433638, + 25.05321123342705 ], [ - 121.52259435121522, - 25.052502415062015 + 121.52299611363111, + 25.05319325958404 ], [ - 121.52261853157202, - 25.052501402425808 + 121.52295082336019, + 25.05319475065938 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 4498536439, - "osm_way_id": 506351826, - "src_i": 5246605990, - "type": "road" + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-1", + "osm_node_id": -1, + "type": "intersection" }, "type": "Feature" }, @@ -2913,3112 +2578,36 @@ "coordinates": [ [ [ - 121.52256780821577, - 25.05233592543886 + 121.5225248805875, + 25.051732441923722 ], [ - 121.52255661048095, - 25.05233756220431 + 121.52253062538284, + 25.05175412097203 ], [ - 121.5225433637989, - 25.052263190100383 + 121.52256864208964, + 25.051745852608548 ], [ - 121.52255456153372, - 25.052261553334933 - ], - [ - 121.52256780821577, - 25.05233592543886 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656416249, - "osm_way_id": 506351832, - "src_i": 656416158, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5225910117489, - 25.052124413973985 - ], - [ - 121.5225967495953, - 25.05212356861161 - ], - [ - 121.52261009753346, - 25.05219792632639 - ], - [ - 121.52260435968707, - 25.052198771688765 - ], - [ - 121.5225910117489, - 25.052124413973985 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656416189, - "osm_way_id": 506351837, - "src_i": 656416087, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52358223960336, - 25.052294889390804 - ], - [ - 121.52306502337937, - 25.052316242884668 - ], - [ - 121.52306123719492, - 25.052240985848215 - ], - [ - 121.5235784534189, - 25.05221963235435 - ], - [ - 121.52358223960336, - 25.052294889390804 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 662161955, - "osm_way_id": 506351852, - "src_i": 662161891, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52301549722775, - 25.052318313123166 - ], - [ - 121.52290340869634, - 25.052323057944328 - ], - [ - 121.522899527212, - 25.052247806303804 - ], - [ - 121.52301161574343, - 25.052243061482642 - ], - [ - 121.52301549722775, - 25.052318313123166 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605986, - "osm_way_id": 506351852, - "src_i": 662161955, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52371214226167, - 25.05228970210338 - ], - [ - 121.52363542785106, - 25.052292740911323 - ], - [ - 121.52363179454349, - 25.052217478478937 - ], - [ - 121.5237085089541, - 25.052214439670994 - ], - [ - 121.52371214226167, - 25.05228970210338 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 662161891, - "osm_way_id": 506351852, - "src_i": 4961152331, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52285076643747, - 25.052324475275288 - ], - [ - 121.52272807381001, - 25.052325794580184 - ], - [ - 121.52272708705927, - 25.052250465597997 - ], - [ - 121.52284977968672, - 25.0522491462931 - ], - [ - 121.52285076643747, - 25.052324475275288 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656416186, - "osm_way_id": 506351852, - "src_i": 5246605986, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52245060922878, - 25.05312990956657 - ], - [ - 121.52244817014771, - 25.053084997442095 - ], - [ - 121.52251139565577, - 25.053082178967962 - ], - [ - 121.52251383473684, - 25.053127091092442 - ], - [ - 121.52245060922878, - 25.05312990956657 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 662161241, - "osm_way_id": 515156284, - "src_i": 662161208, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52246595151529, - 25.05303841437794 - ], - [ - 121.52245378688386, - 25.052489816464664 - ], - [ - 121.52248543239722, - 25.05248924089879 - ], - [ - 121.52249759702865, - 25.05303783881207 - ], - [ - 121.52246595151529, - 25.05303841437794 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605988, - "osm_way_id": 515156284, - "src_i": 662161241, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52244995205676, - 25.052439999439766 - ], - [ - 121.52243946609285, - 25.052355811239753 - ], - [ - 121.52247091703563, - 25.05235259526544 - ], - [ - 121.52248140299955, - 25.052436783465456 - ], - [ - 121.52244995205676, - 25.052439999439766 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656416176, - "osm_way_id": 515156284, - "src_i": 5246605988, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52255358669547, - 25.053111201877076 - ], - [ - 121.52252167612934, - 25.052499023719978 - ], - [ - 121.52257003485755, - 25.052496955280123 - ], - [ - 121.52260194542367, - 25.05310913343722 - ], - [ - 121.52255358669547, - 25.053111201877076 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605989, - "osm_way_id": 515156285, - "src_i": 4498536440, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52251726354677, - 25.052446934109206 - ], - [ - 121.52250520017147, - 25.052342608298233 - ], - [ - 121.52255334844578, - 25.05233803974412 - ], - [ - 121.5225654118211, - 25.052442365555095 - ], - [ - 121.52251726354677, - 25.052446934109206 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656416249, - "osm_way_id": 515156285, - "src_i": 5246605989, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52240152483176, - 25.051445650939346 - ], - [ - 121.52244974656641, - 25.051595444655597 - ], - [ - 121.52256693959716, - 25.05202047487133 - ], - [ - 121.52250552280124, - 25.052034372988505 - ], - [ - 121.52238862559717, - 25.051610416562852 - ], - [ - 121.52234075329538, - 25.051461707428544 - ], - [ - 121.52240152483176, - 25.051445650939346 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605983, - "osm_way_id": 515156290, - "src_i": 656416084, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52257886002266, - 25.052068692002965 - ], - [ - 121.52259069209725, - 25.05212296786473 - ], - [ - 121.5225285883481, - 25.05213407808471 - ], - [ - 121.5225167562735, - 25.052079802222945 - ], - [ - 121.52257886002266, - 25.052068692002965 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656416087, - "osm_way_id": 515156290, - "src_i": 5246605983, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5223043020875, - 25.052276216774857 - ], - [ - 121.52230515978634, - 25.052281886098697 - ], - [ - 121.52225598505298, - 25.052287992492875 - ], - [ - 121.52225512735414, - 25.05228232316903 - ], - [ - 121.5223043020875, - 25.052276216774857 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605980, - "osm_way_id": 542684697, - "src_i": 656416266, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52228926356933, - 25.052176368686503 - ], - [ - 121.52228930923386, - 25.052176674455872 - ], - [ - 121.52224012258803, - 25.052182703508386 - ], - [ - 121.52224007692351, - 25.052182397739017 - ], - [ - 121.52228926356933, - 25.052176368686503 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656416266, - "osm_way_id": 542684697, - "src_i": 4568593108, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52231501538131, - 25.05234737290447 - ], - [ - 121.52231767385062, - 25.052365210949905 - ], - [ - 121.52226848521937, - 25.052371227411914 - ], - [ - 121.52226582675006, - 25.05235338936648 - ], - [ - 121.52231501538131, - 25.05234737290447 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 4568593109, - "osm_way_id": 542684697, - "src_i": 5246605980, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52224336675447, - 25.052192195848672 - ], - [ - 121.52153182019595, - 25.052326496950414 - ], - [ - 121.52152169657008, - 25.05228247695304 - ], - [ - 121.5222332431286, - 25.052148175851297 - ], - [ - 121.52224336675447, - 25.052192195848672 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605994, - "osm_way_id": 542684698, - "src_i": 4568593108, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52147903796539, - 25.052336494709483 - ], - [ - 121.52146328271279, - 25.05233948855134 - ], - [ - 121.52145309356827, - 25.052295479345823 - ], - [ - 121.52146884882087, - 25.052292485503965 - ], - [ - 121.52147903796539, - 25.052336494709483 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 6982946641, - "osm_way_id": 542684698, - "src_i": 5246605994, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52234257392, - 25.05211300697785 - ], - [ - 121.52232532166526, - 25.052154100582495 - ], - [ - 121.52229708212958, - 25.05217152583928 - ], - [ - 121.5222691413987, - 25.05213436227036 - ], - [ - 121.52228447772895, - 25.052124899607687 - ], - [ - 121.52229618075164, - 25.05209702243439 - ], - [ - 121.52234257392, - 25.05211300697785 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 4568593108, - "osm_way_id": 542684698, - "src_i": 5262459478, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52141481677224, - 25.052348785738822 - ], - [ - 121.52117226470305, - 25.05239574831672 - ], - [ - 121.52116189091504, - 25.05235177508407 - ], - [ - 121.5214044429842, - 25.052304812506172 - ], - [ - 121.52141481677224, - 25.052348785738822 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5235938226, - "osm_way_id": 542684698, - "src_i": 6982946641, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5225965232581, - 25.052065952669142 - ], - [ - 121.52257886101538, - 25.052068690204322 - ], - [ - 121.52257049051005, - 25.052024368034864 - ], - [ - 121.52258815275279, - 25.052021630499684 - ], - [ - 121.5225965232581, - 25.052065952669142 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605983, - "osm_way_id": 542684699, - "src_i": 4335733876, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52238065713817, - 25.05209894518413 - ], - [ - 121.52235672595083, - 25.052102522685757 - ], - [ - 121.52234864531594, - 25.052058157348856 - ], - [ - 121.5223725765033, - 25.052054579847233 - ], - [ - 121.52238065713817, - 25.05209894518413 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5262459478, - "osm_way_id": 542684699, - "src_i": 5246605981, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5224602285595, - 25.052086885280463 - ], - [ - 121.52243440030908, - 25.052090831503975 - ], - [ - 121.52242614495778, - 25.052046491348083 - ], - [ - 121.52245197320819, - 25.05204254512457 - ], - [ - 121.5224602285595, - 25.052086885280463 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605981, - "osm_way_id": 542684699, - "src_i": 5246605982, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52251379205045, - 25.05207870954711 - ], - [ - 121.52251362229755, - 25.05207873562744 - ], - [ - 121.52250532326713, - 25.05203440266612 - ], - [ - 121.52250549302002, - 25.05203437658579 - ], - [ - 121.52251379205045, - 25.05207870954711 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605982, - "osm_way_id": 542684699, - "src_i": 5246605983, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5226507895856, - 25.052057503542 - ], - [ - 121.52264964400173, - 25.052057682507012 - ], - [ - 121.52264120996317, - 25.052013371129416 - ], - [ - 121.52264235554702, - 25.052013192164402 - ], - [ - 121.5226507895856, - 25.052057503542 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 4335733876, - "osm_way_id": 542684699, - "src_i": 5246605984, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52284096544138, - 25.052107861958547 - ], - [ - 121.52284066068033, - 25.052102984037777 - ], - [ - 121.52289021661318, - 25.05210044255472 - ], - [ - 121.52289052137422, - 25.05210532047549 - ], - [ - 121.52284096544138, - 25.052107861958547 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605992, - "osm_way_id": 542684700, - "src_i": 5246605985, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52285019166013, - 25.0522804795596 - ], - [ - 121.5228498471908, - 25.052273495427464 - ], - [ - 121.52289943290485, - 25.052271488141486 - ], - [ - 121.52289977737418, - 25.052278472273617 - ], - [ - 121.52285019166013, - 25.0522804795596 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 9631718924, - "osm_way_id": 542684700, - "src_i": 5246605986, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52285572302347, - 25.052348632854137 - ], - [ - 121.5228539093478, - 25.052326367448092 - ], - [ - 121.52290340968904, - 25.052323057944328 - ], - [ - 121.5229052233647, - 25.05234532335037 - ], - [ - 121.52285572302347, - 25.052348632854137 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605986, - "osm_way_id": 542684700, - "src_i": 5246605991, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52284808315048, - 25.05223805855616 - ], - [ - 121.5228471331299, - 25.052219078372197 - ], - [ - 121.52289671685853, - 25.052217042307923 - ], - [ - 121.52289766687912, - 25.052236022491886 - ], - [ - 121.52284808315048, - 25.05223805855616 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 9631719043, - "osm_way_id": 542684700, - "src_i": 9631718924, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52284543460824, - 25.052185429352384 - ], - [ - 121.52284529165844, - 25.05218263695858 - ], - [ - 121.52289487340165, - 25.05218055412958 - ], - [ - 121.52289501635146, - 25.052183346523385 - ], - [ - 121.52284543460824, - 25.052185429352384 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605985, - "osm_way_id": 542684700, - "src_i": 9631719043, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52265565980608, - 25.052504764989553 - ], - [ - 121.52262742523394, - 25.05250220821803 - ], - [ - 121.52263236295849, - 25.05245746516603 - ], - [ - 121.52266059753063, - 25.052460021937552 - ], - [ - 121.52265565980608, - 25.052504764989553 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605990, - "osm_way_id": 542684701, - "src_i": 4335735091, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52272547986665, - 25.052511167260562 - ], - [ - 121.52271950972683, - 25.052510615077054 - ], - [ - 121.52272455069291, - 25.052465881018268 - ], - [ - 121.52273052083274, - 25.052466433201776 - ], - [ - 121.52272547986665, - 25.052511167260562 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 4335735091, - "osm_way_id": 542684701, - "src_i": 5246605987, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52244327113873, - 25.052484555432862 - ], - [ - 121.52242103847303, - 25.052481819696325 - ], - [ - 121.52242771939106, - 25.052437261904586 - ], - [ - 121.52244995205676, - 25.052439997641123 - ], - [ - 121.52244327113873, - 25.052484555432862 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 4568593153, - "osm_way_id": 542684701, - "src_i": 5246605988, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52251231986598, - 25.05249167806053 - ], - [ - 121.52249502293942, - 25.05249010964353 - ], - [ - 121.52249996662022, - 25.052445366591527 - ], - [ - 121.52251726354677, - 25.05244693500853 - ], - [ - 121.52251231986598, - 25.05249167806053 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605988, - "osm_way_id": 542684701, - "src_i": 5246605989, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52257799438217, - 25.05249768912661 - ], - [ - 121.52257003287214, - 25.052496954380803 - ], - [ - 121.52257506391115, - 25.052452220322017 - ], - [ - 121.52258302542118, - 25.052452955067825 - ], - [ - 121.52257799438217, - 25.05249768912661 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5246605989, - "osm_way_id": 542684701, - "src_i": 5246605990, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52140981452172, - 25.052302745864964 - ], - [ - 121.52131975713648, - 25.0518561355263 - ], - [ - 121.52128279766262, - 25.051813729811332 - ], - [ - 121.52122089146215, - 25.051804600797006 - ], - [ - 121.52122727059725, - 25.051769095577253 - ], - [ - 121.5213044029375, - 25.051780469298485 - ], - [ - 121.52135704321095, - 25.05184086504425 - ], - [ - 121.52144887555627, - 25.05229628154076 - ], - [ - 121.52140981452172, - 25.052302745864964 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 6982946638, - "osm_way_id": 746179639, - "src_i": 6982946641, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52141685877051, - 25.05237060148403 - ], - [ - 121.52141557222225, - 25.05234863914939 - ], - [ - 121.52145522491017, - 25.052346732587438 - ], - [ - 121.52145651145842, - 25.052368694922077 - ], - [ - 121.52141685877051, - 25.05237060148403 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 6982946641, - "osm_way_id": 746179639, - "src_i": 6982946642, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52217546162566, - 25.051432610775052 - ], - [ - 121.52234631443993, - 25.05205676699755 - ], - [ - 121.5222981383698, - 25.052067589434593 - ], - [ - 121.52212728555554, - 25.051443433212096 - ], - [ - 121.52217546162566, - 25.051432610775052 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 5262459478, - "osm_way_id": 1012478860, - "src_i": 4568593105, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5221420947584, - 25.05134516523193 - ], - [ - 121.52215975997923, - 25.05138718783586 - ], - [ - 121.52211337475252, - 25.051403190365757 - ], - [ - 121.52209570953167, - 25.051361167761822 - ], - [ - 121.5221420947584, - 25.05134516523193 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 4568593105, - "osm_way_id": 1012478860, - "src_i": 7702095012, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5228498471908, - 25.052273494528144 - ], - [ - 121.52273242087392, - 25.0522864708406 - ], - [ - 121.5227300165376, - 25.052268617506698 - ], - [ - 121.52284744285448, - 25.05225564119424 - ], - [ - 121.5228498471908, - 25.052273494528144 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 656416186, - "osm_way_id": 1047456820, - "src_i": 9631718924, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52361143908671, - 25.05223864221593 - ], - [ - 121.52289940411634, - 25.052269648129336 - ], - [ - 121.52289845111764, - 25.052251683279547 - ], - [ - 121.52361048608799, - 25.052220677366137 - ], - [ - 121.52361143908671, - 25.05223864221593 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 9631718924, - "osm_way_id": 1047456820, - "src_i": 9631718933, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52285794073087, - 25.052182140533017 - ], - [ - 121.52287159740091, - 25.052184313294184 - ], - [ - 121.52286816263472, - 25.05220202813255 - ], - [ - 121.5228545059647, - 25.05219985537138 - ], - [ - 121.52285794073087, - 25.052182140533017 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 9631719043, - "osm_way_id": 1047456821, - "src_i": 656416189, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52289502627853, - 25.05218334382542 - ], - [ - 121.52361026669975, - 25.052153743551788 - ], - [ - 121.52361117204852, - 25.052171711998866 - ], - [ - 121.5228959316273, - 25.052201312272498 - ], - [ - 121.52289502627853, - 25.05218334382542 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "dst_i": 9735064047, - "osm_way_id": 1047456821, - "src_i": 9631719043, - "type": "road" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52295082236749, - 25.053194763249884 - ], - [ - 121.52295154505818, - 25.053212737092892 - ], - [ - 121.5229970805277, - 25.05321123342705 - ], - [ - 121.52299635783702, - 25.05319325958404 - ], - [ - 121.52295082236749, - 25.053194763249884 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/-1", - "osm_node_id": -1, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52252487066043, - 25.051732410447464 - ], - [ - 121.52253047349866, - 25.051754090395097 - ], - [ - 121.52256853984082, - 25.051746016285094 - ], - [ - 121.52256575430502, - 25.051734403344295 - ], - [ - 121.52256072525141, - 25.051717003268518 - ], - [ - 121.52255597713389, - 25.051701498063508 - ], - [ - 121.5225183039037, - 25.05171096612211 - ], - [ - 121.52252487066043, - 25.051732410447464 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/656415898", - "osm_node_id": 656415898, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52337630055331, - 25.05152507273448 - ], - [ - 121.52338125813202, - 25.051542489897372 - ], - [ - 121.52338434048721, - 25.051553316831026 - ], - [ - 121.52346005623458, - 25.051535625375024 - ], - [ - 121.52345699671166, - 25.051524878481 - ], - [ - 121.5234521165641, - 25.051507444230996 - ], - [ - 121.52344766030244, - 25.051492085615422 - ], - [ - 121.52337194455505, - 25.051509773474137 - ], - [ - 121.52337630055331, - 25.05152507273448 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/656415900", - "osm_node_id": 656415900, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52371305058857, - 25.051466051152236 - ], - [ - 121.52370817044101, - 25.051448616902235 - ], - [ - 121.52361194536726, - 25.051470724027663 - ], - [ - 121.52361682551482, - 25.051488158277664 - ], - [ - 121.52371305058857, - 25.051466051152236 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/656415902", - "osm_node_id": 656415902, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5234823345648, - 25.051893208263735 - ], - [ - 121.52355706753227, - 25.05187236918187 - ], - [ - 121.52355238989695, - 25.05185860326498 - ], - [ - 121.52354726554347, - 25.051841226571565 - ], - [ - 121.5235440590999, - 25.05183068382356 - ], - [ - 121.52346834335252, - 25.05184837527956 - ], - [ - 121.5234823345648, - 25.051893208263735 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/656415914", - "osm_node_id": 656415914, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52371192188072, - 25.051819993586804 - ], - [ - 121.52370679752725, - 25.051802616893386 - ], - [ - 121.52361089011974, - 25.051825828385834 - ], - [ - 121.5236160144732, - 25.05184320507925 - ], - [ - 121.52371192188072, - 25.051819993586804 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/656415916", - "osm_node_id": 656415916, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5234103920967, - 25.05136115607064 - ], - [ - 121.52333467634931, - 25.051378843929356 - ], - [ - 121.52335946325009, - 25.051465927045847 - ], - [ - 121.52343518098289, - 25.05144823918713 - ], - [ - 121.5234103920967, - 25.05136115607064 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/656415970", - "osm_node_id": 656415970, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52354387941993, - 25.05207801167349 - ], - [ - 121.5235477112689, - 25.052153265112658 - ], - [ - 121.52359470006148, - 25.05215130099412 - ], - [ - 121.52362595941182, - 25.052150299149773 - ], - [ - 121.52362302298455, - 25.05207501153638 - ], - [ - 121.523620473713, - 25.0520637601229 - ], - [ - 121.52354387941993, - 25.05207801167349 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/656415974", - "osm_node_id": 656415974, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52237185679073, - 25.051358023733243 - ], - [ - 121.52231228245897, - 25.051377414907215 - ], - [ - 121.52234075329538, - 25.051461707428544 - ], - [ - 121.52240152483176, - 25.051445650939346 - ], - [ - 121.52237185679073, - 25.051358023733243 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/656416084", - "osm_node_id": 656416084, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5225285883481, - 25.052134078984032 - ], - [ - 121.52254358120173, - 25.052208179492812 - ], - [ - 121.52259178804577, - 25.05220062609006 - ], - [ - 121.52260436067978, - 25.052198771688765 - ], - [ - 121.5225910107562, - 25.052124413973985 - ], - [ - 121.52259069209725, - 25.052122966965406 - ], - [ - 121.5225285883481, - 25.052134078984032 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/656416087", - "osm_node_id": 656416087, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52255460620555, - 25.052261547039684 - ], - [ - 121.52256780821577, - 25.05233592543886 - ], - [ - 121.52257737592572, - 25.052334526993654 - ], - [ - 121.52260146296807, - 25.052332363225705 - ], - [ - 121.52261331092598, - 25.05233088653951 - ], - [ - 121.52260638977286, - 25.05225581296468 - ], - [ - 121.52260270782264, - 25.052256091754398 - ], - [ - 121.52260226507532, - 25.052253846148176 - ], - [ - 121.52255460620555, - 25.052261547039684 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/656416158", - "osm_node_id": 656416158, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52241728405521, - 25.052260645919365 - ], - [ - 121.5224392606025, - 25.052355849910583 - ], - [ - 121.52247091703563, - 25.05235259526544 - ], - [ - 121.52246952426773, - 25.05234141040176 - ], - [ - 121.52247631934706, - 25.05234144817327 - ], - [ - 121.52247682562762, - 25.052266115593795 - ], - [ - 121.52247178168342, - 25.052266087714823 - ], - [ - 121.52247072345777, - 25.052256030600525 - ], - [ - 121.52241728405521, - 25.052260645919365 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/656416176", - "osm_node_id": 656416176, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52240088056493, - 25.052155849763153 - ], - [ - 121.52239475556281, - 25.052156991901683 - ], - [ - 121.52241640451682, - 25.052252257046774 - ], - [ - 121.52246984094126, - 25.052247643526577 - ], - [ - 121.52246788233037, - 25.05222902576925 - ], - [ - 121.52247722370313, - 25.052225893431856 - ], - [ - 121.52244835379851, - 25.052155244519664 - ], - [ - 121.52244162125972, - 25.052157502716394 - ], - [ - 121.52243882381143, - 25.052147306207235 - ], - [ - 121.52240088056493, - 25.052155849763153 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/656416177", - "osm_node_id": 656416177, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5221612162804, - 25.05126001475772 - ], - [ - 121.52212464296954, - 25.0512725315168 - ], - [ - 121.52215533846231, - 25.051346144593232 - ], - [ - 121.52219191177316, - 25.05133362783415 - ], - [ - 121.5221612162804, - 25.05126001475772 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/656416180", - "osm_node_id": 656416180, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52261928305121, - 25.05225483720066 - ], - [ - 121.52262620618974, - 25.052329910775494 - ], - [ - 121.52264987629516, - 25.05232812022604 - ], - [ - 121.52265004306994, - 25.05233016528353 - ], - [ - 121.52271317526355, - 25.0523259528608 - ], - [ - 121.52272807381001, - 25.052325794580184 - ], - [ - 121.52272708705927, - 25.052250465597997 - ], - [ - 121.52273242087392, - 25.0522864708406 - ], - [ - 121.5227300165376, - 25.052268617506698 - ], - [ - 121.52272551957493, - 25.05224076191712 - ], - [ - 121.52261928305121, - 25.05225483720066 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/656416186", - "osm_node_id": 656416186, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52262662709751, - 25.052119165532684 - ], - [ - 121.5225967495953, - 25.05212356861161 - ], - [ - 121.52261009753346, - 25.05219792632639 - ], - [ - 121.52261085496889, - 25.05220262258418 - ], - [ - 121.52271708851448, - 25.052188544602668 - ], - [ - 121.52271534035748, - 25.052177715870375 - ], - [ - 121.5228545059647, - 25.05219985537138 - ], - [ - 121.52285794073087, - 25.052182140533017 - ], - [ - 121.52285377433965, - 25.052106901482997 - ], - [ - 121.52266593035257, - 25.05211544413959 - ], - [ - 121.52266450780346, - 25.052110399844313 - ], - [ - 121.52262662709751, - 25.052119165532684 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/656416189", - "osm_node_id": 656416189, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52245247055438, - 25.05136346283074 - ], - [ - 121.5224147973242, - 25.05137293088934 - ], - [ - 121.52244133238199, - 25.05145959042532 - ], - [ - 121.52247900561217, - 25.051450122366717 - ], - [ - 121.52245247055438, - 25.05136346283074 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/656416199", - "osm_node_id": 656416199, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52249969064768, - 25.05226624149883 - ], - [ - 121.52249918436712, - 25.052341574078305 - ], - [ - 121.52250508501746, - 25.052341606453886 - ], - [ - 121.52250520017147, - 25.052342608298233 - ], - [ - 121.52255334844578, - 25.05233803974412 - ], - [ - 121.52255661048095, - 25.05233756220431 - ], - [ - 121.5225433637989, - 25.052263190100383 - ], - [ - 121.52253180968228, - 25.05226487902649 - ], - [ - 121.52253146719836, - 25.052262512911163 - ], - [ - 121.52249969064768, - 25.05226624149883 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/656416249", - "osm_node_id": 656416249, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52247366187046, - 25.05214675672169 - ], - [ - 121.52246458058693, - 25.052149801824886 - ], - [ - 121.52249345247697, - 25.052220450737074 - ], - [ - 121.52252483393026, - 25.052216720350764 - ], - [ - 121.52252406656777, - 25.05221142064813 - ], - [ - 121.52253826624852, - 25.052209061727375 - ], - [ - 121.52252327041676, - 25.052134963017238 - ], - [ - 121.52251148202129, - 25.052136919941205 - ], - [ - 121.52247292627457, - 25.05214278891446 - ], - [ - 121.52247366187046, - 25.05214675672169 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/656416254", - "osm_node_id": 656416254, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52228603032268, - 25.05136617338627 - ], - [ - 121.52224939149318, - 25.051378533663378 - ], - [ - 121.52227890268651, - 25.051463050115803 - ], - [ - 121.52231640914192, - 25.05145304786013 - ], - [ - 121.52228603032268, - 25.05136617338627 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/656416259", - "osm_node_id": 656416259, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52223352605009, - 25.05218704903072 - ], - [ - 121.52225512536873, - 25.05228232316903 - ], - [ - 121.5223043030802, - 25.052276217674176 - ], - [ - 121.52230385437664, - 25.052273247214682 - ], - [ - 121.52231095322432, - 25.052271923413176 - ], - [ - 121.52228930427033, - 25.05217665826808 - ], - [ - 121.52224012457344, - 25.052182719696177 - ], - [ - 121.52223352605009, - 25.05218704903072 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/656416266", - "osm_node_id": 656416266, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52376237124984, - 25.052145931144395 - ], - [ - 121.52375943482258, - 25.052070643531003 - ], - [ - 121.5237082677263, - 25.052072282095093 - ], - [ - 121.52371120613898, - 25.052147569708488 - ], - [ - 121.52376237124984, - 25.052145931144395 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/656416271", - "osm_node_id": 656416271, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52245487786884, - 25.053208504885085 - ], - [ - 121.5225181033769, - 25.053205686410955 - ], - [ - 121.52251383473684, - 25.053127091092442 - ], - [ - 121.52245060922878, - 25.05312990956657 - ], - [ - 121.52245487786884, - 25.053208504885085 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/662161208", - "osm_node_id": 662161208, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5210687650725, - 25.053103188021627 - ], - [ - 121.52107123492749, - 25.053143040562357 - ], - [ - 121.52117034977128, - 25.053137999864365 - ], - [ - 121.52116787991629, - 25.053098147323634 - ], - [ - 121.5210687650725, - 25.053103188021627 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/662161237", - "osm_node_id": 662161237, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52244817014771, - 25.053084997442095 - ], - [ - 121.52251139565577, - 25.053082178967962 - ], - [ - 121.52249759702865, - 25.05303783881207 - ], - [ - 121.52246595151529, - 25.05303841437794 - ], - [ - 121.52245318530342, - 25.053036967369366 - ], - [ - 121.5224477135025, - 25.053076573495957 - ], - [ - 121.52244817014771, - 25.053084997442095 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/662161241", - "osm_node_id": 662161241, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52382008624141, - 25.052765591657835 - ], - [ - 121.52381925038213, - 25.052747621412113 - ], - [ - 121.52373246396643, - 25.052750930915877 - ], - [ - 121.52373329982571, - 25.0527689011616 - ], - [ - 121.52382008624141, - 25.052765591657835 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/662161764", - "osm_node_id": 662161764, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5238371727141, - 25.053187191860697 - ], - [ - 121.52383689475613, - 25.053169207225828 - ], - [ - 121.52375004182906, - 25.053170310693524 - ], - [ - 121.52375031978701, - 25.053188295328393 - ], - [ - 121.5238371727141, - 25.053187191860697 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/662161824", - "osm_node_id": 662161824, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52360324528323, - 25.05221860892628 - ], - [ - 121.5235784534189, - 25.05221963235435 - ], - [ - 121.52358223960336, - 25.052294889390804 - ], - [ - 121.52361677687217, - 25.05229890666073 - ], - [ - 121.52363542785106, - 25.052292740911323 - ], - [ - 121.52363179454349, - 25.052217478478937 - ], - [ - 121.52360324528323, - 25.05221860892628 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "TrafficSignal", - "osm_link": "https://www.openstreetmap.org/node/662161891", - "osm_node_id": 662161891, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52365064505648, - 25.05275403447498 - ], - [ - 121.52363331040706, - 25.052754654107616 - ], - [ - 121.52363409464559, - 25.05277262615198 - ], - [ - 121.52365143922208, - 25.052772006519344 - ], - [ - 121.52365208944515, - 25.05278771946766 - ], - [ - 121.52367192968701, - 25.052787044976405 - ], - [ - 121.52367127648581, - 25.052771267276928 - ], - [ - 121.52368370914813, - 25.052770792435084 - ], - [ - 121.52368287328885, - 25.052752822189362 - ], - [ - 121.52367048132751, - 25.052753295232563 - ], - [ - 121.52366996611259, - 25.052742069000086 - ], - [ - 121.52365012984156, - 25.05274281723572 - ], - [ - 121.52365064505648, - 25.05275403447498 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/662161900", - "osm_node_id": 662161900, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.5236679797059, - 25.05317149959678 - ], - [ - 121.523650633144, - 25.053172059874182 - ], - [ - 121.52365133995137, - 25.053190035515836 - ], - [ - 121.52366867658621, - 25.053189675787166 - ], - [ - 121.5236885207989, - 25.053189080436216 - ], - [ - 121.52370068940115, - 25.053188925752888 - ], - [ - 121.5237004114432, - 25.05317094111802 - ], - [ - 121.52368783186024, - 25.053171100297956 - ], - [ - 121.52368716972468, - 25.053155111257887 - ], - [ - 121.52366732948283, - 25.053155785749144 - ], - [ - 121.5236679797059, - 25.05317149959678 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/662161907", - "osm_node_id": 662161907, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52367318943217, - 25.05331326506843 - ], - [ - 121.52369303364486, - 25.05331266971748 - ], - [ - 121.52369016174354, - 25.05323402223831 - ], - [ - 121.52367031753086, - 25.053234617589258 - ], - [ - 121.52367318943217, - 25.05331326506843 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/662161928", - "osm_node_id": 662161928, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52303640661503, - 25.052242011974247 - ], - [ - 121.52301161574343, - 25.052243061482642 - ], - [ - 121.52301549722775, - 25.052318313123166 - ], - [ - 121.5230289156481, - 25.052317744751868 - ], - [ - 121.52304875291185, - 25.052316914677963 - ], - [ - 121.52306502337937, - 25.052316242884668 - ], - [ - 121.52306123719492, - 25.052240985848215 - ], - [ - 121.52303640661503, - 25.052242011974247 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/662161955", - "osm_node_id": 662161955, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52305303644249, - 25.05277543743154 - ], - [ - 121.52304068816026, - 25.052775902380844 - ], - [ - 121.52304151409248, - 25.052793872626566 - ], - [ - 121.52305395469645, - 25.05279340407997 - ], - [ - 121.52305478062867, - 25.052809189873344 - ], - [ - 121.52307461292888, - 25.052808337316396 - ], - [ - 121.5230737929529, - 25.052792671132806 + 121.52256562922393, + 25.051734482484605 ], [ - 121.52309109285758, - 25.052792052399493 - ], - [ - 121.52309030861906, - 25.052774080355128 - ], - [ - 121.52307287569164, - 25.05277470358505 + 121.52256073914931, + 25.051717049133924 ], [ - 121.52307230786325, - 25.05276343238649 + 121.52255597713389, + 25.051701498063508 ], [ - 121.52305247357764, - 25.052764252567858 + 121.5225183039037, + 25.05171096612211 ], [ - 121.52305303644249, - 25.05277543743154 + 121.5225248805875, + 25.051732441923722 ] ] ], @@ -6027,8 +2616,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/662161961", - "osm_node_id": 662161961, + "osm_link": "https://www.openstreetmap.org/node/656415898", + "osm_node_id": 656415898, "type": "intersection" }, "type": "Feature" @@ -6038,34 +2627,50 @@ "coordinates": [ [ [ - 121.52308152316222, - 25.053321048697534 + 121.52337630055331, + 25.051525076331767 ], [ - 121.52310135546242, - 25.053320203335158 + 121.52338125912472, + 25.051542493494658 ], [ - 121.52309727146587, - 25.053241599023426 + 121.52338434048721, + 25.051553316831026 ], [ - 121.52307743916568, - 25.053242444385802 + 121.52346005623458, + 25.051535625375024 ], [ - 121.52308152316222, - 25.053321048697534 + 121.52345699671166, + 25.051524878481 + ], + [ + 121.5234521165641, + 25.051507444230996 + ], + [ + 121.52344766030244, + 25.051492085615422 + ], + [ + 121.52337194455505, + 25.051509773474137 + ], + [ + 121.52337630055331, + 25.051525076331767 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/662161969", - "osm_node_id": 662161969, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/656415900", + "osm_node_id": 656415900, "type": "intersection" }, "type": "Feature" @@ -6075,42 +2680,34 @@ "coordinates": [ [ [ - 121.52267418173305, - 25.05282366535503 - ], - [ - 121.52273740327028, - 25.05282076054602 - ], - [ - 121.52273662796613, - 25.05280536056165 + 121.52371305058857, + 25.051466051152236 ], [ - 121.52273580203392, - 25.052787390315927 + 121.52370817044101, + 25.051448616902235 ], [ - 121.52273545260105, - 25.052776588563283 + 121.52361194536726, + 25.051470724027663 ], [ - 121.52267217745765, - 25.052778270294816 + 121.52361682551482, + 25.051488158277664 ], [ - 121.52267418173305, - 25.05282366535503 + 121.52371305058857, + 25.051466051152236 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/662161980", - "osm_node_id": 662161980, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/656415902", + "osm_node_id": 656415902, "type": "intersection" }, "type": "Feature" @@ -6120,34 +2717,42 @@ "coordinates": [ [ [ - 121.52269531547212, - 25.05320111066227 + 121.5234823345648, + 25.051893208263735 ], [ - 121.52275853700935, - 25.053198205853256 + 121.52355706753227, + 25.05187236918187 ], [ - 121.52275350795576, - 25.053108388798876 + 121.52355238989695, + 25.05185860326498 ], [ - 121.52269028641852, - 25.053111293607888 + 121.52354726554347, + 25.051841226571565 ], [ - 121.52269531547212, - 25.05320111066227 + 121.5235440590999, + 25.05183068382356 + ], + [ + 121.52346834335252, + 25.05184837527956 + ], + [ + 121.5234823345648, + 25.051893208263735 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/662162162", - "osm_node_id": 662162162, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/656415914", + "osm_node_id": 656415914, "type": "intersection" }, "type": "Feature" @@ -6157,24 +2762,24 @@ "coordinates": [ [ [ - 121.52107222564906, - 25.051438917717963 + 121.52371192188072, + 25.051819993586804 ], [ - 121.52106777435093, - 25.051478628165867 + 121.52370679752725, + 25.051802616893386 ], [ - 121.52116652586396, - 25.051487714012758 + 121.52361089011974, + 25.051825828385834 ], [ - 121.52117061085322, - 25.051447969390626 + 121.5236160144732, + 25.05184320507925 ], [ - 121.52107222564906, - 25.051438917717963 + 121.52371192188072, + 25.051819993586804 ] ] ], @@ -6183,8 +2788,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/2137955716", - "osm_node_id": 2137955716, + "osm_link": "https://www.openstreetmap.org/node/656415916", + "osm_node_id": 656415916, "type": "intersection" }, "type": "Feature" @@ -6194,24 +2799,24 @@ "coordinates": [ [ [ - 121.52105766760108, - 25.05240653657954 + 121.5234103920967, + 25.05136115607064 ], [ - 121.52107932846756, - 25.05250179992599 + 121.52333467634931, + 25.051378843929356 ], [ - 121.52117655816078, - 25.052483655211862 + 121.52335946325009, + 25.051465927045847 ], [ - 121.52115489729431, - 25.052388391865414 + 121.52343518098289, + 25.05144823918713 ], [ - 121.52105766760108, - 25.05240653657954 + 121.5234103920967, + 25.05136115607064 ] ] ], @@ -6220,8 +2825,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/2137955730", - "osm_node_id": 2137955730, + "osm_link": "https://www.openstreetmap.org/node/656415970", + "osm_node_id": 656415970, "type": "intersection" }, "type": "Feature" @@ -6231,32 +2836,32 @@ "coordinates": [ [ [ - 121.52142936092231, - 25.051688637763547 + 121.52354388636888, + 25.05207805034432 ], [ - 121.52148334829914, - 25.051688727695716 + 121.52354779664171, + 25.052153301984845 ], [ - 121.52148338105847, - 25.051672827688492 + 121.52359476855825, + 25.052151298296153 ], [ - 121.52148350216872, - 25.05165484035566 + 121.52362595941182, + 25.052150299149773 ], [ - 121.52148360441754, - 25.051643926187804 + 121.52362302298455, + 25.05207501153638 ], [ - 121.52142961902612, - 25.051643508902547 + 121.52362048264736, + 25.05206379789441 ], [ - 121.52142936092231, - 25.051688637763547 + 121.52354388636888, + 25.05207805034432 ] ] ], @@ -6264,9 +2869,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2137955743", - "osm_node_id": 2137955743, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/656415974", + "osm_node_id": 656415974, "type": "intersection" }, "type": "Feature" @@ -6276,54 +2881,34 @@ "coordinates": [ [ [ - 121.52189606722204, - 25.051499000499785 - ], - [ - 121.52189772603543, - 25.05150389370902 - ], - [ - 121.52191670460762, - 25.0514986110935 - ], - [ - 121.52191593128887, - 25.05149632951441 - ], - [ - 121.5219322146616, - 25.05149211619236 - ], - [ - 121.52192011356341, - 25.05145373494189 + 121.52237185679073, + 25.051358023733243 ], [ - 121.52189932826451, - 25.05145911288551 + 121.52231228245897, + 25.051377414907215 ], [ - 121.52187771405526, - 25.051458908739487 + 121.52234075329538, + 25.051461707428544 ], [ - 121.52187725343921, - 25.051498822434095 + 121.52240152483176, + 25.051445650939346 ], [ - 121.52189606722204, - 25.051499000499785 + 121.52237185679073, + 25.051358023733243 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2137955785", - "osm_node_id": 2137955785, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/656416084", + "osm_node_id": 656416084, "type": "intersection" }, "type": "Feature" @@ -6333,32 +2918,32 @@ "coordinates": [ [ [ - 121.52217298779985, - 25.051388476563822 + 121.5225285883481, + 25.052134078984032 ], [ - 121.52218486851709, - 25.051426913572236 + 121.52254358120173, + 25.052208179492812 ], [ - 121.52218661171055, - 25.051426472005293 + 121.52259178804577, + 25.05220062609006 ], [ - 121.5221872569701, - 25.051428651061713 + 121.52260436067978, + 25.052198772588085 ], [ - 121.52222501954391, - 25.05141947618198 + 121.52259100877079, + 25.052124414873305 ], [ - 121.52220945191293, - 25.051375692706205 + 121.52259069209725, + 25.052122966965406 ], [ - 121.52217298779985, - 25.051388476563822 + 121.5225285883481, + 25.052134078984032 ] ] ], @@ -6366,9 +2951,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2137955831", - "osm_node_id": 2137955831, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/656416087", + "osm_node_id": 656416087, "type": "intersection" }, "type": "Feature" @@ -6378,44 +2963,40 @@ "coordinates": [ [ [ - 121.52143102370651, - 25.051494206215935 - ], - [ - 121.52143099591072, - 25.05149717307814 + 121.52255460620555, + 25.052261547039684 ], [ - 121.52148498130214, - 25.051497590363397 + 121.52256780821577, + 25.05233592543886 ], [ - 121.52148500413439, - 25.05149511183286 + 121.52257737592572, + 25.052334526993654 ], [ - 121.52148546375773, - 25.051455198138257 + 121.52260146296807, + 25.052332363225705 ], [ - 121.52148434696237, - 25.05145518824572 + 121.52261331092598, + 25.05233088653951 ], [ - 121.52148418217301, - 25.05145145965805 + 121.52260638977286, + 25.05225581296468 ], [ - 121.52143023847529, - 25.05145340938744 + 121.52260270782264, + 25.052256091754398 ], [ - 121.52142910182579, - 25.051494159451206 + 121.52260226507532, + 25.052253846148176 ], [ - 121.52143102370651, - 25.051494206215935 + 121.52255460620555, + 25.052261547039684 ] ] ], @@ -6423,9 +3004,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2137955862", - "osm_node_id": 2137955862, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/656416158", + "osm_node_id": 656416158, "type": "intersection" }, "type": "Feature" @@ -6435,28 +3016,40 @@ "coordinates": [ [ [ - 121.52147712601173, - 25.052327961046103 + 121.52241727214272, + 25.052260529007548 + ], + [ + 121.52243872255531, + 25.05235583192415 + ], + [ + 121.52247090313774, + 25.05235248285023 + ], + [ + 121.52246952426773, + 25.05234141040176 ], [ - 121.52149943015235, - 25.052423102084806 + 121.52247631934706, + 25.05234144817327 ], [ - 121.52152658366658, - 25.05241787792519 + 121.52247682562762, + 25.052266115593795 ], [ - 121.52155158102124, - 25.052413226633483 + 121.52247178168342, + 25.052266087714823 ], [ - 121.5215299817026, - 25.052317952495176 + 121.5224707115453, + 25.052255913688708 ], [ - 121.52147712601173, - 25.052327961046103 + 121.52241727214272, + 25.052260529007548 ] ] ], @@ -6464,9 +3057,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2137955866", - "osm_node_id": 2137955866, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/656416176", + "osm_node_id": 656416176, "type": "intersection" }, "type": "Feature" @@ -6476,48 +3069,44 @@ "coordinates": [ [ [ - 121.52307474595162, - 25.05319067133626 - ], - [ - 121.52306242844331, - 25.053191077829656 + 121.52240048248943, + 25.05215591271567 ], [ - 121.523063151134, - 25.053209051672663 + 121.52239478931486, + 25.052156973015926 ], [ - 121.52307510531153, - 25.053197528664036 + 121.52241639856057, + 25.052252245355593 ], [ - 121.52309493761175, - 25.05319668330166 + 121.52246983994856, + 25.052247630036753 ], [ - 121.52311274379699, - 25.05320743289365 + 121.52246788233037, + 25.052229026668574 ], [ - 121.52311203698962, - 25.053189457251996 + 121.52247722370313, + 25.052225893431856 ], [ - 121.52309458917159, - 25.05319002112669 + 121.52244835379851, + 25.052155244519664 ], [ - 121.52309376224667, - 25.05317422184349 + 121.52244131153513, + 25.052157606138387 ], [ - 121.52307392994646, - 25.05317507440044 + 121.52243836220268, + 25.05214714612798 ], [ - 121.52307474595162, - 25.05319067133626 + 121.52240048248943, + 25.05215591271567 ] ] ], @@ -6525,9 +3114,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/2637893915", - "osm_node_id": 2637893915, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/656416177", + "osm_node_id": 656416177, "type": "intersection" }, "type": "Feature" @@ -6537,24 +3126,24 @@ "coordinates": [ [ [ - 121.5214787391606, - 25.051327900953723 + 121.5221612162804, + 25.05126001475772 ], [ - 121.52142479546288, - 25.051329850683114 + 121.52212464296954, + 25.0512725315168 ], [ - 121.52142660715313, - 25.051370974864696 + 121.52215533846231, + 25.051346144593232 ], [ - 121.52148055085084, - 25.0513690251353 + 121.52219191177316, + 25.05133362783415 ], [ - 121.5214787391606, - 25.051327900953723 + 121.5221612162804, + 25.05126001475772 ] ] ], @@ -6563,8 +3152,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/3143261407", - "osm_node_id": 3143261407, + "osm_link": "https://www.openstreetmap.org/node/656416180", + "osm_node_id": 656416180, "type": "intersection" }, "type": "Feature" @@ -6574,36 +3163,48 @@ "coordinates": [ [ [ - 121.52353121942772, - 25.052037083544036 + 121.52261928305121, + 25.05225483720066 + ], + [ + 121.52262620618974, + 25.052329910775494 ], [ - 121.52353278790476, - 25.05208202624545 + 121.52264987629516, + 25.05232812022604 ], [ - 121.52354137978374, - 25.05206698688907 + 121.52264999542001, + 25.052329581623763 + ], + [ + 121.5227131276136, + 25.052325369201032 + ], + [ + 121.52272922733553, + 25.052324971700852 ], [ - 121.52361797506951, - 25.05205273803644 + 121.52272695602194, + 25.052249666101027 ], [ - 121.52361404692796, - 25.05207951444001 + 121.52273242285933, + 25.05228646094806 ], [ - 121.52361218262423, - 25.05203458073181 + 121.52273001455218, + 25.05226860761416 ], [ - 121.52360595140247, - 25.052016243562846 + 121.52272551957493, + 25.05224076191712 ], [ - 121.52353121942772, - 25.052037083544036 + 121.52261928305121, + 25.05225483720066 ] ] ], @@ -6611,9 +3212,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4335733875", - "osm_node_id": 4335733875, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/656416186", + "osm_node_id": 656416186, "type": "intersection" }, "type": "Feature" @@ -6623,87 +3224,62 @@ "coordinates": [ [ [ - 121.52259918073472, - 25.052019920889176 - ], - [ - 121.52258815275279, - 25.052021630499684 + 121.52262734383196, + 25.052119060312048 ], [ - 121.5225965232581, - 25.052065952669142 + 121.52259674165364, + 25.052123570410252 ], [ - 121.52261099196245, - 25.052063709760883 + 121.52261009753346, + 25.05219792632639 ], [ - 121.52261176428848, - 25.052066448195387 + 121.5226108847501, + 25.052202803347836 ], [ - 121.52264964598714, - 25.052057683406336 + 121.5227171182957, + 25.052188727164967 ], [ - 121.52264120897046, - 25.052013371129416 + 121.52271534035748, + 25.052177715870375 ], [ - 121.52263724608416, - 25.052011846779173 + 121.5228573897785, + 25.052200314025438 ], [ - 121.52259918073472, - 25.052019920889176 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4335733876", - "osm_node_id": 4335733876, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52380126153881, - 25.052348073476054 + 121.52286082454468, + 25.05218259918707 ], [ - 121.52379845217803, - 25.05230317933801 + 121.52285691427186, + 25.052107347546546 ], [ - 121.52371172830286, - 25.05230763457759 + 121.52266659844437, + 25.052115463924668 ], [ - 121.52371453964905, - 25.052352528715634 + 121.52266536053877, + 25.05211079104924 ], [ - 121.52380126153881, - 25.052348073476054 + 121.52262734383196, + 25.052119060312048 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/4335733879", - "osm_node_id": 4335733879, + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/656416189", + "osm_node_id": 656416189, "type": "intersection" }, "type": "Feature" @@ -6713,50 +3289,34 @@ "coordinates": [ [ [ - 121.52361275740158, - 25.052312584444092 - ], - [ - 121.52361527093568, - 25.052357492971286 - ], - [ - 121.52363239612393, - 25.052356706064817 - ], - [ - 121.52365223239495, - 25.052355957829185 - ], - [ - 121.52366498371622, - 25.0523550746953 + 121.52245247055438, + 25.05136346283074 ], [ - 121.52366217237002, - 25.052310180557253 + 121.5224147973242, + 25.05137293088934 ], [ - 121.52364076464383, - 25.052305988818926 + 121.52244133238199, + 25.05145959042532 ], [ - 121.52362211366494, - 25.052312154568334 + 121.52247900561217, + 25.051450122366717 ], [ - 121.52361275740158, - 25.052312584444092 + 121.52245247055438, + 25.05136346283074 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4335733886", - "osm_node_id": 4335733886, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/656416199", + "osm_node_id": 656416199, "type": "intersection" }, "type": "Feature" @@ -6766,40 +3326,44 @@ "coordinates": [ [ [ - 121.52301843961126, - 25.05234000386266 + 121.52249969064768, + 25.05226624149883 + ], + [ + 121.52249918436712, + 25.052341574078305 ], [ - 121.52302120330751, - 25.052384899799346 + 121.52250508501746, + 25.052341606453886 ], [ - 121.52303334113586, - 25.052384286461965 + 121.52250520017147, + 25.052342608298233 ], [ - 121.52305317542147, - 25.052383466280595 + 121.52255334844578, + 25.05233803974412 ], [ - 121.52307064309363, - 25.052382515697587 + 121.52255661048095, + 25.05233756220431 ], [ - 121.52306812955953, - 25.052337607170394 + 121.5225433637989, + 25.052263190100383 ], [ - 121.52305034223573, - 25.052338177340335 + 121.52253180968228, + 25.05226487902649 ], [ - 121.52303053376049, - 25.052339393223242 + 121.52253146719836, + 25.052262512911163 ], [ - 121.52301843961126, - 25.05234000386266 + 121.52249969064768, + 25.05226624149883 ] ] ], @@ -6807,9 +3371,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4335735090", - "osm_node_id": 4335735090, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/656416249", + "osm_node_id": 656416249, "type": "intersection" }, "type": "Feature" @@ -6819,40 +3383,44 @@ "coordinates": [ [ [ - 121.52266334633629, - 25.052505461963854 + 121.52247366187046, + 25.05214675672169 + ], + [ + 121.52246458058693, + 25.052149801824886 ], [ - 121.52266343270179, - 25.052508115862118 + 121.52249345247697, + 25.052220450737074 ], [ - 121.5227267078452, - 25.052506434130585 + 121.52252483393026, + 25.052216720350764 ], [ - 121.52271950972683, - 25.052510615077054 + 121.52252406656777, + 25.05221142064813 ], [ - 121.52272455069291, - 25.052465881018268 + 121.52253826624852, + 25.052209061727375 ], [ - 121.52272373071695, - 25.052455812212788 + 121.52252327041676, + 25.052134963017238 ], [ - 121.52266059852334, - 25.052460024635515 + 121.52251148301399, + 25.052136919941205 ], [ - 121.52265565980608, - 25.052504764989553 + 121.52247292627457, + 25.05214278891446 ], [ - 121.52266334633629, - 25.052505461963854 + 121.52247366187046, + 25.05214675672169 ] ] ], @@ -6860,9 +3428,9 @@ }, "properties": { "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4335735091", - "osm_node_id": 4335735091, + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/656416254", + "osm_node_id": 656416254, "type": "intersection" }, "type": "Feature" @@ -6872,24 +3440,24 @@ "coordinates": [ [ [ - 121.52263000230127, - 25.053200506318102 + 121.52228603032268, + 25.05136617338627 ], [ - 121.52265418265809, - 25.0531994936819 + 121.52224939149318, + 25.051378533663378 ], [ - 121.52264959436638, - 25.05310965774176 + 121.52227890268651, + 25.051463050115803 ], [ - 121.52262541400957, - 25.053110670377965 + 121.52231640914192, + 25.05145304786013 ], [ - 121.52263000230127, - 25.053200506318102 + 121.52228603032268, + 25.05136617338627 ] ] ], @@ -6898,8 +3466,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/4498536439", - "osm_node_id": 4498536439, + "osm_link": "https://www.openstreetmap.org/node/656416259", + "osm_node_id": 656416259, "type": "intersection" }, "type": "Feature" @@ -6909,24 +3477,24 @@ "coordinates": [ [ [ - 121.52255826929432, - 25.053201034219928 + 121.52376237124984, + 25.052145931144395 ], [ - 121.52260662802253, - 25.053198965780073 + 121.52375943482258, + 25.052070643531003 ], [ - 121.52260194542367, - 25.05310913343722 + 121.5237082677263, + 25.052072282095093 ], [ - 121.52255358669547, - 25.053111201877076 + 121.52371120613898, + 25.052147569708488 ], [ - 121.52255826929432, - 25.053201034219928 + 121.52376237124984, + 25.052145931144395 ] ] ], @@ -6935,8 +3503,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/4498536440", - "osm_node_id": 4498536440, + "osm_link": "https://www.openstreetmap.org/node/656416271", + "osm_node_id": 656416271, "type": "intersection" }, "type": "Feature" @@ -6946,50 +3514,34 @@ "coordinates": [ [ [ - 121.52240105131054, - 25.053035425932013 - ], - [ - 121.52240319059409, - 25.053075295559857 - ], - [ - 121.52240331766059, - 25.05307764818536 - ], - [ - 121.52245289344756, - 25.053075464632332 - ], - [ - 121.5224453419255, - 25.05307630459878 + 121.52245487786884, + 25.053208504885085 ], [ - 121.52245081372642, - 25.053036698472184 + 121.5225181033769, + 25.053205686410955 ], [ - 121.52245048414771, - 25.053030552507856 + 121.52251383473684, + 25.053127091092442 ], [ - 121.52240090637531, - 25.05303273606088 + 121.52245060922878, + 25.05312990956657 ], [ - 121.52240105131054, - 25.053035425932013 + 121.52245487786884, + 25.053208504885085 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4568589283", - "osm_node_id": 4568589283, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/662161208", + "osm_node_id": 662161208, "type": "intersection" }, "type": "Feature" @@ -6999,50 +3551,34 @@ "coordinates": [ [ [ - 121.52211357925016, - 25.051403676898783 - ], - [ - 121.52212567935564, - 25.051442059048576 - ], - [ - 121.52212682791762, - 25.051441761373102 - ], - [ - 121.52212728555554, - 25.051443433212096 - ], - [ - 121.52217546162566, - 25.051432610775052 + 121.5210687650725, + 25.053103188021627 ], [ - 121.5221752392593, - 25.05142935612991 + 121.52107123492749, + 25.053143040562357 ], [ - 121.52216335854207, - 25.051390919121495 + 121.52117034977128, + 25.053137999864365 ], [ - 121.52215975997923, - 25.05138718693654 + 121.52116787991629, + 25.053098147323634 ], [ - 121.52211357925016, - 25.051403676898783 + 121.5210687650725, + 25.053103188021627 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4568593105", - "osm_node_id": 4568593105, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/662161237", + "osm_node_id": 662161237, "type": "intersection" }, "type": "Feature" @@ -7052,36 +3588,32 @@ "coordinates": [ [ [ - 121.5222527061418, - 25.05214450212225 - ], - [ - 121.5222332431286, - 25.052148175851297 + 121.52244817014771, + 25.053084997442095 ], [ - 121.52224336675447, - 25.052192195848672 + 121.52251139565577, + 25.053082178967962 ], [ - 121.52224007692351, - 25.052182397739017 + 121.52249759702865, + 25.05303783881207 ], [ - 121.52228926356933, - 25.052176368686503 + 121.52246595151529, + 25.05303841437794 ], [ - 121.52229708212958, - 25.05217152583928 + 121.52245318530342, + 25.053036967369366 ], [ - 121.5222691413987, - 25.05213436227036 + 121.5224477135025, + 25.053076573495957 ], [ - 121.5222527061418, - 25.05214450212225 + 121.52244817014771, + 25.053084997442095 ] ] ], @@ -7090,8 +3622,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4568593108", - "osm_node_id": 4568593108, + "osm_link": "https://www.openstreetmap.org/node/662161241", + "osm_node_id": 662161241, "type": "intersection" }, "type": "Feature" @@ -7101,54 +3633,34 @@ "coordinates": [ [ [ - 121.52226871453469, - 25.052372769748587 - ], - [ - 121.52226703388176, - 25.05237308720914 - ], - [ - 121.52227717934717, - 25.05241710360923 - ], - [ - 121.52229366423941, - 25.05241398566098 - ], - [ - 121.52230906906645, - 25.052420152309708 - ], - [ - 121.52232913167468, - 25.052379022732197 + 121.52382008624141, + 25.052765591657835 ], [ - 121.52231913610802, - 25.05237502075074 + 121.52381925038213, + 25.052747621412113 ], [ - 121.52231767385062, - 25.052365210949905 + 121.52373246396643, + 25.052750930915877 ], [ - 121.52226848521937, - 25.052371227411914 + 121.52373329982571, + 25.0527689011616 ], [ - 121.52226871453469, - 25.052372769748587 + 121.52382008624141, + 25.052765591657835 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4568593109", - "osm_node_id": 4568593109, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/662161764", + "osm_node_id": 662161764, "type": "intersection" }, "type": "Feature" @@ -7158,46 +3670,34 @@ "coordinates": [ [ [ - 121.52237040247499, - 25.052464280225685 - ], - [ - 121.52237146070064, - 25.05248400324935 - ], - [ - 121.52242103847303, - 25.052481819696325 - ], - [ - 121.52242771939106, - 25.052437262803906 + 121.5238371727141, + 25.053187191860697 ], [ - 121.52240795658034, - 25.052434830138775 + 121.52383689475613, + 25.053169207225828 ], [ - 121.52239862215654, - 25.052424293686023 + 121.52375004182906, + 25.053170310693524 ], [ - 121.52235991055484, - 25.05245243705854 + 121.52375031978701, + 25.053188295328393 ], [ - 121.52237040247499, - 25.052464280225685 + 121.5238371727141, + 25.053187191860697 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/4568593153", - "osm_node_id": 4568593153, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/662161824", + "osm_node_id": 662161824, "type": "intersection" }, "type": "Feature" @@ -7207,34 +3707,42 @@ "coordinates": [ [ [ - 121.52240994894326, - 25.053201160124964 + 121.52360324528323, + 25.05221860892628 + ], + [ + 121.5235784534189, + 25.05221963235435 + ], + [ + 121.52358223960336, + 25.052294889390804 ], [ - 121.52245952473024, - 25.05319897567261 + 121.52361677687217, + 25.05229890666073 ], [ - 121.52245530473284, - 25.05312037675681 + 121.52363542785106, + 25.052292740911323 ], [ - 121.52240572894587, - 25.05312256210848 + 121.52363179454349, + 25.052217478478937 ], [ - 121.52240994894326, - 25.053201160124964 + 121.52360324528323, + 25.05221860892628 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/4568593157", - "osm_node_id": 4568593157, + "complexity": "Crossing", + "control": "TrafficSignal", + "osm_link": "https://www.openstreetmap.org/node/662161891", + "osm_node_id": 662161891, "type": "intersection" }, "type": "Feature" @@ -7244,34 +3752,66 @@ "coordinates": [ [ [ - 121.52377179501728, - 25.052287339585337 + 121.52365064505648, + 25.05275403447498 ], [ - 121.52376816170971, - 25.052212077152955 + 121.52363331040706, + 25.052754654107616 ], [ - 121.5237085099468, - 25.052214439670994 + 121.52363409464559, + 25.05277262615198 ], [ - 121.52371214126897, - 25.05228970210338 + 121.52365143922208, + 25.052772006519344 ], [ - 121.52377179501728, - 25.052287339585337 + 121.52365208944515, + 25.05278771946766 + ], + [ + 121.52367192968701, + 25.052787044976405 + ], + [ + 121.52367127648581, + 25.052771267276928 + ], + [ + 121.52368370914813, + 25.052770792435084 + ], + [ + 121.52368287328885, + 25.052752822189362 + ], + [ + 121.52367048132751, + 25.052753295232563 + ], + [ + 121.52366996611259, + 25.052742069000086 + ], + [ + 121.52365012984156, + 25.05274281723572 + ], + [ + 121.52365064505648, + 25.05275403447498 ] ] ], "type": "Polygon" - }, - "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/4961152331", - "osm_node_id": 4961152331, + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/662161900", + "osm_node_id": 662161900, "type": "intersection" }, "type": "Feature" @@ -7281,34 +3821,58 @@ "coordinates": [ [ [ - 121.52106492726729, - 25.052600495983274 + 121.5236679797059, + 25.05317149959678 + ], + [ + 121.523650633144, + 25.053172059874182 + ], + [ + 121.52365133995137, + 25.053190035515836 + ], + [ + 121.52366867658621, + 25.053189675787166 + ], + [ + 121.5236885207989, + 25.053189080436216 + ], + [ + 121.52370068940115, + 25.053188925752888 + ], + [ + 121.5237004114432, + 25.05317094111802 ], [ - 121.5210750727327, - 25.052644512383363 + 121.52368783186024, + 25.053171100297956 ], [ - 121.52117224782704, - 25.052626129348994 + 121.52368716972468, + 25.053155111257887 ], [ - 121.52116210236163, - 25.052582112948905 + 121.52366732948283, + 25.053155785749144 ], [ - 121.52106492726729, - 25.052600495983274 + 121.5236679797059, + 25.05317149959678 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/5235938222", - "osm_node_id": 5235938222, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/662161907", + "osm_node_id": 662161907, "type": "intersection" }, "type": "Feature" @@ -7318,24 +3882,24 @@ "coordinates": [ [ [ - 121.52106481310598, - 25.05237057090709 + 121.52367318943217, + 25.05331326506843 ], [ - 121.52107518689401, - 25.05241454413974 + 121.52369303364486, + 25.05331266971748 ], [ - 121.52117226470305, - 25.05239574831672 + 121.52369016174354, + 25.05323402223831 ], [ - 121.52116189091504, - 25.05235177508407 + 121.52367031753086, + 25.053234617589258 ], [ - 121.52106481310598, - 25.05237057090709 + 121.52367318943217, + 25.05331326506843 ] ] ], @@ -7344,8 +3908,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/5235938226", - "osm_node_id": 5235938226, + "osm_link": "https://www.openstreetmap.org/node/662161928", + "osm_node_id": 662161928, "type": "intersection" }, "type": "Feature" @@ -7355,36 +3919,36 @@ "coordinates": [ [ [ - 121.52225356681876, - 25.052291534920954 + 121.52303671038337, + 25.052241998484423 ], [ - 121.52227496163977, - 25.052386846830775 + 121.52301225901755, + 25.05224260372791 ], [ - 121.52226582675006, - 25.05235338936648 + 121.52301453033114, + 25.052317909327734 ], [ - 121.52231501538131, - 25.05234737290447 + 121.52302801228474, + 25.052317575679393 ], [ - 121.52232713732634, - 25.052377090089916 + 121.52304785749014, + 25.05231695155015 ], [ - 121.52230516276445, - 25.052281886098697 + 121.52306502337937, + 25.052316242884668 ], [ - 121.52225598505298, - 25.052287992492875 + 121.52306123719492, + 25.052240985848215 ], [ - 121.52225356681876, - 25.052291534920954 + 121.52303671038337, + 25.052241998484423 ] ] ], @@ -7393,8 +3957,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605980", - "osm_node_id": 5246605980, + "osm_link": "https://www.openstreetmap.org/node/662161955", + "osm_node_id": 662161955, "type": "intersection" }, "type": "Feature" @@ -7404,44 +3968,56 @@ "coordinates": [ [ [ - 121.5223725765033, - 25.052054579847233 + 121.52305298879256, + 25.05277543923018 ], [ - 121.52238065713817, - 25.05209894518413 + 121.52304068816026, + 25.052775902380844 + ], + [ + 121.52304151409248, + 25.052793872626566 + ], + [ + 121.52305395469645, + 25.05279340407997 + ], + [ + 121.52305478062867, + 25.052809189873344 ], [ - 121.52238508560406, - 25.052098283283378 + 121.52307461292888, + 25.052808337316396 ], [ - 121.522385831127, - 25.05210099833552 + 121.5230737929529, + 25.052792671132806 ], [ - 121.5224237743735, - 25.0520924547796 + 121.52309109285758, + 25.052792052399493 ], [ - 121.52243439931638, - 25.052090831503975 + 121.52309030861906, + 25.052774080355128 ], [ - 121.52242614595049, - 25.052046491348083 + 121.5230728280417, + 25.052774705383694 ], [ - 121.5224113307914, - 25.05204875404142 + 121.52307221157066, + 25.05276340990345 ], [ - 121.52241033907711, - 25.052045404068178 + 121.52305238125588, + 25.052764298433264 ], [ - 121.5223725765033, - 25.052054579847233 + 121.52305298879256, + 25.05277543923018 ] ] ], @@ -7450,8 +4026,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605981", - "osm_node_id": 5246605981, + "osm_link": "https://www.openstreetmap.org/node/662161961", + "osm_node_id": 662161961, "type": "intersection" }, "type": "Feature" @@ -7461,50 +4037,34 @@ "coordinates": [ [ [ - 121.52245197320819, - 25.05204254512457 - ], - [ - 121.5224602285595, - 25.052086885280463 - ], - [ - 121.52246249391685, - 25.052086539041618 - ], - [ - 121.52250105065625, - 25.052080670068364 - ], - [ - 121.52251359251633, - 25.052078740124045 + 121.52308152316222, + 25.053321048697534 ], [ - 121.52250535304835, - 25.05203439816951 + 121.52310135546242, + 25.053320203335158 ], [ - 121.52249067984636, - 25.05203663568184 + 121.52309727146587, + 25.053241599023426 ], [ - 121.52248979931525, - 25.052033585182716 + 121.52307743916568, + 25.053242444385802 ], [ - 121.52245197320819, - 25.05204254512457 + 121.52308152316222, + 25.053321048697534 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605982", - "osm_node_id": 5246605982, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/662161969", + "osm_node_id": 662161969, "type": "intersection" }, "type": "Feature" @@ -7514,32 +4074,32 @@ "coordinates": [ [ [ - 121.52250549302002, - 25.05203437658579 + 121.52267418173305, + 25.05282366535503 ], [ - 121.52251379205045, - 25.05207870954711 + 121.52273740327028, + 25.05282076054602 ], [ - 121.5225167562735, - 25.052079802222945 + 121.52273654160062, + 25.052805364158935 ], [ - 121.52257886002266, - 25.052068692002965 + 121.52273580203392, + 25.052787391215247 ], [ - 121.52257049051005, - 25.052024368034864 + 121.52273545260105, + 25.052776588563283 ], [ - 121.52256693959716, - 25.05202047487133 + 121.52267217745765, + 25.052778270294816 ], [ - 121.52250549302002, - 25.05203437658579 + 121.52267418173305, + 25.05282366535503 ] ] ], @@ -7548,8 +4108,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605983", - "osm_node_id": 5246605983, + "osm_link": "https://www.openstreetmap.org/node/662161980", + "osm_node_id": 662161980, "type": "intersection" }, "type": "Feature" @@ -7559,46 +4119,34 @@ "coordinates": [ [ [ - 121.52264235554702, - 25.052013192164402 - ], - [ - 121.5226507895856, - 25.052057503542 - ], - [ - 121.52266483142594, - 25.052064574908336 - ], - [ - 121.52268895023492, - 25.052025274551113 + 121.52269531547212, + 25.05320111066227 ], [ - 121.52267691862622, - 25.052019214921664 + 121.52275853700935, + 25.053198205853256 ], [ - 121.52267384123456, - 25.052007059689895 + 121.52275350795576, + 25.053108388798876 ], [ - 121.52262546265221, - 25.052017112307585 + 121.52269028641852, + 25.053111293607888 ], [ - 121.52264235554702, - 25.052013192164402 + 121.52269531547212, + 25.05320111066227 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605984", - "osm_node_id": 5246605984, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/662162162", + "osm_node_id": 662162162, "type": "intersection" }, "type": "Feature" @@ -7608,42 +4156,34 @@ "coordinates": [ [ [ - 121.52284529165844, - 25.052182637857904 - ], - [ - 121.52289487340165, - 25.052180553230258 - ], - [ - 121.52289104055997, - 25.05210529889177 + 121.52107222564906, + 25.051438917717963 ], [ - 121.52284096544138, - 25.052107861958547 + 121.52106777435093, + 25.051478628165867 ], [ - 121.52286604320531, - 25.052106343903557 + 121.52116652586396, + 25.051487714012758 ], [ - 121.52287021058925, - 25.05218158295358 + 121.52117061085322, + 25.051447969390626 ], [ - 121.52284529165844, - 25.052182637857904 + 121.52107222564906, + 25.051438917717963 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605985", - "osm_node_id": 5246605985, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/2137955716", + "osm_node_id": 2137955716, "type": "intersection" }, "type": "Feature" @@ -7653,50 +4193,34 @@ "coordinates": [ [ [ - 121.52284977968672, - 25.0522491462931 - ], - [ - 121.52285076643747, - 25.052324475275288 - ], - [ - 121.5228537525001, - 25.052324442899707 - ], - [ - 121.5228539093478, - 25.052326367448092 - ], - [ - 121.52290340968904, - 25.052323057944328 + 121.52105766760108, + 25.05240653657954 ], [ - 121.522899527212, - 25.052247806303804 + 121.52107932846756, + 25.05250179992599 ], [ - 121.52289977737418, - 25.05227847317294 + 121.52117655816078, + 25.052483655211862 ], [ - 121.52285019166013, - 25.052280478660276 + 121.52115489729431, + 25.052388391865414 ], [ - 121.52284977968672, - 25.0522491462931 + 121.52105766760108, + 25.05240653657954 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605986", - "osm_node_id": 5246605986, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/2137955730", + "osm_node_id": 2137955730, "type": "intersection" }, "type": "Feature" @@ -7706,36 +4230,32 @@ "coordinates": [ [ [ - 121.52270463798345, - 25.052512527934258 - ], - [ - 121.52275419193087, - 25.052509964867482 + 121.52142936092231, + 25.051688637763547 ], [ - 121.52275291034614, - 25.0524896312044 + 121.52148334829914, + 25.051688727695716 ], [ - 121.52275583783906, - 25.05246943603685 + 121.52148338105847, + 25.051672827688492 ], [ - 121.52270662538284, - 25.052463581452745 + 121.52148350216872, + 25.05165484035566 ], [ - 121.52273052083274, - 25.052466433201776 + 121.52148360441754, + 25.051643926187804 ], [ - 121.52272547986665, - 25.052511167260562 + 121.52142961902612, + 25.051643508902547 ], [ - 121.52270463798345, - 25.052512527934258 + 121.52142936092231, + 25.051688637763547 ] ] ], @@ -7744,8 +4264,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605987", - "osm_node_id": 5246605987, + "osm_link": "https://www.openstreetmap.org/node/2137955743", + "osm_node_id": 2137955743, "type": "intersection" }, "type": "Feature" @@ -7755,44 +4275,44 @@ "coordinates": [ [ [ - 121.52245369853293, - 25.05248583786557 + 121.52189606722204, + 25.051499000499785 ], [ - 121.52245378688386, - 25.052489816464664 + 121.52189772603543, + 25.05150389370902 ], [ - 121.52248543239722, - 25.05248924089879 + 121.52191670460762, + 25.0514986110935 ], [ - 121.52249502293942, - 25.05249010964353 + 121.52191593128887, + 25.05149632951441 ], [ - 121.52249996662022, - 25.052445366591527 + 121.5219322146616, + 25.05149211619236 ], [ - 121.52248227261087, - 25.052443763100978 + 121.52192011356341, + 25.05145373494189 ], [ - 121.52248140299955, - 25.052436783465456 + 121.52189932826451, + 25.05145911288551 ], [ - 121.52244995205676, - 25.052439999439766 + 121.52187771405526, + 25.051458908739487 ], [ - 121.52244327113873, - 25.052484555432862 + 121.52187725343921, + 25.051498822434095 ], [ - 121.52245369853293, - 25.05248583786557 + 121.52189606722204, + 25.051499000499785 ] ] ], @@ -7801,8 +4321,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605988", - "osm_node_id": 5246605988, + "osm_link": "https://www.openstreetmap.org/node/2137955785", + "osm_node_id": 2137955785, "type": "intersection" }, "type": "Feature" @@ -7812,40 +4332,32 @@ "coordinates": [ [ [ - 121.52252133563084, - 25.052492494644614 - ], - [ - 121.52252167612934, - 25.052499023719978 - ], - [ - 121.52257003485755, - 25.052496955280123 + 121.52217298779985, + 25.051388476563822 ], [ - 121.52257506291843, - 25.052452220322017 + 121.52218486851709, + 25.051426913572236 ], [ - 121.52256646011968, - 25.0524514271203 + 121.52218699291004, + 25.051426374878552 ], [ - 121.5225654118211, - 25.052442365555095 + 121.52218781387872, + 25.05142896492498 ], [ - 121.52251726354677, - 25.052446934109206 + 121.5222253878382, + 25.051419178506507 ], [ - 121.52251231986598, - 25.05249167806053 + 121.52220945191293, + 25.051375692706205 ], [ - 121.52252133563084, - 25.052492494644614 + 121.52217298779985, + 25.051388476563822 ] ] ], @@ -7854,8 +4366,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605989", - "osm_node_id": 5246605989, + "osm_link": "https://www.openstreetmap.org/node/2137955831", + "osm_node_id": 2137955831, "type": "intersection" }, "type": "Feature" @@ -7865,48 +4377,44 @@ "coordinates": [ [ [ - 121.52259418543315, - 25.052499182899915 - ], - [ - 121.52259435121522, - 25.052502415062015 + 121.52143102370651, + 25.051494206215935 ], [ - 121.52261853157202, - 25.052501402425808 + 121.52143099591072, + 25.05149717307814 ], [ - 121.52262742523394, - 25.05250220821803 + 121.52148498130214, + 25.051497590363397 ], [ - 121.52263236295849, - 25.05245746516603 + 121.52148500413439, + 25.05149511183286 ], [ - 121.52261498462995, - 25.052455891353095 + 121.52148546375773, + 25.051455198138257 ], [ - 121.52261450118165, - 25.0524514729857 + 121.52148434696237, + 25.05145518824572 ], [ - 121.5225904141393, - 25.052453636753654 + 121.52148418217301, + 25.05145145965805 ], [ - 121.52258302542118, - 25.052452955067825 + 121.52143023847529, + 25.05145340938744 ], [ - 121.52257799438217, - 25.05249768912661 + 121.52142910182579, + 25.051494159451206 ], [ - 121.52259418543315, - 25.052499182899915 + 121.52143102370651, + 25.051494206215935 ] ] ], @@ -7915,8 +4423,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605990", - "osm_node_id": 5246605990, + "osm_link": "https://www.openstreetmap.org/node/2137955862", + "osm_node_id": 2137955862, "type": "intersection" }, "type": "Feature" @@ -7926,28 +4434,24 @@ "coordinates": [ [ [ - 121.52285576173904, - 25.05234909690412 - ], - [ - 121.52285993706462, - 25.052393905606607 + 121.52147811276248, + 25.05232777038991 ], [ - 121.52288416209325, - 25.052391823676928 + 121.52150041491767, + 25.05242291232793 ], [ - 121.5229084605822, - 25.05239059610284 + 121.5215525707501, + 25.052413040473898 ], [ - 121.52290569688594, - 25.052345700166153 + 121.5215309615044, + 25.05231776813423 ], [ - 121.52285576173904, - 25.05234909690412 + 121.52147811276248, + 25.05232777038991 ] ] ], @@ -7956,8 +4460,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605991", - "osm_node_id": 5246605991, + "osm_link": "https://www.openstreetmap.org/node/2137955866", + "osm_node_id": 2137955866, "type": "intersection" }, "type": "Feature" @@ -7967,77 +4471,48 @@ "coordinates": [ [ [ - 121.5228632298737, - 25.05205622740454 - ], - [ - 121.52283842311878, - 25.052056925278162 - ], - [ - 121.52283996578545, - 25.05210186977822 + 121.52307474595162, + 25.053190670436937 ], [ - 121.52284066068033, - 25.052102984037777 + 121.52306242943601, + 25.053191076031013 ], [ - 121.52289021661318, - 25.05210044255472 + 121.52306315014128, + 25.05320904987402 ], [ - 121.52288864714342, - 25.052055499853306 + 121.52307510531153, + 25.053197528664036 ], [ - 121.5228632298737, - 25.05205622740454 - ] - ] - ], - "type": "Polygon" - }, - "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605992", - "osm_node_id": 5246605992, - "type": "intersection" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 121.52146884882087, - 25.052292485503965 + 121.52309493761175, + 25.05319668330166 ], [ - 121.5214790389581, - 25.05233649381016 + 121.52311274379699, + 25.05320743289365 ], [ - 121.52147394339313, - 25.052315182584415 + 121.52311203698962, + 25.053189457251996 ], [ - 121.52152660451343, - 25.052304410509382 + 121.52309458917159, + 25.05319002112669 ], [ - 121.52153182019595, - 25.052326496950414 + 121.52309376224667, + 25.05317422184349 ], [ - 121.52152169657008, - 25.05228247695304 + 121.52307392994646, + 25.05317507440044 ], [ - 121.52146884882087, - 25.052292485503965 + 121.52307474595162, + 25.053190670436937 ] ] ], @@ -8046,8 +4521,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5246605994", - "osm_node_id": 5246605994, + "osm_link": "https://www.openstreetmap.org/node/2637893915", + "osm_node_id": 2637893915, "type": "intersection" }, "type": "Feature" @@ -8057,54 +4532,34 @@ "coordinates": [ [ [ - 121.5223022422205, - 25.052082583824888 - ], - [ - 121.52229618075164, - 25.05209702243439 - ], - [ - 121.52234257392, - 25.05211300697785 - ], - [ - 121.5223463223816, - 25.052104077612935 - ], - [ - 121.52235672595083, - 25.052102522685757 - ], - [ - 121.52234864531594, - 25.052058157348856 + 121.5214787391606, + 25.051327900953723 ], [ - 121.52234677108515, - 25.0520584370379 + 121.52142479546288, + 25.051329850683114 ], [ - 121.52234631443993, - 25.05205676699755 + 121.52142660715313, + 25.051370974864696 ], [ - 121.5222981383698, - 25.052067589434593 + 121.52148055085084, + 25.0513690251353 ], [ - 121.5223022422205, - 25.052082583824888 + 121.5214787391606, + 25.051327900953723 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/5262459478", - "osm_node_id": 5262459478, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/3143261407", + "osm_node_id": 3143261407, "type": "intersection" }, "type": "Feature" @@ -8114,24 +4569,24 @@ "coordinates": [ [ [ - 121.52375044784621, - 25.05207486764491 + 121.52263000230127, + 25.053200506318102 ], [ - 121.52374858354248, - 25.052029933936712 + 121.52265418265809, + 25.0531994936819 ], [ - 121.52370906784813, - 25.05203128022126 + 121.52264959436638, + 25.05310965774176 ], [ - 121.52371093215186, - 25.05207621392946 + 121.52262541400957, + 25.053110670377965 ], [ - 121.52375044784621, - 25.05207486764491 + 121.52263000230127, + 25.053200506318102 ] ] ], @@ -8140,8 +4595,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/5987407036", - "osm_node_id": 5987407036, + "osm_link": "https://www.openstreetmap.org/node/4498536439", + "osm_node_id": 4498536439, "type": "intersection" }, "type": "Feature" @@ -8151,34 +4606,34 @@ "coordinates": [ [ [ - 121.52112928942485, - 25.051754647075214 + 121.52255826929432, + 25.053201034219928 ], [ - 121.52112291028975, - 25.051790152294966 + 121.52260662802253, + 25.053198965780073 ], [ - 121.52122089146215, - 25.051804600797006 + 121.52260194542367, + 25.05310913343722 ], [ - 121.52122727059725, - 25.051769095577253 + 121.52255358669547, + 25.053111201877076 ], [ - 121.52112928942485, - 25.051754647075214 + 121.52255826929432, + 25.053201034219928 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Terminus", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6982946638", - "osm_node_id": 6982946638, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/4498536440", + "osm_node_id": 4498536440, "type": "intersection" }, "type": "Feature" @@ -8188,44 +4643,40 @@ "coordinates": [ [ [ - 121.52141001405582, - 25.052303734219485 + 121.52240335637616, + 25.053075286566642 ], [ - 121.5214044429842, - 25.052304812506172 + 121.52242797054593, + 25.053074034710868 ], [ - 121.52141481677224, - 25.052348785738822 + 121.52242810555407, + 25.053076556408847 ], [ - 121.52145522491017, - 25.052346732587438 + 121.52245785102626, + 25.053075245197842 ], [ - 121.52145489433875, - 25.052341082149347 + 121.5224554407337, + 25.053030333972686 ], [ - 121.52146328271279, - 25.05233948855134 + 121.52243345823015, + 25.05303473075636 ], [ - 121.52145309356827, - 25.052295479345823 + 121.5224256952615, + 25.053031643385047 ], [ - 121.52144887555627, - 25.05229628154076 + 121.52240088652118, + 25.053035434025908 ], [ - 121.52140981452172, - 25.052302745864964 - ], - [ - 121.52141001405582, - 25.052303734219485 + 121.52240335637616, + 25.053075286566642 ] ] ], @@ -8234,8 +4685,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6982946641", - "osm_node_id": 6982946641, + "osm_link": "https://www.openstreetmap.org/node/4568589283", + "osm_node_id": 4568589283, "type": "intersection" }, "type": "Feature" @@ -8245,32 +4696,48 @@ "coordinates": [ [ [ - 121.52140136062901, - 25.05234239785696 + 121.52213753128437, + 25.051397479673117 ], [ - 121.52142302149548, - 25.05243766120341 + 121.52211548624028, + 25.051403184070505 ], [ - 121.52147188154072, - 25.052428401787438 + 121.52212758733847, + 25.051441565320975 ], [ - 121.52144957938553, - 25.052333260748735 + 121.5221507064915, + 25.05143558303319 ], [ - 121.52145651145842, - 25.052368694922077 + 121.5221513735906, + 25.051438021993572 ], [ - 121.52141685877051, - 25.05237060148403 + 121.52218027923267, + 25.051431528891076 ], [ - 121.52140136062901, - 25.05234239785696 + 121.52217939473076, + 25.05142830122558 + ], + [ + 121.52216751798434, + 25.051389864217168 + ], + [ + 121.522164398899, + 25.051385586143958 + ], + [ + 121.52213656736588, + 25.05139518910081 + ], + [ + 121.52213753128437, + 25.051397479673117 ] ] ], @@ -8279,8 +4746,8 @@ "properties": { "complexity": "Crossing", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/6982946642", - "osm_node_id": 6982946642, + "osm_link": "https://www.openstreetmap.org/node/4568593105", + "osm_node_id": 4568593105, "type": "intersection" }, "type": "Feature" @@ -8290,34 +4757,34 @@ "coordinates": [ [ [ - 121.52249167950228, - 25.05136395206173 + 121.52230843770481, + 25.052365822488643 ], [ - 121.52244387271917, - 25.051376047938266 + 121.52229640013988, + 25.052390499875422 ], [ - 121.52247057554443, - 25.051462665206127 + 121.52237378363499, + 25.05243217624051 ], [ - 121.52251838232755, - 25.051450569329592 + 121.52239700900768, + 25.052415288778086 ], [ - 121.52249167950228, - 25.05136395206173 + 121.52230843770481, + 25.052365822488643 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/7702095005", - "osm_node_id": 7702095005, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/4568593109", + "osm_node_id": 4568593109, "type": "intersection" }, "type": "Feature" @@ -8327,24 +4794,24 @@ "coordinates": [ [ [ - 121.52211118186278, - 25.051271627698515 + 121.52243473683676, + 25.053200067449126 ], [ - 121.52206479663607, - 25.051287630228412 + 121.52246448230893, + 25.053198756238125 ], [ - 121.52209570953167, - 25.051361167761822 + 121.52246026231154, + 25.053120158221642 ], [ - 121.5221420947584, - 25.05134516523193 + 121.52243051683935, + 25.053121469432647 ], [ - 121.52211118186278, - 25.051271627698515 + 121.52243473683676, + 25.053200067449126 ] ] ], @@ -8353,8 +4820,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/7702095012", - "osm_node_id": 7702095012, + "osm_link": "https://www.openstreetmap.org/node/4568593157", + "osm_node_id": 4568593157, "type": "intersection" }, "type": "Feature" @@ -8364,50 +4831,34 @@ "coordinates": [ [ [ - 121.52257391336374, - 25.051713874528406 - ], - [ - 121.52257894241735, - 25.051731274604187 - ], - [ - 121.5225571584552, - 25.0517473400866 - ], - [ - 121.52260553703755, - 25.05173728746891 - ], - [ - 121.52260260557382, - 25.051725707803016 + 121.52377179501728, + 25.052287339585337 ], [ - 121.52259794779263, - 25.051708219593714 + 121.52376816170971, + 25.052212077152955 ], [ - 121.5225930269441, - 25.05169269730159 + 121.5237085099468, + 25.052214439670994 ], [ - 121.52254522016096, - 25.05170479317813 + 121.52371214126897, + 25.05228970210338 ], [ - 121.52257391336374, - 25.051713874528406 + 121.52377179501728, + 25.052287339585337 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8807946132", - "osm_node_id": 8807946132, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/4961152331", + "osm_node_id": 4961152331, "type": "intersection" }, "type": "Feature" @@ -8417,50 +4868,34 @@ "coordinates": [ [ [ - 121.52272409206229, - 25.052821891892687 - ], - [ - 121.52277365196595, - 25.05281940616758 - ], - [ - 121.52277270988702, - 25.052804000787276 + 121.52232819952282, + 25.052084000256528 ], [ - 121.5227718839548, - 25.052786030541554 + 121.52235710516489, + 25.052077507154028 ], [ - 121.52277086245931, - 25.05277447245938 + 121.5223332117004, + 25.0519902189922 ], [ - 121.52272130851189, - 25.052777035526155 + 121.52230430605833, + 25.051996712094695 ], [ - 121.52274698388543, - 25.05278696853406 - ], - [ - 121.52274780981764, - 25.052804938779783 - ], - [ - 121.52272409206229, - 25.052821891892687 + 121.52232819952282, + 25.052084000256528 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", + "complexity": "Terminus", "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/8807946195", - "osm_node_id": 8807946195, + "osm_link": "https://www.openstreetmap.org/node/5262459478", + "osm_node_id": 5262459478, "type": "intersection" }, "type": "Feature" @@ -8470,34 +4905,34 @@ "coordinates": [ [ [ - 121.52274726879233, - 25.053201242862556 + 121.52112928942485, + 25.051754647075214 ], [ - 121.52279682869599, - 25.053198757137444 + 121.52112291028975, + 25.051790152294966 ], [ - 121.52279134299718, - 25.053108962566103 + 121.52122089146215, + 25.051804600797006 ], [ - 121.52274178309352, - 25.053111448291215 + 121.52122727059725, + 25.051769095577253 ], [ - 121.52274726879233, - 25.053201242862556 + 121.52112928942485, + 25.051754647075214 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/8807946196", - "osm_node_id": 8807946196, + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6982946638", + "osm_node_id": 6982946638, "type": "intersection" }, "type": "Feature" @@ -8507,34 +4942,42 @@ "coordinates": [ [ [ - 121.52106078668643, - 25.052511279675773 + 121.52141505700732, + 25.052339841984757 ], [ - 121.52108218150744, - 25.052606591585594 + 121.52140136062901, + 25.05234239785696 + ], + [ + 121.52142302149548, + 25.05243766120341 + ], + [ + 121.52147668127901, + 25.05242747818408 ], [ - 121.52117946083601, - 25.05258866990324 + 121.52145437912382, + 25.052332337145376 ], [ - 121.521158066015, - 25.05249335799342 + 121.5214147284213, + 25.052334242808005 ], [ - 121.52106078668643, - 25.052511279675773 + 121.52141505700732, + 25.052339841984757 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "MapEdge", - "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/9260164952", - "osm_node_id": 9260164952, + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/6982946642", + "osm_node_id": 6982946642, "type": "intersection" }, "type": "Feature" @@ -8544,50 +4987,34 @@ "coordinates": [ [ [ - 121.52284895573993, - 25.052255473920408 + 121.52211582078255, + 25.051270026905932 ], [ - 121.52284744285448, - 25.05225564119424 + 121.52208798924943, + 25.051279628064144 ], [ - 121.5228498471908, - 25.052273494528144 + 121.52211890214502, + 25.051353165597554 ], [ - 121.52289943290485, - 25.052271488141486 + 121.52214673367814, + 25.051343564439346 ], [ - 121.52289940411634, - 25.052269648129336 - ], - [ - 121.52289845111764, - 25.052251683279547 - ], - [ - 121.52289766687912, - 25.052236021592567 - ], - [ - 121.52284808315048, - 25.052238059455483 - ], - [ - 121.52284895573993, - 25.052255473920408 + 121.52211582078255, + 25.051270026905932 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9631718924", - "osm_node_id": 9631718924, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/7702095012", + "osm_node_id": 7702095012, "type": "intersection" }, "type": "Feature" @@ -8597,24 +5024,24 @@ "coordinates": [ [ [ - 121.52371059562418, - 25.052234324572563 + 121.52106076286147, + 25.052511078227717 ], [ - 121.52370964262548, - 25.052216359722774 + 121.52108221128866, + 25.05260638114432 ], [ - 121.52361048608799, - 25.052220677366137 + 121.52117948069015, + 25.052588415395206 ], [ - 121.52361143908671, - 25.05223864221593 + 121.52115803226297, + 25.052493112478604 ], [ - 121.52371059562418, - 25.052234324572563 + 121.52106076286147, + 25.052511078227717 ] ] ], @@ -8623,8 +5050,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/9631718933", - "osm_node_id": 9631718933, + "osm_link": "https://www.openstreetmap.org/node/9260164952", + "osm_node_id": 9260164952, "type": "intersection" }, "type": "Feature" @@ -8634,46 +5061,34 @@ "coordinates": [ [ [ - 121.5228471331299, - 25.052219078372197 - ], - [ - 121.52289671685853, - 25.052217042307923 - ], - [ - 121.52289592964189, - 25.052201312272498 - ], - [ - 121.52289502627853, - 25.05218334382542 + 121.5237105847044, + 25.052233149159132 ], [ - 121.52284543460824, - 25.052185429352384 + 121.52370964957443, + 25.0522151825107 ], [ - 121.52287159740091, - 25.052184313294184 + 121.52361048906612, + 25.052219420114433 ], [ - 121.52286816263472, - 25.05220202813255 + 121.5236114241961, + 25.05223738676287 ], [ - 121.5228471331299, - 25.052219078372197 + 121.5237105847044, + 25.052233149159132 ] ] ], "type": "Polygon" }, "properties": { - "complexity": "Crossing", - "control": "StopSign", - "osm_link": "https://www.openstreetmap.org/node/9631719043", - "osm_node_id": 9631719043, + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/9631718933", + "osm_node_id": 9631718933, "type": "intersection" }, "type": "Feature" diff --git a/tests/src/taipei/road_network.dot b/tests/src/taipei/road_network.dot index 9fc47e3b..00b73757 100644 --- a/tests/src/taipei/road_network.dot +++ b/tests/src/taipei/road_network.dot @@ -19,215 +19,122 @@ digraph { 17 [ label = "Lights RoadIntersection" ] 18 [ label = "Lights RoadIntersection" ] 19 [ label = "MapEdge" ] - 20 [ label = "Unknown" ] + 20 [ label = "MapEdge" ] 21 [ label = "MapEdge" ] 22 [ label = "MapEdge" ] - 23 [ label = "MapEdge" ] - 24 [ label = "Unknown" ] + 23 [ label = "Unknown" ] + 24 [ label = "MapEdge" ] 25 [ label = "MapEdge" ] - 26 [ label = "MapEdge" ] - 27 [ label = "Lights RoadIntersection" ] + 26 [ label = "Lights RoadIntersection" ] + 27 [ label = "Unknown" ] 28 [ label = "Unknown" ] - 29 [ label = "Unknown" ] - 30 [ label = "MapEdge" ] + 29 [ label = "MapEdge" ] + 30 [ label = "Unknown" ] 31 [ label = "Unknown" ] - 32 [ label = "Unknown" ] - 33 [ label = "MapEdge" ] - 34 [ label = "Unknown" ] - 35 [ label = "MapEdge" ] - 36 [ label = "Lights RoadIntersection" ] + 32 [ label = "MapEdge" ] + 33 [ label = "Unknown" ] + 34 [ label = "MapEdge" ] + 35 [ label = "Lights RoadIntersection" ] + 36 [ label = "MapEdge" ] 37 [ label = "MapEdge" ] - 38 [ label = "MapEdge" ] + 38 [ label = "Unknown" ] 39 [ label = "Unknown" ] 40 [ label = "Unknown" ] 41 [ label = "Unknown" ] 42 [ label = "Unknown" ] 43 [ label = "Unknown" ] - 44 [ label = "Unknown" ] + 44 [ label = "MapEdge" ] 45 [ label = "MapEdge" ] - 46 [ label = "Unknown" ] + 46 [ label = "MapEdge" ] 47 [ label = "Unknown" ] - 48 [ label = "MapEdge" ] + 48 [ label = "Unknown" ] 49 [ label = "Unknown" ] - 50 [ label = "Unknown" ] - 51 [ label = "Unknown" ] - 52 [ label = "MapEdge" ] - 53 [ label = "MapEdge" ] + 50 [ label = "MapEdge" ] + 51 [ label = "MapEdge" ] + 52 [ label = "Unknown" ] + 53 [ label = "Unknown" ] 54 [ label = "Unknown" ] - 55 [ label = "Unknown" ] - 56 [ label = "Unknown" ] - 57 [ label = "Unknown" ] - 58 [ label = "Unknown" ] - 59 [ label = "MapEdge" ] - 60 [ label = "MapEdge" ] - 61 [ label = "MapEdge" ] - 62 [ label = "MapEdge" ] - 63 [ label = "Unknown" ] - 64 [ label = "Unknown" ] - 65 [ label = "Unknown" ] - 66 [ label = "Unknown" ] - 67 [ label = "Unknown" ] - 68 [ label = "Unknown" ] - 69 [ label = "Unknown" ] - 70 [ label = "Unknown" ] - 71 [ label = "Unknown" ] - 72 [ label = "Unknown" ] - 73 [ label = "Unknown" ] - 74 [ label = "Unknown" ] - 75 [ label = "Unknown" ] - 76 [ label = "Unknown" ] - 77 [ label = "Unknown" ] - 78 [ label = "Unknown" ] - 79 [ label = "MapEdge" ] - 80 [ label = "Unknown" ] - 81 [ label = "Unknown" ] - 82 [ label = "Unknown" ] - 83 [ label = "MapEdge" ] - 84 [ label = "MapEdge" ] - 85 [ label = "Unknown" ] - 86 [ label = "Unknown" ] - 87 [ label = "MapEdge" ] - 88 [ label = "MapEdge" ] - 89 [ label = "Unknown" ] - 90 [ label = "MapEdge" ] - 91 [ label = "Unknown" ] - 92 [ label = "MapEdge" ] - 18 -> 66 [ label = "2 lanes" ] - 66 -> 19 [ label = "2 lanes" ] - 2 -> 85 [ label = "1 lanes" ] + 55 [ label = "MapEdge" ] + 56 [ label = "MapEdge" ] + 57 [ label = "MapEdge" ] + 58 [ label = "MapEdge" ] + 18 -> 19 [ label = "2 lanes" ] + 2 -> 1 [ label = "1 lanes" ] 3 -> 2 [ label = "1 lanes" ] - 85 -> 1 [ label = "1 lanes" ] 4 -> 5 [ label = "1 lanes" ] 2 -> 6 [ label = "2 lanes" ] 6 -> 2 [ label = "2 lanes" ] 4 -> 2 [ label = "2 lanes" ] 2 -> 4 [ label = "2 lanes" ] - 7 -> 46 [ label = "2 lanes" ] - 46 -> 7 [ label = "2 lanes" ] - 46 -> 4 [ label = "2 lanes" ] - 4 -> 46 [ label = "2 lanes" ] - 24 -> 54 [ label = "1 lanes" ] - 54 -> 24 [ label = "1 lanes" ] - 54 -> 23 [ label = "1 lanes" ] - 23 -> 54 [ label = "1 lanes" ] - 27 -> 49 [ label = "1 lanes" ] + 7 -> 4 [ label = "2 lanes" ] + 4 -> 7 [ label = "2 lanes" ] + 23 -> 47 [ label = "1 lanes" ] + 47 -> 23 [ label = "1 lanes" ] + 47 -> 22 [ label = "1 lanes" ] + 22 -> 47 [ label = "1 lanes" ] + 26 -> 27 [ label = "1 lanes" ] + 27 -> 28 [ label = "1 lanes" ] 28 -> 29 [ label = "1 lanes" ] - 29 -> 30 [ label = "1 lanes" ] - 49 -> 28 [ label = "1 lanes" ] - 32 -> 50 [ label = "1 lanes" ] - 33 -> 44 [ label = "1 lanes" ] - 44 -> 32 [ label = "1 lanes" ] - 50 -> 31 [ label = "1 lanes" ] - 28 -> 25 [ label = "1 lanes" ] - 32 -> 28 [ label = "1 lanes" ] - 34 -> 86 [ label = "1 lanes" ] - 86 -> 32 [ label = "1 lanes" ] - 39 -> 77 [ label = "2 lanes" ] - 77 -> 39 [ label = "1 lanes" ] - 42 -> 39 [ label = "2 lanes" ] - 39 -> 42 [ label = "1 lanes" ] - 45 -> 42 [ label = "2 lanes" ] - 42 -> 45 [ label = "1 lanes" ] - 77 -> 43 [ label = "2 lanes" ] - 43 -> 77 [ label = "1 lanes" ] - 40 -> 42 [ label = "1 lanes" ] - 42 -> 40 [ label = "1 lanes" ] - 41 -> 55 [ label = "1 lanes" ] - 55 -> 41 [ label = "1 lanes" ] - 55 -> 40 [ label = "1 lanes" ] - 40 -> 55 [ label = "1 lanes" ] - 39 -> 40 [ label = "1 lanes" ] - 1 -> 47 [ label = "2 lanes" ] + 31 -> 30 [ label = "1 lanes" ] + 32 -> 43 [ label = "1 lanes" ] + 43 -> 31 [ label = "1 lanes" ] + 27 -> 24 [ label = "1 lanes" ] + 31 -> 27 [ label = "1 lanes" ] + 33 -> 31 [ label = "1 lanes" ] + 38 -> 42 [ label = "2 lanes" ] + 42 -> 38 [ label = "1 lanes" ] + 41 -> 38 [ label = "2 lanes" ] + 38 -> 41 [ label = "1 lanes" ] + 44 -> 41 [ label = "2 lanes" ] + 41 -> 44 [ label = "1 lanes" ] + 39 -> 41 [ label = "1 lanes" ] + 41 -> 39 [ label = "1 lanes" ] + 40 -> 48 [ label = "1 lanes" ] + 48 -> 40 [ label = "1 lanes" ] + 48 -> 39 [ label = "1 lanes" ] + 39 -> 48 [ label = "1 lanes" ] + 38 -> 39 [ label = "1 lanes" ] + 1 -> 15 [ label = "2 lanes" ] 16 -> 1 [ label = "2 lanes" ] - 47 -> 15 [ label = "2 lanes" ] - 7 -> 21 [ label = "4 lanes" ] - 15 -> 69 [ label = "4 lanes" ] - 69 -> 7 [ label = "4 lanes" ] + 7 -> 20 [ label = "4 lanes" ] + 15 -> 7 [ label = "4 lanes" ] 17 -> 18 [ label = "3 lanes" ] 17 -> 11 [ label = "4 lanes" ] - 42 -> 37 [ label = "1 lanes" ] - 37 -> 42 [ label = "1 lanes" ] - 12 -> 65 [ label = "2 lanes" ] - 41 -> 13 [ label = "2 lanes" ] - 65 -> 41 [ label = "2 lanes" ] + 41 -> 36 [ label = "1 lanes" ] + 36 -> 41 [ label = "1 lanes" ] + 12 -> 40 [ label = "2 lanes" ] + 40 -> 13 [ label = "2 lanes" ] 11 -> 12 [ label = "5 lanes" ] - 11 -> 64 [ label = "5 lanes" ] - 64 -> 88 [ label = "5 lanes" ] + 11 -> 56 [ label = "5 lanes" ] 18 -> 9 [ label = "4 lanes" ] - 26 -> 29 [ label = "1 lanes" ] - 29 -> 44 [ label = "1 lanes" ] - 44 -> 0 [ label = "1 lanes" ] - 49 -> 48 [ label = "2 lanes" ] - 50 -> 49 [ label = "2 lanes" ] - 75 -> 50 [ label = "2 lanes" ] - 86 -> 71 [ label = "2 lanes" ] - 71 -> 75 [ label = "2 lanes" ] - 87 -> 86 [ label = "2 lanes" ] - 76 -> 46 [ label = "2 lanes" ] - 85 -> 68 [ label = "2 lanes" ] - 68 -> 76 [ label = "2 lanes" ] - 46 -> 79 [ label = "2 lanes" ] - 83 -> 85 [ label = "2 lanes" ] - 59 -> 54 [ label = "2 lanes" ] - 58 -> 57 [ label = "2 lanes" ] - 54 -> 58 [ label = "2 lanes" ] - 57 -> 61 [ label = "2 lanes" ] + 25 -> 28 [ label = "1 lanes" ] + 28 -> 43 [ label = "1 lanes" ] + 43 -> 0 [ label = "1 lanes" ] + 50 -> 47 [ label = "1 lanes" ] + 47 -> 49 [ label = "1 lanes" ] 15 -> 14 [ label = "5 lanes" ] 9 -> 10 [ label = "2 lanes" ] - 20 -> 12 [ label = "5 lanes" ] - 38 -> 82 [ label = "5 lanes" ] - 43 -> 20 [ label = "5 lanes" ] - 82 -> 43 [ label = "5 lanes" ] - 14 -> 51 [ label = "3 lanes" ] - 34 -> 35 [ label = "3 lanes" ] - 51 -> 34 [ label = "3 lanes" ] + 37 -> 54 [ label = "5 lanes" ] + 42 -> 12 [ label = "5 lanes" ] + 54 -> 42 [ label = "5 lanes" ] + 14 -> 33 [ label = "3 lanes" ] + 33 -> 34 [ label = "3 lanes" ] 14 -> 10 [ label = "4 lanes" ] 12 -> 18 [ label = "4 lanes" ] - 10 -> 74 [ label = "2 lanes" ] - 74 -> 52 [ label = "2 lanes" ] + 10 -> 45 [ label = "2 lanes" ] 10 -> 17 [ label = "4 lanes" ] 9 -> 15 [ label = "4 lanes" ] - 27 -> 31 [ label = "4 lanes" ] - 31 -> 70 [ label = "4 lanes" ] - 60 -> 27 [ label = "4 lanes" ] - 70 -> 14 [ label = "4 lanes" ] - 22 -> 24 [ label = "3 lanes" ] - 24 -> 72 [ label = "3 lanes" ] - 72 -> 11 [ label = "3 lanes" ] - 53 -> 73 [ label = "4 lanes" ] - 73 -> 17 [ label = "4 lanes" ] - 8 -> 67 [ label = "3 lanes" ] - 67 -> 9 [ label = "3 lanes" ] - 64 -> 20 [ label = "2 lanes" ] - 20 -> 56 [ label = "2 lanes" ] - 57 -> 64 [ label = "2 lanes" ] - 77 -> 56 [ label = "2 lanes" ] - 81 -> 77 [ label = "2 lanes" ] - 56 -> 78 [ label = "2 lanes" ] - 62 -> 81 [ label = "2 lanes" ] - 67 -> 47 [ label = "2 lanes" ] - 78 -> 65 [ label = "2 lanes" ] - 65 -> 66 [ label = "2 lanes" ] - 66 -> 67 [ label = "2 lanes" ] - 47 -> 68 [ label = "2 lanes" ] - 76 -> 69 [ label = "2 lanes" ] - 89 -> 70 [ label = "2 lanes" ] - 70 -> 75 [ label = "2 lanes" ] - 91 -> 89 [ label = "2 lanes" ] - 69 -> 91 [ label = "2 lanes" ] - 74 -> 51 [ label = "2 lanes" ] - 51 -> 71 [ label = "2 lanes" ] - 58 -> 72 [ label = "2 lanes" ] - 72 -> 73 [ label = "2 lanes" ] - 73 -> 74 [ label = "2 lanes" ] - 81 -> 80 [ label = "1 lanes" ] - 80 -> 81 [ label = "1 lanes" ] - 82 -> 81 [ label = "1 lanes" ] - 81 -> 82 [ label = "1 lanes" ] - 78 -> 55 [ label = "2 lanes" ] - 55 -> 84 [ label = "2 lanes" ] - 89 -> 14 [ label = "1 lanes" ] - 90 -> 89 [ label = "1 lanes" ] - 15 -> 91 [ label = "1 lanes" ] - 91 -> 92 [ label = "1 lanes" ] + 26 -> 30 [ label = "4 lanes" ] + 30 -> 14 [ label = "4 lanes" ] + 51 -> 26 [ label = "4 lanes" ] + 21 -> 23 [ label = "3 lanes" ] + 23 -> 11 [ label = "3 lanes" ] + 46 -> 17 [ label = "4 lanes" ] + 8 -> 9 [ label = "3 lanes" ] + 54 -> 53 [ label = "1 lanes" ] + 53 -> 54 [ label = "1 lanes" ] + 52 -> 48 [ label = "1 lanes" ] + 48 -> 55 [ label = "1 lanes" ] + 57 -> 14 [ label = "1 lanes" ] + 15 -> 58 [ label = "1 lanes" ] } diff --git a/tests/src/tempe_light_rail/geometry.json b/tests/src/tempe_light_rail/geometry.json index 6562f6b2..fe3c2f32 100644 --- a/tests/src/tempe_light_rail/geometry.json +++ b/tests/src/tempe_light_rail/geometry.json @@ -1,5 +1,41 @@ { "features": [ + { + "geometry": { + "coordinates": [ + [ + [ + -111.90801770330815, + 33.414749397940454 + ], + [ + -111.90860742325525, + 33.4147502334101 + ], + [ + -111.90860745988682, + 33.414732246980556 + ], + [ + -111.90801773993972, + 33.4147314115109 + ], + [ + -111.90801770330815, + 33.414749397940454 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 1501648604, + "osm_way_id": 136876988, + "src_i": 1501648599, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -686,6 +722,80 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.90790996336843, + 33.4147492450558 + ], + [ + -111.90791, + 33.414731258626254 + ], + [ + -111.90801773993972, + 33.4147314115109 + ], + [ + -111.90801770330815, + 33.414749397940454 + ], + [ + -111.90790996336843, + 33.4147492450558 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/1501648599", + "osm_node_id": 1501648599, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.90871519982656, + 33.41473239986521 + ], + [ + -111.90871516319497, + 33.414750386294756 + ], + [ + -111.90860742325525, + 33.4147502334101 + ], + [ + -111.90860745988682, + 33.414732246980556 + ], + [ + -111.90871519982656, + 33.41473239986521 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Terminus", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/1501648604", + "osm_node_id": 1501648604, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ diff --git a/tests/src/tempe_light_rail/road_network.dot b/tests/src/tempe_light_rail/road_network.dot index 22b400ab..99f95ae7 100644 --- a/tests/src/tempe_light_rail/road_network.dot +++ b/tests/src/tempe_light_rail/road_network.dot @@ -2,37 +2,40 @@ digraph { 0 [ label = "MapEdge" ] 1 [ label = "MapEdge" ] 2 [ label = "MapEdge" ] - 3 [ label = "MapEdge" ] + 3 [ label = "Unknown" ] 4 [ label = "MapEdge" ] 5 [ label = "MapEdge" ] - 6 [ label = "Lights RoadIntersection" ] + 6 [ label = "MapEdge" ] 7 [ label = "MapEdge" ] - 8 [ label = "Unknown" ] + 8 [ label = "Lights RoadIntersection" ] 9 [ label = "MapEdge" ] 10 [ label = "Unknown" ] 11 [ label = "MapEdge" ] 12 [ label = "Unknown" ] - 13 [ label = "Unknown" ] - 14 [ label = "MapEdge" ] - 6 -> 5 [ label = "4 lanes" ] - 9 -> 13 [ label = "5 lanes" ] - 13 -> 6 [ label = "5 lanes" ] - 6 -> 4 [ label = "4 lanes" ] - 7 -> 6 [ label = "5 lanes" ] - 6 -> 8 [ label = "5 lanes" ] - 8 -> 6 [ label = "6 lanes" ] - 11 -> 10 [ label = "4 lanes" ] - 10 -> 11 [ label = "4 lanes" ] - 10 -> 12 [ label = "6 lanes" ] - 12 -> 10 [ label = "3 lanes" ] - 12 -> 6 [ label = "6 lanes" ] - 6 -> 12 [ label = "3 lanes" ] - 12 -> 13 [ label = "1 lanes" ] - 13 -> 12 [ label = "1 lanes" ] - 8 -> 14 [ label = "4 lanes" ] - 14 -> 8 [ label = "4 lanes" ] - 6 -> 3 [ label = "1 lanes" ] - 2 -> 6 [ label = "1 lanes" ] - 6 -> 1 [ label = "1 lanes" ] - 0 -> 6 [ label = "1 lanes" ] + 13 [ label = "MapEdge" ] + 14 [ label = "Unknown" ] + 15 [ label = "Unknown" ] + 16 [ label = "MapEdge" ] + 3 -> 2 [ label = "1 lanes" ] + 8 -> 7 [ label = "4 lanes" ] + 11 -> 15 [ label = "5 lanes" ] + 15 -> 8 [ label = "5 lanes" ] + 8 -> 6 [ label = "4 lanes" ] + 9 -> 8 [ label = "5 lanes" ] + 8 -> 10 [ label = "5 lanes" ] + 10 -> 8 [ label = "6 lanes" ] + 13 -> 12 [ label = "4 lanes" ] + 12 -> 13 [ label = "4 lanes" ] + 12 -> 14 [ label = "6 lanes" ] + 14 -> 12 [ label = "3 lanes" ] + 14 -> 8 [ label = "6 lanes" ] + 8 -> 14 [ label = "3 lanes" ] + 14 -> 15 [ label = "1 lanes" ] + 15 -> 14 [ label = "1 lanes" ] + 10 -> 16 [ label = "4 lanes" ] + 16 -> 10 [ label = "4 lanes" ] + 8 -> 5 [ label = "1 lanes" ] + 4 -> 8 [ label = "1 lanes" ] + 8 -> 1 [ label = "1 lanes" ] + 0 -> 8 [ label = "1 lanes" ] } diff --git a/tests/src/tempe_split/geometry.json b/tests/src/tempe_split/geometry.json index 20eb0908..ca0ad5e0 100644 --- a/tests/src/tempe_split/geometry.json +++ b/tests/src/tempe_split/geometry.json @@ -49,8 +49,8 @@ "coordinates": [ [ [ - -111.93985726381855, - 33.42204674515464 + -111.93985670352224, + 33.42200470817742 ], [ -111.93986220627843, @@ -69,12 +69,12 @@ 33.422414933604905 ], [ - -111.93994751677796, - 33.42204590698715 + -111.93994695648166, + 33.42200387000994 ], [ - -111.93985726381855, - 33.42204674515464 + -111.93985670352224, + 33.42200470817742 ] ] ], @@ -97,12 +97,12 @@ 33.42153016778458 ], [ - -111.93982747545012, - 33.421848859387154 + -111.93982795385696, + 33.421869403483754 ], [ - -111.93997025403291, - 33.42184654273539 + -111.93997073243976, + 33.421867086831995 ], [ -111.93996283333938, @@ -196,6 +196,42 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93990756765159, + 33.42198494199377 + ], + [ + -111.93993766849295, + 33.421958771742894 + ], + [ + -111.93988616002285, + 33.421917500088135 + ], + [ + -111.9398560591815, + 33.42194367033901 + ], + [ + -111.93990756765159, + 33.42198494199377 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2941419917, + "osm_way_id": 436794680, + "src_i": 2860653268, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -237,31 +273,31 @@ "coordinates": [ [ [ - -111.93942214525242, - 33.42204815349185 + -111.93942199224844, + 33.422014982923685 ], [ - -111.93982986532934, - 33.42204683328813 + -111.9398309180399, + 33.42201365822336 ], [ - -111.939829311498, - 33.42192764083552 + -111.93983064004674, + 33.421954061997056 ], [ - -111.93942159142108, - 33.42192896103924 + -111.93942171425527, + 33.421955386697384 ], [ - -111.93942214525242, - 33.42204815349185 + -111.93942199224844, + 33.422014982923685 ] ] ], "type": "Polygon" }, "properties": { - "dst_i": 2941419917, + "dst_i": 2860653268, "osm_way_id": 436794680, "src_i": 5707494413, "type": "road" @@ -417,24 +453,24 @@ "coordinates": [ [ [ - -111.9398274776051, - 33.42184885758851 + -111.93982677831222, + 33.421871065429585 ], [ - -111.93835758120007, - 33.42185272916686 + -111.93835766524451, + 33.421874935209296 ], [ - -111.93835786565818, - 33.421928063516546 + -111.93835780747357, + 33.42191260238414 ], [ - -111.93982776206323, - 33.421924191938196 + -111.93982692054128, + 33.42190873260443 ], [ - -111.9398274776051, - 33.42184885758851 + -111.93982677831222, + 33.421871065429585 ] ] ], @@ -443,6 +479,42 @@ "properties": { "dst_i": 2065989266, "osm_way_id": 533573776, + "src_i": 2239876836, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93992706273043, + 33.4219194965815 + ], + [ + -111.93990775082538, + 33.421904592128996 + ], + [ + -111.93987711123758, + 33.421932248058724 + ], + [ + -111.93989642314263, + 33.42194715251123 + ], + [ + -111.93992706273043, + 33.4219194965815 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2239876836, + "osm_way_id": 533573776, "src_i": 2941419917, "type": "road" }, @@ -489,23 +561,259 @@ "coordinates": [ [ [ - -111.93937327987238, + -111.93980622621285, + 33.42205902538748 + ], + [ + -111.93979221018535, + 33.422054511693695 + ], + [ + -111.93942182415954, + 33.42205469965185 + ], + [ + -111.93942183708945, + 33.42207268607858 + ], + [ + -111.9397881997568, + 33.42207249991906 + ], + [ + -111.93979846826404, + 33.42207580672361 + ], + [ + -111.93980622621285, + 33.42205902538748 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5717678154, + "osm_way_id": 561633983, + "src_i": 5415307199, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93987121735147, + 33.42251995635054 + ], + [ + -111.93986834152294, + 33.422140124386935 + ], + [ + -111.93986114279295, + 33.42209967740984 + ], + [ + -111.93985623373534, + 33.42209323017518 + ], + [ + -111.93983804565536, + 33.42210287629583 + ], + [ + -111.93984050018418, + 33.42210610036282 + ], + [ + -111.9398468002851, + 33.42214150034857 + ], + [ + -111.93984966749368, + 33.422520069665026 + ], + [ + -111.93987121735147, + 33.42251995635054 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5415307199, + "osm_way_id": 561633983, + "src_i": 5415311167, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93936776741877, + 33.42205491818694 + ], + [ + -111.93904065242992, + 33.42205740301179 + ], + [ + -111.93873807303167, + 33.42202779555476 + ], + [ + -111.93823380420437, + 33.422035330068915 + ], + [ + -111.93822974636615, + 33.422317387816854 + ], + [ + -111.93825129406896, + 33.42231760365398 + ], + [ + -111.93825509977384, + 33.42205299993453 + ], + [ + -111.93873699984874, + 33.42204579996791 + ], + [ + -111.93903949951253, + 33.42207540023037 + ], + [ + -111.93936796352247, + 33.422072904613664 + ], + [ + -111.93936776741877, + 33.42205491818694 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 7121900770, + "osm_way_id": 561633983, + "src_i": 5717678154, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.9398775917994, + 33.4219429994453 + ], + [ + -111.93987711123758, + 33.421932248058724 + ], + [ + -111.93985557646468, + 33.42193291895244 + ], + [ + -111.9398560570265, + 33.42194367033901 + ], + [ + -111.9398775917994, + 33.4219429994453 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2239876836, + "osm_way_id": 561633985, + "src_i": 2860653268, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93985807840318, + 33.42208481342679 + ], + [ + -111.9398808048832, + 33.42207060145172 + ], + [ + -111.93987963472591, + 33.42200262175192 + ], + [ + -111.93985808702311, + 33.422002880756466 + ], + [ + -111.93985909986642, + 33.422061699969134 + ], + [ + -111.93984515710844, + 33.42207041888949 + ], + [ + -111.93985807840318, + 33.42208481342679 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 2860653268, + "osm_way_id": 561633985, + "src_i": 5415307199, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93937334990943, 33.42204832166494 ], [ - -111.93937297386441, - 33.4223394005052 + -111.93937334990943, + 33.42205021653499 ], [ - -111.93941607357999, - 33.42233943288077 + -111.93941644962501, + 33.42205021653499 ], [ - -111.93941637958797, - 33.422048354040506 + -111.93941644962501, + 33.42204832166494 ], [ - -111.93937327987238, + -111.93937334990943, 33.42204832166494 ] ] @@ -513,13 +821,49 @@ "type": "Polygon" }, "properties": { - "dst_i": 6672807663, + "dst_i": 5717678154, "osm_way_id": 600096923, "src_i": 5707494413, "type": "road" }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93937331866213, + 33.42209516191741 + ], + [ + -111.93937298140686, + 33.422339396008596 + ], + [ + -111.93941608112245, + 33.422339437377374 + ], + [ + -111.93941641837772, + 33.42209520328619 + ], + [ + -111.93937331866213, + 33.42209516191741 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 6672807663, + "osm_way_id": 600096923, + "src_i": 5717678154, + "type": "road" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -729,24 +1073,24 @@ "coordinates": [ [ [ - -111.93835782902343, - 33.422604042895465 + -111.93835781393852, + 33.42260339808207 ], [ - -111.93937184357436, - 33.422600870989115 + -111.93937182741197, + 33.42260085390201 ], [ - -111.93937168195043, - 33.42256489813567 + -111.93937169811284, + 33.422564881048565 ], [ - -111.93835766739949, - 33.422568070042026 + -111.93835768463937, + 33.42256742522862 ], [ - -111.93835782902343, - 33.422604042895465 + -111.93835781393852, + 33.42260339808207 ] ] ], @@ -755,7 +1099,91 @@ "properties": { "dst_i": 7121900772, "osm_way_id": 762209212, - "src_i": 7121900769, + "src_i": -1, + "type": "road" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93987488513726, + 33.42187041162297 + ], + [ + -111.9398741966193, + 33.42183691999709 + ], + [ + -111.9398275099299, + 33.4217987069342 + ], + [ + -111.93975423502594, + 33.42182343737162 + ], + [ + -111.93908585110165, + 33.42182731344658 + ], + [ + -111.93904746649496, + 33.42182731344658 + ], + [ + -111.93902004322342, + 33.42180239235304 + ], + [ + -111.93835769325932, + 33.42180385734749 + ], + [ + -111.93835774928895, + 33.42182184377421 + ], + [ + -111.93901060007575, + 33.42182040036347 + ], + [ + -111.93903799964242, + 33.421845299873304 + ], + [ + -111.93908599979568, + 33.421845299873304 + ], + [ + -111.9397584997428, + 33.42184140041599 + ], + [ + -111.93982249958796, + 33.42181979961682 + ], + [ + -111.9398527997655, + 33.421844600201304 + ], + [ + -111.93985333743446, + 33.42187072098951 + ], + [ + -111.93987488513726, + 33.42187041162297 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "dst_i": 5415316931, + "osm_way_id": 909817905, + "src_i": 2239876836, "type": "road" }, "type": "Feature" @@ -832,6 +1260,43 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93825006464957, + 33.42260366877779 + ], + [ + -111.93824993535043, + 33.42256769592434 + ], + [ + -111.93835768463937, + 33.42256742522862 + ], + [ + -111.93835781393852, + 33.42260339808207 + ], + [ + -111.93825006464957, + 33.42260366877779 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/-1", + "osm_node_id": -1, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -874,24 +1339,24 @@ "coordinates": [ [ [ - -111.93825011636923, - 33.42192834770209 + -111.93825005818461, + 33.42191288656968 ], [ - -111.93824983191111, - 33.421853013352404 + -111.93824991595555, + 33.421875219394835 ], [ - -111.93835758120007, - 33.42185272916686 + -111.93835766524451, + 33.421874935209296 ], [ - -111.93835786565818, - 33.421928063516546 + -111.93835780747357, + 33.42191260238414 ], [ - -111.93825011636923, - 33.42192834770209 + -111.93825005818461, + 33.42191288656968 ] ] ], @@ -906,6 +1371,108 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93987506938855, + 33.421879372460765 + ], + [ + -111.93990775082538, + 33.421904592128996 + ], + [ + -111.93987711123758, + 33.421932248058724 + ], + [ + -111.93985557646468, + 33.42193291895244 + ], + [ + -111.93982692054128, + 33.42190873260443 + ], + [ + -111.93982677831222, + 33.421871065429585 + ], + [ + -111.93985334282192, + 33.42187099528252 + ], + [ + -111.93987488513726, + 33.42187041162297 + ], + [ + -111.93987506938855, + 33.421879372460765 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2239876836", + "osm_node_id": 2239876836, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93990756765159, + 33.42198494199377 + ], + [ + -111.93987963472591, + 33.42200262175192 + ], + [ + -111.93985808702311, + 33.422002880756466 + ], + [ + -111.9398309180399, + 33.42201365822336 + ], + [ + -111.93983064004674, + 33.421954061997056 + ], + [ + -111.9398560591815, + 33.42194367033901 + ], + [ + -111.9398775917994, + 33.4219429994453 + ], + [ + -111.93990756765159, + 33.42198494199377 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/2860653268", + "osm_node_id": 2860653268, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -956,32 +1523,36 @@ 33.4220297614712 ], [ - -111.93994751677796, - 33.42204590698715 + -111.93994695648166, + 33.42200387000994 + ], + [ + -111.93985670352224, + 33.42200470817742 ], [ - -111.93985726381855, - 33.42204674515464 + -111.93993766849295, + 33.421958771742894 ], [ - -111.93982986532934, - 33.42204683328813 + -111.93988616002285, + 33.421917500088135 ], [ - -111.939829311498, - 33.42192764083552 + -111.93989642314263, + 33.42194715251123 ], [ - -111.93982776206323, - 33.421924191938196 + -111.93992706273043, + 33.4219194965815 ], [ - -111.9398274776051, - 33.42184885758851 + -111.93982795385696, + 33.421869403483754 ], [ - -111.93997025403291, - 33.42184654273539 + -111.93997073243976, + 33.421867086831995 ], [ -111.94004546626908, @@ -1317,23 +1888,142 @@ "coordinates": [ [ [ - -111.93939465409885, - 33.42192904827341 + -111.93985248837006, + 33.42208830908883 ], [ - -111.93942159142108, - 33.42192896103924 + -111.93985623373534, + 33.42209323017518 ], [ - -111.93942214525242, - 33.42204815349185 + -111.93983804565536, + 33.42210287629583 ], [ - -111.93941637958797, - 33.42204817237759 + -111.93982359970819, + 33.42208389971632 ], [ - -111.93937327987238, + -111.93979846826404, + 33.42207580672361 + ], + [ + -111.93980622621285, + 33.42205902538748 + ], + [ + -111.93984515710844, + 33.42207041888949 + ], + [ + -111.93985807840318, + 33.42208481342679 + ], + [ + -111.93985248837006, + 33.42208830908883 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5415307199", + "osm_node_id": 5415307199, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93987189832697, + 33.422609886685514 + ], + [ + -111.93985034846918, + 33.42261 + ], + [ + -111.93984966749368, + 33.422520069665026 + ], + [ + -111.93987121735147, + 33.42251995635054 + ], + [ + -111.93987189832697, + 33.422609886685514 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/5415311167", + "osm_node_id": 5415311167, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93825, + 33.421822082094366 + ], + [ + -111.93824994397036, + 33.421804095667646 + ], + [ + -111.93835769325932, + 33.42180385734749 + ], + [ + -111.93835774928895, + 33.42182184377421 + ], + [ + -111.93825, + 33.421822082094366 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "MapEdge", + "control": "Border", + "osm_link": "https://www.openstreetmap.org/node/5415316931", + "osm_node_id": 5415316931, + "type": "intersection" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93941644962501, + 33.422015000910115 + ], + [ + -111.93941644962501, + 33.42204832166494 + ], + [ + -111.93937334990943, 33.42204832166494 ], [ @@ -1345,8 +2035,16 @@ 33.4219291489974 ], [ - -111.93939465409885, - 33.42192904827341 + -111.93942171425527, + 33.421955386697384 + ], + [ + -111.93942199224844, + 33.422014982923685 + ], + [ + -111.93941644962501, + 33.422015000910115 ] ] ], @@ -1398,6 +2096,63 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + [ + [ + -111.93941641837772, + 33.42209520328619 + ], + [ + -111.93937331866213, + 33.42209516191741 + ], + [ + -111.93937334990943, + 33.42207286324488 + ], + [ + -111.93936796352247, + 33.422072904613664 + ], + [ + -111.93936776741877, + 33.42205491818694 + ], + [ + -111.93937334990943, + 33.42205021653499 + ], + [ + -111.93941644962501, + 33.42205021653499 + ], + [ + -111.93942182415954, + 33.42205469965185 + ], + [ + -111.93942183708945, + 33.42207268607858 + ], + [ + -111.93941641837772, + 33.42209520328619 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "complexity": "Crossing", + "control": "StopSign", + "osm_link": "https://www.openstreetmap.org/node/5717678154", + "osm_node_id": 5717678154, + "type": "intersection" + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -1478,7 +2233,7 @@ [ [ -111.93941604987515, - 33.42236179180783 + 33.42236179360647 ], [ -111.93941647440735, @@ -1501,20 +2256,20 @@ 33.42234402211755 ], [ - -111.93937296847695, + -111.9393729749419, 33.42234399963451 ], [ - -111.93937297386441, - 33.4223394005052 + -111.93937298140686, + 33.422339396008596 ], [ - -111.93941607357999, - 33.42233943288077 + -111.93941608112245, + 33.422339437377374 ], [ -111.93941604987515, - 33.42236179180783 + 33.42236179360647 ] ] ], @@ -1620,24 +2375,24 @@ "coordinates": [ [ [ - -111.93825008081197, - 33.42260438014097 + -111.93825, + 33.42240752949234 ], [ - -111.93824991918802, - 33.42256840728752 + -111.9382284522972, + 33.42240731365522 ], [ - -111.93835766739949, - 33.422568070042026 + -111.93822974636615, + 33.422317387816854 ], [ - -111.93835782902343, - 33.422604042895465 + -111.93825129406896, + 33.42231760365398 ], [ - -111.93825008081197, - 33.42260438014097 + -111.93825, + 33.42240752949234 ] ] ], @@ -1646,8 +2401,8 @@ "properties": { "complexity": "MapEdge", "control": "Border", - "osm_link": "https://www.openstreetmap.org/node/7121900769", - "osm_node_id": 7121900769, + "osm_link": "https://www.openstreetmap.org/node/7121900770", + "osm_node_id": 7121900770, "type": "intersection" }, "type": "Feature" @@ -1669,16 +2424,16 @@ 33.42260551418517 ], [ - -111.93937184357436, - 33.422600870989115 + -111.93937182741197, + 33.42260085390201 ], [ - -111.93937168195043, - 33.42256489813567 + -111.93937169811284, + 33.422564881048565 ], [ -111.93937680758411, - 33.422564881947885 + 33.42256486845807 ], [ -111.93937672569466, diff --git a/tests/src/tempe_split/road_network.dot b/tests/src/tempe_split/road_network.dot index 04bfc24b..b409a705 100644 --- a/tests/src/tempe_split/road_network.dot +++ b/tests/src/tempe_split/road_network.dot @@ -2,58 +2,77 @@ digraph { 0 [ label = "MapEdge" ] 1 [ label = "MapEdge" ] 2 [ label = "MapEdge" ] - 3 [ label = "Lights RoadIntersection" ] - 4 [ label = "MapEdge" ] - 5 [ label = "Unknown" ] - 6 [ label = "Unknown" ] + 3 [ label = "Unknown" ] + 4 [ label = "Unknown" ] + 5 [ label = "MapEdge" ] + 6 [ label = "Lights RoadIntersection" ] 7 [ label = "MapEdge" ] - 8 [ label = "MapEdge" ] + 8 [ label = "Unknown" ] 9 [ label = "Unknown" ] - 10 [ label = "Unknown" ] - 11 [ label = "Unknown" ] + 10 [ label = "MapEdge" ] + 11 [ label = "MapEdge" ] 12 [ label = "Unknown" ] - 13 [ label = "MapEdge" ] - 14 [ label = "MapEdge" ] - 15 [ label = "MapEdge" ] - 16 [ label = "Unknown" ] - 17 [ label = "Unknown" ] + 13 [ label = "Unknown" ] + 14 [ label = "Unknown" ] + 15 [ label = "Unknown" ] + 16 [ label = "MapEdge" ] + 17 [ label = "MapEdge" ] 18 [ label = "Unknown" ] 19 [ label = "MapEdge" ] 20 [ label = "Unknown" ] - 21 [ label = "Unknown" ] - 22 [ label = "MapEdge" ] + 21 [ label = "MapEdge" ] + 22 [ label = "Unknown" ] 23 [ label = "MapEdge" ] - 3 -> 23 [ label = "4 lanes" ] - 3 -> 7 [ label = "4 lanes" ] - 5 -> 3 [ label = "6 lanes" ] - 0 -> 6 [ label = "4 lanes" ] - 6 -> 3 [ label = "7 lanes" ] - 11 -> 12 [ label = "6 lanes" ] - 12 -> 3 [ label = "6 lanes" ] - 9 -> 8 [ label = "4 lanes" ] - 8 -> 9 [ label = "5 lanes" ] - 3 -> 18 [ label = "4 lanes" ] - 18 -> 3 [ label = "6 lanes" ] - 10 -> 9 [ label = "4 lanes" ] - 9 -> 10 [ label = "6 lanes" ] - 18 -> 10 [ label = "4 lanes" ] - 10 -> 18 [ label = "6 lanes" ] - 3 -> 1 [ label = "4 lanes" ] - 2 -> 11 [ label = "4 lanes" ] - 12 -> 16 [ label = "1 lanes" ] - 16 -> 12 [ label = "1 lanes" ] - 16 -> 20 [ label = "1 lanes" ] - 20 -> 16 [ label = "1 lanes" ] - 20 -> 13 [ label = "1 lanes" ] - 13 -> 20 [ label = "1 lanes" ] - 10 -> 14 [ label = "0 lanes" ] - 15 -> 18 [ label = "1 lanes" ] - 18 -> 15 [ label = "1 lanes" ] - 17 -> 16 [ label = "1 lanes" ] - 16 -> 17 [ label = "1 lanes" ] - 19 -> 20 [ label = "1 lanes" ] - 20 -> 19 [ label = "1 lanes" ] - 22 -> 21 [ label = "1 lanes" ] - 21 -> 22 [ label = "1 lanes" ] - 4 -> 5 [ label = "5 lanes" ] + 24 [ label = "Unknown" ] + 25 [ label = "Unknown" ] + 26 [ label = "Unknown" ] + 27 [ label = "Unknown" ] + 28 [ label = "MapEdge" ] + 29 [ label = "Unknown" ] + 30 [ label = "Unknown" ] + 31 [ label = "MapEdge" ] + 32 [ label = "MapEdge" ] + 6 -> 32 [ label = "4 lanes" ] + 6 -> 10 [ label = "4 lanes" ] + 8 -> 6 [ label = "6 lanes" ] + 1 -> 9 [ label = "4 lanes" ] + 9 -> 6 [ label = "7 lanes" ] + 4 -> 6 [ label = "6 lanes" ] + 14 -> 18 [ label = "6 lanes" ] + 18 -> 4 [ label = "6 lanes" ] + 12 -> 11 [ label = "4 lanes" ] + 11 -> 12 [ label = "5 lanes" ] + 6 -> 26 [ label = "4 lanes" ] + 26 -> 6 [ label = "6 lanes" ] + 13 -> 12 [ label = "4 lanes" ] + 12 -> 13 [ label = "6 lanes" ] + 26 -> 13 [ label = "4 lanes" ] + 13 -> 26 [ label = "6 lanes" ] + 3 -> 2 [ label = "4 lanes" ] + 6 -> 3 [ label = "4 lanes" ] + 5 -> 14 [ label = "4 lanes" ] + 20 -> 15 [ label = "1 lanes" ] + 15 -> 16 [ label = "1 lanes" ] + 28 -> 20 [ label = "1 lanes" ] + 3 -> 4 [ label = "1 lanes" ] + 4 -> 15 [ label = "1 lanes" ] + 18 -> 20 [ label = "1 lanes" ] + 20 -> 18 [ label = "1 lanes" ] + 20 -> 24 [ label = "1 lanes" ] + 24 -> 20 [ label = "1 lanes" ] + 24 -> 29 [ label = "1 lanes" ] + 29 -> 24 [ label = "1 lanes" ] + 29 -> 19 [ label = "1 lanes" ] + 19 -> 29 [ label = "1 lanes" ] + 13 -> 21 [ label = "0 lanes" ] + 23 -> 26 [ label = "1 lanes" ] + 26 -> 23 [ label = "1 lanes" ] + 25 -> 24 [ label = "1 lanes" ] + 24 -> 25 [ label = "1 lanes" ] + 0 -> 29 [ label = "1 lanes" ] + 29 -> 0 [ label = "1 lanes" ] + 17 -> 3 [ label = "1 lanes" ] + 31 -> 30 [ label = "1 lanes" ] + 30 -> 31 [ label = "1 lanes" ] + 7 -> 8 [ label = "5 lanes" ] }