From 3912a241f7cfe73fe06482b0cc1b924a67e0339f Mon Sep 17 00:00:00 2001
From: Dustin Carlino <dabreegster@gmail.com>
Date: Thu, 4 Apr 2024 18:34:29 +0100
Subject: [PATCH] Get rid of the TrimDeadendCycleways transformation

---
 docs/how_it_works.md                          |     4 -
 osm2streets-js/src/lib.rs                     |     1 -
 osm2streets/src/operations/zip_sidepath.rs    |     3 +-
 .../src/transform/collapse_intersections.rs   |    43 +-
 osm2streets/src/transform/mod.rs              |     9 -
 tests/src/arizona_highways/geometry.json      |   240 +
 tests/src/aurora_sausage_link/geometry.json   |   240 +
 tests/src/borough_sausage_links/geometry.json |   120 +
 .../bristol_contraflow_cycleway/geometry.json |   295 +-
 tests/src/bristol_sausage_links/geometry.json |   115 +-
 tests/src/cycleway_rejoin_road/geometry.json  |   198 +-
 tests/src/degenerate_bug/geometry.json        |    57 +-
 tests/src/i5_exit_ramp/geometry.json          |  1384 +-
 tests/src/kingsway_junction/geometry.json     |   790 +-
 tests/src/leeds_cycleway/geometry.json        | 26319 ++++++++++------
 tests/src/neukolln/geometry.json              |  2661 +-
 .../northgate_dual_carriageway/geometry.json  |  1208 +-
 tests/src/oneway_loop/geometry.json           |   520 +-
 tests/src/quad_intersection/geometry.json     |   120 +
 tests/src/roosevelt_cycletrack/geometry.json  |  1116 +-
 tests/src/seattle_slip_lane/geometry.json     |   348 +-
 tests/src/st_georges_cycletrack/geometry.json |  1121 +-
 tests/src/tempe_light_rail/geometry.json      |   470 +-
 23 files changed, 26510 insertions(+), 10872 deletions(-)

diff --git a/docs/how_it_works.md b/docs/how_it_works.md
index 8a1f0aeb..45739276 100644
--- a/docs/how_it_works.md
+++ b/docs/how_it_works.md
@@ -72,10 +72,6 @@ But it's also confusing in a few ways:
 
 Specific transformations are described below in no particular order. (But that's confusing; they should be)
 
-### TrimDeadendCycleways
-
-We sometimes wind up with short dead-end roads that're nice to remove. One example is short service roads -- I recall these happening in Seattle, maybe related to how driveways are tagged there. Another is also a bit Seattle-specific -- when we try to import separate cyclepaths but not footways there, there are some dangling "stubs" of cycleway leftover sometimes.
-
 ### SnapCycleways (experimental)
 
 See <https://github.com/a-b-street/osm2streets/pull/61> for now
diff --git a/osm2streets-js/src/lib.rs b/osm2streets-js/src/lib.rs
index 787a9d00..1a62ced1 100644
--- a/osm2streets-js/src/lib.rs
+++ b/osm2streets-js/src/lib.rs
@@ -75,7 +75,6 @@ impl JsStreetNetwork {
         }
         if input.sidepath_zipping_experiment {
             transformations.push(Transformation::ZipSidepaths);
-            transformations.push(Transformation::TrimDeadendCycleways);
             transformations.push(Transformation::CollapseDegenerateIntersections);
         }
         if input.debug_each_step {
diff --git a/osm2streets/src/operations/zip_sidepath.rs b/osm2streets/src/operations/zip_sidepath.rs
index 37ffcea0..2187c337 100644
--- a/osm2streets/src/operations/zip_sidepath.rs
+++ b/osm2streets/src/operations/zip_sidepath.rs
@@ -190,8 +190,7 @@ impl Sidepath {
         }
 
         // After this transformation, we should run CollapseDegenerateIntersections to handle the
-        // intersection where the side road originally crossed the sidepath, and TrimDeadendCycleways
-        // to clean up any small cycle connection roads.
+        // intersection where the side road originally crossed the sidepath
     }
 }
 
diff --git a/osm2streets/src/transform/collapse_intersections.rs b/osm2streets/src/transform/collapse_intersections.rs
index a5e481f0..0bd685b2 100644
--- a/osm2streets/src/transform/collapse_intersections.rs
+++ b/osm2streets/src/transform/collapse_intersections.rs
@@ -1,10 +1,6 @@
-use std::collections::BTreeSet;
-
 use anyhow::Result;
 
-use geom::Distance;
-
-use crate::{IntersectionID, IntersectionKind, Placement, Road, StreetNetwork};
+use crate::{IntersectionID, Placement, Road, StreetNetwork};
 
 /// Collapse degenerate intersections:
 /// - between two cycleways
@@ -89,40 +85,3 @@ fn should_collapse(road1: &Road, road2: &Road) -> Result<()> {
 
     Ok(())
 }
-
-const SHORT_THRESHOLD: Distance = Distance::const_meters(30.0);
-
-/// Some cycleways intersect footways with detailed curb mapping. The current rules for figuring
-/// out which walking paths also allow bikes are imperfect, so we wind up with short dead-end
-/// "stubs." Trim those.
-///
-/// Also do the same thing for extremely short dead-end service roads.
-pub fn trim_deadends(streets: &mut StreetNetwork) {
-    let mut remove_roads = BTreeSet::new();
-    let mut remove_intersections = BTreeSet::new();
-    for i in streets.intersections.values() {
-        let roads = streets.roads_per_intersection(i.id);
-        if roads.len() != 1 || i.kind == IntersectionKind::MapEdge {
-            continue;
-        }
-        let road = &roads[0];
-        if road.untrimmed_length() < SHORT_THRESHOLD && (road.is_cycleway() || road.is_service()) {
-            remove_roads.insert(roads[0].id);
-            remove_intersections.insert(i.id);
-        }
-    }
-
-    for r in remove_roads {
-        streets.remove_road(r);
-    }
-    for i in remove_intersections {
-        streets.remove_intersection(i);
-    }
-
-    // It's possible we need to do this in a fixed-point until there are no changes, but meh.
-    // Results look good so far.
-
-    // We may have created orphaned intersections. Clean up here.
-    // TODO Anywhere calling remove_road potentially causes this too
-    streets.intersections.retain(|_, i| !i.roads.is_empty());
-}
diff --git a/osm2streets/src/transform/mod.rs b/osm2streets/src/transform/mod.rs
index 0a8e1ac7..eac713a9 100644
--- a/osm2streets/src/transform/mod.rs
+++ b/osm2streets/src/transform/mod.rs
@@ -11,7 +11,6 @@ mod sausage_links;
 
 /// An in-place transformation of a `StreetNetwork`.
 pub enum Transformation {
-    TrimDeadendCycleways,
     ZipSidepaths,
     RemoveDisconnectedRoads,
     CollapseShortRoads,
@@ -24,7 +23,6 @@ impl Transformation {
     /// Useful for test cases and small clipped areas. Doesn't remove disconnected roads.
     pub fn standard_for_clipped_areas() -> Vec<Self> {
         vec![
-            Transformation::TrimDeadendCycleways,
             Transformation::CollapseSausageLinks,
             Transformation::CollapseShortRoads,
             Transformation::CollapseDegenerateIntersections,
@@ -44,9 +42,6 @@ impl Transformation {
         if false {
             let mut prepend = vec![
                 Transformation::ZipSidepaths,
-                // More dead-ends can be created after zipping sidepaths. But also, zipping can be
-                // easier to do after trimming some dead-ends. So... just run it twice.
-                Transformation::TrimDeadendCycleways,
                 Transformation::RemoveDisconnectedRoads,
             ];
             prepend.extend(list);
@@ -60,7 +55,6 @@ impl Transformation {
 
     fn name(&self) -> &'static str {
         match self {
-            Transformation::TrimDeadendCycleways => "trim dead-end cycleways",
             Transformation::ZipSidepaths => "zip parallel sidepaths",
             Transformation::RemoveDisconnectedRoads => "remove disconnected roads",
             Transformation::CollapseShortRoads => "collapse short roads",
@@ -73,9 +67,6 @@ impl Transformation {
     fn apply(&self, streets: &mut StreetNetwork, timer: &mut Timer) {
         timer.start(self.name());
         match self {
-            Transformation::TrimDeadendCycleways => {
-                collapse_intersections::trim_deadends(streets);
-            }
             Transformation::ZipSidepaths => {
                 parallel_sidepaths::zip_sidepaths(streets);
             }
diff --git a/tests/src/arizona_highways/geometry.json b/tests/src/arizona_highways/geometry.json
index e2193481..52cc076e 100644
--- a/tests/src/arizona_highways/geometry.json
+++ b/tests/src/arizona_highways/geometry.json
@@ -2961,6 +2961,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.88935146004431,
+              33.630373029200165
+            ],
+            [
+              -111.88941114185506,
+              33.63037224948837
+            ],
+            [
+              -111.88941046356675,
+              33.630336280222885
+            ],
+            [
+              -111.88935078175601,
+              33.63033705993469
+            ],
+            [
+              -111.88935146004431,
+              33.630373029200165
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 70,
+        "id": 76,
+        "layer": 0,
+        "osm_way_ids": [
+          582739016
+        ],
+        "src_i": 69,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -3377,6 +3417,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.89204681901728,
+              33.63019735122825
+            ],
+            [
+              -111.89211667515269,
+              33.63021490958256
+            ],
+            [
+              -111.89212916084196,
+              33.6301804709624
+            ],
+            [
+              -111.89205930470656,
+              33.630162912608085
+            ],
+            [
+              -111.89204681901728,
+              33.63019735122825
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 77,
+        "id": 86,
+        "layer": 0,
+        "osm_way_ids": [
+          665499817
+        ],
+        "src_i": 76,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6398,6 +6478,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.88930826236762,
+              33.63037359397411
+            ],
+            [
+              -111.8893075840793,
+              33.63033762470863
+            ],
+            [
+              -111.88935078175601,
+              33.63033705993469
+            ],
+            [
+              -111.88935146004431,
+              33.630373029200165
+            ],
+            [
+              -111.88930826236762,
+              33.63037359397411
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 69,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.88945366124344,
+              33.63033571544894
+            ],
+            [
+              -111.88945433953175,
+              33.63037168471442
+            ],
+            [
+              -111.88941114185506,
+              33.63037224948837
+            ],
+            [
+              -111.88941046356675,
+              33.630336280222885
+            ],
+            [
+              -111.88945366124344,
+              33.63033571544894
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 70,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          5572469734
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6608,6 +6768,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.89203395854132,
+              33.63019411906653
+            ],
+            [
+              -111.89204644207044,
+              33.63015968044636
+            ],
+            [
+              -111.89205930470656,
+              33.630162912608085
+            ],
+            [
+              -111.89204681901728,
+              33.63019735122825
+            ],
+            [
+              -111.89203395854132,
+              33.63019411906653
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 76,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          6228919911
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.8921705213078,
+              33.63019086532109
+            ],
+            [
+              -111.89215803777869,
+              33.63022530394126
+            ],
+            [
+              -111.89211667731284,
+              33.63021490868324
+            ],
+            [
+              -111.89212916084196,
+              33.630180470063074
+            ],
+            [
+              -111.8921705213078,
+              33.63019086532109
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 77,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/aurora_sausage_link/geometry.json b/tests/src/aurora_sausage_link/geometry.json
index 5a841ab3..74e10c02 100644
--- a/tests/src/aurora_sausage_link/geometry.json
+++ b/tests/src/aurora_sausage_link/geometry.json
@@ -201,6 +201,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.34484999619853,
+              47.69216916599664
+            ],
+            [
+              -122.34485397228512,
+              47.69226406510353
+            ],
+            [
+              -122.3449073929324,
+              47.692263050668835
+            ],
+            [
+              -122.3449034168458,
+              47.69216815156194
+            ],
+            [
+              -122.34484999619853,
+              47.69216916599664
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 6,
+        "id": 5,
+        "layer": 0,
+        "osm_way_ids": [
+          565152048
+        ],
+        "src_i": 5,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -1730,6 +1770,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.34418621553031,
+              47.692216387572074
+            ],
+            [
+              -122.34426882754718,
+              47.69221792810987
+            ],
+            [
+              -122.34427030789125,
+              47.6921819696374
+            ],
+            [
+              -122.34418769587437,
+              47.69218042909961
+            ],
+            [
+              -122.34418621553031,
+              47.692216387572074
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 51,
+        "id": 51,
+        "layer": 0,
+        "osm_way_ids": [
+          1040519450
+        ],
+        "src_i": 50,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -2551,6 +2631,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.34484848913345,
+              47.69213320752417
+            ],
+            [
+              -122.34490190978072,
+              47.69213219308947
+            ],
+            [
+              -122.3449034168458,
+              47.69216815156194
+            ],
+            [
+              -122.34484999619853,
+              47.69216916599664
+            ],
+            [
+              -122.34484848913345,
+              47.69213320752417
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 5,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          5443848863
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.34490889866142,
+              47.6922990091413
+            ],
+            [
+              -122.34485547801415,
+              47.692300023575996
+            ],
+            [
+              -122.34485397094907,
+              47.69226406510353
+            ],
+            [
+              -122.34490739159634,
+              47.692263050668835
+            ],
+            [
+              -122.34490889866142,
+              47.6922990091413
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 6,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -4236,6 +4396,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.34413279488304,
+              47.69221539112381
+            ],
+            [
+              -122.3441342752271,
+              47.69217943265134
+            ],
+            [
+              -122.34418769721043,
+              47.69218042909961
+            ],
+            [
+              -122.34418621686636,
+              47.692216387572074
+            ],
+            [
+              -122.34413279488304,
+              47.69221539112381
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 50,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.34429453984102,
+              47.69218242109682
+            ],
+            [
+              -122.34429305949695,
+              47.69221837956928
+            ],
+            [
+              -122.34426882754718,
+              47.69221792810987
+            ],
+            [
+              -122.34427030789125,
+              47.6921819696374
+            ],
+            [
+              -122.34429453984102,
+              47.69218242109682
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 51,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          9580500968
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/borough_sausage_links/geometry.json b/tests/src/borough_sausage_links/geometry.json
index af6c2937..c7ebb186 100644
--- a/tests/src/borough_sausage_links/geometry.json
+++ b/tests/src/borough_sausage_links/geometry.json
@@ -4039,6 +4039,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.0933181056606451,
+              51.500625584091225
+            ],
+            [
+              -0.09319721729452211,
+              51.50065442982997
+            ],
+            [
+              -0.09321789916033572,
+              51.50068801948991
+            ],
+            [
+              -0.0933387875264587,
+              51.50065917375116
+            ],
+            [
+              -0.0933181056606451,
+              51.500625584091225
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 89,
+        "id": 106,
+        "layer": 0,
+        "osm_way_ids": [
+          639342503
+        ],
+        "src_i": 88,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -8447,6 +8487,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.09337206400712024,
+              51.500612708504576
+            ],
+            [
+              -0.09339274587293385,
+              51.50064629816451
+            ],
+            [
+              -0.0933387875264587,
+              51.50065917375116
+            ],
+            [
+              -0.0933181056606451,
+              51.500625584091225
+            ],
+            [
+              -0.09337206400712024,
+              51.500612708504576
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 88,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.09316394081386058,
+              51.500700895076555
+            ],
+            [
+              -0.09314325894804698,
+              51.50066730541662
+            ],
+            [
+              -0.09319721729452211,
+              51.50065442982997
+            ],
+            [
+              -0.09321789916033572,
+              51.50068801948991
+            ],
+            [
+              -0.09316394081386058,
+              51.500700895076555
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 89,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          6024546597
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/bristol_contraflow_cycleway/geometry.json b/tests/src/bristol_contraflow_cycleway/geometry.json
index ad4546db..7babbaf7 100644
--- a/tests/src/bristol_contraflow_cycleway/geometry.json
+++ b/tests/src/bristol_contraflow_cycleway/geometry.json
@@ -878,11 +878,51 @@
         "coordinates": [
           [
             [
-              -2.553279599134853,
-              51.45762596018361
+              -2.553279587588415,
+              51.4576259637809
             ],
             [
-              -2.552306046792342,
+              -2.552969369442017,
+              51.4576563392539
+            ],
+            [
+              -2.5529866227068125,
+              51.457724747020634
+            ],
+            [
+              -2.5532968408532106,
+              51.45769437154763
+            ],
+            [
+              -2.553279587588415,
+              51.4576259637809
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 32,
+        "id": 25,
+        "layer": 0,
+        "osm_way_ids": [
+          824782255
+        ],
+        "src_i": 10,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.5529123257089985,
+              51.457661922239936
+            ],
+            [
+              -2.552306052565561,
               51.457721224379476
             ],
             [
@@ -894,16 +934,16 @@
               51.45779731055066
             ],
             [
-              -2.5523177519937383,
+              -2.5523177462205195,
               51.45779017533622
             ],
             [
-              -2.5532968408532106,
-              51.45769436974899
+              -2.552929561654137,
+              51.457730331805315
             ],
             [
-              -2.553279599134853,
-              51.45762596018361
+              -2.5529123257089985,
+              51.457661922239936
             ]
           ]
         ],
@@ -914,10 +954,9 @@
         "id": 26,
         "layer": 0,
         "osm_way_ids": [
-          824782255,
           824782255
         ],
-        "src_i": 10,
+        "src_i": 32,
         "type": "road"
       },
       "type": "Feature"
@@ -1178,6 +1217,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.552929886397702,
+              51.457731408292794
+            ],
+            [
+              -2.552932361665322,
+              51.45773959301508
+            ],
+            [
+              -2.5529890950878227,
+              51.4577329308436
+            ],
+            [
+              -2.552986619820203,
+              51.457724746121315
+            ],
+            [
+              -2.552929886397702,
+              51.457731408292794
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 33,
+        "id": 32,
+        "layer": 0,
+        "osm_way_ids": [
+          905830130
+        ],
+        "src_i": 32,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.5529377480785906,
+              51.457757302448236
+            ],
+            [
+              -2.552951833289494,
+              51.45780333240544
+            ],
+            [
+              -2.5530085436191188,
+              51.45779659469098
+            ],
+            [
+              -2.552994458408216,
+              51.45775056473377
+            ],
+            [
+              -2.5529377480785906,
+              51.457757302448236
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 34,
+        "id": 33,
+        "layer": 0,
+        "osm_way_ids": [
+          905830131
+        ],
+        "src_i": 33,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -1610,12 +1729,12 @@
               51.457694616163
             ],
             [
-              -2.553296837966601,
-              51.45769436974899
+              -2.5532968394099056,
+              51.45769437154763
             ],
             [
-              -2.553279599134853,
-              51.45762596018361
+              -2.55327958903172,
+              51.4576259637809
             ],
             [
               -2.5533413292783442,
@@ -1639,9 +1758,9 @@
         "id": 10,
         "intersection_kind": "Fork",
         "movements": [
-          "Road #13 -> Road #26",
+          "Road #13 -> Road #25",
           "Road #24 -> Road #13",
-          "Road #24 -> Road #26"
+          "Road #24 -> Road #25"
         ],
         "osm_node_ids": [
           260742833
@@ -2461,7 +2580,7 @@
               51.457730847116366
             ],
             [
-              -2.5520543301167447,
+              -2.5520543315600492,
               51.457729817393584
             ],
             [
@@ -2556,6 +2675,148 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.552986619820203,
+              51.457724747020634
+            ],
+            [
+              -2.552929886397702,
+              51.457731407393474
+            ],
+            [
+              -2.552929561654137,
+              51.457730331805315
+            ],
+            [
+              -2.5529123257089985,
+              51.457661922239936
+            ],
+            [
+              -2.5529432167602293,
+              51.45765890052069
+            ],
+            [
+              -2.552969369442017,
+              51.4576563392539
+            ],
+            [
+              -2.5529866227068125,
+              51.457724747020634
+            ],
+            [
+              -2.552986619820203,
+              51.457724747020634
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 32,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #32 -> Road #26",
+          "Road #25 -> Road #32",
+          "Road #25 -> Road #26"
+        ],
+        "osm_node_ids": [
+          8411977306
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.5529890950878227,
+              51.45773293264224
+            ],
+            [
+              -2.552994458408216,
+              51.45775056473377
+            ],
+            [
+              -2.5529377480785906,
+              51.457757302448236
+            ],
+            [
+              -2.552932361665322,
+              51.45773959121644
+            ],
+            [
+              -2.5529890950878227,
+              51.45773293264224
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 33,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #33 -> Road #32",
+          "Road #32 -> Road #33"
+        ],
+        "osm_node_ids": [
+          8411977307
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.5530193554148846,
+              51.457831930819744
+            ],
+            [
+              -2.5529626450852594,
+              51.45783866853421
+            ],
+            [
+              -2.552951831846189,
+              51.45780333240544
+            ],
+            [
+              -2.553008542175814,
+              51.45779659469098
+            ],
+            [
+              -2.5530193554148846,
+              51.457831930819744
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 34,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8411977308
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/bristol_sausage_links/geometry.json b/tests/src/bristol_sausage_links/geometry.json
index 3f872e8d..d0ae0e23 100644
--- a/tests/src/bristol_sausage_links/geometry.json
+++ b/tests/src/bristol_sausage_links/geometry.json
@@ -1217,6 +1217,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.551487769530592,
+              51.45971355325753
+            ],
+            [
+              -2.551499278986229,
+              51.459750956925106
+            ],
+            [
+              -2.5515559804478842,
+              51.45974418323791
+            ],
+            [
+              -2.5515444709922472,
+              51.45970677957033
+            ],
+            [
+              -2.551487769530592,
+              51.45971355325753
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 32,
+        "id": 30,
+        "layer": 0,
+        "osm_way_ids": [
+          496700816
+        ],
+        "src_i": 31,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -1226,12 +1266,12 @@
               51.45974550074345
             ],
             [
-              -2.5515013603299748,
-              51.45971260447367
+              -2.551486028822855,
+              51.45971367466589
             ],
             [
-              -2.551498949897204,
-              51.45969919919203
+              -2.551483618390084,
+              51.45970026938424
             ],
             [
               -2.551027838750723,
@@ -3276,12 +3316,20 @@
         "coordinates": [
           [
             [
-              -2.5515013603299748,
-              51.45971260447367
+              -2.5515444709922472,
+              51.45970677957033
+            ],
+            [
+              -2.551487769530592,
+              51.45971355325753
+            ],
+            [
+              -2.551486028822855,
+              51.45971367466589
             ],
             [
-              -2.551498949897204,
-              51.45969919919203
+              -2.551483618390084,
+              51.45970026938424
             ],
             [
               -2.551483673238255,
@@ -3300,8 +3348,8 @@
               51.45969624761988
             ],
             [
-              -2.5515013603299748,
-              51.45971260447367
+              -2.5515444709922472,
+              51.45970677957033
             ]
           ]
         ],
@@ -3311,9 +3359,13 @@
         "control": "Signed",
         "crossing": null,
         "id": 31,
-        "intersection_kind": "Connection",
+        "intersection_kind": "Intersection",
         "movements": [
+          "Road #30 -> Road #17",
+          "Road #30 -> Road #16",
+          "Road #17 -> Road #30",
           "Road #17 -> Road #16",
+          "Road #16 -> Road #30",
           "Road #16 -> Road #17"
         ],
         "osm_node_ids": [
@@ -3324,6 +3376,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.5515668504893187,
+              51.45977951307083
+            ],
+            [
+              -2.551510149027664,
+              51.459786286758025
+            ],
+            [
+              -2.551499278986229,
+              51.459750957824426
+            ],
+            [
+              -2.5515559804478842,
+              51.45974418413723
+            ],
+            [
+              -2.5515668504893187,
+              51.45977951307083
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 32,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          4883724684
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/cycleway_rejoin_road/geometry.json b/tests/src/cycleway_rejoin_road/geometry.json
index 06b35976..3d4169e9 100644
--- a/tests/src/cycleway_rejoin_road/geometry.json
+++ b/tests/src/cycleway_rejoin_road/geometry.json
@@ -1814,20 +1814,12 @@
               51.48966285625119
             ],
             [
-              -0.11658230751358836,
-              51.48964309095801
+              -0.11658230895789032,
+              51.48964309185733
             ],
             [
-              -0.11669600151947343,
-              51.48946726006819
-            ],
-            [
-              -0.11664240925099477,
-              51.489453824201405
-            ],
-            [
-              -0.11651109187260993,
-              51.48965690993585
+              -0.11655046209970149,
+              51.489673105821055
             ],
             [
               -0.11658604536705741,
@@ -1850,18 +1842,57 @@
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 48,
+        "dst_i": 47,
         "id": 44,
         "layer": 0,
         "osm_way_ids": [
-          933882058,
-          990187777
+          933882058
         ],
         "src_i": 6,
         "type": "road"
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.1165310882332278,
+              51.48962598316057
+            ],
+            [
+              -0.11628372552536917,
+              51.48955740178406
+            ],
+            [
+              -0.1162602267325015,
+              51.489590264799055
+            ],
+            [
+              -0.11650758944036013,
+              51.48965884617556
+            ],
+            [
+              -0.1165310882332278,
+              51.48962598316057
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 28,
+        "id": 45,
+        "layer": 0,
+        "osm_way_ids": [
+          933882058
+        ],
+        "src_i": 47,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -2406,6 +2437,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.11658468194600842,
+              51.48963941902735
+            ],
+            [
+              -0.11669600151947343,
+              51.48946726006819
+            ],
+            [
+              -0.11664240925099477,
+              51.489453824201405
+            ],
+            [
+              -0.11653108967752976,
+              51.48962598316057
+            ],
+            [
+              -0.11658468194600842,
+              51.48963941902735
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 48,
+        "id": 60,
+        "layer": 0,
+        "osm_way_ids": [
+          990187777
+        ],
+        "src_i": 47,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -4547,6 +4618,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.1162074504946295,
+              51.48957563193504
+            ],
+            [
+              -0.11623094928749717,
+              51.489542768920046
+            ],
+            [
+              -0.11628372552536917,
+              51.48955740178406
+            ],
+            [
+              -0.1162602267325015,
+              51.489590264799055
+            ],
+            [
+              -0.1162074504946295,
+              51.48957563193504
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 28,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          9150276534
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -5355,6 +5467,62 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.11658230895789032,
+              51.48964309185733
+            ],
+            [
+              -0.11655046209970149,
+              51.489673105821055
+            ],
+            [
+              -0.11653277084500967,
+              51.48966582761022
+            ],
+            [
+              -0.11650758944036013,
+              51.48965884617556
+            ],
+            [
+              -0.1165310882332278,
+              51.48962598316057
+            ],
+            [
+              -0.11658468194600842,
+              51.48963941902735
+            ],
+            [
+              -0.11658230895789032,
+              51.48964309185733
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 47,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #44 -> Road #45",
+          "Road #44 -> Road #60",
+          "Road #45 -> Road #44",
+          "Road #45 -> Road #60",
+          "Road #60 -> Road #44",
+          "Road #60 -> Road #45"
+        ],
+        "osm_node_ids": [
+          8655624472
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/degenerate_bug/geometry.json b/tests/src/degenerate_bug/geometry.json
index 0cbbd1e9..e383f217 100644
--- a/tests/src/degenerate_bug/geometry.json
+++ b/tests/src/degenerate_bug/geometry.json
@@ -465,35 +465,44 @@
         "coordinates": [
           [
             [
-              -2.534157126128874,
-              51.476004026287974
+              -2.534157149230351,
+              51.47600398042257
             ],
             [
-              -2.53415719832099,
-              51.47600388689313
+              -2.534173584487488,
+              51.475971952883654
             ],
             [
-              -2.5341022341315242,
-              51.475992843224304
+              -2.534305683065255,
+              51.47584772330053
             ],
             [
-              -2.534102161939408,
-              51.47599298261915
+              -2.5342575338115427,
+              51.47582785908579
             ],
             [
-              -2.534157126128874,
-              51.476004026287974
+              -2.5341210141885897,
+              51.475956247131826
+            ],
+            [
+              -2.534102138837931,
+              51.475993028484545
+            ],
+            [
+              -2.534157149230351,
+              51.47600398042257
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 12,
+        "dst_i": 13,
         "id": 12,
         "layer": 0,
         "osm_way_ids": [
-          671416579
+          671416579,
+          671416580
         ],
         "src_i": 11,
         "type": "road"
@@ -933,24 +942,24 @@
         "coordinates": [
           [
             [
-              -2.5341197941418288,
-              51.475958624038725
+              -2.5342894254007233,
+              51.47579786761089
             ],
             [
-              -2.534174804534249,
-              51.475969575976755
+              -2.534337574654435,
+              51.475817731825636
             ],
             [
-              -2.534157221422467,
-              51.476003841027726
+              -2.534305683065255,
+              51.47584772330053
             ],
             [
-              -2.5341022081423623,
-              51.4759928890897
+              -2.5342575338115427,
+              51.47582785908579
             ],
             [
-              -2.5341197941418288,
-              51.475958624038725
+              -2.5342894254007233,
+              51.47579786761089
             ]
           ]
         ],
@@ -959,11 +968,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 12,
+        "id": 13,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          6287523469
+          6287523470
         ],
         "type": "intersection"
       },
diff --git a/tests/src/i5_exit_ramp/geometry.json b/tests/src/i5_exit_ramp/geometry.json
index e48245f2..80170629 100644
--- a/tests/src/i5_exit_ramp/geometry.json
+++ b/tests/src/i5_exit_ramp/geometry.json
@@ -1042,12 +1042,12 @@
               47.656424120817725
             ],
             [
-              -122.32136814659157,
-              47.65680714913121
+              -122.32136804779356,
+              47.65681614054973
             ],
             [
-              -122.32139484875427,
-              47.65680728223083
+              -122.32139474995627,
+              47.65681627364935
             ],
             [
               -122.32139905167467,
@@ -1073,6 +1073,54 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3230465350602,
+              47.65766149127174
+            ],
+            [
+              -122.32302073676571,
+              47.65763574189236
+            ],
+            [
+              -122.32299733098499,
+              47.65762373954474
+            ],
+            [
+              -122.32298115748505,
+              47.657638051350524
+            ],
+            [
+              -122.32300106261224,
+              47.657648258652
+            ],
+            [
+              -122.32302440163754,
+              47.6576715528831
+            ],
+            [
+              -122.3230465350602,
+              47.65766149127174
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 26,
+        "id": 25,
+        "layer": 0,
+        "osm_way_ids": [
+          19795320
+        ],
+        "src_i": 25,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -3129,6 +3177,94 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32319478279732,
+              47.65660307234942
+            ],
+            [
+              -122.32314138381234,
+              47.656602693734975
+            ],
+            [
+              -122.32314082039672,
+              47.65663866480498
+            ],
+            [
+              -122.32319421938168,
+              47.65663904341942
+            ],
+            [
+              -122.32319478279732,
+              47.65660307234942
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 66,
+        "id": 76,
+        "layer": 0,
+        "osm_way_ids": [
+          454116168
+        ],
+        "src_i": 65,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32314701930378,
+              47.65745821488627
+            ],
+            [
+              -122.32311323973285,
+              47.657457878539944
+            ],
+            [
+              -122.32310709957054,
+              47.657455717469865
+            ],
+            [
+              -122.32308236802744,
+              47.65748760022335
+            ],
+            [
+              -122.32309976048113,
+              47.65749372190626
+            ],
+            [
+              -122.32314623158999,
+              47.65749418415763
+            ],
+            [
+              -122.32314701930378,
+              47.65745821488627
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 68,
+        "id": 77,
+        "layer": 0,
+        "osm_way_ids": [
+          454116172
+        ],
+        "src_i": 67,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -4503,7 +4639,7 @@
           [
             [
               -122.32095832446862,
-              47.65724308993719
+              47.65724328778797
             ],
             [
               -122.32095781846263,
@@ -4515,11 +4651,11 @@
             ],
             [
               -122.32097835109064,
-              47.65724312231277
+              47.65724332016355
             ],
             [
               -122.32095832446862,
-              47.65724308993719
+              47.65724328778797
             ]
           ]
         ],
@@ -6532,6 +6668,70 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32097835109064,
+              47.657243319264225
+            ],
+            [
+              -122.3212465930065,
+              47.65724420059951
+            ],
+            [
+              -122.32128257817607,
+              47.65723607522781
+            ],
+            [
+              -122.32131156737901,
+              47.65721328821416
+            ],
+            [
+              -122.32131418419095,
+              47.65720627080681
+            ],
+            [
+              -122.32126238733575,
+              47.65719750781601
+            ],
+            [
+              -122.32126283326187,
+              47.657196312617444
+            ],
+            [
+              -122.32125162235886,
+              47.65720512417162
+            ],
+            [
+              -122.3212380082612,
+              47.65720819895257
+            ],
+            [
+              -122.32097861277184,
+              47.65720734639558
+            ],
+            [
+              -122.32097835109064,
+              47.657243319264225
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 147,
+        "id": 167,
+        "layer": 0,
+        "osm_way_ids": [
+          862422500
+        ],
+        "src_i": 146,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6621,20 +6821,12 @@
               47.656181678072194
             ],
             [
-              -122.32119358387311,
+              -122.32119360924017,
               47.656181435255334
             ],
             [
-              -122.32119411791636,
-              47.65603721552832
-            ],
-            [
-              -122.32116741575366,
-              47.656037170562236
-            ],
-            [
-              -122.321166814955,
-              47.656199364133066
+              -122.32119352379324,
+              47.65619942168966
             ],
             [
               -122.32130500532253,
@@ -6649,12 +6841,11 @@
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 154,
+        "dst_i": 151,
         "id": 170,
         "layer": 0,
         "osm_way_ids": [
-          863212080,
-          863212084
+          863212080
         ],
         "src_i": 150,
         "type": "road"
@@ -6746,37 +6937,37 @@
         "coordinates": [
           [
             [
-              -122.32137490490895,
-              47.65618178778945
+              -122.32162172100945,
+              47.656514703198944
             ],
             [
-              -122.32133177958107,
-              47.656181725736246
+              -122.32162156747202,
+              47.656425253063766
             ],
             [
-              -122.32133172350653,
-              47.65619971217057
+              -122.32159486530932,
+              47.65642527464749
             ],
             [
-              -122.3213748488344,
-              47.65619977422377
+              -122.32159501884675,
+              47.65651472478267
             ],
             [
-              -122.32137490490895,
-              47.65618178778945
+              -122.32162172100945,
+              47.656514703198944
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 150,
-        "id": 177,
+        "dst_i": 161,
+        "id": 173,
         "layer": 0,
         "osm_way_ids": [
-          863212085
+          863212083
         ],
-        "src_i": 158,
+        "src_i": 155,
         "type": "road"
       },
       "type": "Feature"
@@ -6786,38 +6977,37 @@
         "coordinates": [
           [
             [
-              -122.32179563887068,
-              47.65640804634137
+              -122.32162153542943,
+              47.656407124536614
             ],
             [
-              -122.3213992506058,
-              47.656406267483014
+              -122.32162138189199,
+              47.656317475651335
             ],
             [
-              -122.3213990717013,
-              47.65642425391734
+              -122.32159467972929,
+              47.65631749723506
             ],
             [
-              -122.3217954599662,
-              47.6564260327757
+              -122.32159483326672,
+              47.65640714612034
             ],
             [
-              -122.32179563887068,
-              47.65640804634137
+              -122.32162153542943,
+              47.656407124536614
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 162,
-        "id": 179,
+        "dst_i": 156,
+        "id": 174,
         "layer": 0,
         "osm_way_ids": [
-          863212087,
-          863212087
+          863212083
         ],
-        "src_i": 164,
+        "src_i": 161,
         "type": "road"
       },
       "type": "Feature"
@@ -6827,37 +7017,37 @@
         "coordinates": [
           [
             [
-              -122.32186722202846,
-              47.65640842225785
+              -122.32119310857462,
+              47.65633003288046
             ],
             [
-              -122.32183004994776,
-              47.65640825228604
+              -122.32119352245813,
+              47.65619942168966
             ],
             [
-              -122.32182986837304,
-              47.65642623872037
+              -122.32116682029543,
+              47.65619938391814
             ],
             [
-              -122.32186704045375,
-              47.65642640869217
+              -122.3211664064119,
+              47.65632999510895
             ],
             [
-              -122.32186722202846,
-              47.65640842225785
+              -122.32119310857462,
+              47.65633003288046
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 164,
-        "id": 181,
+        "dst_i": 151,
+        "id": 175,
         "layer": 0,
         "osm_way_ids": [
-          863212088
+          863212084
         ],
-        "src_i": 163,
+        "src_i": 157,
         "type": "road"
       },
       "type": "Feature"
@@ -6867,37 +7057,37 @@
         "coordinates": [
           [
             [
-              -122.32081054001402,
-              47.65510390664586
+              -122.32119358387311,
+              47.656181435255334
             ],
             [
-              -122.32081144121202,
-              47.65506828451269
+              -122.32119411791636,
+              47.65603721552832
             ],
             [
-              -122.32078474171954,
-              47.655067978743304
+              -122.32116741575366,
+              47.656037170562236
             ],
             [
-              -122.32078384052154,
-              47.65510360087648
+              -122.32116688171041,
+              47.65618139028925
             ],
             [
-              -122.32081054001402,
-              47.65510390664586
+              -122.32119358387311,
+              47.656181435255334
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 17,
-        "id": 183,
+        "dst_i": 154,
+        "id": 176,
         "layer": 0,
         "osm_way_ids": [
-          952835348
+          863212084
         ],
-        "src_i": 77,
+        "src_i": 151,
         "type": "road"
       },
       "type": "Feature"
@@ -6907,37 +7097,37 @@
         "coordinates": [
           [
             [
-              -122.32149937704038,
-              47.655035533913754
+              -122.32137490490895,
+              47.65618178778945
             ],
             [
-              -122.32151099648648,
-              47.65506399025149
+              -122.32133177958107,
+              47.656181725736246
             ],
             [
-              -122.32156248893703,
-              47.65505445024673
+              -122.32133172350653,
+              47.65619971217057
             ],
             [
-              -122.32155086949093,
-              47.655025993908986
+              -122.3213748488344,
+              47.65619977422377
             ],
             [
-              -122.32149937704038,
-              47.655035533913754
+              -122.32137490490895,
+              47.65618178778945
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 168,
-        "id": 184,
+        "dst_i": 150,
+        "id": 177,
         "layer": 0,
         "osm_way_ids": [
-          952835349
+          863212085
         ],
-        "src_i": 166,
+        "src_i": 158,
         "type": "road"
       },
       "type": "Feature"
@@ -6947,33 +7137,329 @@
         "coordinates": [
           [
             [
-              -122.32177344002771,
-              47.655011728867926
+              -122.32136723204249,
+              47.656833683618444
             ],
             [
-              -122.32174061505911,
-              47.65501038258331
+              -122.32135636426227,
+              47.656966048486595
             ],
             [
-              -122.32156248893703,
-              47.65505445114605
+              -122.32133735899797,
+              47.65700589383455
             ],
             [
-              -122.32156939411631,
-              47.65506711359581
+              -122.32129988117751,
+              47.65702722214837
             ],
             [
-              -122.3217435843396,
-              47.655024018099176
+              -122.32131711475331,
+              47.65704096198555
             ],
             [
-              -122.3217722224091,
-              47.65502519351266
+              -122.3213604403474,
+              47.65701630618138
             ],
             [
-              -122.32177344002771,
-              47.655011728867926
-            ]
+              -122.32138283678637,
+              47.65696935079594
+            ],
+            [
+              -122.32139389415195,
+              47.65683467646962
+            ],
+            [
+              -122.32136723204249,
+              47.656833683618444
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 159,
+        "id": 178,
+        "layer": 0,
+        "osm_way_ids": [
+          863212086
+        ],
+        "src_i": 24,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32179563887068,
+              47.65640804634137
+            ],
+            [
+              -122.32162174637651,
+              47.656407266629444
+            ],
+            [
+              -122.32162156747202,
+              47.656425253063766
+            ],
+            [
+              -122.3217954599662,
+              47.6564260327757
+            ],
+            [
+              -122.32179563887068,
+              47.65640804634137
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 161,
+        "id": 179,
+        "layer": 0,
+        "osm_way_ids": [
+          863212087
+        ],
+        "src_i": 164,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32159483193162,
+              47.65640714612034
+            ],
+            [
+              -122.3213992519409,
+              47.656406267483014
+            ],
+            [
+              -122.3213990730364,
+              47.65642425391734
+            ],
+            [
+              -122.32159465302712,
+              47.65642513255466
+            ],
+            [
+              -122.32159483193162,
+              47.65640714612034
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 162,
+        "id": 180,
+        "layer": 0,
+        "osm_way_ids": [
+          863212087
+        ],
+        "src_i": 161,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32186722202846,
+              47.65640842225785
+            ],
+            [
+              -122.32183004994776,
+              47.65640825228604
+            ],
+            [
+              -122.32182986837304,
+              47.65642623872037
+            ],
+            [
+              -122.32186704045375,
+              47.65642640869217
+            ],
+            [
+              -122.32186722202846,
+              47.65640842225785
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 164,
+        "id": 181,
+        "layer": 0,
+        "osm_way_ids": [
+          863212088
+        ],
+        "src_i": 163,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32081054001402,
+              47.65510390664586
+            ],
+            [
+              -122.32081144121202,
+              47.65506828451269
+            ],
+            [
+              -122.32078474171954,
+              47.655067978743304
+            ],
+            [
+              -122.32078384052154,
+              47.65510360087648
+            ],
+            [
+              -122.32081054001402,
+              47.65510390664586
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 17,
+        "id": 183,
+        "layer": 0,
+        "osm_way_ids": [
+          952835348
+        ],
+        "src_i": 77,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32149937704038,
+              47.655035533913754
+            ],
+            [
+              -122.32151099648648,
+              47.65506399025149
+            ],
+            [
+              -122.32156248893703,
+              47.65505445024673
+            ],
+            [
+              -122.32155086949093,
+              47.655025993908986
+            ],
+            [
+              -122.32149937704038,
+              47.655035533913754
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 168,
+        "id": 184,
+        "layer": 0,
+        "osm_way_ids": [
+          952835349
+        ],
+        "src_i": 166,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3215169564092,
+              47.65507862311514
+            ],
+            [
+              -122.32151970406174,
+              47.65508538601444
+            ],
+            [
+              -122.32157121520382,
+              47.655075890975766
+            ],
+            [
+              -122.32156846755127,
+              47.65506912807646
+            ],
+            [
+              -122.3215169564092,
+              47.65507862311514
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 167,
+        "id": 185,
+        "layer": 0,
+        "osm_way_ids": [
+          952835349
+        ],
+        "src_i": 168,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32177344002771,
+              47.655011728867926
+            ],
+            [
+              -122.32174061505911,
+              47.65501038258331
+            ],
+            [
+              -122.32156248893703,
+              47.65505445114605
+            ],
+            [
+              -122.32156939411631,
+              47.65506711359581
+            ],
+            [
+              -122.3217435843396,
+              47.655024018099176
+            ],
+            [
+              -122.3217722224091,
+              47.65502519351266
+            ],
+            [
+              -122.32177344002771,
+              47.655011728867926
+            ]
           ]
         ],
         "type": "Polygon"
@@ -6995,8 +7481,8 @@
         "coordinates": [
           [
             [
-              -122.32151165736501,
-              47.65506561262787
+              -122.32151148113074,
+              47.65506564680209
             ],
             [
               -122.3213408930292,
@@ -7015,12 +7501,12 @@
               47.655111703765144
             ],
             [
-              -122.32151713130837,
-              47.65507858804159
+              -122.32151695507409,
+              47.65507862221582
             ],
             [
-              -122.32151165736501,
-              47.65506561262787
+              -122.32151148113074,
+              47.65506564680209
             ]
           ]
         ],
@@ -8766,24 +9252,24 @@
         "coordinates": [
           [
             [
-              -122.32139465115826,
-              47.656825266866505
+              -122.32139474995627,
+              47.65681627364935
             ],
             [
-              -122.32136794899556,
-              47.656825133766894
+              -122.32139389415195,
+              47.65683467646962
             ],
             [
-              -122.32136814659157,
-              47.65680714823189
+              -122.32136723204249,
+              47.656833683618444
             ],
             [
-              -122.32139484875427,
-              47.6568072813315
+              -122.32136804779356,
+              47.65681614054973
             ],
             [
-              -122.32139465115826,
-              47.656825266866505
+              -122.32139474995627,
+              47.65681627364935
             ]
           ]
         ],
@@ -8793,8 +9279,10 @@
         "control": "Signed",
         "crossing": null,
         "id": 24,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #24 -> Road #178"
+        ],
         "osm_node_ids": [
           8041388888
         ],
@@ -8818,6 +9306,14 @@
               -122.32300190640058,
               47.657699852738865
             ],
+            [
+              -122.32302440163754,
+              47.6576715528831
+            ],
+            [
+              -122.3230465350602,
+              47.65766149127174
+            ],
             [
               -122.3230463214429,
               47.657659869794685
@@ -8854,8 +9350,9 @@
         "control": "Signed",
         "crossing": null,
         "id": 25,
-        "intersection_kind": "Connection",
+        "intersection_kind": "Fork",
         "movements": [
+          "Road #43 -> Road #25",
           "Road #43 -> Road #29"
         ],
         "osm_node_ids": [
@@ -8865,6 +9362,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3229599119093,
+              47.65762715606794
+            ],
+            [
+              -122.32297608807946,
+              47.65761284426215
+            ],
+            [
+              -122.32299733365521,
+              47.65762373954474
+            ],
+            [
+              -122.32298115748505,
+              47.657638051350524
+            ],
+            [
+              -122.3229599119093,
+              47.65762715606794
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 26,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          7966413425
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -10506,6 +11044,166 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32324818578762,
+              47.65660345096386
+            ],
+            [
+              -122.32324762237198,
+              47.65663942203386
+            ],
+            [
+              -122.32319422071679,
+              47.65663904341942
+            ],
+            [
+              -122.32319478413243,
+              47.65660307234942
+            ],
+            [
+              -122.32324818578762,
+              47.65660345096386
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 65,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32308741874152,
+              47.656638285291216
+            ],
+            [
+              -122.32308798215715,
+              47.65660231422121
+            ],
+            [
+              -122.32314138514745,
+              47.656602692835655
+            ],
+            [
+              -122.3231408190616,
+              47.65663866390565
+            ],
+            [
+              -122.32308741874152,
+              47.656638285291216
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 66,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          4507382073
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32320041828875,
+              47.65745874728473
+            ],
+            [
+              -122.32319962790474,
+              47.65749471655609
+            ],
+            [
+              -122.32314623158999,
+              47.65749418415763
+            ],
+            [
+              -122.32314701930378,
+              47.65745821488627
+            ],
+            [
+              -122.32320041828875,
+              47.65745874728473
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 67,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32303503443873,
+              47.657470941187874
+            ],
+            [
+              -122.32305976598182,
+              47.65743905843439
+            ],
+            [
+              -122.32310709957054,
+              47.657455717469865
+            ],
+            [
+              -122.32308236802744,
+              47.65748760022335
+            ],
+            [
+              -122.32303503443873,
+              47.657470941187874
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 68,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          4507382082
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -13823,29 +14521,85 @@
       "geometry": {
         "coordinates": [
           [
+            [
+              -122.32097861277184,
+              47.65720734639558
+            ],
             [
               -122.32097835109064,
-              47.65724312141345
+              47.657243319264225
             ],
             [
               -122.32095832446862,
-              47.65724308903787
+              47.657243286888644
+            ],
+            [
+              -122.32095832446862,
+              47.65724308993719
             ],
             [
               -122.32095684249859,
               47.657243059360255
             ],
             [
-              -122.32095845797943,
-              47.65720710267939
+              -122.32095845797943,
+              47.65720710267939
+            ],
+            [
+              -122.32097848326634,
+              47.65720713685362
+            ],
+            [
+              -122.32097848193123,
+              47.65720734639558
+            ],
+            [
+              -122.32097861277184,
+              47.65720734639558
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 146,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #167 -> Road #166",
+          "Road #166 -> Road #167"
+        ],
+        "osm_node_ids": [
+          5113845432
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32127540330495,
+              47.657162616831386
+            ],
+            [
+              -122.32132719748995,
+              47.657171383419474
+            ],
+            [
+              -122.32131418419095,
+              47.65720627080681
             ],
             [
-              -122.32097848326634,
-              47.65720713685362
+              -122.32126283326187,
+              47.657196312617444
             ],
             [
-              -122.32097835109064,
-              47.65724312141345
+              -122.32127540330495,
+              47.657162616831386
             ]
           ]
         ],
@@ -13854,11 +14608,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 146,
+        "id": 147,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          5113845432
+          5113845434
         ],
         "type": "intersection"
       },
@@ -14016,6 +14770,54 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32119360790506,
+              47.656181435255334
+            ],
+            [
+              -122.32119352245813,
+              47.65619942168966
+            ],
+            [
+              -122.32116682029543,
+              47.65619938391814
+            ],
+            [
+              -122.32116688171041,
+              47.65618139028925
+            ],
+            [
+              -122.32119358387311,
+              47.656181435255334
+            ],
+            [
+              -122.32119360790506,
+              47.656181435255334
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 151,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #170 -> Road #176",
+          "Road #175 -> Road #176"
+        ],
+        "osm_node_ids": [
+          8041342870
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -14106,6 +14908,14 @@
       "geometry": {
         "coordinates": [
           [
+            [
+              -122.32119418333666,
+              47.65601922819468
+            ],
+            [
+              -122.32119411791636,
+              47.65603721552832
+            ],
             [
               -122.32116741575366,
               47.656037170562236
@@ -14117,14 +14927,47 @@
             [
               -122.32119418333666,
               47.65601922819468
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 154,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8041342868
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32162175171695,
+              47.656532689633266
             ],
             [
-              -122.32119411791636,
-              47.65603721552832
+              -122.32159504955425,
+              47.65653271121699
             ],
             [
-              -122.32116741575366,
-              47.656037170562236
+              -122.32159501884675,
+              47.65651472478267
+            ],
+            [
+              -122.32162172100945,
+              47.656514703198944
+            ],
+            [
+              -122.32162175171695,
+              47.656532689633266
             ]
           ]
         ],
@@ -14133,11 +14976,93 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 154,
+        "id": 155,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          8041342868
+          8041342865
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3215946490218,
+              47.656299510800736
+            ],
+            [
+              -122.3216213511845,
+              47.65629948921701
+            ],
+            [
+              -122.32162138189199,
+              47.656317475651335
+            ],
+            [
+              -122.32159467972929,
+              47.65631749723506
+            ],
+            [
+              -122.3215946490218,
+              47.656299510800736
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 156,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8041342864
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32119305116497,
+              47.656348019314784
+            ],
+            [
+              -122.32116634900225,
+              47.65634798154327
+            ],
+            [
+              -122.3211664064119,
+              47.65632999510895
+            ],
+            [
+              -122.32119310857462,
+              47.65633003288046
+            ],
+            [
+              -122.32119305116497,
+              47.656348019314784
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 157,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8041342869
         ],
         "type": "intersection"
       },
@@ -14191,6 +15116,109 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32129671697122,
+              47.65705256953095
+            ],
+            [
+              -122.32127948339541,
+              47.65703882969376
+            ],
+            [
+              -122.32129988117751,
+              47.65702722214837
+            ],
+            [
+              -122.32131711475331,
+              47.65704096198555
+            ],
+            [
+              -122.32129671697122,
+              47.65705256953095
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 159,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          59713407
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32162174637651,
+              47.656407266629444
+            ],
+            [
+              -122.32162156747202,
+              47.656425253063766
+            ],
+            [
+              -122.32159486530932,
+              47.65642527464749
+            ],
+            [
+              -122.32159486397421,
+              47.65642513345398
+            ],
+            [
+              -122.32159465436223,
+              47.65642513255466
+            ],
+            [
+              -122.32159483326672,
+              47.65640714612034
+            ],
+            [
+              -122.32162153542943,
+              47.656407124536614
+            ],
+            [
+              -122.32162153676454,
+              47.656407265730124
+            ],
+            [
+              -122.32162174637651,
+              47.656407266629444
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 161,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #179 -> Road #180",
+          "Road #179 -> Road #174",
+          "Road #173 -> Road #180",
+          "Road #173 -> Road #174"
+        ],
+        "osm_node_ids": [
+          8041342863
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -14225,7 +15253,7 @@
         "id": 162,
         "intersection_kind": "Fork",
         "movements": [
-          "Road #179 -> Road #24",
+          "Road #180 -> Road #24",
           "Road #23 -> Road #24"
         ],
         "osm_node_ids": [
@@ -14402,12 +15430,61 @@
         "coordinates": [
           [
             [
-              -122.32151713264348,
-              47.65507858804159
+              -122.3215748560437,
+              47.65508485271667
+            ],
+            [
+              -122.32152334490162,
+              47.655094347755345
+            ],
+            [
+              -122.32151970406174,
+              47.65508538601444
+            ],
+            [
+              -122.32157121520382,
+              47.655075892774406
+            ],
+            [
+              -122.3215748560437,
+              47.65508485271667
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 167,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8819376813
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32156846755127,
+              47.65506912807646
+            ],
+            [
+              -122.3215169564092,
+              47.65507862311514
+            ],
+            [
+              -122.32151148246585,
+              47.65506564680209
             ],
             [
               -122.32151165870012,
-              47.65506561262787
+              47.65506561352719
             ],
             [
               -122.32151099648648,
@@ -14422,8 +15499,12 @@
               47.65506711359581
             ],
             [
-              -122.32151713264348,
-              47.65507858804159
+              -122.32156780934295,
+              47.65506750570008
+            ],
+            [
+              -122.32156846755127,
+              47.65506912807646
             ]
           ]
         ],
@@ -14436,8 +15517,11 @@
           "kind": "Unmarked"
         },
         "id": 168,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #185 -> Road #184",
+          "Road #184 -> Road #185"
+        ],
         "osm_node_ids": [
           8819376814
         ],
diff --git a/tests/src/kingsway_junction/geometry.json b/tests/src/kingsway_junction/geometry.json
index 452b4918..0f1564d9 100644
--- a/tests/src/kingsway_junction/geometry.json
+++ b/tests/src/kingsway_junction/geometry.json
@@ -510,24 +510,104 @@
         "coordinates": [
           [
             [
-              -2.3070765697963727,
-              53.446721469462936
+              -2.307076541107055,
+              53.44672149374462
             ],
             [
-              -2.30734320529046,
-              53.44683111834896
+              -2.3072291894140324,
+              53.44678450021549
             ],
             [
-              -2.3073689441378766,
-              53.44680891589745
+              -2.30725499167994,
+              53.44676232474363
             ],
             [
-              -2.307102308643789,
-              53.446699267011425
+              -2.3071023433729625,
+              53.446699318272756
             ],
             [
-              -2.3070765697963727,
-              53.446721469462936
+              -2.307076541107055,
+              53.44672149374462
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 123,
+        "id": 13,
+        "layer": 0,
+        "osm_way_ids": [
+          59876786
+        ],
+        "src_i": 15,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.307279575404848,
+              53.44680500564716
+            ],
+            [
+              -2.3072856228109204,
+              53.4468074311175
+            ],
+            [
+              -2.3073109237687586,
+              53.44678505239895
+            ],
+            [
+              -2.3073048763626867,
+              53.446782626928616
+            ],
+            [
+              -2.307279575404848,
+              53.44680500564716
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 125,
+        "id": 14,
+        "layer": 0,
+        "osm_way_ids": [
+          59876786
+        ],
+        "src_i": 123,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.307334873308761,
+              53.44682751926394
+            ],
+            [
+              -2.307384984486117,
+              53.44684831517648
+            ],
+            [
+              -2.307410880369796,
+              53.44682617927477
+            ],
+            [
+              -2.30736076919244,
+              53.44680538336223
+            ],
+            [
+              -2.307334873308761,
+              53.44682751926394
             ]
           ]
         ],
@@ -538,11 +618,9 @@
         "id": 15,
         "layer": 0,
         "osm_way_ids": [
-          59876786,
-          59876786,
           59876786
         ],
-        "src_i": 15,
+        "src_i": 125,
         "type": "road"
       },
       "type": "Feature"
@@ -2648,35 +2726,34 @@
         "coordinates": [
           [
             [
-              -2.3062830595218804,
-              53.44627258747843
+              -2.3062830791514135,
+              53.44627269809499
             ],
             [
-              -2.306419948333933,
-              53.44605158639128
+              -2.3062865354591535,
+              53.44626721133395
             ],
             [
-              -2.3063632824025797,
-              53.44603913618313
+              -2.306229987304997,
+              53.446254575865545
             ],
             [
-              -2.3062263935905274,
-              53.446260137270286
+              -2.306226530997257,
+              53.44626006262659
             ],
             [
-              -2.3062830595218804,
-              53.44627258747843
+              -2.3062830791514135,
+              53.44627269809499
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 93,
+        "dst_i": 91,
         "id": 66,
         "layer": 0,
         "osm_way_ids": [
-          288281502,
           288281502
         ],
         "src_i": 66,
@@ -2684,6 +2761,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.306308242702522,
+              53.44623235722624
+            ],
+            [
+              -2.306419970983394,
+              53.44605160078042
+            ],
+            [
+              -2.3063632899524,
+              53.44603917215599
+            ],
+            [
+              -2.306251561671528,
+              53.44621992860181
+            ],
+            [
+              -2.306308242702522,
+              53.44623235722624
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 93,
+        "id": 67,
+        "layer": 0,
+        "osm_way_ids": [
+          288281502
+        ],
+        "src_i": 91,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -4140,6 +4257,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.3062515586515997,
+              53.446219927702494
+            ],
+            [
+              -2.306138922882326,
+              53.446175405887665
+            ],
+            [
+              -2.3061055254971823,
+              53.44620537847775
+            ],
+            [
+              -2.306218161266456,
+              53.44624990029258
+            ],
+            [
+              -2.3062515586515997,
+              53.446219927702494
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 92,
+        "id": 106,
+        "layer": 0,
+        "osm_way_ids": [
+          690683788
+        ],
+        "src_i": 91,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -4197,12 +4354,12 @@
               53.44606294662165
             ],
             [
-              -2.306453487655699,
-              53.44603345247066
+              -2.3064535087951956,
+              53.44603346596048
             ],
             [
-              -2.306419948333933,
-              53.44605158639128
+              -2.30641996947343,
+              53.4460515998811
             ],
             [
               -2.3064649029840147,
@@ -4388,6 +4545,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.3054518197753486,
+              53.44645602660057
+            ],
+            [
+              -2.3054617749684154,
+              53.44639372609714
+            ],
+            [
+              -2.3054016481994295,
+              53.4463903176683
+            ],
+            [
+              -2.3053916930063627,
+              53.446452618171726
+            ],
+            [
+              -2.3054518197753486,
+              53.44645602660057
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 96,
+        "id": 114,
+        "layer": 0,
+        "osm_way_ids": [
+          691029142
+        ],
+        "src_i": 95,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -5337,8 +5534,8 @@
         "coordinates": [
           [
             [
-              -2.306381327983096,
-              53.44600410221111
+              -2.3063813430827365,
+              53.44600410490908
             ],
             [
               -2.3062420232285423,
@@ -5357,12 +5554,12 @@
               53.44600674082067
             ],
             [
-              -2.3063689130585705,
-              53.446030049437745
+              -2.306368928158211,
+              53.44603005213571
             ],
             [
-              -2.306381327983096,
-              53.44600410221111
+              -2.3063813430827365,
+              53.44600410490908
             ]
           ]
         ],
@@ -6069,6 +6266,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.307305675133676,
+              53.44678189128355
+            ],
+            [
+              -2.307417791475312,
+              53.44667886949835
+            ],
+            [
+              -2.307367108021576,
+              53.44665930385775
+            ],
+            [
+              -2.30725499167994,
+              53.44676232564295
+            ],
+            [
+              -2.307305675133676,
+              53.44678189128355
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 124,
+        "id": 158,
+        "layer": 0,
+        "osm_way_ids": [
+          1253882130
+        ],
+        "src_i": 123,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.3073615105847947,
+              53.44680470527375
+            ],
+            [
+              -2.307420595478577,
+              53.446750756769966
+            ],
+            [
+              -2.307370008662541,
+              53.44673110299585
+            ],
+            [
+              -2.3073109237687586,
+              53.44678505149963
+            ],
+            [
+              -2.3073615105847947,
+              53.44680470527375
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 126,
+        "id": 159,
+        "layer": 0,
+        "osm_way_ids": [
+          1253882131
+        ],
+        "src_i": 125,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6850,24 +7127,24 @@
         "coordinates": [
           [
             [
-              -2.307406220620698,
-              53.44682424483402
+              -2.307448046625241,
+              53.446841603539426
             ],
             [
-              -2.3073804817732815,
-              53.44684644728553
+              -2.3074221507415618,
+              53.44686373944114
             ],
             [
-              -2.30734320529046,
-              53.44683111834896
+              -2.307384984486117,
+              53.44684831517648
             ],
             [
-              -2.3073689441378766,
-              53.44680891589745
+              -2.307410880369796,
+              53.44682617927477
             ],
             [
-              -2.307406220620698,
-              53.44682424483402
+              -2.307448046625241,
+              53.446841603539426
             ]
           ]
         ],
@@ -6937,12 +7214,12 @@
         "coordinates": [
           [
             [
-              -2.307102308643789,
-              53.446699267011425
+              -2.3071023418629983,
+              53.446699318272756
             ],
             [
-              -2.3070765697963727,
-              53.446721469462936
+              -2.3070765395970914,
+              53.44672149374462
             ],
             [
               -2.3070757755552753,
@@ -6957,12 +7234,8 @@
               53.44667883622345
             ],
             [
-              -2.3070782971952606,
-              53.44668939246032
-            ],
-            [
-              -2.307102308643789,
-              53.446699267011425
+              -2.3071023418629983,
+              53.446699318272756
             ]
           ]
         ],
@@ -6974,8 +7247,8 @@
         "id": 15,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #17 -> Road #15",
-          "Road #12 -> Road #15",
+          "Road #17 -> Road #13",
+          "Road #12 -> Road #13",
           "Road #12 -> Road #17"
         ],
         "osm_node_ids": [
@@ -9194,8 +9467,8 @@
         "coordinates": [
           [
             [
-              -2.3062830595218804,
-              53.44627258747843
+              -2.3062830791514135,
+              53.44627269989363
             ],
             [
               -2.3062670976917716,
@@ -9206,12 +9479,12 @@
               53.44628599906137
             ],
             [
-              -2.3062263935905274,
-              53.446260137270286
+              -2.306226530997257,
+              53.446260060827946
             ],
             [
-              -2.3062830595218804,
-              53.44627258747843
+              -2.3062830791514135,
+              53.44627269989363
             ]
           ]
         ],
@@ -10389,24 +10662,117 @@
         "coordinates": [
           [
             [
-              -2.306453487655699,
-              53.44603345247066
+              -2.3062865369691177,
+              53.446267213132586
+            ],
+            [
+              -2.306229988814961,
+              53.446254574066906
+            ],
+            [
+              -2.30621816277642,
+              53.446249901191905
+            ],
+            [
+              -2.306251560161564,
+              53.44621992860181
+            ],
+            [
+              -2.306308242702522,
+              53.446232356326924
+            ],
+            [
+              -2.3062865369691177,
+              53.446267213132586
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 91,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #66 -> Road #106",
+          "Road #66 -> Road #67",
+          "Road #106 -> Road #66",
+          "Road #106 -> Road #67",
+          "Road #67 -> Road #66",
+          "Road #67 -> Road #106"
+        ],
+        "osm_node_ids": [
+          6480352126
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.306055201414893,
+              53.446185486383406
+            ],
+            [
+              -2.306088598800037,
+              53.44615551379332
+            ],
+            [
+              -2.306138922882326,
+              53.446175405887665
+            ],
+            [
+              -2.3061055254971823,
+              53.44620537847775
+            ],
+            [
+              -2.306055201414893,
+              53.446185486383406
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 92,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          6480352127
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.3064535087951956,
+              53.4460334668598
             ],
             [
-              -2.306419948333933,
-              53.44605158639128
+              -2.30641996947343,
+              53.44605160078042
             ],
             [
-              -2.3063632824025797,
-              53.44603913618313
+              -2.306363288442436,
+              53.44603917305532
             ],
             [
-              -2.3063689115486063,
-              53.446030049437745
+              -2.306368925138283,
+              53.446030051236384
             ],
             [
-              -2.306381327983096,
-              53.44600410221111
+              -2.3063813430827365,
+              53.44600410490908
             ],
             [
               -2.30638310974069,
@@ -10418,11 +10784,11 @@
             ],
             [
               -2.306437121155221,
-              53.44602271457082
+              53.44602271547014
             ],
             [
-              -2.306453487655699,
-              53.44603345247066
+              -2.3064535087951956,
+              53.4460334668598
             ]
           ]
         ],
@@ -10434,8 +10800,8 @@
         "id": 93,
         "intersection_kind": "Connection",
         "movements": [
-          "Road #66 -> Road #68",
-          "Road #68 -> Road #66"
+          "Road #67 -> Road #68",
+          "Road #68 -> Road #67"
         ],
         "osm_node_ids": [
           6480352139
@@ -10483,6 +10849,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.30544609701155,
+              53.44649183758644
+            ],
+            [
+              -2.3053859702425643,
+              53.446488429157604
+            ],
+            [
+              -2.3053916930063627,
+              53.446452618171726
+            ],
+            [
+              -2.3054518197753486,
+              53.44645602660057
+            ],
+            [
+              -2.30544609701155,
+              53.44649183758644
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 95,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.305403137023996,
+              53.446380996199984
+            ],
+            [
+              -2.3054632637929813,
+              53.44638440462882
+            ],
+            [
+              -2.3054617749684154,
+              53.44639372609714
+            ],
+            [
+              -2.3054016481994295,
+              53.4463903176683
+            ],
+            [
+              -2.305403137023996,
+              53.446380996199984
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 96,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          6483771413
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -11578,6 +12024,194 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.3073048763626867,
+              53.446782626928616
+            ],
+            [
+              -2.307279575404848,
+              53.44680500564716
+            ],
+            [
+              -2.3072291894140324,
+              53.44678450021549
+            ],
+            [
+              -2.30725499167994,
+              53.44676232474363
+            ],
+            [
+              -2.307305675133676,
+              53.44678189128355
+            ],
+            [
+              -2.3073048748527225,
+              53.4467826260293
+            ],
+            [
+              -2.3073048763626867,
+              53.446782626928616
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 123,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #13 -> Road #14",
+          "Road #13 -> Road #158",
+          "Road #158 -> Road #14"
+        ],
+        "osm_node_ids": [
+          11655723935
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.307399958799729,
+              53.44662911722912
+            ],
+            [
+              -2.3074506422534653,
+              53.44664868286972
+            ],
+            [
+              -2.307417791475312,
+              53.44667886949835
+            ],
+            [
+              -2.307367108021576,
+              53.44665930385775
+            ],
+            [
+              -2.307399958799729,
+              53.44662911722912
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 124,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          11655723936
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.30736076919244,
+              53.44680538336223
+            ],
+            [
+              -2.307334873308761,
+              53.44682751926394
+            ],
+            [
+              -2.3073108679000884,
+              53.446817557478646
+            ],
+            [
+              -2.3072856228109204,
+              53.44680743201682
+            ],
+            [
+              -2.3073109237687586,
+              53.44678505329828
+            ],
+            [
+              -2.307361512094759,
+              53.44680470527375
+            ],
+            [
+              -2.30736076919244,
+              53.44680538336223
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 125,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #14 -> Road #15",
+          "Road #14 -> Road #159",
+          "Road #159 -> Road #15"
+        ],
+        "osm_node_ids": [
+          11655723937
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -2.307403005907208,
+              53.446700973024484
+            ],
+            [
+              -2.307453592723244,
+              53.4467206267986
+            ],
+            [
+              -2.307420595478577,
+              53.446750756769966
+            ],
+            [
+              -2.307370008662541,
+              53.44673110299585
+            ],
+            [
+              -2.307403005907208,
+              53.446700973024484
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 126,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          11655723938
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/leeds_cycleway/geometry.json b/tests/src/leeds_cycleway/geometry.json
index d8a4bf4b..d4c2810f 100644
--- a/tests/src/leeds_cycleway/geometry.json
+++ b/tests/src/leeds_cycleway/geometry.json
@@ -426,12 +426,12 @@
               53.79726380911497
             ],
             [
-              -1.5332571441455611,
-              53.79723096498767
+              -1.5332553901639847,
+              53.79723114934861
             ],
             [
-              -1.5332411238381418,
-              53.79717784205565
+              -1.5332393698565654,
+              53.7971780264166
             ],
             [
               -1.5329289410009472,
@@ -1961,6 +1961,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.536037494229346,
+              53.79582690889746
+            ],
+            [
+              -1.5359685758473522,
+              53.79583389123103
+            ],
+            [
+              -1.5359788713537932,
+              53.79586934608919
+            ],
+            [
+              -1.536047789735787,
+              53.79586236375562
+            ],
+            [
+              -1.536037494229346,
+              53.79582690889746
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 46,
+        "id": 44,
+        "layer": 0,
+        "osm_way_ids": [
+          30831670
+        ],
+        "src_i": 45,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -5013,7 +5053,7 @@
         "osm_way_ids": [
           147463179
         ],
-        "src_i": 210,
+        "src_i": 103,
         "type": "road"
       },
       "type": "Feature"
@@ -6975,53 +7015,37 @@
         "coordinates": [
           [
             [
-              -1.5356194589085252,
-              53.796673792035556
-            ],
-            [
-              -1.5353272885139007,
-              53.79658223479264
-            ],
-            [
-              -1.535250257967116,
-              53.796592441194456
-            ],
-            [
-              -1.5352042524920178,
-              53.79661716264829
-            ],
-            [
-              -1.5352667106797155,
-              53.79665771486177
+              -1.5361639392484074,
+              53.79712087902004
             ],
             [
-              -1.5352945429568137,
-              53.796642758242804
+              -1.5363183611871447,
+              53.797213349074475
             ],
             [
-              -1.5353141123363292,
-              53.79664016549839
+              -1.536384440006951,
+              53.79717485091173
             ],
             [
-              -1.5355759595564085,
-              53.796722220508364
+              -1.5362300180682136,
+              53.7970823808573
             ],
             [
-              -1.5356194589085252,
-              53.796673792035556
+              -1.5361639392484074,
+              53.79712087902004
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 66,
-        "id": 183,
+        "dst_i": 141,
+        "id": 162,
         "layer": 0,
         "osm_way_ids": [
-          218332090
+          218332069
         ],
-        "src_i": 182,
+        "src_i": 140,
         "type": "road"
       },
       "type": "Feature"
@@ -7031,45 +7055,37 @@
         "coordinates": [
           [
             [
-              -1.5356200724975664,
-              53.79671334420332
-            ],
-            [
-              -1.535359702154335,
-              53.79663148614479
-            ],
-            [
-              -1.535283647564313,
-              53.79664120151697
+              -1.5356243767561744,
+              53.797202014923265
             ],
             [
-              -1.5353032671880922,
-              53.79669478490168
+              -1.5353672920832921,
+              53.797125316273245
             ],
             [
-              -1.53534609661669,
-              53.796689314327864
+              -1.535325446224224,
+              53.79717425196348
             ],
             [
-              -1.5355764635216012,
-              53.79676173850191
+              -1.5355825308971063,
+              53.7972509506135
             ],
             [
-              -1.5356200724975664,
-              53.79671334420332
+              -1.5356243767561744,
+              53.797202014923265
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 66,
-        "id": 189,
+        "dst_i": 143,
+        "id": 163,
         "layer": 0,
         "osm_way_ids": [
-          218332097
+          218332070
         ],
-        "src_i": 193,
+        "src_i": 142,
         "type": "road"
       },
       "type": "Feature"
@@ -7079,45 +7095,37 @@
         "coordinates": [
           [
             [
-              -1.5325378792370778,
-              53.796928180463
-            ],
-            [
-              -1.5325352863285495,
-              53.79692347161465
-            ],
-            [
-              -1.5324743841904793,
-              53.796874403724125
+              -1.5356279562793396,
+              53.79731852564501
             ],
             [
-              -1.5324375475322674,
-              53.796890355892195
+              -1.535328559846033,
+              53.79722363641525
             ],
             [
-              -1.5324941134381072,
-              53.796935929018645
+              -1.5352846768104464,
+              53.79727194437895
             ],
             [
-              -1.5324944407870993,
-              53.796936524369606
+              -1.535584073243753,
+              53.79736683360871
             ],
             [
-              -1.5325378792370778,
-              53.796928180463
+              -1.5356279562793396,
+              53.79731852564501
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 224,
-        "id": 198,
+        "dst_i": 153,
+        "id": 164,
         "layer": 0,
         "osm_way_ids": [
-          312269974
+          218332071
         ],
-        "src_i": 211,
+        "src_i": 144,
         "type": "road"
       },
       "type": "Feature"
@@ -7127,45 +7135,37 @@
         "coordinates": [
           [
             [
-              -1.5324484063834853,
-              53.79685926094557
-            ],
-            [
-              -1.5323548530866422,
-              53.79681820870923
-            ],
-            [
-              -1.532319959206635,
-              53.79680886925352
+              -1.536162568950301,
+              53.79701998951599
             ],
             [
-              -1.5323011069497954,
-              53.79683344411792
+              -1.5363189732536324,
+              53.79711473665293
             ],
             [
-              -1.5323315458384028,
-              53.796841591073076
+              -1.5363854266215877,
+              53.7970764633206
             ],
             [
-              -1.5324211679022335,
-              53.796880918410416
+              -1.5362290223182562,
+              53.796981716183666
             ],
             [
-              -1.5324484063834853,
-              53.79685926094557
+              -1.536162568950301,
+              53.79701998951599
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 212,
-        "id": 199,
+        "dst_i": 147,
+        "id": 165,
         "layer": 0,
         "osm_way_ids": [
-          312269974
+          218332072
         ],
-        "src_i": 224,
+        "src_i": 146,
         "type": "road"
       },
       "type": "Feature"
@@ -7175,37 +7175,37 @@
         "coordinates": [
           [
             [
-              -1.5324936536269647,
-              53.796972155494814
+              -1.5356276015243853,
+              53.7974955256427
             ],
             [
-              -1.5324644221232444,
-              53.79719941138698
+              -1.5353820090849568,
+              53.79742329302418
             ],
             [
-              -1.532555513451156,
-              53.797203499703365
+              -1.5353406382625656,
+              53.7974723690086
             ],
             [
-              -1.5325847449548762,
-              53.7969762438112
+              -1.535586230701994,
+              53.79754460162712
             ],
             [
-              -1.5324936536269647,
-              53.796972155494814
+              -1.5356276015243853,
+              53.7974955256427
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 10,
-        "id": 200,
+        "dst_i": 103,
+        "id": 166,
         "layer": 0,
         "osm_way_ids": [
-          312269975
+          218332073
         ],
-        "src_i": 211,
+        "src_i": 148,
         "type": "road"
       },
       "type": "Feature"
@@ -7215,37 +7215,37 @@
         "coordinates": [
           [
             [
-              -1.5324550264458936,
-              53.797250216767004
+              -1.5361612093100685,
+              53.79691899299265
             ],
             [
-              -1.5324267602410617,
-              53.7973777729577
+              -1.5363195898877804,
+              53.79701602530599
             ],
             [
-              -1.5325173399910137,
-              53.797384776875
+              -1.5363864086685641,
+              53.79697797500545
             ],
             [
-              -1.5325456061958453,
-              53.797257220684294
+              -1.5362280280908522,
+              53.796880942692106
             ],
             [
-              -1.5324550264458936,
-              53.797250216767004
+              -1.5361612093100685,
+              53.79691899299265
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 345,
-        "id": 201,
+        "dst_i": 151,
+        "id": 167,
         "layer": 0,
         "osm_way_ids": [
-          312269975
+          218332074
         ],
-        "src_i": 10,
+        "src_i": 150,
         "type": "road"
       },
       "type": "Feature"
@@ -7255,37 +7255,37 @@
         "coordinates": [
           [
             [
-              -1.532419033282294,
-              53.7974135362832
+              -1.5356260454747575,
+              53.79727549939757
             ],
             [
-              -1.5323536228634533,
-              53.797722792326724
+              -1.5353723423930916,
+              53.797196034434045
             ],
             [
-              -1.5324442726508638,
-              53.797729481481426
+              -1.5353288582665094,
+              53.797244468302786
             ],
             [
-              -1.5325096830697047,
-              53.797420225437904
+              -1.5355825613481753,
+              53.79732393326631
             ],
             [
-              -1.532419033282294,
-              53.7974135362832
+              -1.5356260454747575,
+              53.79727549939757
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 84,
-        "id": 202,
+        "dst_i": 153,
+        "id": 168,
         "layer": 0,
         "osm_way_ids": [
-          312269975
+          218332075
         ],
-        "src_i": 345,
+        "src_i": 152,
         "type": "road"
       },
       "type": "Feature"
@@ -7295,37 +7295,37 @@
         "coordinates": [
           [
             [
-              -1.5324330133680881,
-              53.797783402111776
+              -1.5356249644618067,
+              53.79697739044635
             ],
             [
-              -1.5328019219792346,
-              53.79783651964785
+              -1.5353120660244899,
+              53.796874547615595
             ],
             [
-              -1.532823557463784,
-              53.797784094589474
+              -1.5352669344950731,
+              53.79692245268318
             ],
             [
-              -1.5324546488526376,
-              53.79773097705339
+              -1.5355798329323898,
+              53.79702529551394
             ],
             [
-              -1.5324330133680881,
-              53.797783402111776
+              -1.5356249644618067,
+              53.79697739044635
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 251,
-        "id": 203,
+        "dst_i": 155,
+        "id": 169,
         "layer": 0,
         "osm_way_ids": [
-          312269975
+          218332076
         ],
-        "src_i": 84,
+        "src_i": 154,
         "type": "road"
       },
       "type": "Feature"
@@ -7335,37 +7335,37 @@
         "coordinates": [
           [
             [
-              -1.532862049137598,
-              53.79784257927738
+              -1.536159866417924,
+              53.7968179919727
             ],
             [
-              -1.5332089705543477,
-              53.79786523139201
+              -1.5362638492059115,
+              53.7968824022912
             ],
             [
-              -1.5332190072267016,
-              53.797811599443925
+              -1.5363310212190961,
+              53.7968445696265
             ],
             [
-              -1.5328720858099518,
-              53.797788947329295
+              -1.5362270384311085,
+              53.79678015930801
             ],
             [
-              -1.532862049137598,
-              53.79784257927738
+              -1.536159866417924,
+              53.7968179919727
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 213,
-        "id": 204,
+        "dst_i": 157,
+        "id": 170,
         "layer": 0,
         "osm_way_ids": [
-          312269975
+          218332077
         ],
-        "src_i": 251,
+        "src_i": 156,
         "type": "road"
       },
       "type": "Feature"
@@ -7375,45 +7375,37 @@
         "coordinates": [
           [
             [
-              -1.5344521856919697,
-              53.79614390900002
-            ],
-            [
-              -1.5349194847522756,
-              53.796060424967884
-            ],
-            [
-              -1.5354373325871797,
-              53.79598691801053
+              -1.536165326294602,
+              53.79722186565084
             ],
             [
-              -1.5354266594874828,
-              53.79596068479694
+              -1.536317755210871,
+              53.79731206491802
             ],
             [
-              -1.5349075144370379,
-              53.79603437521592
+              -1.5363834442569935,
+              53.79727333473027
             ],
             [
-              -1.5344389607926878,
-              53.79611808407848
+              -1.5362310153407246,
+              53.7971831354631
             ],
             [
-              -1.5344521856919697,
-              53.79614390900002
+              -1.536165326294602,
+              53.79722186565084
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 215,
-        "id": 205,
+        "dst_i": 159,
+        "id": 171,
         "layer": 0,
         "osm_way_ids": [
-          313390685
+          218332078
         ],
-        "src_i": 214,
+        "src_i": 158,
         "type": "road"
       },
       "type": "Feature"
@@ -7423,37 +7415,37 @@
         "coordinates": [
           [
             [
-              -1.5354657327767154,
-              53.795983438534925
+              -1.5361618700982664,
+              53.79696944493925
             ],
             [
-              -1.536087202554439,
-              53.795919218872626
+              -1.5363192762417692,
+              53.797065377382175
             ],
             [
-              -1.5360793309530933,
-              53.795892642118154
+              -1.5363859244965665,
+              53.79702722276031
             ],
             [
-              -1.5354578611753698,
-              53.79595686178045
+              -1.5362285183530637,
+              53.79693129031739
             ],
             [
-              -1.5354657327767154,
-              53.795983438534925
+              -1.5361618700982664,
+              53.79696944493925
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 216,
-        "id": 206,
-        "layer": 1,
+        "dst_i": 161,
+        "id": 172,
+        "layer": 0,
         "osm_way_ids": [
-          313390688
+          218332079
         ],
-        "src_i": 215,
+        "src_i": 160,
         "type": "road"
       },
       "type": "Feature"
@@ -7463,37 +7455,37 @@
         "coordinates": [
           [
             [
-              -1.5319900629825827,
-              53.79655259404918
+              -1.535624267132326,
+              53.797049147323705
             ],
             [
-              -1.532831888876272,
-              53.79641166944162
+              -1.5353616677708413,
+              53.7969666021834
             ],
             [
-              -1.5328194343890367,
-              53.79638571142046
+              -1.53531806488509,
+              53.79701499828063
             ],
             [
-              -1.5319776084953474,
-              53.79652663602803
+              -1.5355806642465746,
+              53.79709754342093
             ],
             [
-              -1.5319900629825827,
-              53.79655259404918
+              -1.535624267132326,
+              53.797049147323705
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 218,
-        "id": 207,
-        "layer": 1,
+        "dst_i": 163,
+        "id": 173,
+        "layer": 0,
         "osm_way_ids": [
-          313390689
+          218332080
         ],
-        "src_i": 217,
+        "src_i": 162,
         "type": "road"
       },
       "type": "Feature"
@@ -7503,37 +7495,37 @@
         "coordinates": [
           [
             [
-              -1.533270877577696,
-              53.796339176919126
+              -1.5356232241832115,
+              53.7970098757443
             ],
             [
-              -1.5344224852417863,
-              53.79614901265059
+              -1.5353134180519552,
+              53.79691399905933
             ],
             [
-              -1.534410186055003,
-              53.79612302944843
+              -1.535270341969698,
+              53.79696256063174
             ],
             [
-              -1.5332585783909127,
-              53.79631319371696
+              -1.5355801481009543,
+              53.79705843731672
             ],
             [
-              -1.533270877577696,
-              53.796339176919126
+              -1.5356232241832115,
+              53.7970098757443
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 214,
-        "id": 208,
-        "layer": 1,
+        "dst_i": 165,
+        "id": 174,
+        "layer": 0,
         "osm_way_ids": [
-          313390689
+          218332081
         ],
-        "src_i": 218,
+        "src_i": 164,
         "type": "road"
       },
       "type": "Feature"
@@ -7543,37 +7535,37 @@
         "coordinates": [
           [
             [
-              -1.533155967423585,
-              53.80000341366729
+              -1.5361660418947243,
+              53.797272402133686
             ],
             [
-              -1.533151538315594,
-              53.800000511556206
+              -1.5363174598355014,
+              53.79736142688673
             ],
             [
-              -1.533083684198463,
-              53.80003664090564
+              -1.5363829387692476,
+              53.7973225725926
             ],
             [
-              -1.5330881133064542,
-              53.800039543016716
+              -1.5362315208284705,
+              53.79723354783955
             ],
             [
-              -1.533155967423585,
-              53.80000341366729
+              -1.5361660418947243,
+              53.797272402133686
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 290,
-        "id": 210,
+        "dst_i": 167,
+        "id": 175,
         "layer": 0,
         "osm_way_ids": [
-          331099341
+          218332082
         ],
-        "src_i": 220,
+        "src_i": 166,
         "type": "road"
       },
       "type": "Feature"
@@ -7583,37 +7575,45 @@
         "coordinates": [
           [
             [
-              -1.5331311102159317,
-              53.799987138642734
+              -1.5361624151724023,
+              53.79732364908066
             ],
             [
-              -1.5331266902432612,
-              53.79998424552487
+              -1.5362559654241383,
+              53.7973833172759
             ],
             [
-              -1.5330588696223064,
-              53.80002039465937
+              -1.5362889469770105,
+              53.797392072172514
             ],
             [
-              -1.5330632895949767,
-              53.800023287777236
+              -1.5363269955877696,
+              53.79734206808811
             ],
             [
-              -1.5331311102159317,
-              53.799987138642734
+              -1.5363112341144372,
+              53.79733788354431
+            ],
+            [
+              -1.5362305128980855,
+              53.79728639917641
+            ],
+            [
+              -1.5361624151724023,
+              53.79732364908066
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 221,
-        "id": 211,
+        "dst_i": 169,
+        "id": 176,
         "layer": 0,
         "osm_way_ids": [
-          331099341
+          218332083
         ],
-        "src_i": 290,
+        "src_i": 168,
         "type": "road"
       },
       "type": "Feature"
@@ -7623,37 +7623,37 @@
         "coordinates": [
           [
             [
-              -1.5325424468974331,
-              53.796195519272956
+              -1.5356212220254224,
+              53.796939052362866
             ],
             [
-              -1.5325883747223052,
-              53.796281328950975
+              -1.5353102587535428,
+              53.796845872743624
             ],
             [
-              -1.5326319258412393,
-              53.79627319548565
+              -1.5352682667293434,
+              53.796894763467776
             ],
             [
-              -1.532585998016367,
-              53.79618738580762
+              -1.535579230001223,
+              53.79698794308702
             ],
             [
-              -1.5325424468974331,
-              53.796195519272956
+              -1.5356212220254224,
+              53.796939052362866
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 37,
-        "id": 212,
+        "dst_i": 196,
+        "id": 177,
         "layer": 0,
         "osm_way_ids": [
-          363048952
+          218332084
         ],
-        "src_i": 222,
+        "src_i": 170,
         "type": "road"
       },
       "type": "Feature"
@@ -7663,61 +7663,37 @@
         "coordinates": [
           [
             [
-              -1.5320149582540723,
-              53.79690631885212
-            ],
-            [
-              -1.5322225964810556,
-              53.79687160953164
-            ],
-            [
-              -1.532263244090557,
-              53.79687069582081
-            ],
-            [
-              -1.5324081013485105,
-              53.79690605984748
-            ],
-            [
-              -1.5324364710869771,
-              53.79689093055875
-            ],
-            [
-              -1.53242116637968,
-              53.796880917511096
-            ],
-            [
-              -1.5324034971468723,
-              53.796890339704404
+              -1.5356228207065468,
+              53.79716448532997
             ],
             [
-              -1.5322673549848769,
-              53.796857103472846
+              -1.5353209881877172,
+              53.79707726641487
             ],
             [
-              -1.5322190032549095,
-              53.79685818985344
+              -1.5352802020258516,
+              53.79712651147177
             ],
             [
-              -1.5320087401457754,
-              53.796893338042906
+              -1.5355820345446811,
+              53.79721373038687
             ],
             [
-              -1.5320149582540723,
-              53.79690631885212
+              -1.5356228207065468,
+              53.79716448532997
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 224,
-        "id": 213,
+        "dst_i": 208,
+        "id": 178,
         "layer": 0,
         "osm_way_ids": [
-          363049110
+          218332085
         ],
-        "src_i": 223,
+        "src_i": 172,
         "type": "road"
       },
       "type": "Feature"
@@ -7727,45 +7703,37 @@
         "coordinates": [
           [
             [
-              -1.5324709584452127,
-              53.79687108073049
-            ],
-            [
-              -1.5325171907807753,
-              53.79684198227801
-            ],
-            [
-              -1.5325894542127025,
-              53.796822446313016
+              -1.5361632708474422,
+              53.79707042977141
             ],
             [
-              -1.5325799504340567,
-              53.79681017956521
+              -1.536318671788049,
+              53.79716399609897
             ],
             [
-              -1.5325036096039857,
-              53.7968308180986
+              -1.5363849272240555,
+              53.797125604056184
             ],
             [
-              -1.5324543047555574,
-              53.796861850092704
+              -1.5362295262834487,
+              53.79703203772862
             ],
             [
-              -1.5324709584452127,
-              53.79687108073049
+              -1.5361632708474422,
+              53.79707042977141
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 482,
-        "id": 214,
+        "dst_i": 175,
+        "id": 179,
         "layer": 0,
         "osm_way_ids": [
-          363049110
+          218332086
         ],
-        "src_i": 224,
+        "src_i": 174,
         "type": "road"
       },
       "type": "Feature"
@@ -7775,37 +7743,37 @@
         "coordinates": [
           [
             [
-              -1.532658004136761,
-              53.79680095252471
+              -1.5361605561346376,
+              53.796868539247406
             ],
             [
-              -1.5327955272547373,
-              53.796750887286436
+              -1.5363199081014518,
+              53.79696667412914
             ],
             [
-              -1.5327835447590719,
-              53.7967394029485
+              -1.5363868913180083,
+              53.79692872635126
             ],
             [
-              -1.5326460216410955,
-              53.79678946818678
+              -1.5362275393511942,
+              53.79683059146953
             ],
             [
-              -1.532658004136761,
-              53.79680095252471
+              -1.5361605561346376,
+              53.796868539247406
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 455,
-        "id": 215,
+        "dst_i": 177,
+        "id": 180,
         "layer": 0,
         "osm_way_ids": [
-          363049110
+          218332087
         ],
-        "src_i": 482,
+        "src_i": 176,
         "type": "road"
       },
       "type": "Feature"
@@ -7815,45 +7783,37 @@
         "coordinates": [
           [
             [
-              -1.532857452548727,
-              53.79673897667003
-            ],
-            [
-              -1.5336711781959107,
-              53.79660635819755
-            ],
-            [
-              -1.5338692943736065,
-              53.796595187722886
+              -1.5356219711217207,
+              53.79687028752876
             ],
             [
-              -1.5338671232123844,
-              53.79658175905147
+              -1.5353067964669935,
+              53.79677149434356
             ],
             [
-              -1.5336670216249875,
-              53.79659304104202
+              -1.535263287979556,
+              53.79681992101772
             ],
             [
-              -1.5328513775604546,
-              53.79672597247844
+              -1.5355784626342832,
+              53.79691871420293
             ],
             [
-              -1.532857452548727,
-              53.79673897667003
+              -1.5356219711217207,
+              53.79687028752876
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 432,
-        "id": 217,
+        "dst_i": 181,
+        "id": 181,
         "layer": 0,
         "osm_way_ids": [
-          363049110
+          218332088
         ],
-        "src_i": 455,
+        "src_i": 178,
         "type": "road"
       },
       "type": "Feature"
@@ -7863,45 +7823,37 @@
         "coordinates": [
           [
             [
-              -1.5338801395218435,
-              53.79659457618414
-            ],
-            [
-              -1.5339250700742049,
-              53.796616060079906
-            ],
-            [
-              -1.533981078725481,
-              53.79667954769435
+              -1.53562217818899,
+              53.79682565059618
             ],
             [
-              -1.5340013317314962,
-              53.79667331359642
+              -1.5353518092372411,
+              53.79673893709987
             ],
             [
-              -1.5339431306032496,
-              53.796607340256834
+              -1.5353075212024365,
+              53.79678711556125
             ],
             [
-              -1.5338945093813212,
-              53.79658409189192
+              -1.5355778901541854,
+              53.79687382905757
             ],
             [
-              -1.5338801395218435,
-              53.79659457618414
+              -1.53562217818899,
+              53.79682565059618
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 361,
-        "id": 218,
+        "dst_i": 181,
+        "id": 182,
         "layer": 0,
         "osm_way_ids": [
-          363049110
+          218332089
         ],
-        "src_i": 432,
+        "src_i": 180,
         "type": "road"
       },
       "type": "Feature"
@@ -7911,45 +7863,53 @@
         "coordinates": [
           [
             [
-              -1.533707780380891,
-              53.79641329271726
+              -1.5356194589085252,
+              53.796673792035556
             ],
             [
-              -1.5335932006208792,
-              53.79615185001051
+              -1.5353272885139007,
+              53.79658223479264
             ],
             [
-              -1.5335931686472566,
-              53.79615234553676
+              -1.535250257967116,
+              53.796592441194456
             ],
             [
-              -1.53353231218579,
-              53.796150960581365
+              -1.5352042524920178,
+              53.79661716264829
             ],
             [
-              -1.5335320000623325,
-              53.79615574946934
+              -1.5352667106797155,
+              53.79665771486177
             ],
             [
-              -1.5336488210210253,
-              53.796422307517844
+              -1.5352945429568137,
+              53.796642758242804
             ],
             [
-              -1.533707780380891,
-              53.79641329271726
+              -1.5353141123363292,
+              53.79664016549839
+            ],
+            [
+              -1.5355759595564085,
+              53.796722220508364
+            ],
+            [
+              -1.5356194589085252,
+              53.796673792035556
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 227,
-        "id": 220,
+        "dst_i": 66,
+        "id": 183,
         "layer": 0,
         "osm_way_ids": [
-          363049114
+          218332090
         ],
-        "src_i": 226,
+        "src_i": 182,
         "type": "road"
       },
       "type": "Feature"
@@ -7959,37 +7919,37 @@
         "coordinates": [
           [
             [
-              -1.5328721619376244,
-              53.796790071631634
+              -1.5356199415579694,
+              53.796788782004334
             ],
             [
-              -1.5328582199156668,
-              53.796741644957464
+              -1.5353023018892038,
+              53.79669184771706
             ],
             [
-              -1.5328131888747776,
-              53.79674616854555
+              -1.535259697798517,
+              53.79674055318094
             ],
             [
-              -1.5328271308967354,
-              53.796794595219716
+              -1.5355773374672823,
+              53.796837487468224
             ],
             [
-              -1.5328721619376244,
-              53.796790071631634
+              -1.5356199415579694,
+              53.796788782004334
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 455,
-        "id": 221,
+        "dst_i": 184,
+        "id": 184,
         "layer": 0,
         "osm_way_ids": [
-          363049228
+          218332091
         ],
-        "src_i": 34,
+        "src_i": 183,
         "type": "road"
       },
       "type": "Feature"
@@ -7999,37 +7959,37 @@
         "coordinates": [
           [
             [
-              -1.5335016814554476,
-              53.79616271201784
+              -1.5361646502808695,
+              53.79717141999949
             ],
             [
-              -1.5335258184953182,
-              53.796157660527925
+              -1.5363180642892218,
+              53.797262711043196
             ],
             [
-              -1.5335105625097316,
-              53.79613222950928
+              -1.5363839360417584,
+              53.79722408877405
             ],
             [
-              -1.533486425469861,
-              53.79613728099919
+              -1.536230522033406,
+              53.797132797730356
             ],
             [
-              -1.5335016814554476,
-              53.79616271201784
+              -1.5361646502808695,
+              53.79717141999949
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 227,
-        "id": 222,
+        "dst_i": 186,
+        "id": 185,
         "layer": 0,
         "osm_way_ids": [
-          363049230
+          218332092
         ],
-        "src_i": 52,
+        "src_i": 185,
         "type": "road"
       },
       "type": "Feature"
@@ -8039,37 +7999,37 @@
         "coordinates": [
           [
             [
-              -1.5333812657480552,
-              53.799785285890245
+              -1.5356272452468775,
+              53.797352196248944
             ],
             [
-              -1.5333430633593972,
-              53.799777517549515
+              -1.5353295160096005,
+              53.79726079728665
             ],
             [
-              -1.5333133248453774,
-              53.79982853786743
+              -1.5352867139869648,
+              53.79730944159665
             ],
             [
-              -1.5333515272340354,
-              53.79983630620815
+              -1.5355844432242418,
+              53.79740084055896
             ],
             [
-              -1.5333812657480552,
-              53.799785285890245
+              -1.5356272452468775,
+              53.797352196248944
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 136,
-        "id": 223,
-        "layer": 1,
+        "dst_i": 188,
+        "id": 186,
+        "layer": 0,
         "osm_way_ids": [
-          400349312
+          218332093
         ],
-        "src_i": 56,
+        "src_i": 187,
         "type": "road"
       },
       "type": "Feature"
@@ -8079,37 +8039,37 @@
         "coordinates": [
           [
             [
-              -1.5337139756508862,
-              53.79962540178288
+              -1.5356278542682582,
+              53.797459204737756
             ],
             [
-              -1.5338836261692481,
-              53.799581859324796
+              -1.5353804012685117,
+              53.79738277138764
             ],
             [
-              -1.5338654225201789,
-              53.79955711538792
+              -1.5353373921786064,
+              53.79743135274513
             ],
             [
-              -1.533695772001817,
-              53.79960065784601
+              -1.535584845178353,
+              53.79750778609525
             ],
             [
-              -1.5337139756508862,
-              53.79962540178288
+              -1.5356278542682582,
+              53.797459204737756
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 96,
-        "id": 224,
+        "dst_i": 103,
+        "id": 187,
         "layer": 0,
         "osm_way_ids": [
-          400349314
+          218332094
         ],
-        "src_i": 82,
+        "src_i": 189,
         "type": "road"
       },
       "type": "Feature"
@@ -8119,37 +8079,37 @@
         "coordinates": [
           [
             [
-              -1.5323206626263297,
-              53.797863388681876
+              -1.535625702900231,
+              53.79753127727702
             ],
             [
-              -1.5321886465841883,
-              53.79785851076105
+              -1.535382444535244,
+              53.79746468520411
             ],
             [
-              -1.5321848432456657,
-              53.79789441348141
+              -1.5353434154000616,
+              53.797514424887936
             ],
             [
-              -1.5323168592878071,
-              53.79789929140224
+              -1.5355866737650485,
+              53.79758101696084
             ],
             [
-              -1.5323206626263297,
-              53.797863388681876
+              -1.535625702900231,
+              53.79753127727702
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 230,
-        "id": 225,
+        "dst_i": 103,
+        "id": 188,
         "layer": 0,
         "osm_way_ids": [
-          438378829
+          218332096
         ],
-        "src_i": 229,
+        "src_i": 191,
         "type": "road"
       },
       "type": "Feature"
@@ -8159,45 +8119,45 @@
         "coordinates": [
           [
             [
-              -1.5324076948267389,
-              53.79790512260405
+              -1.5356200724975664,
+              53.79671334420332
             ],
             [
-              -1.5325927977400826,
-              53.79792222950117
+              -1.535359702154335,
+              53.79663148704411
             ],
             [
-              -1.5327295245626036,
-              53.797996320118294
+              -1.5352514912354118,
+              53.79664530871911
             ],
             [
-              -1.5327706944079391,
-              53.79796981171227
+              -1.5352711078140844,
+              53.79669889210382
             ],
             [
-              -1.532620401634163,
-              53.79788837003968
+              -1.53534609661669,
+              53.796689313428544
             ],
             [
-              -1.5324171102972846,
-              53.79786958141101
+              -1.5355764635216012,
+              53.79676173850191
             ],
             [
-              -1.5324076948267389,
-              53.79790512260405
+              -1.5356200724975664,
+              53.79671334420332
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 252,
-        "id": 226,
+        "dst_i": 194,
+        "id": 189,
         "layer": 0,
         "osm_way_ids": [
-          438378831
+          218332097
         ],
-        "src_i": 229,
+        "src_i": 193,
         "type": "road"
       },
       "type": "Feature"
@@ -8207,53 +8167,37 @@
         "coordinates": [
           [
             [
-              -1.532818198075634,
-              53.79801756659313
-            ],
-            [
-              -1.533102315685052,
-              53.79806485922265
-            ],
-            [
-              -1.5333753323572537,
-              53.79815306199568
-            ],
-            [
-              -1.5334175573321311,
-              53.798153737386265
-            ],
-            [
-              -1.533419204734966,
-              53.79811777710932
+              -1.5356221096740847,
+              53.796903797154116
             ],
             [
-              -1.5333916663106841,
-              53.79811733734101
+              -1.53535462291602,
+              53.79682057482459
             ],
             [
-              -1.533125482858374,
-              53.7980313415034
+              -1.5353113671724556,
+              53.79686908063906
             ],
             [
-              -1.5328347177805854,
-              53.79798294270821
+              -1.5355788539305204,
+              53.79695230296859
             ],
             [
-              -1.532818198075634,
-              53.79801756659313
+              -1.5356221096740847,
+              53.796903797154116
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 231,
-        "id": 228,
+        "dst_i": 196,
+        "id": 190,
         "layer": 0,
         "osm_way_ids": [
-          438378831
+          218332098
         ],
-        "src_i": 252,
+        "src_i": 195,
         "type": "road"
       },
       "type": "Feature"
@@ -8263,37 +8207,45 @@
         "coordinates": [
           [
             [
-              -1.536317108125654,
-              53.79995277106449
+              -1.535620928172606,
+              53.79675439643966
             ],
             [
-              -1.5363284206978005,
-              53.79987174487852
+              -1.5353668733810928,
+              53.796673715593215
             ],
             [
-              -1.5362373750464926,
-              53.799867309423966
+              -1.535285036133061,
+              53.79666854449352
             ],
             [
-              -1.536226062474346,
-              53.79994833560993
+              -1.5352751638964799,
+              53.79672305597821
             ],
             [
-              -1.536317108125654,
-              53.79995277106449
+              -1.5353389253899323,
+              53.79672708493937
+            ],
+            [
+              -1.535576975099561,
+              53.79680268281964
+            ],
+            [
+              -1.535620928172606,
+              53.79675439643966
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 26,
-        "id": 229,
+        "dst_i": 198,
+        "id": 191,
         "layer": 0,
         "osm_way_ids": [
-          453297315
+          218332099
         ],
-        "src_i": 232,
+        "src_i": 197,
         "type": "road"
       },
       "type": "Feature"
@@ -8303,45 +8255,37 @@
         "coordinates": [
           [
             [
-              -1.5367690568020593,
-              53.79875458409742
-            ],
-            [
-              -1.5367635360232432,
-              53.79875879921817
-            ],
-            [
-              -1.5367475370315722,
-              53.79884437237459
+              -1.5356254851750872,
+              53.79724305097181
             ],
             [
-              -1.536777805394193,
-              53.79884634728501
+              -1.5353244200231975,
+              53.79715159535224
             ],
             [
-              -1.536792863447831,
-              53.79876580133682
+              -1.5352819712329626,
+              53.797200347580855
             ],
             [
-              -1.5367931405525592,
-              53.79876558999622
+              -1.5355830363848524,
+              53.79729180320042
             ],
             [
-              -1.5367690568020593,
-              53.79875458409742
+              -1.5356254851750872,
+              53.79724305097181
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 233,
-        "id": 230,
+        "dst_i": 143,
+        "id": 192,
         "layer": 0,
         "osm_way_ids": [
-          453297317
+          218332100
         ],
-        "src_i": 72,
+        "src_i": 199,
         "type": "road"
       },
       "type": "Feature"
@@ -8351,37 +8295,37 @@
         "coordinates": [
           [
             [
-              -1.5367562231990144,
-              53.798927876191804
+              -1.5356291256003904,
+              53.79738967188293
             ],
             [
-              -1.5367601239809578,
-              53.79891027556708
+              -1.535331030950285,
+              53.79729420618797
             ],
             [
-              -1.5367374775209164,
-              53.79890852368844
+              -1.5352867916371908,
+              53.79734240083714
             ],
             [
-              -1.536733576738973,
-              53.798926124313155
+              -1.5355848862872963,
+              53.79743786653211
             ],
             [
-              -1.5367562231990144,
-              53.798927876191804
+              -1.5356291256003904,
+              53.79738967188293
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 235,
-        "id": 231,
+        "dst_i": 202,
+        "id": 193,
         "layer": 0,
         "osm_way_ids": [
-          453297318
+          218332101
         ],
-        "src_i": 234,
+        "src_i": 201,
         "type": "road"
       },
       "type": "Feature"
@@ -8391,45 +8335,37 @@
         "coordinates": [
           [
             [
-              -1.533298604798606,
-              53.79978385057283
-            ],
-            [
-              -1.5332508757930003,
-              53.799768162805336
-            ],
-            [
-              -1.5324716481619265,
-              53.79960989208109
+              -1.5356230932436146,
+              53.79708796474565
             ],
             [
-              -1.5324419431440828,
-              53.79966091959356
+              -1.535317225958138,
+              53.79699639311358
             ],
             [
-              -1.5332135245117218,
-              53.799817638088584
+              -1.5352752643850076,
+              53.79704529283095
             ],
             [
-              -1.5332541858242044,
-              53.799831002008844
+              -1.5355811316704842,
+              53.79713686446302
             ],
             [
-              -1.533298604798606,
-              53.79978385057283
+              -1.5356230932436146,
+              53.79708796474565
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 237,
-        "id": 232,
-        "layer": -1,
+        "dst_i": 163,
+        "id": 194,
+        "layer": 0,
         "osm_way_ids": [
-          454077550
+          218332102
         ],
-        "src_i": 236,
+        "src_i": 203,
         "type": "road"
       },
       "type": "Feature"
@@ -8439,37 +8375,37 @@
         "coordinates": [
           [
             [
-              -1.5337148709123158,
-              53.800188596593
+              -1.5356256937649102,
+              53.797572718919646
             ],
             [
-              -1.5337493674058722,
-              53.80009617150466
+              -1.5354160549026914,
+              53.79751627569197
             ],
             [
-              -1.5336601549089202,
-              53.80008455406712
+              -1.5353775586612173,
+              53.79756616106591
             ],
             [
-              -1.5336256584153636,
-              53.80017697915546
+              -1.5355871975234359,
+              53.797622604293586
             ],
             [
-              -1.5337148709123158,
-              53.800188596593
+              -1.5356256937649102,
+              53.797572718919646
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 239,
-        "id": 233,
+        "dst_i": 103,
+        "id": 195,
         "layer": 0,
         "osm_way_ids": [
-          491178797
+          218332103
         ],
-        "src_i": 238,
+        "src_i": 205,
         "type": "road"
       },
       "type": "Feature"
@@ -8479,37 +8415,37 @@
         "coordinates": [
           [
             [
-              -1.5337581951707855,
-              53.80007317674846
+              -1.5356231800291613,
+              53.797124601312504
             ],
             [
-              -1.5337733613257185,
-              53.80003499514695
+              -1.53536353746648,
+              53.79704759149718
             ],
             [
-              -1.5336844228883877,
-              53.80002266904392
+              -1.5353218864942537,
+              53.79709658474401
             ],
             [
-              -1.5336692567334547,
-              53.80006085064543
+              -1.535581529056935,
+              53.79717359455933
             ],
             [
-              -1.5337581951707855,
-              53.80007317674846
+              -1.5356231800291613,
+              53.797124601312504
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 58,
-        "id": 234,
+        "dst_i": 208,
+        "id": 196,
         "layer": 0,
         "osm_way_ids": [
-          491178797
+          218332104
         ],
-        "src_i": 239,
+        "src_i": 207,
         "type": "road"
       },
       "type": "Feature"
@@ -8519,37 +8455,37 @@
         "coordinates": [
           [
             [
-              -1.5335913004741712,
-              53.80003982270576
+              -1.5356304974210504,
+              53.797424124896736
             ],
             [
-              -1.5336412828588855,
-              53.80003061634966
+              -1.535332658559925,
+              53.797329082782284
             ],
             [
-              -1.5336276864565614,
-              53.800004859776564
+              -1.535288541051107,
+              53.79737731700161
             ],
             [
-              -1.5335777040718472,
-              53.80001406613267
+              -1.5355863799122325,
+              53.797472359116064
             ],
             [
-              -1.5335913004741712,
-              53.80003982270576
+              -1.5356304974210504,
+              53.797424124896736
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 58,
-        "id": 235,
+        "dst_i": 210,
+        "id": 197,
         "layer": 0,
         "osm_way_ids": [
-          491178798
+          218332105
         ],
-        "src_i": 240,
+        "src_i": 209,
         "type": "road"
       },
       "type": "Feature"
@@ -8559,37 +8495,45 @@
         "coordinates": [
           [
             [
-              -1.5354705744966919,
-              53.79875311370647
+              -1.5325378792370778,
+              53.796928180463
             ],
             [
-              -1.5354720970501436,
-              53.79874851277672
+              -1.5325352863285495,
+              53.79692347161465
             ],
             [
-              -1.5353824399675835,
-              53.79873816158411
+              -1.5324743841904793,
+              53.796874403724125
             ],
             [
-              -1.5353809174141317,
-              53.79874276251386
+              -1.5324375475322674,
+              53.796890355892195
             ],
             [
-              -1.5354705744966919,
-              53.79875311370647
+              -1.5324941134381072,
+              53.796935929018645
+            ],
+            [
+              -1.5324944407870993,
+              53.796936524369606
+            ],
+            [
+              -1.5325378792370778,
+              53.796928180463
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 403,
-        "id": 236,
+        "dst_i": 224,
+        "id": 198,
         "layer": 0,
         "osm_way_ids": [
-          491178799
+          312269974
         ],
-        "src_i": 241,
+        "src_i": 211,
         "type": "road"
       },
       "type": "Feature"
@@ -8599,45 +8543,45 @@
         "coordinates": [
           [
             [
-              -1.5354930656562813,
-              53.79868725098345
+              -1.5324484063834853,
+              53.79685926094557
             ],
             [
-              -1.5355449390523825,
-              53.798541228121245
+              -1.5323548530866422,
+              53.79681820870923
             ],
             [
-              -1.5355423233055523,
-              53.79842114529376
+              -1.532319959206635,
+              53.79680886925352
             ],
             [
-              -1.5354509761886608,
-              53.7984218395701
+              -1.5323011069497954,
+              53.79683344411792
             ],
             [
-              -1.535453460995894,
-              53.79853597248531
+              -1.5323315458384028,
+              53.796841591073076
             ],
             [
-              -1.5354036582724873,
-              53.79867616954163
+              -1.5324211679022335,
+              53.796880918410416
             ],
             [
-              -1.5354930656562813,
-              53.79868725098345
+              -1.5324484063834853,
+              53.79685926094557
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 7,
-        "id": 237,
+        "dst_i": 212,
+        "id": 199,
         "layer": 0,
         "osm_way_ids": [
-          491178799
+          312269974
         ],
-        "src_i": 403,
+        "src_i": 224,
         "type": "road"
       },
       "type": "Feature"
@@ -8647,37 +8591,37 @@
         "coordinates": [
           [
             [
-              -1.5356021809719547,
-              53.79905829582275
+              -1.5324936536269647,
+              53.796972155494814
             ],
             [
-              -1.5353391248444346,
-              53.79916747977072
+              -1.5324644221232444,
+              53.79719941138698
             ],
             [
-              -1.5353916468483064,
-              53.79921162927094
+              -1.532555513451156,
+              53.797203499703365
             ],
             [
-              -1.5356547029758265,
-              53.79910244532297
+              -1.5325847449548762,
+              53.7969762438112
             ],
             [
-              -1.5356021809719547,
-              53.79905829582275
+              -1.5324936536269647,
+              53.796972155494814
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 478,
-        "id": 238,
+        "dst_i": 10,
+        "id": 200,
         "layer": 0,
         "osm_way_ids": [
-          491178800
+          312269975
         ],
-        "src_i": 3,
+        "src_i": 211,
         "type": "road"
       },
       "type": "Feature"
@@ -8687,45 +8631,37 @@
         "coordinates": [
           [
             [
-              -1.5352892688316568,
-              53.79918818125662
-            ],
-            [
-              -1.5350198453856014,
-              53.799300103639126
-            ],
-            [
-              -1.5345891332847412,
-              53.79950870040494
+              -1.5324550264458936,
+              53.797250216767004
             ],
             [
-              -1.534647054263153,
-              53.799550427132544
+              -1.5324267602410617,
+              53.7973777729577
             ],
             [
-              -1.53507515366229,
-              53.79934309661166
+              -1.5325173399910137,
+              53.797384776875
             ],
             [
-              -1.5353418212865977,
-              53.79923231816634
+              -1.5325456061958453,
+              53.797257220684294
             ],
             [
-              -1.5352892688316568,
-              53.79918818125662
+              -1.5324550264458936,
+              53.797250216767004
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 242,
-        "id": 239,
+        "dst_i": 345,
+        "id": 201,
         "layer": 0,
         "osm_way_ids": [
-          491178800
+          312269975
         ],
-        "src_i": 478,
+        "src_i": 10,
         "type": "road"
       },
       "type": "Feature"
@@ -8735,37 +8671,37 @@
         "coordinates": [
           [
             [
-              -1.534535021735066,
-              53.79952621289614
+              -1.532419033282294,
+              53.7974135362832
             ],
             [
-              -1.534405123564776,
-              53.79959391832929
+              -1.5323536228634533,
+              53.797722792326724
             ],
             [
-              -1.5344806787572658,
-              53.799644492583646
+              -1.5324442726508638,
+              53.797729481481426
             ],
             [
-              -1.5346105769275558,
-              53.799576787150485
+              -1.5325096830697047,
+              53.797420225437904
             ],
             [
-              -1.534535021735066,
-              53.79952621289614
+              -1.532419033282294,
+              53.7974135362832
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 291,
-        "id": 240,
+        "dst_i": 84,
+        "id": 202,
         "layer": 0,
         "osm_way_ids": [
-          491178801
+          312269975
         ],
-        "src_i": 242,
+        "src_i": 345,
         "type": "road"
       },
       "type": "Feature"
@@ -8775,53 +8711,37 @@
         "coordinates": [
           [
             [
-              -1.5343494590105797,
-              53.79962885877545
-            ],
-            [
-              -1.5342139121669838,
-              53.79972503763251
-            ],
-            [
-              -1.5340234894518796,
-              53.799876445632975
-            ],
-            [
-              -1.53391605199011,
-              53.79997422438332
-            ],
-            [
-              -1.534011838872867,
-              53.800010943687774
+              -1.5324330133680881,
+              53.797783402111776
             ],
             [
-              -1.5341173091955769,
-              53.799914954587585
+              -1.5328019219792346,
+              53.79783651964785
             ],
             [
-              -1.534303688008713,
-              53.79976676256147
+              -1.532823557463784,
+              53.797784094589474
             ],
             [
-              -1.5344372220366458,
-              53.79967201182724
+              -1.5324546488526376,
+              53.79773097705339
             ],
             [
-              -1.5343494590105797,
-              53.79962885877545
+              -1.5324330133680881,
+              53.797783402111776
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 357,
-        "id": 241,
+        "dst_i": 251,
+        "id": 203,
         "layer": 0,
         "osm_way_ids": [
-          491178801
+          312269975
         ],
-        "src_i": 291,
+        "src_i": 84,
         "type": "road"
       },
       "type": "Feature"
@@ -8831,37 +8751,37 @@
         "coordinates": [
           [
             [
-              -1.533855901993445,
-              53.80004338132167
+              -1.532862049137598,
+              53.79784257927738
             ],
             [
-              -1.5338430196686896,
-              53.80006463499109
+              -1.5332089705543477,
+              53.79786523139201
             ],
             [
-              -1.533950530213025,
-              53.80008736984332
+              -1.5332190072267016,
+              53.797811599443925
             ],
             [
-              -1.5339634125377803,
-              53.8000661161739
+              -1.5328720858099518,
+              53.797788947329295
             ],
             [
-              -1.533855901993445,
-              53.80004338132167
+              -1.532862049137598,
+              53.79784257927738
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 358,
-        "id": 242,
+        "dst_i": 213,
+        "id": 204,
         "layer": 0,
         "osm_way_ids": [
-          491178801
+          312269975
         ],
-        "src_i": 357,
+        "src_i": 251,
         "type": "road"
       },
       "type": "Feature"
@@ -8871,37 +8791,45 @@
         "coordinates": [
           [
             [
-              -1.5338207660274388,
-              53.8000977282305
+              -1.5344521856919697,
+              53.79614390900002
             ],
             [
-              -1.5337404041337017,
-              53.80020473492067
+              -1.5349194847522756,
+              53.796060424967884
             ],
             [
-              -1.5338447873532473,
-              53.80023208509179
+              -1.5354373325871797,
+              53.79598691801053
             ],
             [
-              -1.5339251492469843,
-              53.80012507840162
+              -1.5354266594874828,
+              53.79596068479694
             ],
             [
-              -1.5338207660274388,
-              53.8000977282305
+              -1.5349075144370379,
+              53.79603437521592
+            ],
+            [
+              -1.5344389607926878,
+              53.79611808407848
+            ],
+            [
+              -1.5344521856919697,
+              53.79614390900002
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 245,
-        "id": 243,
+        "dst_i": 215,
+        "id": 205,
         "layer": 0,
         "osm_way_ids": [
-          491178801
+          313390685
         ],
-        "src_i": 358,
+        "src_i": 214,
         "type": "road"
       },
       "type": "Feature"
@@ -8911,37 +8839,37 @@
         "coordinates": [
           [
             [
-              -1.5352770198891375,
-              53.798047281980296
+              -1.5354657327767154,
+              53.795983438534925
             ],
             [
-              -1.5352709799195943,
-              53.79804508313877
+              -1.536087202554439,
+              53.795919218872626
             ],
             [
-              -1.535258997423929,
-              53.798056567476706
+              -1.5360793309530933,
+              53.795892642118154
             ],
             [
-              -1.5352650373934722,
-              53.79805876631823
+              -1.5354578611753698,
+              53.79595686178045
             ],
             [
-              -1.5352770198891375,
-              53.798047281980296
+              -1.5354657327767154,
+              53.795983438534925
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 247,
-        "id": 244,
-        "layer": 0,
+        "dst_i": 216,
+        "id": 206,
+        "layer": 1,
         "osm_way_ids": [
-          566234612
+          313390688
         ],
-        "src_i": 246,
+        "src_i": 215,
         "type": "road"
       },
       "type": "Feature"
@@ -8951,37 +8879,37 @@
         "coordinates": [
           [
             [
-              -1.53224438422095,
-              53.79856738039588
+              -1.5319900629825827,
+              53.79655259404918
             ],
             [
-              -1.5320832082351008,
-              53.798587347135964
+              -1.532831888876272,
+              53.79641166944162
             ],
             [
-              -1.5321019600034127,
-              53.798640157104025
+              -1.5328194343890367,
+              53.79638571142046
             ],
             [
-              -1.532263135989262,
-              53.79862019036395
+              -1.5319776084953474,
+              53.79652663602803
             ],
             [
-              -1.53224438422095,
-              53.79856738039588
+              -1.5319900629825827,
+              53.79655259404918
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 249,
-        "id": 245,
-        "layer": 0,
+        "dst_i": 218,
+        "id": 207,
+        "layer": 1,
         "osm_way_ids": [
-          573276642
+          313390689
         ],
-        "src_i": 248,
+        "src_i": 217,
         "type": "road"
       },
       "type": "Feature"
@@ -8991,37 +8919,37 @@
         "coordinates": [
           [
             [
-              -1.5328358536054605,
-              53.797977089922675
+              -1.533270877577696,
+              53.796339176919126
             ],
             [
-              -1.5328620476150445,
-              53.79784257837805
+              -1.5344224852417863,
+              53.79614901265059
             ],
             [
-              -1.5328015443859786,
-              53.79783846847795
+              -1.534410186055003,
+              53.79612302944843
             ],
             [
-              -1.5327753503763946,
-              53.79797298002257
+              -1.5332585783909127,
+              53.79631319371696
             ],
             [
-              -1.5328358536054605,
-              53.797977089922675
+              -1.533270877577696,
+              53.796339176919126
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 251,
-        "id": 246,
-        "layer": 0,
+        "dst_i": 214,
+        "id": 208,
+        "layer": 1,
         "osm_way_ids": [
-          573276645
+          313390689
         ],
-        "src_i": 252,
+        "src_i": 218,
         "type": "road"
       },
       "type": "Feature"
@@ -9031,45 +8959,37 @@
         "coordinates": [
           [
             [
-              -1.5327295230400502,
-              53.797996320118294
-            ],
-            [
-              -1.5326910237534692,
-              53.79802009458639
-            ],
-            [
-              -1.5324837692099558,
-              53.79807860805259
+              -1.533155967423585,
+              53.80000341366729
             ],
             [
-              -1.5324969027560307,
-              53.798094835413096
+              -1.533151538315594,
+              53.800000511556206
             ],
             [
-              -1.532709175635721,
-              53.798034904615925
+              -1.533083684198463,
+              53.80003664090564
             ],
             [
-              -1.532751526982535,
-              53.79800875234128
+              -1.5330881133064542,
+              53.800039543016716
             ],
             [
-              -1.5327295230400502,
-              53.797996320118294
+              -1.533155967423585,
+              53.80000341366729
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 92,
-        "id": 247,
+        "dst_i": 290,
+        "id": 210,
         "layer": 0,
         "osm_way_ids": [
-          573276646
+          331099341
         ],
-        "src_i": 252,
+        "src_i": 220,
         "type": "road"
       },
       "type": "Feature"
@@ -9079,45 +8999,37 @@
         "coordinates": [
           [
             [
-              -1.5331398618531724,
-              53.79837190023686
-            ],
-            [
-              -1.533182025925912,
-              53.79822136457843
-            ],
-            [
-              -1.5336125583654647,
-              53.79824299596295
+              -1.5331311102159317,
+              53.799987138642734
             ],
             [
-              -1.533615140616119,
-              53.79822507428039
+              -1.5331266902432612,
+              53.79998424552487
             ],
             [
-              -1.5331565749224123,
-              53.79820203455811
+              -1.5330588696223064,
+              53.80002039465937
             ],
             [
-              -1.5331098188284624,
-              53.79836896485087
+              -1.5330632895949767,
+              53.800023287777236
             ],
             [
-              -1.5331398618531724,
-              53.79837190023686
+              -1.5331311102159317,
+              53.799987138642734
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 254,
-        "id": 248,
+        "dst_i": 221,
+        "id": 211,
         "layer": 0,
         "osm_way_ids": [
-          573276648
+          331099341
         ],
-        "src_i": 253,
+        "src_i": 290,
         "type": "road"
       },
       "type": "Feature"
@@ -9127,37 +9039,37 @@
         "coordinates": [
           [
             [
-              -1.5344378675993093,
-              53.798455855513566
+              -1.5325424468974331,
+              53.796195519272956
             ],
             [
-              -1.5344235510292026,
-              53.798455488590314
+              -1.5325883747223052,
+              53.796281328950975
             ],
             [
-              -1.534419592390228,
-              53.79850939752948
+              -1.5326319258412393,
+              53.79627319548565
             ],
             [
-              -1.534433908960335,
-              53.798509764452724
+              -1.532585998016367,
+              53.79618738580762
             ],
             [
-              -1.5344378675993093,
-              53.798455855513566
+              -1.5325424468974331,
+              53.796195519272956
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 469,
-        "id": 249,
+        "dst_i": 37,
+        "id": 212,
         "layer": 0,
         "osm_way_ids": [
-          573276649
+          363048952
         ],
-        "src_i": 255,
+        "src_i": 222,
         "type": "road"
       },
       "type": "Feature"
@@ -9167,37 +9079,61 @@
         "coordinates": [
           [
             [
-              -1.5343817082152413,
-              53.79845257928466
+              -1.5320149582540723,
+              53.79690631885212
             ],
             [
-              -1.534076532169032,
-              53.798431360688795
+              -1.5322225964810556,
+              53.79687160953164
             ],
             [
-              -1.5340658529791213,
-              53.79848494946944
+              -1.532263244090557,
+              53.79687069582081
             ],
             [
-              -1.5343710290253307,
-              53.7985061680653
+              -1.5324081013485105,
+              53.79690605984748
             ],
             [
-              -1.5343817082152413,
-              53.79845257928466
+              -1.5324364710869771,
+              53.79689093055875
+            ],
+            [
+              -1.53242116637968,
+              53.796880917511096
+            ],
+            [
+              -1.5324034971468723,
+              53.796890339704404
+            ],
+            [
+              -1.5322673549848769,
+              53.796857103472846
+            ],
+            [
+              -1.5322190032549095,
+              53.79685818985344
+            ],
+            [
+              -1.5320087401457754,
+              53.796893338042906
+            ],
+            [
+              -1.5320149582540723,
+              53.79690631885212
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 463,
-        "id": 250,
+        "dst_i": 224,
+        "id": 213,
         "layer": 0,
         "osm_way_ids": [
-          573276649
+          363049110
         ],
-        "src_i": 469,
+        "src_i": 223,
         "type": "road"
       },
       "type": "Feature"
@@ -9207,37 +9143,45 @@
         "coordinates": [
           [
             [
-              -1.5340332018203484,
-              53.79842808176193
+              -1.5324709584452127,
+              53.79687108073049
             ],
             [
-              -1.5339589194825443,
-              53.79842193040159
+              -1.5325171907807753,
+              53.79684198227801
             ],
             [
-              -1.5339462366122911,
-              53.798475366297545
+              -1.5325894542127025,
+              53.796822446313016
             ],
             [
-              -1.5340205189500953,
-              53.79848151765788
+              -1.5325799504340567,
+              53.79681017956521
             ],
             [
-              -1.5340332018203484,
-              53.79842808176193
+              -1.5325036096039857,
+              53.7968308180986
+            ],
+            [
+              -1.5324543047555574,
+              53.796861850092704
+            ],
+            [
+              -1.5324709584452127,
+              53.79687108073049
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 256,
-        "id": 251,
+        "dst_i": 482,
+        "id": 214,
         "layer": 0,
         "osm_way_ids": [
-          573276649
+          363049110
         ],
-        "src_i": 463,
+        "src_i": 224,
         "type": "road"
       },
       "type": "Feature"
@@ -9247,38 +9191,37 @@
         "coordinates": [
           [
             [
-              -1.5346934251510798,
-              53.79839322675133
+              -1.532658004136761,
+              53.79680095252471
             ],
             [
-              -1.534549487515411,
-              53.79844475518599
+              -1.5327955272547373,
+              53.796750887286436
             ],
             [
-              -1.5345968358826538,
-              53.79849090118036
+              -1.5327835447590719,
+              53.7967394029485
             ],
             [
-              -1.5347407735183223,
-              53.7984393727457
+              -1.5326460216410955,
+              53.79678946818678
             ],
             [
-              -1.5346934251510798,
-              53.79839322675133
+              -1.532658004136761,
+              53.79680095252471
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 468,
-        "id": 252,
+        "dst_i": 455,
+        "id": 215,
         "layer": 0,
         "osm_way_ids": [
-          573276650,
-          573276651
+          363049110
         ],
-        "src_i": 372,
+        "src_i": 482,
         "type": "road"
       },
       "type": "Feature"
@@ -9288,37 +9231,45 @@
         "coordinates": [
           [
             [
-              -1.5345325430180465,
-              53.79845082111076
+              -1.532857452548727,
+              53.79673897667003
             ],
             [
-              -1.5345167663191794,
-              53.798456463455025
+              -1.5336711781959107,
+              53.79660635819755
             ],
             [
-              -1.5345640811902461,
-              53.7985026220399
+              -1.5338692943736065,
+              53.796595187722886
             ],
             [
-              -1.5345798578891132,
-              53.798496979695635
+              -1.5338671232123844,
+              53.79658175905147
             ],
             [
-              -1.5345325430180465,
-              53.79845082111076
+              -1.5336670216249875,
+              53.79659304104202
+            ],
+            [
+              -1.5328513775604546,
+              53.79672597247844
+            ],
+            [
+              -1.532857452548727,
+              53.79673897667003
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 258,
-        "id": 253,
+        "dst_i": 432,
+        "id": 217,
         "layer": 0,
         "osm_way_ids": [
-          573276650
+          363049110
         ],
-        "src_i": 468,
+        "src_i": 455,
         "type": "road"
       },
       "type": "Feature"
@@ -9328,37 +9279,45 @@
         "coordinates": [
           [
             [
-              -1.5347112375039118,
-              53.79838686584904
+              -1.5338801395218435,
+              53.79659457618414
             ],
             [
-              -1.534693466260023,
-              53.79839321236218
+              -1.5339250700742049,
+              53.796616060079906
             ],
             [
-              -1.5347407324093791,
-              53.79843938713484
+              -1.533981078725481,
+              53.79667954769435
             ],
             [
-              -1.534758503653268,
-              53.7984330406217
+              -1.5340013317314962,
+              53.79667331359642
             ],
             [
-              -1.5347112375039118,
-              53.79838686584904
+              -1.5339431306032496,
+              53.796607340256834
+            ],
+            [
+              -1.5338945093813212,
+              53.79658409189192
+            ],
+            [
+              -1.5338801395218435,
+              53.79659457618414
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 372,
-        "id": 254,
+        "dst_i": 361,
+        "id": 218,
         "layer": 0,
         "osm_way_ids": [
-          573276651
+          363049110
         ],
-        "src_i": 259,
+        "src_i": 432,
         "type": "road"
       },
       "type": "Feature"
@@ -9368,37 +9327,45 @@
         "coordinates": [
           [
             [
-              -1.5348614846010844,
-              53.79835407658036
+              -1.533707780380891,
+              53.79641329271726
             ],
             [
-              -1.5347530194157348,
-              53.79839294706228
+              -1.5335932006208792,
+              53.79615185001051
             ],
             [
-              -1.5347688143852434,
-              53.798408323664475
+              -1.5335931686472566,
+              53.79615234553676
             ],
             [
-              -1.534877279570593,
-              53.79836945318255
+              -1.53353231218579,
+              53.796150960581365
             ],
             [
-              -1.5348614846010844,
-              53.79835407658036
+              -1.5335320000623325,
+              53.79615574946934
+            ],
+            [
+              -1.5336488210210253,
+              53.796422307517844
+            ],
+            [
+              -1.533707780380891,
+              53.79641329271726
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 259,
-        "id": 256,
+        "dst_i": 227,
+        "id": 220,
         "layer": 0,
         "osm_way_ids": [
-          573276652
+          363049114
         ],
-        "src_i": 260,
+        "src_i": 226,
         "type": "road"
       },
       "type": "Feature"
@@ -9408,37 +9375,37 @@
         "coordinates": [
           [
             [
-              -1.53493938452589,
-              53.798326173326394
+              -1.5328721619376244,
+              53.796790071631634
             ],
             [
-              -1.5348875263553232,
-              53.79834474701718
+              -1.5328582199156668,
+              53.796741644957464
             ],
             [
-              -1.5349033152346179,
-              53.79836012721666
+              -1.5328131888747776,
+              53.79674616854555
             ],
             [
-              -1.5349551734051847,
-              53.79834155352588
+              -1.5328271308967354,
+              53.796794595219716
             ],
             [
-              -1.53493938452589,
-              53.798326173326394
+              -1.5328721619376244,
+              53.796790071631634
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 260,
-        "id": 257,
+        "dst_i": 455,
+        "id": 221,
         "layer": 0,
         "osm_way_ids": [
-          573276654
+          363049228
         ],
-        "src_i": 261,
+        "src_i": 34,
         "type": "road"
       },
       "type": "Feature"
@@ -9448,37 +9415,37 @@
         "coordinates": [
           [
             [
-              -1.5350840880059449,
-              53.79827437059863
+              -1.5335016814554476,
+              53.79616271201784
             ],
             [
-              -1.5349654293252357,
-              53.79831684825983
+              -1.5335258184953182,
+              53.796157660527925
             ],
             [
-              -1.5349812121143167,
-              53.798332230257955
+              -1.5335105625097316,
+              53.79613222950928
             ],
             [
-              -1.5350998707950256,
-              53.798289752596745
+              -1.533486425469861,
+              53.79613728099919
             ],
             [
-              -1.5350840880059449,
-              53.79827437059863
+              -1.5335016814554476,
+              53.79616271201784
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 261,
-        "id": 258,
+        "dst_i": 227,
+        "id": 222,
         "layer": 0,
         "osm_way_ids": [
-          573276655
+          363049230
         ],
-        "src_i": 262,
+        "src_i": 52,
         "type": "road"
       },
       "type": "Feature"
@@ -9488,37 +9455,37 @@
         "coordinates": [
           [
             [
-              -1.5335747198670817,
-              53.79814151110794
+              -1.5333812657480552,
+              53.799785285890245
             ],
             [
-              -1.5334512286017168,
-              53.79812869847188
+              -1.5333430633593972,
+              53.799777517549515
             ],
             [
-              -1.5334459605667736,
-              53.798146413310455
+              -1.5333133248453774,
+              53.79982853786743
             ],
             [
-              -1.5335694518321386,
-              53.79815922594652
+              -1.5333515272340354,
+              53.79983630620815
             ],
             [
-              -1.5335747198670817,
-              53.79814151110794
+              -1.5333812657480552,
+              53.799785285890245
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 231,
-        "id": 259,
-        "layer": 0,
+        "dst_i": 136,
+        "id": 223,
+        "layer": 1,
         "osm_way_ids": [
-          573276656
+          400349312
         ],
-        "src_i": 263,
+        "src_i": 56,
         "type": "road"
       },
       "type": "Feature"
@@ -9528,37 +9495,37 @@
         "coordinates": [
           [
             [
-              -1.53330937381917,
-              53.79772656677984
+              -1.5337139756508862,
+              53.79962540178288
             ],
             [
-              -1.5333616583047034,
-              53.797731788241556
+              -1.5338836261692481,
+              53.799581859324796
             ],
             [
-              -1.5333667344979116,
-              53.7977140536179
+              -1.5338654225201789,
+              53.79955711538792
             ],
             [
-              -1.5333144500123783,
-              53.79770883215619
+              -1.533695772001817,
+              53.79960065784601
             ],
             [
-              -1.53330937381917,
-              53.79772656677984
+              -1.5337139756508862,
+              53.79962540178288
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 265,
-        "id": 260,
+        "dst_i": 96,
+        "id": 224,
         "layer": 0,
         "osm_way_ids": [
-          573276657
+          400349314
         ],
-        "src_i": 264,
+        "src_i": 82,
         "type": "road"
       },
       "type": "Feature"
@@ -9568,77 +9535,37 @@
         "coordinates": [
           [
             [
-              -1.5332784081270683,
-              53.79772447855489
+              -1.5323206626263297,
+              53.797863388681876
             ],
             [
-              -1.5332806828219252,
-              53.797724569386375
+              -1.5321886465841883,
+              53.79785851076105
             ],
             [
-              -1.5332827352239782,
-              53.79770662432145
+              -1.5321848432456657,
+              53.79789441348141
             ],
             [
-              -1.5332804605291213,
-              53.79770653348996
+              -1.5323168592878071,
+              53.79789929140224
             ],
             [
-              -1.5332784081270683,
-              53.79772447855489
+              -1.5323206626263297,
+              53.797863388681876
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 264,
-        "id": 261,
+        "dst_i": 230,
+        "id": 225,
         "layer": 0,
         "osm_way_ids": [
-          573276658
-        ],
-        "src_i": 266,
-        "type": "road"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
-            [
-              -1.5338401907643764,
-              53.79841915779283
-            ],
-            [
-              -1.5336601594765804,
-              53.79823506664364
-            ],
-            [
-              -1.5336337918959029,
-              53.798244063457794
-            ],
-            [
-              -1.5338138231836989,
-              53.79842815460698
-            ],
-            [
-              -1.5338401907643764,
-              53.79841915779283
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "dst_i": 254,
-        "id": 262,
-        "layer": 0,
-        "osm_way_ids": [
-          573276659
+          438378829
         ],
-        "src_i": 267,
+        "src_i": 229,
         "type": "road"
       },
       "type": "Feature"
@@ -9648,45 +9575,45 @@
         "coordinates": [
           [
             [
-              -1.5336414747006204,
-              53.79821604149337
+              -1.5324076948267389,
+              53.79790512260405
             ],
             [
-              -1.5336397526926666,
-              53.79821428961473
+              -1.5325927977400826,
+              53.79792222950117
             ],
             [
-              -1.5336183684294367,
-              53.79815732298183
+              -1.5327295245626036,
+              53.797996320118294
             ],
             [
-              -1.5335886390507376,
-              53.79816121704473
+              -1.5327706944079391,
+              53.79796981171227
             ],
             [
-              -1.533611046469887,
-              53.79822091042098
+              -1.532620401634163,
+              53.79788837003968
             ],
             [
-              -1.533615140616119,
-              53.79822507428039
+              -1.5324171102972846,
+              53.79786958141101
             ],
             [
-              -1.5336414747006204,
-              53.79821604149337
+              -1.5324076948267389,
+              53.79790512260405
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 263,
-        "id": 263,
+        "dst_i": 252,
+        "id": 226,
         "layer": 0,
         "osm_way_ids": [
-          573276659
+          438378831
         ],
-        "src_i": 254,
+        "src_i": 229,
         "type": "road"
       },
       "type": "Feature"
@@ -9696,53 +9623,53 @@
         "coordinates": [
           [
             [
-              -1.533223949435206,
-              53.79785450068565
+              -1.532818198075634,
+              53.79801756659313
             ],
             [
-              -1.5333828309330035,
-              53.798008582369484
+              -1.533102315685052,
+              53.79806485922265
             ],
             [
-              -1.5335377781526818,
-              53.79809617000648
+              -1.5333753323572537,
+              53.79815306199568
             ],
             [
-              -1.5335747183445283,
-              53.79814151200726
+              -1.5334175573321311,
+              53.798153737386265
             ],
             [
-              -1.5336021578028358,
-              53.7981337130896
+              -1.533419204734966,
+              53.79811777710932
             ],
             [
-              -1.5335628211118562,
-              53.798085430306905
+              -1.5333916663106841,
+              53.79811733734101
             ],
             [
-              -1.533406768518372,
-              53.79799721674202
+              -1.533125482858374,
+              53.7980313415034
             ],
             [
-              -1.5332499576932688,
-              53.797845144142826
+              -1.5328347177805854,
+              53.79798294270821
             ],
             [
-              -1.533223949435206,
-              53.79785450068565
+              -1.532818198075634,
+              53.79801756659313
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 263,
-        "id": 264,
+        "dst_i": 231,
+        "id": 228,
         "layer": 0,
         "osm_way_ids": [
-          573276660
+          438378831
         ],
-        "src_i": 213,
+        "src_i": 252,
         "type": "road"
       },
       "type": "Feature"
@@ -9752,54 +9679,37 @@
         "coordinates": [
           [
             [
-              -1.5332571456681146,
-              53.79723096498767
-            ],
-            [
-              -1.5331973641293848,
-              53.797489895888944
-            ],
-            [
-              -1.5332720118800176,
-              53.79752102411047
-            ],
-            [
-              -1.5332500825426518,
-              53.797705273540274
-            ],
-            [
-              -1.5332804574840144,
-              53.79770653438928
+              -1.536317108125654,
+              53.79995277106449
             ],
             [
-              -1.533303589638607,
-              53.79751217658372
+              -1.5363284206978005,
+              53.79987174487852
             ],
             [
-              -1.5332300350813526,
-              53.797481503418965
+              -1.5362373750464926,
+              53.799867309423966
             ],
             [
-              -1.5332873165873147,
-              53.797233394954866
+              -1.536226062474346,
+              53.79994833560993
             ],
             [
-              -1.5332571456681146,
-              53.79723096498767
+              -1.536317108125654,
+              53.79995277106449
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 266,
-        "id": 266,
+        "dst_i": 26,
+        "id": 229,
         "layer": 0,
         "osm_way_ids": [
-          573276662,
-          573276662
+          453297315
         ],
-        "src_i": 11,
+        "src_i": 232,
         "type": "road"
       },
       "type": "Feature"
@@ -9809,37 +9719,45 @@
         "coordinates": [
           [
             [
-              -1.5332467892595358,
-              53.79772119962802
+              -1.5367690568020593,
+              53.79875458409742
             ],
             [
-              -1.533220366866934,
-              53.79780717657987
+              -1.5367635360232432,
+              53.79875879921817
             ],
             [
-              -1.5332503276737577,
-              53.79781038895694
+              -1.5367475370315722,
+              53.79884437237459
             ],
             [
-              -1.5332767500663593,
-              53.79772441200508
+              -1.536777805394193,
+              53.79884634728501
             ],
             [
-              -1.5332467892595358,
-              53.79772119962802
+              -1.536792863447831,
+              53.79876580133682
+            ],
+            [
+              -1.5367931405525592,
+              53.79876558999622
+            ],
+            [
+              -1.5367690568020593,
+              53.79875458409742
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 213,
-        "id": 267,
+        "dst_i": 233,
+        "id": 230,
         "layer": 0,
         "osm_way_ids": [
-          573276662
+          453297317
         ],
-        "src_i": 266,
+        "src_i": 72,
         "type": "road"
       },
       "type": "Feature"
@@ -9849,37 +9767,37 @@
         "coordinates": [
           [
             [
-              -1.5373530854678508,
-              53.79898545616209
+              -1.5367562231990144,
+              53.798927876191804
             ],
             [
-              -1.5371129331119056,
-              53.79896013126341
+              -1.5367601239809578,
+              53.79891027556708
             ],
             [
-              -1.5371049062101079,
-              53.79898669183009
+              -1.5367374775209164,
+              53.79890852368844
             ],
             [
-              -1.537345058566053,
-              53.799012016728774
+              -1.536733576738973,
+              53.798926124313155
             ],
             [
-              -1.5373530854678508,
-              53.79898545616209
+              -1.5367562231990144,
+              53.798927876191804
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 16,
-        "id": 268,
+        "dst_i": 235,
+        "id": 231,
         "layer": 0,
         "osm_way_ids": [
-          583053002
+          453297318
         ],
-        "src_i": 268,
+        "src_i": 234,
         "type": "road"
       },
       "type": "Feature"
@@ -9889,53 +9807,45 @@
         "coordinates": [
           [
             [
-              -1.5334208780212095,
-              53.799632040575574
-            ],
-            [
-              -1.5335138451349737,
-              53.79964488738586
-            ],
-            [
-              -1.533629667298602,
-              53.79964499350582
+              -1.533298604798606,
+              53.79978385057283
             ],
             [
-              -1.5336486504950386,
-              53.79964084853217
+              -1.5332508757930003,
+              53.799768162805336
             ],
             [
-              -1.5336328128940335,
-              53.79961554341856
+              -1.5324716481619265,
+              53.79960989208109
             ],
             [
-              -1.5336215338180628,
-              53.79961800666066
+              -1.5324419431440828,
+              53.79966091959356
             ],
             [
-              -1.5335191558014134,
-              53.7996179131312
+              -1.5332135245117218,
+              53.799817638088584
             ],
             [
-              -1.5334312831514987,
-              53.79960576959047
+              -1.5332541858242044,
+              53.799831002008844
             ],
             [
-              -1.5334208780212095,
-              53.799632040575574
+              -1.533298604798606,
+              53.79978385057283
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 82,
-        "id": 269,
-        "layer": 0,
+        "dst_i": 237,
+        "id": 232,
+        "layer": -1,
         "osm_way_ids": [
-          583053006
+          454077550
         ],
-        "src_i": 71,
+        "src_i": 236,
         "type": "road"
       },
       "type": "Feature"
@@ -9945,37 +9855,37 @@
         "coordinates": [
           [
             [
-              -1.5349693042237704,
-              53.79646066718505
+              -1.5337148709123158,
+              53.800188596593
             ],
             [
-              -1.5348359544248054,
-              53.7964756067169
+              -1.5337493674058722,
+              53.80009617150466
             ],
             [
-              -1.534852976572396,
-              53.79652862173031
+              -1.5336601549089202,
+              53.80008455406712
             ],
             [
-              -1.534986326371361,
-              53.79651368219846
+              -1.5336256584153636,
+              53.80017697915546
             ],
             [
-              -1.5349693042237704,
-              53.79646066718505
+              -1.5337148709123158,
+              53.800188596593
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 25,
-        "id": 270,
+        "dst_i": 239,
+        "id": 233,
         "layer": 0,
         "osm_way_ids": [
-          603499170
+          491178797
         ],
-        "src_i": 269,
+        "src_i": 238,
         "type": "road"
       },
       "type": "Feature"
@@ -9985,37 +9895,37 @@
         "coordinates": [
           [
             [
-              -1.5340875493658088,
-              53.79649302208136
+              -1.5337581951707855,
+              53.80007317674846
             ],
             [
-              -1.5340548433951118,
-              53.796474780240274
+              -1.5337733613257185,
+              53.80003499514695
             ],
             [
-              -1.53399212332822,
-              53.79651401224952
+              -1.5336844228883877,
+              53.80002266904392
             ],
             [
-              -1.5340248292989171,
-              53.7965322540906
+              -1.5336692567334547,
+              53.80006085064543
             ],
             [
-              -1.5340875493658088,
-              53.79649302208136
+              -1.5337581951707855,
+              53.80007317674846
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 434,
-        "id": 271,
+        "dst_i": 58,
+        "id": 234,
         "layer": 0,
         "osm_way_ids": [
-          603499175
+          491178797
         ],
-        "src_i": 54,
+        "src_i": 239,
         "type": "road"
       },
       "type": "Feature"
@@ -10025,37 +9935,37 @@
         "coordinates": [
           [
             [
-              -1.5347650095241674,
-              53.79647542505392
+              -1.5335913004741712,
+              53.80003982270576
             ],
             [
-              -1.5345932380888472,
-              53.79648192265311
+              -1.5336412828588855,
+              53.80003061634966
             ],
             [
-              -1.5345990755587813,
-              53.796535772237036
+              -1.5336276864565614,
+              53.800004859776564
             ],
             [
-              -1.5347708469941015,
-              53.796529274637855
+              -1.5335777040718472,
+              53.80001406613267
             ],
             [
-              -1.5347650095241674,
-              53.79647542505392
+              -1.5335913004741712,
+              53.80003982270576
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 271,
-        "id": 272,
+        "dst_i": 58,
+        "id": 235,
         "layer": 0,
         "osm_way_ids": [
-          603499183
+          491178798
         ],
-        "src_i": 25,
+        "src_i": 240,
         "type": "road"
       },
       "type": "Feature"
@@ -10065,37 +9975,37 @@
         "coordinates": [
           [
             [
-              -1.5345058541785908,
-              53.796485943520366
+              -1.5354705744966919,
+              53.79875311370647
             ],
             [
-              -1.5343671419463685,
-              53.79649489267047
+              -1.5354720970501436,
+              53.79874851277672
             ],
             [
-              -1.5343770598595532,
-              53.79654853361177
+              -1.5353824399675835,
+              53.79873816158411
             ],
             [
-              -1.5345157720917755,
-              53.79653958446167
+              -1.5353809174141317,
+              53.79874276251386
             ],
             [
-              -1.5345058541785908,
-              53.796485943520366
+              -1.5354705744966919,
+              53.79875311370647
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 4,
-        "id": 273,
+        "dst_i": 403,
+        "id": 236,
         "layer": 0,
         "osm_way_ids": [
-          603499183
+          491178799
         ],
-        "src_i": 271,
+        "src_i": 241,
         "type": "road"
       },
       "type": "Feature"
@@ -10105,37 +10015,45 @@
         "coordinates": [
           [
             [
-              -1.53707673440359,
-              53.79894220418491
+              -1.5354930656562813,
+              53.79868725098345
             ],
             [
-              -1.536803446716874,
-              53.79890694178159
+              -1.5355449390523825,
+              53.798541228121245
             ],
             [
-              -1.5367839519424777,
-              53.7989596582202
+              -1.5355423233055523,
+              53.79842114529376
             ],
             [
-              -1.5370572396291937,
-              53.79899492062352
+              -1.5354509761886608,
+              53.7984218395701
             ],
             [
-              -1.53707673440359,
-              53.79894220418491
+              -1.535453460995894,
+              53.79853597248531
+            ],
+            [
+              -1.5354036582724873,
+              53.79867616954163
+            ],
+            [
+              -1.5354930656562813,
+              53.79868725098345
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 120,
-        "id": 274,
+        "dst_i": 7,
+        "id": 237,
         "layer": 0,
         "osm_way_ids": [
-          616128591
+          491178799
         ],
-        "src_i": 16,
+        "src_i": 403,
         "type": "road"
       },
       "type": "Feature"
@@ -10145,37 +10063,37 @@
         "coordinates": [
           [
             [
-              -1.536803452807088,
-              53.79890694268091
+              -1.5356021809719547,
+              53.79905829582275
             ],
             [
-              -1.5367546534464056,
-              53.7989006429325
+              -1.5353391248444346,
+              53.79916747977072
             ],
             [
-              -1.5367351464915817,
-              53.798953357572465
+              -1.5353916468483064,
+              53.79921162927094
             ],
             [
-              -1.536783945852264,
-              53.79895965732088
+              -1.5356547029758265,
+              53.79910244532297
             ],
             [
-              -1.536803452807088,
-              53.79890694268091
+              -1.5356021809719547,
+              53.79905829582275
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 234,
-        "id": 275,
+        "dst_i": 478,
+        "id": 238,
         "layer": 0,
         "osm_way_ids": [
-          616128591
+          491178800
         ],
-        "src_i": 120,
+        "src_i": 3,
         "type": "road"
       },
       "type": "Feature"
@@ -10185,37 +10103,45 @@
         "coordinates": [
           [
             [
-              -1.5367546838974746,
-              53.79890064652979
+              -1.5352892688316568,
+              53.79918818125662
             ],
             [
-              -1.5365384204051873,
-              53.79887263625655
+              -1.5350198453856014,
+              53.799300103639126
             ],
             [
-              -1.5365188525482254,
-              53.79892534370193
+              -1.5345891332847412,
+              53.79950870040494
             ],
             [
-              -1.5367351160405127,
-              53.79895335397518
+              -1.534647054263153,
+              53.799550427132544
             ],
             [
-              -1.5367546838974746,
-              53.79890064652979
+              -1.53507515366229,
+              53.79934309661166
+            ],
+            [
+              -1.5353418212865977,
+              53.79923231816634
+            ],
+            [
+              -1.5352892688316568,
+              53.79918818125662
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 272,
-        "id": 276,
+        "dst_i": 242,
+        "id": 239,
         "layer": 0,
         "osm_way_ids": [
-          616128591
+          491178800
         ],
-        "src_i": 234,
+        "src_i": 478,
         "type": "road"
       },
       "type": "Feature"
@@ -10225,37 +10151,37 @@
         "coordinates": [
           [
             [
-              -1.53649521186078,
-              53.798866834732344
+              -1.534535021735066,
+              53.79952621289614
             ],
             [
-              -1.5364451716190346,
-              53.79885988747232
+              -1.534405123564776,
+              53.79959391832929
             ],
             [
-              -1.5364242700052488,
-              53.79891241505337
+              -1.5344806787572658,
+              53.799644492583646
             ],
             [
-              -1.5364743102469942,
-              53.7989193623134
+              -1.5346105769275558,
+              53.799576787150485
             ],
             [
-              -1.53649521186078,
-              53.798866834732344
+              -1.534535021735066,
+              53.79952621289614
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 273,
-        "id": 277,
+        "dst_i": 291,
+        "id": 240,
         "layer": 0,
         "osm_way_ids": [
-          616128591
+          491178801
         ],
-        "src_i": 272,
+        "src_i": 242,
         "type": "road"
       },
       "type": "Feature"
@@ -10265,37 +10191,53 @@
         "coordinates": [
           [
             [
-              -1.5363616291111368,
-              53.79884912708834
+              -1.5343494590105797,
+              53.79962885877545
             ],
             [
-              -1.5363184966944021,
-              53.798844013545235
+              -1.5342139121669838,
+              53.79972503763251
             ],
             [
-              -1.5363005183832437,
-              53.798896917042754
+              -1.5340234894518796,
+              53.799876445632975
             ],
             [
-              -1.5363436507999784,
-              53.79890203058586
+              -1.53391605199011,
+              53.79997422438332
             ],
             [
-              -1.5363616291111368,
-              53.79884912708834
+              -1.534011838872867,
+              53.800010943687774
+            ],
+            [
+              -1.5341173091955769,
+              53.799914954587585
+            ],
+            [
+              -1.534303688008713,
+              53.79976676256147
+            ],
+            [
+              -1.5344372220366458,
+              53.79967201182724
+            ],
+            [
+              -1.5343494590105797,
+              53.79962885877545
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 274,
-        "id": 278,
+        "dst_i": 357,
+        "id": 241,
         "layer": 0,
         "osm_way_ids": [
-          616128591
+          491178801
         ],
-        "src_i": 273,
+        "src_i": 291,
         "type": "road"
       },
       "type": "Feature"
@@ -10305,37 +10247,37 @@
         "coordinates": [
           [
             [
-              -1.5362741340544783,
-              53.798837591489075
+              -1.533855901993445,
+              53.80004338132167
             ],
             [
-              -1.5362317644370227,
-              53.7988302566214
+              -1.5338430196686896,
+              53.80006463499109
             ],
             [
-              -1.5362060698249709,
-              53.79888203776545
+              -1.533950530213025,
+              53.80008736984332
             ],
             [
-              -1.5362484394424265,
-              53.79888937263313
+              -1.5339634125377803,
+              53.8000661161739
             ],
             [
-              -1.5362741340544783,
-              53.798837591489075
+              -1.533855901993445,
+              53.80004338132167
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 431,
-        "id": 279,
+        "dst_i": 358,
+        "id": 242,
         "layer": 0,
         "osm_way_ids": [
-          616128591
+          491178801
         ],
-        "src_i": 274,
+        "src_i": 357,
         "type": "road"
       },
       "type": "Feature"
@@ -10345,37 +10287,37 @@
         "coordinates": [
           [
             [
-              -1.5322424079465697,
-              53.79678053432515
+              -1.5338207660274388,
+              53.8000977282305
             ],
             [
-              -1.5320575425515646,
-              53.796812932388896
+              -1.5337404041337017,
+              53.80020473492067
             ],
             [
-              -1.5320835264487722,
-              53.796864663170936
+              -1.5338447873532473,
+              53.80023208509179
             ],
             [
-              -1.5322683918437774,
-              53.79683226510719
+              -1.5339251492469843,
+              53.80012507840162
             ],
             [
-              -1.5322424079465697,
-              53.79678053432515
+              -1.5338207660274388,
+              53.8000977282305
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 276,
-        "id": 280,
+        "dst_i": 245,
+        "id": 243,
         "layer": 0,
         "osm_way_ids": [
-          619248620
+          491178801
         ],
-        "src_i": 212,
+        "src_i": 358,
         "type": "road"
       },
       "type": "Feature"
@@ -10385,37 +10327,37 @@
         "coordinates": [
           [
             [
-              -1.5340248277763637,
-              53.7965322540906
+              -1.5352770198891375,
+              53.798047281980296
             ],
             [
-              -1.5339677457249041,
-              53.79653583159227
+              -1.5352709799195943,
+              53.79804508313877
             ],
             [
-              -1.5339725661291324,
-              53.796562660156816
+              -1.535258997423929,
+              53.798056567476706
             ],
             [
-              -1.534029648180592,
-              53.79655908265515
+              -1.5352650373934722,
+              53.79805876631823
             ],
             [
-              -1.5340248277763637,
-              53.7965322540906
+              -1.5352770198891375,
+              53.798047281980296
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 309,
-        "id": 281,
+        "dst_i": 247,
+        "id": 244,
         "layer": 0,
         "osm_way_ids": [
-          619360566
+          566234612
         ],
-        "src_i": 54,
+        "src_i": 246,
         "type": "road"
       },
       "type": "Feature"
@@ -10425,45 +10367,37 @@
         "coordinates": [
           [
             [
-              -1.5338401511779867,
-              53.79654412064025
-            ],
-            [
-              -1.533657100666696,
-              53.79655936054555
-            ],
-            [
-              -1.5327966813502536,
-              53.7966970538903
+              -1.53224438422095,
+              53.79856738039588
             ],
             [
-              -1.5328086273046362,
-              53.796723094649046
+              -1.5320832082351008,
+              53.798587347135964
             ],
             [
-              -1.5336662999346513,
-              53.79658584017328
+              -1.5321019600034127,
+              53.798640157104025
             ],
             [
-              -1.5338465276318425,
-              53.796570835890265
+              -1.532263135989262,
+              53.79862019036395
             ],
             [
-              -1.5338401511779867,
-              53.79654412064025
+              -1.53224438422095,
+              53.79856738039588
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 454,
-        "id": 283,
+        "dst_i": 249,
+        "id": 245,
         "layer": 0,
         "osm_way_ids": [
-          619360566
+          573276642
         ],
-        "src_i": 309,
+        "src_i": 248,
         "type": "road"
       },
       "type": "Feature"
@@ -10473,37 +10407,37 @@
         "coordinates": [
           [
             [
-              -1.5327660947739614,
-              53.79670206491073
+              -1.5328358536054605,
+              53.797977089922675
             ],
             [
-              -1.5326454674316392,
-              53.79672228436021
+              -1.5328620476150445,
+              53.79784257837805
             ],
             [
-              -1.5326579371444091,
-              53.79674823878407
+              -1.5328015443859786,
+              53.79783846847795
             ],
             [
-              -1.5327785644867313,
-              53.7967280193346
+              -1.5327753503763946,
+              53.79797298002257
             ],
             [
-              -1.5327660947739614,
-              53.79670206491073
+              -1.5328358536054605,
+              53.797977089922675
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 13,
-        "id": 284,
+        "dst_i": 251,
+        "id": 246,
         "layer": 0,
         "osm_way_ids": [
-          619360566
+          573276645
         ],
-        "src_i": 454,
+        "src_i": 252,
         "type": "road"
       },
       "type": "Feature"
@@ -10513,37 +10447,45 @@
         "coordinates": [
           [
             [
-              -1.5353539392895201,
-              53.800153682227176
+              -1.5327295230400502,
+              53.797996320118294
             ],
             [
-              -1.5342006872677019,
-              53.799940243513404
+              -1.5326910237534692,
+              53.79802009458639
             ],
             [
-              -1.5341733726587774,
-              53.79999173507587
+              -1.5324837692099558,
+              53.79807860805259
             ],
             [
-              -1.5353266246805957,
-              53.80020517378965
+              -1.5324969027560307,
+              53.798094835413096
             ],
             [
-              -1.5353539392895201,
-              53.800153682227176
+              -1.532709175635721,
+              53.798034904615925
+            ],
+            [
+              -1.532751526982535,
+              53.79800875234128
+            ],
+            [
+              -1.5327295230400502,
+              53.797996320118294
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 278,
-        "id": 285,
+        "dst_i": 92,
+        "id": 247,
         "layer": 0,
         "osm_way_ids": [
-          636647073
+          573276646
         ],
-        "src_i": 277,
+        "src_i": 252,
         "type": "road"
       },
       "type": "Feature"
@@ -10553,37 +10495,45 @@
         "coordinates": [
           [
             [
-              -1.5368805533913312,
-              53.7978847961353
+              -1.5331398618531724,
+              53.79837190023686
             ],
             [
-              -1.536868257249655,
-              53.79783529746968
+              -1.533182025925912,
+              53.79822136457843
             ],
             [
-              -1.5368381289619515,
-              53.79783790909986
+              -1.5336125583654647,
+              53.79824299596295
             ],
             [
-              -1.536850425103628,
-              53.79788740776547
+              -1.533615140616119,
+              53.79822507428039
             ],
             [
-              -1.5368805533913312,
-              53.7978847961353
+              -1.5331565749224123,
+              53.79820203455811
+            ],
+            [
+              -1.5331098188284624,
+              53.79836896485087
+            ],
+            [
+              -1.5331398618531724,
+              53.79837190023686
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 470,
-        "id": 286,
+        "dst_i": 254,
+        "id": 248,
         "layer": 0,
         "osm_way_ids": [
-          650344876
+          573276648
         ],
-        "src_i": 279,
+        "src_i": 253,
         "type": "road"
       },
       "type": "Feature"
@@ -10593,37 +10543,37 @@
         "coordinates": [
           [
             [
-              -1.5368525460205862,
-              53.79781481361963
+              -1.5344378675993093,
+              53.798455855513566
             ],
             [
-              -1.53684213784519,
-              53.79780478438419
+              -1.5344235510292026,
+              53.798455488590314
             ],
             [
-              -1.5368161752637308,
-              53.797814184094456
+              -1.534419592390228,
+              53.79850939752948
             ],
             [
-              -1.536826583439127,
-              53.797824213329896
+              -1.534433908960335,
+              53.798509764452724
             ],
             [
-              -1.5368525460205862,
-              53.79781481361963
+              -1.5344378675993093,
+              53.798455855513566
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 47,
-        "id": 287,
+        "dst_i": 469,
+        "id": 249,
         "layer": 0,
         "osm_way_ids": [
-          650344876
+          573276649
         ],
-        "src_i": 470,
+        "src_i": 255,
         "type": "road"
       },
       "type": "Feature"
@@ -10633,37 +10583,37 @@
         "coordinates": [
           [
             [
-              -1.5362453836776486,
-              53.79840732541741
+              -1.5343817082152413,
+              53.79845257928466
             ],
             [
-              -1.536312420183576,
-              53.798408204954015
+              -1.534076532169032,
+              53.798431360688795
             ],
             [
-              -1.5363130961973086,
-              53.798390222117575
+              -1.5340658529791213,
+              53.79848494946944
             ],
             [
-              -1.5362460596913814,
-              53.79838934258097
+              -1.5343710290253307,
+              53.7985061680653
             ],
             [
-              -1.5362453836776486,
-              53.79840732541741
+              -1.5343817082152413,
+              53.79845257928466
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 281,
-        "id": 288,
+        "dst_i": 463,
+        "id": 250,
         "layer": 0,
         "osm_way_ids": [
-          650344877
+          573276649
         ],
-        "src_i": 280,
+        "src_i": 469,
         "type": "road"
       },
       "type": "Feature"
@@ -10673,37 +10623,37 @@
         "coordinates": [
           [
             [
-              -1.5343412143836386,
-              53.79643825608863
+              -1.5340332018203484,
+              53.79842808176193
             ],
             [
-              -1.5345630169253834,
-              53.79643979932464
+              -1.5339589194825443,
+              53.79842193040159
             ],
             [
-              -1.534563565044626,
-              53.796412389798284
+              -1.5339462366122911,
+              53.798475366297545
             ],
             [
-              -1.5343417625028812,
-              53.796410846562274
+              -1.5340205189500953,
+              53.79848151765788
             ],
             [
-              -1.5343412143836386,
-              53.79643825608863
+              -1.5340332018203484,
+              53.79842808176193
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 282,
-        "id": 289,
+        "dst_i": 256,
+        "id": 251,
         "layer": 0,
         "osm_way_ids": [
-          663356010
+          573276649
         ],
-        "src_i": 79,
+        "src_i": 463,
         "type": "road"
       },
       "type": "Feature"
@@ -10713,45 +10663,38 @@
         "coordinates": [
           [
             [
-              -1.5345935243288962,
-              53.7964405979223
-            ],
-            [
-              -1.534894036793883,
-              53.79645362729489
-            ],
-            [
-              -1.5349693042237704,
-              53.79646066718505
+              -1.5346934251510798,
+              53.79839322675133
             ],
             [
-              -1.5349765637586283,
-              53.796433594005
+              -1.534549487515411,
+              53.79844475518599
             ],
             [
-              -1.5348993626858571,
-              53.79642637245186
+              -1.5345968358826538,
+              53.79849090118036
             ],
             [
-              -1.5345969226682006,
-              53.79641326034168
+              -1.5347407735183223,
+              53.7984393727457
             ],
             [
-              -1.5345935243288962,
-              53.7964405979223
+              -1.5346934251510798,
+              53.79839322675133
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 269,
-        "id": 290,
+        "dst_i": 468,
+        "id": 252,
         "layer": 0,
         "osm_way_ids": [
-          663356010
+          573276650,
+          573276651
         ],
-        "src_i": 282,
+        "src_i": 372,
         "type": "road"
       },
       "type": "Feature"
@@ -10761,37 +10704,37 @@
         "coordinates": [
           [
             [
-              -1.534251124895898,
-              53.79644719624551
+              -1.5345325430180465,
+              53.79845082111076
             ],
             [
-              -1.5342666534185527,
-              53.7965017904678
+              -1.5345167663191794,
+              53.798456463455025
             ],
             [
-              -1.534356742906293,
-              53.79649284941159
+              -1.5345640811902461,
+              53.7985026220399
             ],
             [
-              -1.5343412143836386,
-              53.79643825518931
+              -1.5345798578891132,
+              53.798496979695635
             ],
             [
-              -1.534251124895898,
-              53.79644719624551
+              -1.5345325430180465,
+              53.79845082111076
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 4,
-        "id": 291,
+        "dst_i": 258,
+        "id": 253,
         "layer": 0,
         "osm_way_ids": [
-          663356011
+          573276650
         ],
-        "src_i": 79,
+        "src_i": 468,
         "type": "road"
       },
       "type": "Feature"
@@ -10801,53 +10744,37 @@
         "coordinates": [
           [
             [
-              -1.5335496982236556,
-              53.79974307982418
-            ],
-            [
-              -1.5335883695587766,
-              53.79970336577851
-            ],
-            [
-              -1.5336222981398957,
-              53.79968462391457
-            ],
-            [
-              -1.533663420786074,
-              53.79967788349853
-            ],
-            [
-              -1.5336583324124384,
-              53.799667052068145
+              -1.5347112375039118,
+              53.79838686584904
             ],
             [
-              -1.5336127060531495,
-              53.79967452992796
+              -1.534693466260023,
+              53.79839321236218
             ],
             [
-              -1.5335732901893906,
-              53.79969630430463
+              -1.5347407324093791,
+              53.79843938713484
             ],
             [
-              -1.5335331998344524,
-              53.79973747525143
+              -1.534758503653268,
+              53.7984330406217
             ],
             [
-              -1.5335496982236556,
-              53.79974307982418
+              -1.5347112375039118,
+              53.79838686584904
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 284,
-        "id": 292,
+        "dst_i": 372,
+        "id": 254,
         "layer": 0,
         "osm_way_ids": [
-          663639106
+          573276651
         ],
-        "src_i": 283,
+        "src_i": 259,
         "type": "road"
       },
       "type": "Feature"
@@ -10857,37 +10784,37 @@
         "coordinates": [
           [
             [
-              -1.5337321869127227,
-              53.79966661229984
+              -1.5348614846010844,
+              53.79835407658036
             ],
             [
-              -1.5337641818509578,
-              53.79966136655644
+              -1.5347530194157348,
+              53.79839294706228
             ],
             [
-              -1.5337590904322151,
-              53.799650535126055
+              -1.5347688143852434,
+              53.798408323664475
             ],
             [
-              -1.53372709549398,
-              53.79965578086945
+              -1.534877279570593,
+              53.79836945318255
             ],
             [
-              -1.5337321869127227,
-              53.79966661229984
+              -1.5348614846010844,
+              53.79835407658036
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 287,
-        "id": 293,
+        "dst_i": 259,
+        "id": 256,
         "layer": 0,
         "osm_way_ids": [
-          663639106
+          573276652
         ],
-        "src_i": 284,
+        "src_i": 260,
         "type": "road"
       },
       "type": "Feature"
@@ -10897,45 +10824,37 @@
         "coordinates": [
           [
             [
-              -1.5337865116198812,
-              53.799653268164654
-            ],
-            [
-              -1.5338419127723302,
-              53.79963151447239
-            ],
-            [
-              -1.5339036690628869,
-              53.79958764556053
+              -1.53493938452589,
+              53.798326173326394
             ],
             [
-              -1.5338890342791087,
-              53.79958045818161
+              -1.5348875263553232,
+              53.79834474701718
             ],
             [
-              -1.5338290563309835,
-              53.79962306264718
+              -1.5349033152346179,
+              53.79836012721666
             ],
             [
-              -1.5337759755499951,
-              53.7996439062259
+              -1.5349551734051847,
+              53.79834155352588
             ],
             [
-              -1.5337865116198812,
-              53.799653268164654
+              -1.53493938452589,
+              53.798326173326394
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 96,
-        "id": 294,
+        "dst_i": 260,
+        "id": 257,
         "layer": 0,
         "osm_way_ids": [
-          663639106
+          573276654
         ],
-        "src_i": 287,
+        "src_i": 261,
         "type": "road"
       },
       "type": "Feature"
@@ -10945,37 +10864,37 @@
         "coordinates": [
           [
             [
-              -1.5335329059816363,
-              53.7997489775758
-            ],
+              -1.5350840880059449,
+              53.79827437059863
+            ],
             [
-              -1.5334487346591628,
-              53.799833377117416
+              -1.5349654293252357,
+              53.79831684825983
             ],
             [
-              -1.5334651325598383,
-              53.799839082414195
+              -1.5349812121143167,
+              53.798332230257955
             ],
             [
-              -1.5335493038823116,
-              53.79975468287258
+              -1.5350998707950256,
+              53.798289752596745
             ],
             [
-              -1.5335329059816363,
-              53.7997489775758
+              -1.5350840880059449,
+              53.79827437059863
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 59,
-        "id": 295,
+        "dst_i": 261,
+        "id": 258,
         "layer": 0,
         "osm_way_ids": [
-          663639107
+          573276655
         ],
-        "src_i": 283,
+        "src_i": 262,
         "type": "road"
       },
       "type": "Feature"
@@ -10985,37 +10904,37 @@
         "coordinates": [
           [
             [
-              -1.5333932086573308,
-              53.79988143327105
+              -1.5335747198670817,
+              53.79814151110794
             ],
             [
-              -1.5333327724206167,
-              53.799927882336824
+              -1.5334512286017168,
+              53.79812869847188
             ],
             [
-              -1.5333478639704305,
-              53.799934733369426
+              -1.5334459605667736,
+              53.798146413310455
             ],
             [
-              -1.5334083002071446,
-              53.799888284303655
+              -1.5335694518321386,
+              53.79815922594652
             ],
             [
-              -1.5333932086573308,
-              53.79988143327105
+              -1.5335747198670817,
+              53.79814151110794
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 289,
-        "id": 296,
+        "dst_i": 231,
+        "id": 259,
         "layer": 0,
         "osm_way_ids": [
-          663639107
+          573276656
         ],
-        "src_i": 59,
+        "src_i": 263,
         "type": "road"
       },
       "type": "Feature"
@@ -11025,37 +10944,37 @@
         "coordinates": [
           [
             [
-              -1.5333107867487734,
-              53.79994480847028
+              -1.53330937381917,
+              53.79772656677984
             ],
             [
-              -1.5332829818776375,
-              53.79996625189657
+              -1.5333616583047034,
+              53.797731788241556
             ],
             [
-              -1.5332980916980927,
-              53.79997308674139
+              -1.5333667344979116,
+              53.7977140536179
             ],
             [
-              -1.5333258965692287,
-              53.7999516433151
+              -1.5333144500123783,
+              53.79770883215619
             ],
             [
-              -1.5333107867487734,
-              53.79994480847028
+              -1.53330937381917,
+              53.79772656677984
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 20,
-        "id": 297,
+        "dst_i": 265,
+        "id": 260,
         "layer": 0,
         "osm_way_ids": [
-          663639107
+          573276657
         ],
-        "src_i": 289,
+        "src_i": 264,
         "type": "road"
       },
       "type": "Feature"
@@ -11065,37 +10984,37 @@
         "coordinates": [
           [
             [
-              -1.533579526568329,
-              53.79973893574985
+              -1.5332791237271908,
+              53.79772450733318
             ],
             [
-              -1.5335496982236556,
-              53.79974307982418
+              -1.5332806904346925,
+              53.797724569386375
             ],
             [
-              -1.5335540557716345,
-              53.79975402277046
+              -1.533282727611211,
+              53.7977066225228
             ],
             [
-              -1.5335838841163079,
-              53.79974987869613
+              -1.5332811609037091,
+              53.79770656046961
             ],
             [
-              -1.533579526568329,
-              53.79973893574985
+              -1.5332791237271908,
+              53.79772450733318
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 283,
-        "id": 298,
+        "dst_i": 264,
+        "id": 261,
         "layer": 0,
         "osm_way_ids": [
-          663639108
+          573276658
         ],
-        "src_i": 285,
+        "src_i": 266,
         "type": "road"
       },
       "type": "Feature"
@@ -11105,45 +11024,37 @@
         "coordinates": [
           [
             [
-              -1.5338482542074567,
-              53.79967194078083
-            ],
-            [
-              -1.5339875419648838,
-              53.79961688160923
-            ],
-            [
-              -1.5341404474403832,
-              53.799566935081415
+              -1.5338401907643764,
+              53.79841915779283
             ],
             [
-              -1.5341257121680771,
-              53.79955119515326
+              -1.5336601594765804,
+              53.79823506664364
             ],
             [
-              -1.5339716586872751,
-              53.79960151759754
+              -1.5336337918959029,
+              53.798244063457794
             ],
             [
-              -1.5338313173228595,
-              53.79965699225576
+              -1.5338138231836989,
+              53.79842815460698
             ],
             [
-              -1.5338482542074567,
-              53.79967194078083
+              -1.5338401907643764,
+              53.79841915779283
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 90,
-        "id": 299,
+        "dst_i": 254,
+        "id": 262,
         "layer": 0,
         "osm_way_ids": [
-          663639109
+          573276659
         ],
-        "src_i": 286,
+        "src_i": 267,
         "type": "road"
       },
       "type": "Feature"
@@ -11153,37 +11064,45 @@
         "coordinates": [
           [
             [
-              -1.5337833310057205,
-              53.79966662668899
+              -1.5336414747006204,
+              53.79821604149337
             ],
             [
-              -1.5338027938064944,
-              53.7996682445687
+              -1.5336397526926666,
+              53.79821428961473
             ],
             [
-              -1.5338059759432086,
-              53.79965488604437
+              -1.5336183684294367,
+              53.79815732298183
             ],
             [
-              -1.5337865131424346,
-              53.799653268164654
+              -1.5335886390507376,
+              53.79816121704473
             ],
             [
-              -1.5337833310057205,
-              53.79966662668899
+              -1.533611046469887,
+              53.79822091042098
+            ],
+            [
+              -1.533615140616119,
+              53.79822507428039
+            ],
+            [
+              -1.5336414747006204,
+              53.79821604149337
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 286,
-        "id": 300,
+        "dst_i": 263,
+        "id": 263,
         "layer": 0,
         "osm_way_ids": [
-          663639110
+          573276659
         ],
-        "src_i": 287,
+        "src_i": 254,
         "type": "road"
       },
       "type": "Feature"
@@ -11193,45 +11112,53 @@
         "coordinates": [
           [
             [
-              -1.5338027953290478,
-              53.7996682445687
+              -1.533223949435206,
+              53.79785450068565
             ],
             [
-              -1.5337676289119726,
-              53.799682117505036
+              -1.5333828309330035,
+              53.798008582369484
             ],
             [
-              -1.5337315504853797,
-              53.79968890558512
+              -1.5335377781526818,
+              53.79809617000648
             ],
             [
-              -1.5337407923848319,
-              53.799706043059174
+              -1.5335747183445283,
+              53.79814151200726
             ],
             [
-              -1.5337809725704237,
-              53.79969848336108
+              -1.5336021578028358,
+              53.7981337130896
             ],
             [
-              -1.5338197078527898,
-              53.79968320208699
+              -1.5335628211118562,
+              53.798085430306905
             ],
             [
-              -1.5338027953290478,
-              53.7996682445687
+              -1.533406768518372,
+              53.79799721674202
+            ],
+            [
+              -1.5332499576932688,
+              53.797845144142826
+            ],
+            [
+              -1.533223949435206,
+              53.79785450068565
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 288,
-        "id": 301,
+        "dst_i": 263,
+        "id": 264,
         "layer": 0,
         "osm_way_ids": [
-          663639111
+          573276660
         ],
-        "src_i": 286,
+        "src_i": 213,
         "type": "road"
       },
       "type": "Feature"
@@ -11241,45 +11168,61 @@
         "coordinates": [
           [
             [
-              -1.533649207749602,
-              53.79970254739578
+              -1.5332553916865381,
+              53.79723114844929
             ],
             [
-              -1.5336328692285113,
-              53.799704924303
+              -1.5332119760748615,
+              53.79738870511212
             ],
             [
-              -1.533603590525634,
-              53.7997318383031
+              -1.5331978102375463,
+              53.79749008204853
             ],
             [
-              -1.5336292090100132,
-              53.799741561769174
+              -1.533272141297061,
+              53.7975210789691
             ],
             [
-              -1.533651931597727,
-              53.79972067502301
+              -1.5332608515632162,
+              53.79764392361348
             ],
             [
-              -1.5336564886002082,
-              53.79972001222293
+              -1.5332912569556478,
+              53.79764489847819
             ],
             [
-              -1.533649207749602,
-              53.79970254739578
+              -1.5333034602215636,
+              53.7975121217251
+            ],
+            [
+              -1.5332295889731913,
+              53.797481317259376
+            ],
+            [
+              -1.533242223121734,
+              53.79739089406111
+            ],
+            [
+              -1.533285446891676,
+              53.79723403886919
+            ],
+            [
+              -1.5332553916865381,
+              53.79723114844929
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 285,
-        "id": 302,
+        "dst_i": 370,
+        "id": 265,
         "layer": 0,
         "osm_way_ids": [
-          663639111
+          573276662
         ],
-        "src_i": 288,
+        "src_i": 11,
         "type": "road"
       },
       "type": "Feature"
@@ -11289,37 +11232,37 @@
         "coordinates": [
           [
             [
-              -1.5335838841163079,
-              53.79974987869613
+              -1.533255920012586,
+              53.79767903403143
             ],
             [
-              -1.5334748936500173,
-              53.799849656638585
+              -1.533250918424497,
+              53.797704487533125
             ],
             [
-              -1.5335004816833275,
-              53.79985940888295
+              -1.5332811654713694,
+              53.79770656136893
             ],
             [
-              -1.533609472149618,
-              53.7997596309405
+              -1.5332861670594584,
+              53.79768110786724
             ],
             [
-              -1.5335838841163079,
-              53.79974987869613
+              -1.533255920012586,
+              53.79767903403143
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 59,
-        "id": 303,
+        "dst_i": 266,
+        "id": 266,
         "layer": 0,
         "osm_way_ids": [
-          663639111
+          573276662
         ],
-        "src_i": 285,
+        "src_i": 370,
         "type": "road"
       },
       "type": "Feature"
@@ -11329,45 +11272,37 @@
         "coordinates": [
           [
             [
-              -1.5334130323032726,
-              53.79990672489483
-            ],
-            [
-              -1.5333754678645108,
-              53.79994164555591
-            ],
-            [
-              -1.5333478639704305,
-              53.799934733369426
+              -1.5332467892595358,
+              53.79772119962802
             ],
             [
-              -1.5333359789181862,
-              53.79995129347896
+              -1.533220366866934,
+              53.79780717657987
             ],
             [
-              -1.533387331601007,
-              53.79996415377907
+              -1.5332503276737577,
+              53.79781038895694
             ],
             [
-              -1.5334387330055381,
-              53.799916371019236
+              -1.5332767500663593,
+              53.79772441200508
             ],
             [
-              -1.5334130323032726,
-              53.79990672489483
+              -1.5332467892595358,
+              53.79772119962802
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 289,
-        "id": 304,
+        "dst_i": 213,
+        "id": 267,
         "layer": 0,
         "osm_way_ids": [
-          663639111
+          573276662
         ],
-        "src_i": 59,
+        "src_i": 266,
         "type": "road"
       },
       "type": "Feature"
@@ -11377,45 +11312,37 @@
         "coordinates": [
           [
             [
-              -1.5333235746752147,
-              53.79992848308371
-            ],
-            [
-              -1.533259210250595,
-              53.79991089145221
-            ],
-            [
-              -1.533131107170825,
-              53.79998713504545
+              -1.5373530854678508,
+              53.79898545616209
             ],
             [
-              -1.5331527213396259,
-              53.799999804689364
+              -1.5371129331119056,
+              53.79896013126341
             ],
             [
-              -1.5332657907266136,
-              53.7999325093469
+              -1.5371049062101079,
+              53.79898669183009
             ],
             [
-              -1.5333107882713268,
-              53.79994480757096
+              -1.537345058566053,
+              53.799012016728774
             ],
             [
-              -1.5333235746752147,
-              53.79992848308371
+              -1.5373530854678508,
+              53.79898545616209
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 290,
-        "id": 305,
+        "dst_i": 16,
+        "id": 268,
         "layer": 0,
         "osm_way_ids": [
-          663639111
+          583053002
         ],
-        "src_i": 289,
+        "src_i": 268,
         "type": "road"
       },
       "type": "Feature"
@@ -11425,37 +11352,53 @@
         "coordinates": [
           [
             [
-              -1.5341439873771585,
-              53.799568604222465
+              -1.5334208780212095,
+              53.799632040575574
             ],
             [
-              -1.5341564601350353,
-              53.799574487584934
+              -1.5335138451349737,
+              53.79964488738586
             ],
             [
-              -1.5341849623356523,
-              53.79955340568597
+              -1.533629667298602,
+              53.79964499350582
             ],
             [
-              -1.5341724895777753,
-              53.79954752232349
+              -1.5336486504950386,
+              53.79964084853217
             ],
             [
-              -1.5341439873771585,
-              53.799568604222465
+              -1.5336328128940335,
+              53.79961554341856
+            ],
+            [
+              -1.5336215338180628,
+              53.79961800666066
+            ],
+            [
+              -1.5335191558014134,
+              53.7996179131312
+            ],
+            [
+              -1.5334312831514987,
+              53.79960576959047
+            ],
+            [
+              -1.5334208780212095,
+              53.799632040575574
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 291,
-        "id": 306,
+        "dst_i": 82,
+        "id": 269,
         "layer": 0,
         "osm_way_ids": [
-          663639112
+          583053006
         ],
-        "src_i": 90,
+        "src_i": 71,
         "type": "road"
       },
       "type": "Feature"
@@ -11465,37 +11408,37 @@
         "coordinates": [
           [
             [
-              -1.5344491740812423,
-              53.79966402495135
+              -1.5349693042237704,
+              53.79646066718505
             ],
             [
-              -1.5344681085559682,
-              53.79967468101401
+              -1.5348359544248054,
+              53.7964756067169
             ],
             [
-              -1.5344996162770987,
-              53.79965514774698
+              -1.534852976572396,
+              53.79652862173031
             ],
             [
-              -1.5344806818023728,
-              53.79964449168432
+              -1.534986326371361,
+              53.79651368219846
             ],
             [
-              -1.5344491740812423,
-              53.79966402495135
+              -1.5349693042237704,
+              53.79646066718505
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 293,
-        "id": 308,
+        "dst_i": 25,
+        "id": 270,
         "layer": 0,
         "osm_way_ids": [
-          663639112
+          603499170
         ],
-        "src_i": 291,
+        "src_i": 269,
         "type": "road"
       },
       "type": "Feature"
@@ -11505,45 +11448,37 @@
         "coordinates": [
           [
             [
-              -1.5355408098874213,
-              53.798412040561004
-            ],
-            [
-              -1.5354918795871422,
-              53.79825558017131
-            ],
-            [
-              -1.5353921706066938,
-              53.79807301607035
+              -1.5340875493658088,
+              53.79649302208136
             ],
             [
-              -1.5353052297594916,
-              53.79808958337445
+              -1.5340548433951118,
+              53.796474780240274
             ],
             [
-              -1.5354031208111187,
-              53.798268819985175
+              -1.53399212332822,
+              53.79651401224952
             ],
             [
-              -1.5354509761886608,
-              53.79842184136874
+              -1.5340248292989171,
+              53.7965322540906
             ],
             [
-              -1.5355408098874213,
-              53.798412040561004
+              -1.5340875493658088,
+              53.79649302208136
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 246,
-        "id": 309,
+        "dst_i": 434,
+        "id": 271,
         "layer": 0,
         "osm_way_ids": [
-          663639113
+          603499175
         ],
-        "src_i": 7,
+        "src_i": 54,
         "type": "road"
       },
       "type": "Feature"
@@ -11553,37 +11488,37 @@
         "coordinates": [
           [
             [
-              -1.535362054499418,
-              53.79802756435232
+              -1.5347650095241674,
+              53.79647542505392
             ],
             [
-              -1.5353099725134938,
-              53.79794920555447
+              -1.5345932380888472,
+              53.79648192265311
             ],
             [
-              -1.5352249379032132,
-              53.797968924081765
+              -1.5345990755587813,
+              53.796535772237036
             ],
             [
-              -1.5352770198891375,
-              53.798047282879615
+              -1.5347708469941015,
+              53.796529274637855
             ],
             [
-              -1.535362054499418,
-              53.79802756435232
+              -1.5347650095241674,
+              53.79647542505392
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 327,
-        "id": 310,
+        "dst_i": 271,
+        "id": 272,
         "layer": 0,
         "osm_way_ids": [
-          663639113
+          603499183
         ],
-        "src_i": 246,
+        "src_i": 25,
         "type": "road"
       },
       "type": "Feature"
@@ -11593,37 +11528,37 @@
         "coordinates": [
           [
             [
-              -1.5352909862719504,
-              53.797925863660105
+              -1.5345058541785908,
+              53.796485943520366
             ],
             [
-              -1.5350960080769187,
-              53.79772509548956
+              -1.5343671419463685,
+              53.79649489267047
             ],
             [
-              -1.5350167652599687,
-              53.79775194383919
+              -1.5343770598595532,
+              53.79654853361177
             ],
             [
-              -1.5352117434550003,
-              53.797952712009725
+              -1.5345157720917755,
+              53.79653958446167
             ],
             [
-              -1.5352909862719504,
-              53.797925863660105
+              -1.5345058541785908,
+              53.796485943520366
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 28,
-        "id": 311,
+        "dst_i": 4,
+        "id": 273,
         "layer": 0,
         "osm_way_ids": [
-          663639113
+          603499183
         ],
-        "src_i": 327,
+        "src_i": 271,
         "type": "road"
       },
       "type": "Feature"
@@ -11633,45 +11568,37 @@
         "coordinates": [
           [
             [
-              -1.535317819753984,
-              53.7988784773509
+              -1.53707673440359,
+              53.79894220418491
             ],
             [
-              -1.5353154049842097,
-              53.79886577083479
+              -1.536803446716874,
+              53.79890694178159
             ],
             [
-              -1.5353399241849968,
-              53.79875724788826
+              -1.5367839519424777,
+              53.7989596582202
             ],
             [
-              -1.535317286860276,
-              53.79875546363404
-            ],
-            [
-              -1.5352923961564469,
-              53.798865628741964
-            ],
-            [
-              -1.5352951245722324,
-              53.7988799828154
+              -1.5370572396291937,
+              53.79899492062352
             ],
             [
-              -1.535317819753984,
-              53.7988784773509
+              -1.53707673440359,
+              53.79894220418491
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 394,
-        "id": 312,
+        "dst_i": 120,
+        "id": 274,
         "layer": 0,
         "osm_way_ids": [
-          663639114
+          616128591
         ],
-        "src_i": 294,
+        "src_i": 16,
         "type": "road"
       },
       "type": "Feature"
@@ -11681,37 +11608,37 @@
         "coordinates": [
           [
             [
-              -1.5353440624852785,
-              53.798742281376754
+              -1.536803452807088,
+              53.79890694268091
             ],
             [
-              -1.5353663085137623,
-              53.79867263340876
+              -1.5367546534464056,
+              53.7989006429325
             ],
             [
-              -1.5353438660758834,
-              53.79867013329447
+              -1.5367351464915817,
+              53.798953357572465
             ],
             [
-              -1.5353216200473998,
-              53.79873978126247
+              -1.536783945852264,
+              53.79895965732088
             ],
             [
-              -1.5353440624852785,
-              53.798742281376754
+              -1.536803452807088,
+              53.79890694268091
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 295,
-        "id": 313,
+        "dst_i": 234,
+        "id": 275,
         "layer": 0,
         "osm_way_ids": [
-          663639114
+          616128591
         ],
-        "src_i": 394,
+        "src_i": 120,
         "type": "road"
       },
       "type": "Feature"
@@ -11721,37 +11648,37 @@
         "coordinates": [
           [
             [
-              -1.5354056771783642,
-              53.79889326399806
+              -1.5367546838974746,
+              53.79890064652979
             ],
             [
-              -1.5354571699361026,
-              53.798786519010505
+              -1.5365384204051873,
+              53.79887263625655
             ],
             [
-              -1.5353693125117225,
-              53.79877173236334
+              -1.5365188525482254,
+              53.79892534370193
             ],
             [
-              -1.535317819753984,
-              53.7988784773509
+              -1.5367351160405127,
+              53.79895335397518
             ],
             [
-              -1.5354056771783642,
-              53.79889326399806
+              -1.5367546838974746,
+              53.79890064652979
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 241,
-        "id": 314,
+        "dst_i": 272,
+        "id": 276,
         "layer": 0,
         "osm_way_ids": [
-          663639115
+          616128591
         ],
-        "src_i": 294,
+        "src_i": 234,
         "type": "road"
       },
       "type": "Feature"
@@ -11761,69 +11688,37 @@
         "coordinates": [
           [
             [
-              -1.5348343542211276,
-              53.799342155921174
-            ],
-            [
-              -1.535060260044425,
-              53.79927031270894
-            ],
-            [
-              -1.5351408427084126,
-              53.79923120390677
-            ],
-            [
-              -1.5353397171177272,
-              53.799108003130996
-            ],
-            [
-              -1.5355347181510608,
-              53.798899856925345
-            ],
-            [
-              -1.5355562424892084,
-              53.798859122149565
-            ],
-            [
-              -1.5354690367177055,
-              53.7988430458751
-            ],
-            [
-              -1.5354502803817334,
-              53.79887854300138
-            ],
-            [
-              -1.5352654835016335,
-              53.799075796622766
+              -1.53649521186078,
+              53.798866834732344
             ],
             [
-              -1.535078558091808,
-              53.799191595981064
+              -1.5364451716190346,
+              53.79885988747232
             ],
             [
-              -1.5350091387897287,
-              53.799225287269394
+              -1.5364242700052488,
+              53.79891241505337
             ],
             [
-              -1.534791046710746,
-              53.799294644756486
+              -1.5364743102469942,
+              53.7989193623134
             ],
             [
-              -1.5348343542211276,
-              53.799342155921174
+              -1.53649521186078,
+              53.798866834732344
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 392,
-        "id": 315,
+        "dst_i": 273,
+        "id": 277,
         "layer": 0,
         "osm_way_ids": [
-          663639116
+          616128591
         ],
-        "src_i": 77,
+        "src_i": 272,
         "type": "road"
       },
       "type": "Feature"
@@ -11833,37 +11728,37 @@
         "coordinates": [
           [
             [
-              -1.5355639131134984,
-              53.79884440025356
+              -1.5363616291111368,
+              53.79884912708834
             ],
             [
-              -1.5355835129440827,
-              53.79879620020846
+              -1.5363184966944021,
+              53.798844013545235
             ],
             [
-              -1.5354946871757074,
-              53.79878359891299
+              -1.5363005183832437,
+              53.798896917042754
             ],
             [
-              -1.5354750873451228,
-              53.79883179895809
+              -1.5363436507999784,
+              53.79890203058586
             ],
             [
-              -1.5355639131134984,
-              53.79884440025356
+              -1.5363616291111368,
+              53.79884912708834
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 313,
-        "id": 316,
+        "dst_i": 274,
+        "id": 278,
         "layer": 0,
         "osm_way_ids": [
-          663639116
+          616128591
         ],
-        "src_i": 392,
+        "src_i": 273,
         "type": "road"
       },
       "type": "Feature"
@@ -11873,45 +11768,37 @@
         "coordinates": [
           [
             [
-              -1.5348702651668407,
-              53.79935120399666
-            ],
-            [
-              -1.5352190958656189,
-              53.79915269672084
-            ],
-            [
-              -1.5353906906847385,
-              53.79899131074627
+              -1.5362741340544783,
+              53.798837591489075
             ],
             [
-              -1.5352553082769154,
-              53.798941089026016
+              -1.5362317644370227,
+              53.7988302566214
             ],
             [
-              -1.5350941033625505,
-              53.79909270297115
+              -1.5362060698249709,
+              53.79888203776545
             ],
             [
-              -1.5347593471478802,
-              53.79928320088803
+              -1.5362484394424265,
+              53.79888937263313
             ],
             [
-              -1.5348702651668407,
-              53.79935120399666
+              -1.5362741340544783,
+              53.798837591489075
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 294,
-        "id": 318,
+        "dst_i": 431,
+        "id": 279,
         "layer": 0,
         "osm_way_ids": [
-          663639118
+          616128591
         ],
-        "src_i": 77,
+        "src_i": 274,
         "type": "road"
       },
       "type": "Feature"
@@ -11921,61 +11808,37 @@
         "coordinates": [
           [
             [
-              -1.5339278380763801,
-              53.79718837131396
-            ],
-            [
-              -1.5338446899098264,
-              53.79720641890156
-            ],
-            [
-              -1.5337877281400891,
-              53.797228600670955
-            ],
-            [
-              -1.5339945944324722,
-              53.79743578280376
-            ],
-            [
-              -1.5340017336856075,
-              53.797437388992286
-            ],
-            [
-              -1.534012574266184,
-              53.79742058066997
-            ],
-            [
-              -1.534015404693051,
-              53.797421217389726
+              -1.5322424079465697,
+              53.79678053432515
             ],
             [
-              -1.5338286726475139,
-              53.79723419984777
+              -1.5320575425515646,
+              53.796812932388896
             ],
             [
-              -1.5338585086049543,
-              53.79722258151091
+              -1.5320835264487722,
+              53.796864663170936
             ],
             [
-              -1.5339383406500904,
-              53.79720525338065
+              -1.5322683918437774,
+              53.79683226510719
             ],
             [
-              -1.5339278380763801,
-              53.79718837131396
+              -1.5322424079465697,
+              53.79678053432515
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 299,
-        "id": 320,
+        "dst_i": 276,
+        "id": 280,
         "layer": 0,
         "osm_way_ids": [
-          663641181
+          619248620
         ],
-        "src_i": 298,
+        "src_i": 212,
         "type": "road"
       },
       "type": "Feature"
@@ -11985,53 +11848,37 @@
         "coordinates": [
           [
             [
-              -1.5341401277041584,
-              53.79745108476225
-            ],
-            [
-              -1.5342067013538363,
-              53.797432603701594
-            ],
-            [
-              -1.5343444361067424,
-              53.797416290006204
-            ],
-            [
-              -1.5343420700586785,
-              53.79740421031732
-            ],
-            [
-              -1.534311819966699,
-              53.797406276958554
+              -1.5340248277763637,
+              53.7965322540906
             ],
             [
-              -1.534310964291659,
-              53.79740190985244
+              -1.5339677457249041,
+              53.79653583159227
             ],
             [
-              -1.5341971001317696,
-              53.79741539608045
+              -1.5339725661291324,
+              53.796562660156816
             ],
             [
-              -1.5341271768644977,
-              53.79743480703973
+              -1.534029648180592,
+              53.79655908265515
             ],
             [
-              -1.5341401277041584,
-              53.79745108476225
+              -1.5340248277763637,
+              53.7965322540906
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 303,
-        "id": 321,
+        "dst_i": 309,
+        "id": 281,
         "layer": 0,
         "osm_way_ids": [
-          663641181
+          619360566
         ],
-        "src_i": 299,
+        "src_i": 54,
         "type": "road"
       },
       "type": "Feature"
@@ -12041,37 +11888,45 @@
         "coordinates": [
           [
             [
-              -1.5347501022033212,
-              53.797472730535915
+              -1.5338401511779867,
+              53.79654412064025
             ],
             [
-              -1.5346126993670677,
-              53.79734673017174
+              -1.533657100666696,
+              53.79655936054555
             ],
             [
-              -1.5345870991533297,
-              53.7973564698256
+              -1.5327966813502536,
+              53.7966970538903
             ],
             [
-              -1.5347245019895834,
-              53.79748247018978
+              -1.5328086273046362,
+              53.796723094649046
             ],
             [
-              -1.5347501022033212,
-              53.797472730535915
+              -1.5336662999346513,
+              53.79658584017328
+            ],
+            [
+              -1.5338465276318425,
+              53.796570835890265
+            ],
+            [
+              -1.5338401511779867,
+              53.79654412064025
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 305,
-        "id": 322,
+        "dst_i": 454,
+        "id": 283,
         "layer": 0,
         "osm_way_ids": [
-          663641181
+          619360566
         ],
-        "src_i": 303,
+        "src_i": 309,
         "type": "road"
       },
       "type": "Feature"
@@ -12081,62 +11936,37 @@
         "coordinates": [
           [
             [
-              -1.5345944226354327,
-              53.797328254507015
-            ],
-            [
-              -1.534462240634965,
-              53.797194743907426
-            ],
-            [
-              -1.534352405151509,
-              53.7971422091318
-            ],
-            [
-              -1.534150628755315,
-              53.79713835284041
-            ],
-            [
-              -1.5339901150802173,
-              53.79717460899419
-            ],
-            [
-              -1.5340009922020765,
-              53.79719140832329
-            ],
-            [
-              -1.5341557719408752,
-              53.79715644719274
+              -1.5327660947739614,
+              53.79670206491073
             ],
             [
-              -1.5343411961129971,
-              53.797159990520186
+              -1.5326454674316392,
+              53.79672228436021
             ],
             [
-              -1.5344387598156322,
-              53.79720665632249
+              -1.5326579371444091,
+              53.79674823878407
             ],
             [
-              -1.5345681372726416,
-              53.79733733405876
+              -1.5327785644867313,
+              53.7967280193346
             ],
             [
-              -1.5345944226354327,
-              53.797328254507015
+              -1.5327660947739614,
+              53.79670206491073
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 298,
-        "id": 323,
+        "dst_i": 13,
+        "id": 284,
         "layer": 0,
         "osm_way_ids": [
-          663641181,
-          663641181
+          619360566
         ],
-        "src_i": 305,
+        "src_i": 454,
         "type": "road"
       },
       "type": "Feature"
@@ -12146,37 +11976,37 @@
         "coordinates": [
           [
             [
-              -1.5322962652298187,
-              53.7966795413991
+              -1.5353539392895201,
+              53.800153682227176
             ],
             [
-              -1.5322947046125306,
-              53.7966757012955
+              -1.5342006872677019,
+              53.799940243513404
             ],
             [
-              -1.532265093993001,
-              53.79667989932913
+              -1.5341733726587774,
+              53.79999173507587
             ],
             [
-              -1.532266654610289,
-              53.79668373943273
+              -1.5353266246805957,
+              53.80020517378965
             ],
             [
-              -1.5322962652298187,
-              53.7966795413991
+              -1.5353539392895201,
+              53.800153682227176
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 415,
-        "id": 324,
+        "dst_i": 278,
+        "id": 285,
         "layer": 0,
         "osm_way_ids": [
-          668984457
+          636647073
         ],
-        "src_i": 300,
+        "src_i": 277,
         "type": "road"
       },
       "type": "Feature"
@@ -12186,37 +12016,37 @@
         "coordinates": [
           [
             [
-              -1.5322947518116876,
-              53.796675821804605
+              -1.5368805533913312,
+              53.7978847961353
             ],
             [
-              -1.5322926522104776,
-              53.79667032155317
+              -1.536868257249655,
+              53.79783529746968
             ],
             [
-              -1.532262947192634,
-              53.79667427856859
+              -1.5368381289619515,
+              53.79783790909986
             ],
             [
-              -1.532265046793844,
-              53.79667977882002
+              -1.536850425103628,
+              53.79788740776547
             ],
             [
-              -1.5322947518116876,
-              53.796675821804605
+              -1.5368805533913312,
+              53.7978847961353
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 301,
-        "id": 325,
+        "dst_i": 470,
+        "id": 286,
         "layer": 0,
         "osm_way_ids": [
-          668984457
+          650344876
         ],
-        "src_i": 415,
+        "src_i": 279,
         "type": "road"
       },
       "type": "Feature"
@@ -12226,37 +12056,37 @@
         "coordinates": [
           [
             [
-              -1.5326202158826419,
-              53.796692726354344
+              -1.5368525460205862,
+              53.79781481361963
             ],
             [
-              -1.532755814493055,
-              53.796674541170525
+              -1.53684213784519,
+              53.79780478438419
             ],
             [
-              -1.5327404823797959,
-              53.79663465445509
+              -1.5368161752637308,
+              53.797814184094456
             ],
             [
-              -1.5326048837693826,
-              53.79665283963891
+              -1.536826583439127,
+              53.797824213329896
             ],
             [
-              -1.5326202158826419,
-              53.796692726354344
+              -1.5368525460205862,
+              53.79781481361963
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 453,
-        "id": 326,
+        "dst_i": 47,
+        "id": 287,
         "layer": 0,
         "osm_way_ids": [
-          668984459
+          650344876
         ],
-        "src_i": 12,
+        "src_i": 470,
         "type": "road"
       },
       "type": "Feature"
@@ -12266,37 +12096,37 @@
         "coordinates": [
           [
             [
-              -1.532786102648871,
-              53.796671946627455
+              -1.5362453836776486,
+              53.79840732541741
             ],
             [
-              -1.5328555006352018,
-              53.79666818656349
+              -1.536312420183576,
+              53.798408204954015
             ],
             [
-              -1.5328491759481633,
-              53.79662745628431
+              -1.5363130961973086,
+              53.798390222117575
             ],
             [
-              -1.5327797779618324,
-              53.79663121634828
+              -1.5362460596913814,
+              53.79838934258097
             ],
             [
-              -1.532786102648871,
-              53.796671946627455
+              -1.5362453836776486,
+              53.79840732541741
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 302,
-        "id": 327,
+        "dst_i": 281,
+        "id": 288,
         "layer": 0,
         "osm_way_ids": [
-          668984459
+          650344877
         ],
-        "src_i": 453,
+        "src_i": 280,
         "type": "road"
       },
       "type": "Feature"
@@ -12306,45 +12136,37 @@
         "coordinates": [
           [
             [
-              -1.5328952864794496,
-              53.796678276053484
+              -1.5343412143836386,
+              53.79643825608863
             ],
             [
-              -1.5334843075980096,
-              53.796598349737934
+              -1.5345630169253834,
+              53.79643979932464
             ],
             [
-              -1.5337851504570954,
-              53.796545655782374
-            ],
-            [
-              -1.5337522693927512,
-              53.79648016178125
-            ],
-            [
-              -1.5334548918653217,
-              53.796532249593994
+              -1.534563565044626,
+              53.796412389798284
             ],
             [
-              -1.5328693908903424,
-              53.796611697470404
+              -1.5343417625028812,
+              53.796410846562274
             ],
             [
-              -1.5328952864794496,
-              53.796678276053484
+              -1.5343412143836386,
+              53.79643825608863
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 434,
-        "id": 328,
+        "dst_i": 282,
+        "id": 289,
         "layer": 0,
         "osm_way_ids": [
-          668984461
+          663356010
         ],
-        "src_i": 302,
+        "src_i": 79,
         "type": "road"
       },
       "type": "Feature"
@@ -12354,37 +12176,45 @@
         "coordinates": [
           [
             [
-              -1.5347612990614055,
-              53.79747469465448
+              -1.5345935243288962,
+              53.7964405979223
             ],
             [
-              -1.5346190986592254,
-              53.79734429480861
+              -1.534894036793883,
+              53.79645362729489
             ],
             [
-              -1.5345550996474342,
-              53.797368644842585
+              -1.5349693042237704,
+              53.79646066718505
             ],
             [
-              -1.5346973000496145,
-              53.79749904468846
+              -1.5349765637586283,
+              53.796433594005
             ],
             [
-              -1.5347612990614055,
-              53.79747469465448
+              -1.5348993626858571,
+              53.79642637245186
+            ],
+            [
+              -1.5345969226682006,
+              53.79641326034168
+            ],
+            [
+              -1.5345935243288962,
+              53.7964405979223
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 305,
-        "id": 332,
+        "dst_i": 269,
+        "id": 290,
         "layer": 0,
         "osm_way_ids": [
-          668997030
+          663356010
         ],
-        "src_i": 303,
+        "src_i": 282,
         "type": "road"
       },
       "type": "Feature"
@@ -12394,37 +12224,37 @@
         "coordinates": [
           [
             [
-              -1.534619704635499,
-              53.79734488296499
+              -1.534251124895898,
+              53.79644719624551
             ],
             [
-              -1.5344091948727059,
-              53.797128349685295
+              -1.5342666534185527,
+              53.7965017904678
             ],
             [
-              -1.534343176955038,
-              53.79715074099664
+              -1.534356742906293,
+              53.79649284941159
             ],
             [
-              -1.534553686717831,
-              53.79736727427634
+              -1.5343412143836386,
+              53.79643825518931
             ],
             [
-              -1.534619704635499,
-              53.79734488296499
+              -1.534251124895898,
+              53.79644719624551
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 306,
-        "id": 333,
+        "dst_i": 4,
+        "id": 291,
         "layer": 0,
         "osm_way_ids": [
-          668997030
+          663356011
         ],
-        "src_i": 305,
+        "src_i": 79,
         "type": "road"
       },
       "type": "Feature"
@@ -12434,61 +12264,53 @@
         "coordinates": [
           [
             [
-              -1.534353001992462,
-              53.79706450504014
-            ],
-            [
-              -1.5342994294267085,
-              53.79699150619954
-            ],
-            [
-              -1.5341201837764937,
-              53.79670001715525
+              -1.5335496982236556,
+              53.79974307982418
             ],
             [
-              -1.5340828659913912,
-              53.79668398135026
+              -1.5335883695587766,
+              53.79970336577851
             ],
             [
-              -1.5340796503585012,
-              53.796680053113136
+              -1.5336222981398957,
+              53.79968462391457
             ],
             [
-              -1.5340111141374237,
-              53.796699627748964
+              -1.533663420786074,
+              53.79967788349853
             ],
             [
-              -1.5340226398670536,
-              53.796713707529285
+              -1.5336583324124384,
+              53.799667052068145
             ],
             [
-              -1.5340565745383863,
-              53.79672829003042
+              -1.5336127060531495,
+              53.79967452992796
             ],
             [
-              -1.5342286672324847,
-              53.79700814724802
+              -1.5335732901893906,
+              53.79969630430463
             ],
             [
-              -1.5342831533303094,
-              53.797082388951196
+              -1.5335331998344524,
+              53.79973747525143
             ],
             [
-              -1.534353001992462,
-              53.79706450504014
+              -1.5335496982236556,
+              53.79974307982418
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 361,
-        "id": 335,
+        "dst_i": 284,
+        "id": 292,
         "layer": 0,
         "osm_way_ids": [
-          668997030
+          663639106
         ],
-        "src_i": 306,
+        "src_i": 283,
         "type": "road"
       },
       "type": "Feature"
@@ -12498,37 +12320,37 @@
         "coordinates": [
           [
             [
-              -1.5339799398554992,
-              53.79657047796024
+              -1.5337321869127227,
+              53.79966661229984
             ],
             [
-              -1.533972564606579,
-              53.796562659257496
+              -1.5337641818509578,
+              53.79966136655644
             ],
             [
-              -1.533906062516913,
-              53.796584545150054
+              -1.5337590904322151,
+              53.799650535126055
             ],
             [
-              -1.5339134377658334,
-              53.796592363852795
+              -1.53372709549398,
+              53.79965578086945
             ],
             [
-              -1.5339799398554992,
-              53.79657047796024
+              -1.5337321869127227,
+              53.79966661229984
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 309,
-        "id": 337,
+        "dst_i": 287,
+        "id": 293,
         "layer": 0,
         "osm_way_ids": [
-          668997032
+          663639106
         ],
-        "src_i": 308,
+        "src_i": 284,
         "type": "road"
       },
       "type": "Feature"
@@ -12538,37 +12360,45 @@
         "coordinates": [
           [
             [
-              -1.5339216823927746,
-              53.79651643861943
+              -1.5337865116198812,
+              53.799653268164654
             ],
             [
-              -1.5339176506712344,
-              53.796513094941396
+              -1.5338419127723302,
+              53.79963151447239
             ],
             [
-              -1.5338556431593582,
-              53.79653918066623
+              -1.5339036690628869,
+              53.79958764556053
             ],
             [
-              -1.5338596748808984,
-              53.79654252434426
+              -1.5338890342791087,
+              53.79958045818161
             ],
             [
-              -1.5339216823927746,
-              53.79651643861943
+              -1.5338290563309835,
+              53.79962306264718
+            ],
+            [
+              -1.5337759755499951,
+              53.7996439062259
+            ],
+            [
+              -1.5337865116198812,
+              53.799653268164654
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 434,
-        "id": 338,
+        "dst_i": 96,
+        "id": 294,
         "layer": 0,
         "osm_way_ids": [
-          668997032
+          663639106
         ],
-        "src_i": 309,
+        "src_i": 287,
         "type": "road"
       },
       "type": "Feature"
@@ -12578,37 +12408,37 @@
         "coordinates": [
           [
             [
-              -1.5338426040115973,
-              53.79645674973978
+              -1.5335329059816363,
+              53.7997489775758
             ],
             [
-              -1.5338349881992317,
-              53.79645167756547
+              -1.5334487346591628,
+              53.799833377117416
             ],
             [
-              -1.5337780325197083,
-              53.796481513461735
+              -1.5334651325598383,
+              53.799839082414195
             ],
             [
-              -1.5337856483320742,
-              53.796486585636046
+              -1.5335493038823116,
+              53.79975468287258
             ],
             [
-              -1.5338426040115973,
-              53.79645674973978
+              -1.5335329059816363,
+              53.7997489775758
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 311,
-        "id": 339,
+        "dst_i": 59,
+        "id": 295,
         "layer": 0,
         "osm_way_ids": [
-          668997032
+          663639107
         ],
-        "src_i": 434,
+        "src_i": 283,
         "type": "road"
       },
       "type": "Feature"
@@ -12618,45 +12448,37 @@
         "coordinates": [
           [
             [
-              -1.533804444254436,
-              53.79641417854912
-            ],
-            [
-              -1.5336454226817209,
-              53.7961458695213
-            ],
-            [
-              -1.5336016781984985,
-              53.796119664186676
+              -1.5333932086573308,
+              53.79988143327105
             ],
             [
-              -1.5335366286248258,
-              53.79615754901204
+              -1.5333327724206167,
+              53.799927882336824
             ],
             [
-              -1.5335659758426083,
-              53.79617512985168
+              -1.5333478639704305,
+              53.799934733369426
             ],
             [
-              -1.5337182220524632,
-              53.796432006702226
+              -1.5334083002071446,
+              53.799888284303655
             ],
             [
-              -1.533804444254436,
-              53.79641417854912
+              -1.5333932086573308,
+              53.79988143327105
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 227,
-        "id": 340,
+        "dst_i": 289,
+        "id": 296,
         "layer": 0,
         "osm_way_ids": [
-          668997033
+          663639107
         ],
-        "src_i": 435,
+        "src_i": 59,
         "type": "road"
       },
       "type": "Feature"
@@ -12666,37 +12488,37 @@
         "coordinates": [
           [
             [
-              -1.5340806582888862,
-              53.796650299954464
+              -1.5333107867487734,
+              53.79994480847028
             ],
             [
-              -1.534061888249933,
-              53.796627386137224
+              -1.5332829818776375,
+              53.79996625189657
             ],
             [
-              -1.5339796551380036,
-              53.79665088721153
+              -1.5332980916980927,
+              53.79997308674139
             ],
             [
-              -1.533998425176957,
-              53.796673801028774
+              -1.5333258965692287,
+              53.7999516433151
             ],
             [
-              -1.5340806582888862,
-              53.796650299954464
+              -1.5333107867487734,
+              53.79994480847028
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 351,
-        "id": 341,
+        "dst_i": 20,
+        "id": 297,
         "layer": 0,
         "osm_way_ids": [
-          668997034
+          663639107
         ],
-        "src_i": 361,
+        "src_i": 289,
         "type": "road"
       },
       "type": "Feature"
@@ -12706,37 +12528,37 @@
         "coordinates": [
           [
             [
-              -1.5340511283646894,
-              53.79661548631267
+              -1.533579526568329,
+              53.79973893574985
             ],
             [
-              -1.5340144637550177,
-              53.79657889740986
+              -1.5335496982236556,
+              53.79974307982418
             ],
             [
-              -1.5339358482300898,
-              53.79660638247924
+              -1.5335540557716345,
+              53.79975402277046
             ],
             [
-              -1.5339725128397614,
-              53.79664297138205
+              -1.5335838841163079,
+              53.79974987869613
             ],
             [
-              -1.5340511283646894,
-              53.79661548631267
+              -1.533579526568329,
+              53.79973893574985
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 308,
-        "id": 342,
+        "dst_i": 283,
+        "id": 298,
         "layer": 0,
         "osm_way_ids": [
-          668997034
+          663639108
         ],
-        "src_i": 351,
+        "src_i": 285,
         "type": "road"
       },
       "type": "Feature"
@@ -12746,37 +12568,45 @@
         "coordinates": [
           [
             [
-              -1.535871685113343,
-              53.796433016640485
+              -1.5338482542074567,
+              53.79967194078083
             ],
             [
-              -1.535727503869122,
-              53.79643055070042
+              -1.5339875419648838,
+              53.79961688160923
             ],
             [
-              -1.5357235391399338,
-              53.79651145547796
+              -1.5341404474403832,
+              53.799566935081415
             ],
             [
-              -1.5358677203841546,
-              53.796513921418025
+              -1.5341257121680771,
+              53.79955119515326
             ],
             [
-              -1.535871685113343,
-              53.796433016640485
+              -1.5339716586872751,
+              53.79960151759754
+            ],
+            [
+              -1.5338313173228595,
+              53.79965699225576
+            ],
+            [
+              -1.5338482542074567,
+              53.79967194078083
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 8,
-        "id": 343,
+        "dst_i": 90,
+        "id": 299,
         "layer": 0,
         "osm_way_ids": [
-          670751728
+          663639109
         ],
-        "src_i": 49,
+        "src_i": 286,
         "type": "road"
       },
       "type": "Feature"
@@ -12786,37 +12616,37 @@
         "coordinates": [
           [
             [
-              -1.5356970299617851,
-              53.79643012352262
+              -1.5337833310057205,
+              53.79966662668899
             ],
             [
-              -1.535193023660311,
-              53.79642534003057
+              -1.5338027938064944,
+              53.7996682445687
             ],
             [
-              -1.5351908220480197,
-              53.79650626819048
+              -1.5338059759432086,
+              53.79965488604437
             ],
             [
-              -1.535694828349494,
-              53.79651105168252
+              -1.5337865131424346,
+              53.799653268164654
             ],
             [
-              -1.5356970299617851,
-              53.79643012352262
+              -1.5337833310057205,
+              53.79966662668899
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 269,
-        "id": 344,
+        "dst_i": 286,
+        "id": 300,
         "layer": 0,
         "osm_way_ids": [
-          670751728
+          663639110
         ],
-        "src_i": 8,
+        "src_i": 287,
         "type": "road"
       },
       "type": "Feature"
@@ -12826,61 +12656,45 @@
         "coordinates": [
           [
             [
-              -1.5359314194529157,
-              53.79880869448465
-            ],
-            [
-              -1.5359275293288466,
-              53.7988090119452
-            ],
-            [
-              -1.5358482164744376,
-              53.798800270538415
-            ],
-            [
-              -1.5357730982547884,
-              53.79877938649021
-            ],
-            [
-              -1.535721453241705,
-              53.79875399773969
+              -1.5338027953290478,
+              53.7996682445687
             ],
             [
-              -1.5356337967943805,
-              53.79881620921666
+              -1.5337676289119726,
+              53.799682117505036
             ],
             [
-              -1.5356989011799775,
-              53.79884821337751
+              -1.5337315504853797,
+              53.79968890558512
             ],
             [
-              -1.5358057829097371,
-              53.79887792876467
+              -1.5337407923848319,
+              53.799706043059174
             ],
             [
-              -1.5359242710644598,
-              53.7988909887142
+              -1.5337809725704237,
+              53.79969848336108
             ],
             [
-              -1.5359501925369758,
-              53.79888887081162
+              -1.5338197078527898,
+              53.79968320208699
             ],
             [
-              -1.5359314194529157,
-              53.79880869448465
+              -1.5338027953290478,
+              53.7996682445687
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 313,
-        "id": 345,
+        "dst_i": 288,
+        "id": 301,
         "layer": 0,
         "osm_way_ids": [
-          673667995
+          663639111
         ],
-        "src_i": 2,
+        "src_i": 286,
         "type": "road"
       },
       "type": "Feature"
@@ -12890,45 +12704,45 @@
         "coordinates": [
           [
             [
-              -1.5338847254528403,
-              53.79635783604547
+              -1.533649207749602,
+              53.79970254739578
             ],
             [
-              -1.5338657057151208,
-              53.79634146299485
+              -1.5336328692285113,
+              53.799704924303
             ],
             [
-              -1.533740178795791,
-              53.796120792835396
+              -1.533603590525634,
+              53.7997318383031
             ],
             [
-              -1.5336102836706078,
-              53.79614657279085
+              -1.5336292090100132,
+              53.799741561769174
             ],
             [
-              -1.533741894713531,
-              53.79637793768381
+              -1.533651931597727,
+              53.79972067502301
             ],
             [
-              -1.5337717367611854,
-              53.79640362770709
+              -1.5336564886002082,
+              53.79972001222293
             ],
             [
-              -1.5338847254528403,
-              53.79635783604547
+              -1.533649207749602,
+              53.79970254739578
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 314,
-        "id": 347,
+        "dst_i": 285,
+        "id": 302,
         "layer": 0,
         "osm_way_ids": [
-          673731116
+          663639111
         ],
-        "src_i": 434,
+        "src_i": 288,
         "type": "road"
       },
       "type": "Feature"
@@ -12938,37 +12752,37 @@
         "coordinates": [
           [
             [
-              -1.5336917829117733,
-              53.79612053832736
+              -1.5335838841163079,
+              53.79974987869613
             ],
             [
-              -1.5336114895329416,
-              53.79603692119561
+              -1.5334748936500173,
+              53.799849656638585
             ],
             [
-              -1.5335711235958287,
-              53.79605044519513
+              -1.5335004816833275,
+              53.79985940888295
             ],
             [
-              -1.5336514169746605,
-              53.79613406232688
+              -1.533609472149618,
+              53.7997596309405
             ],
             [
-              -1.5336917829117733,
-              53.79612053832736
+              -1.5335838841163079,
+              53.79974987869613
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 315,
-        "id": 348,
+        "dst_i": 59,
+        "id": 303,
         "layer": 0,
         "osm_way_ids": [
-          673731118
+          663639111
         ],
-        "src_i": 314,
+        "src_i": 285,
         "type": "road"
       },
       "type": "Feature"
@@ -12978,45 +12792,45 @@
         "coordinates": [
           [
             [
-              -1.533592923516151,
-              53.796108886715594
+              -1.5334130323032726,
+              53.79990672489483
             ],
             [
-              -1.5335697137113324,
-              53.79608031526562
-            ],
+              -1.5333754678645108,
+              53.79994164555591
+            ],
             [
-              -1.5334838082004774,
-              53.79603241919125
+              -1.5333478639704305,
+              53.799934733369426
             ],
             [
-              -1.5334211003140135,
-              53.796071658395064
+              -1.5333359789181862,
+              53.79995129347896
             ],
             [
-              -1.5334946853223368,
-              53.796112685450396
+              -1.533387331601007,
+              53.79996415377907
             ],
             [
-              -1.5335105625097316,
-              53.79613222950928
+              -1.5334387330055381,
+              53.799916371019236
             ],
             [
-              -1.533592923516151,
-              53.796108886715594
+              -1.5334130323032726,
+              53.79990672489483
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 316,
-        "id": 349,
+        "dst_i": 289,
+        "id": 304,
         "layer": 0,
         "osm_way_ids": [
-          673731126
+          663639111
         ],
-        "src_i": 227,
+        "src_i": 59,
         "type": "road"
       },
       "type": "Feature"
@@ -13026,61 +12840,45 @@
         "coordinates": [
           [
             [
-              -1.5345314574374354,
-              53.79676145611489
-            ],
-            [
-              -1.5345687645646637,
-              53.79677094935462
-            ],
-            [
-              -1.534622104179739,
-              53.796770841436015
-            ],
-            [
-              -1.5346738694745452,
-              53.79675987960398
-            ],
-            [
-              -1.5347416200580415,
-              53.79672253617028
+              -1.5333235746752147,
+              53.79992848308371
             ],
             [
-              -1.5347260382460162,
-              53.79671267420866
+              -1.533259210250595,
+              53.79991089145221
             ],
             [
-              -1.534661731678428,
-              53.79674812007361
+              -1.533131107170825,
+              53.79998713504545
             ],
             [
-              -1.5346180968190541,
-              53.796757358805294
+              -1.5331527213396259,
+              53.799999804689364
             ],
             [
-              -1.5345734357586538,
-              53.796757450536106
+              -1.5332657907266136,
+              53.7999325093469
             ],
             [
-              -1.5345404922696182,
-              53.796749067059345
+              -1.5333107882713268,
+              53.79994480757096
             ],
             [
-              -1.5345314574374354,
-              53.79676145611489
+              -1.5333235746752147,
+              53.79992848308371
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 322,
-        "id": 350,
+        "dst_i": 290,
+        "id": 305,
         "layer": 0,
         "osm_way_ids": [
-          673731129
+          663639111
         ],
-        "src_i": 317,
+        "src_i": 289,
         "type": "road"
       },
       "type": "Feature"
@@ -13090,61 +12888,37 @@
         "coordinates": [
           [
             [
-              -1.5347646578143201,
-              53.79670912908258
-            ],
-            [
-              -1.5348492569743133,
-              53.79665632181248
-            ],
-            [
-              -1.534943772524938,
-              53.796620171778656
-            ],
-            [
-              -1.5350123544226189,
-              53.796607719770584
-            ],
-            [
-              -1.5350890621880717,
-              53.79660658302797
-            ],
-            [
-              -1.535088489707974,
-              53.79659309679997
-            ],
-            [
-              -1.5350086454824103,
-              53.7965942803073
+              -1.5341439873771585,
+              53.799568604222465
             ],
             [
-              -1.5349340281828467,
-              53.796607827689186
+              -1.5341564601350353,
+              53.799574487584934
             ],
             [
-              -1.5348345430177557,
-              53.79664587888906
+              -1.5341849623356523,
+              53.79955340568597
             ],
             [
-              -1.5347480680719097,
-              53.79669985707599
+              -1.5341724895777753,
+              53.79954752232349
             ],
             [
-              -1.5347646578143201,
-              53.79670912908258
+              -1.5341439873771585,
+              53.799568604222465
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 319,
-        "id": 351,
+        "dst_i": 291,
+        "id": 306,
         "layer": 0,
         "osm_way_ids": [
-          673731129
+          663639112
         ],
-        "src_i": 322,
+        "src_i": 90,
         "type": "road"
       },
       "type": "Feature"
@@ -13154,61 +12928,37 @@
         "coordinates": [
           [
             [
-              -1.5351415004515037,
-              53.79657499705171
-            ],
-            [
-              -1.5354641493211254,
-              53.796606908582426
-            ],
-            [
-              -1.5355114443989972,
-              53.79662588516933
-            ],
-            [
-              -1.5356066694595305,
-              53.79664524037066
-            ],
-            [
-              -1.5358678878650343,
-              53.79664581143993
-            ],
-            [
-              -1.5358679731280276,
-              53.79663232161464
-            ],
-            [
-              -1.535610530655084,
-              53.796631759538585
+              -1.5344491740812423,
+              53.79966402495135
             ],
             [
-              -1.5355217551309726,
-              53.79661371554827
+              -1.5344681085559682,
+              53.79967468101401
             ],
             [
-              -1.5354728491915488,
-              53.796594091449755
+              -1.5344996162770987,
+              53.79965514774698
             ],
             [
-              -1.535145273338957,
-              53.796561692486684
+              -1.5344806818023728,
+              53.79964449168432
             ],
             [
-              -1.5351415004515037,
-              53.79657499705171
+              -1.5344491740812423,
+              53.79966402495135
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 318,
-        "id": 352,
+        "dst_i": 293,
+        "id": 308,
         "layer": 0,
         "osm_way_ids": [
-          673731129
+          663639112
         ],
-        "src_i": 319,
+        "src_i": 291,
         "type": "road"
       },
       "type": "Feature"
@@ -13218,37 +12968,45 @@
         "coordinates": [
           [
             [
-              -1.535089116999996,
-              53.79660850487842
+              -1.5355408098874213,
+              53.798412040561004
             ],
             [
-              -1.5350895372247486,
-              53.79662307029245
+              -1.5354918795871422,
+              53.79825558017131
             ],
             [
-              -1.5351352077380875,
-              53.796622609839744
+              -1.5353921706066938,
+              53.79807301607035
             ],
             [
-              -1.5351347875133348,
-              53.79660804442572
+              -1.5353052297594916,
+              53.79808958337445
             ],
             [
-              -1.535089116999996,
-              53.79660850487842
+              -1.5354031208111187,
+              53.798268819985175
+            ],
+            [
+              -1.5354509761886608,
+              53.79842184136874
+            ],
+            [
+              -1.5355408098874213,
+              53.798412040561004
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 320,
-        "id": 353,
+        "dst_i": 246,
+        "id": 309,
         "layer": 0,
         "osm_way_ids": [
-          673731130
+          663639113
         ],
-        "src_i": 319,
+        "src_i": 7,
         "type": "road"
       },
       "type": "Feature"
@@ -13258,45 +13016,37 @@
         "coordinates": [
           [
             [
-              -1.5346564377600762,
-              53.796646565970825
-            ],
-            [
-              -1.5346835163732155,
-              53.796694824471835
-            ],
-            [
-              -1.5347260352009093,
-              53.79671267420866
+              -1.535362054499418,
+              53.79802756435232
             ],
             [
-              -1.5347436755052013,
-              53.79669801346653
+              -1.5353099725134938,
+              53.79794920555447
             ],
             [
-              -1.5347092840678331,
-              53.796683575756184
+              -1.5352249379032132,
+              53.797968924081765
             ],
             [
-              -1.5346853419148043,
-              53.79664090743878
+              -1.5352770198891375,
+              53.798047282879615
             ],
             [
-              -1.5346564377600762,
-              53.796646565970825
+              -1.535362054499418,
+              53.79802756435232
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 322,
-        "id": 355,
+        "dst_i": 327,
+        "id": 310,
         "layer": 0,
         "osm_way_ids": [
-          673731132
+          663639113
         ],
-        "src_i": 117,
+        "src_i": 246,
         "type": "road"
       },
       "type": "Feature"
@@ -13306,37 +13056,37 @@
         "coordinates": [
           [
             [
-              -1.5357171809567192,
-              53.79783390352107
+              -1.5352909862719504,
+              53.797925863660105
             ],
             [
-              -1.5354731795856478,
-              53.79788153879215
+              -1.5350960080769187,
+              53.79772509548956
             ],
             [
-              -1.535482735131111,
-              53.79789861691097
+              -1.5350167652599687,
+              53.79775194383919
             ],
             [
-              -1.5357267365021825,
-              53.79785098163989
+              -1.5352117434550003,
+              53.797952712009725
             ],
             [
-              -1.5357171809567192,
-              53.79783390352107
+              -1.5352909862719504,
+              53.797925863660105
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 328,
-        "id": 357,
+        "dst_i": 28,
+        "id": 311,
         "layer": 0,
         "osm_way_ids": [
-          673731135
+          663639113
         ],
-        "src_i": 324,
+        "src_i": 327,
         "type": "road"
       },
       "type": "Feature"
@@ -13346,69 +13096,45 @@
         "coordinates": [
           [
             [
-              -1.5357994369069503,
-              53.79791820323798
-            ],
-            [
-              -1.5357217379592003,
-              53.79796504440801
-            ],
-            [
-              -1.5356970467098732,
-              53.798025736930654
-            ],
-            [
-              -1.5357003963274671,
-              53.798086359306204
-            ],
-            [
-              -1.5357390676625882,
-              53.79814672807304
-            ],
-            [
-              -1.5358559449557587,
-              53.79822061544347
-            ],
-            [
-              -1.5359226967441906,
-              53.798183777428555
+              -1.535317819753984,
+              53.7988784773509
             ],
             [
-              -1.535818130818231,
-              53.798117672788
+              -1.5353154049842097,
+              53.79886577083479
             ],
             [
-              -1.5357912044604367,
-              53.79807564119035
+              -1.5353399241849968,
+              53.79875724788826
             ],
             [
-              -1.5357887531493792,
-              53.7980312623631
+              -1.535317286860276,
+              53.79875546363404
             ],
             [
-              -1.5358046623103967,
-              53.797992155359566
+              -1.5352923961564469,
+              53.798865628741964
             ],
             [
-              -1.5358646905027857,
-              53.79795596755423
+              -1.5352951245722324,
+              53.7988799828154
             ],
             [
-              -1.5357994369069503,
-              53.79791820323798
+              -1.535317819753984,
+              53.7988784773509
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 128,
-        "id": 358,
+        "dst_i": 394,
+        "id": 312,
         "layer": 0,
         "osm_way_ids": [
-          673731136
+          663639114
         ],
-        "src_i": 119,
+        "src_i": 294,
         "type": "road"
       },
       "type": "Feature"
@@ -13418,37 +13144,37 @@
         "coordinates": [
           [
             [
-              -1.535890178047568,
-              53.79823853622671
+              -1.5353440624852785,
+              53.798742281376754
             ],
             [
-              -1.5360410691848507,
-              53.79830659779125
+              -1.5353663085137623,
+              53.79867263340876
             ],
             [
-              -1.5360965144913499,
-              53.79826371273732
+              -1.5353438660758834,
+              53.79867013329447
             ],
             [
-              -1.5359456233540671,
-              53.798195651172776
+              -1.5353216200473998,
+              53.79873978126247
             ],
             [
-              -1.535890178047568,
-              53.79823853622671
+              -1.5353440624852785,
+              53.798742281376754
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 342,
-        "id": 359,
+        "dst_i": 295,
+        "id": 313,
         "layer": 0,
         "osm_way_ids": [
-          673731136
+          663639114
         ],
-        "src_i": 128,
+        "src_i": 394,
         "type": "road"
       },
       "type": "Feature"
@@ -13458,53 +13184,37 @@
         "coordinates": [
           [
             [
-              -1.5360788559164165,
-              53.79832092668368
-            ],
-            [
-              -1.536233710260334,
-              53.79837016544533
-            ],
-            [
-              -1.5363153373959897,
-              53.79837679344615
-            ],
-            [
-              -1.5363152673585307,
-              53.79837720893278
-            ],
-            [
-              -1.5364061820702422,
-              53.798382495145646
+              -1.5354056771783642,
+              53.79889326399806
             ],
             [
-              -1.536414863670024,
-              53.79833040643358
+              -1.5354571699361026,
+              53.798786519010505
             ],
             [
-              -1.5362624895656791,
-              53.79831803536446
+              -1.5353693125117225,
+              53.79877173236334
             ],
             [
-              -1.5361221573365844,
-              53.79827341372035
+              -1.535317819753984,
+              53.7988784773509
             ],
             [
-              -1.5360788559164165,
-              53.79832092668368
+              -1.5354056771783642,
+              53.79889326399806
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 281,
-        "id": 360,
+        "dst_i": 241,
+        "id": 314,
         "layer": 0,
         "osm_way_ids": [
-          673731136
+          663639115
         ],
-        "src_i": 342,
+        "src_i": 294,
         "type": "road"
       },
       "type": "Feature"
@@ -13514,61 +13224,69 @@
         "coordinates": [
           [
             [
-              -1.536381693320524,
-              53.79846517158691
+              -1.5348343542211276,
+              53.799342155921174
             ],
             [
-              -1.536427957629709,
-              53.798502573476526
+              -1.535060260044425,
+              53.79927031270894
             ],
             [
-              -1.5364820600440638,
-              53.79853034273155
+              -1.5351408427084126,
+              53.79923120390677
             ],
             [
-              -1.5366445271552402,
-              53.79857390047811
+              -1.5353397171177272,
+              53.799108003130996
             ],
             [
-              -1.5367970748306785,
-              53.7985994951733
+              -1.5355347181510608,
+              53.798899856925345
             ],
             [
-              -1.5368220355719666,
-              53.798547589922855
+              -1.5355562424892084,
+              53.798859122149565
             ],
             [
-              -1.5366760714176537,
-              53.79852309959469
+              -1.5354690367177055,
+              53.7988430458751
             ],
             [
-              -1.5365319388951433,
-              53.798484457540475
+              -1.5354502803817334,
+              53.79887854300138
             ],
             [
-              -1.5364956412208535,
-              53.79846582719242
+              -1.5352654835016335,
+              53.799075796622766
             ],
             [
-              -1.5364554549450478,
-              53.79843333919651
+              -1.535078558091808,
+              53.799191595981064
             ],
             [
-              -1.536381693320524,
-              53.79846517158691
+              -1.5350091387897287,
+              53.799225287269394
+            ],
+            [
+              -1.534791046710746,
+              53.799294644756486
+            ],
+            [
+              -1.5348343542211276,
+              53.799342155921174
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 75,
-        "id": 361,
+        "dst_i": 392,
+        "id": 315,
         "layer": 0,
         "osm_way_ids": [
-          673731136
+          663639116
         ],
-        "src_i": 281,
+        "src_i": 77,
         "type": "road"
       },
       "type": "Feature"
@@ -13578,37 +13296,37 @@
         "coordinates": [
           [
             [
-              -1.5351637510476477,
-              53.797986156883915
+              -1.5355639131134984,
+              53.79884440025356
             ],
             [
-              -1.5351777981257935,
-              53.79798219447257
+              -1.5355835129440827,
+              53.79879620020846
             ],
             [
-              -1.5351646767601463,
-              53.79796596351477
+              -1.5354946871757074,
+              53.79878359891299
             ],
             [
-              -1.5351506296820003,
-              53.797969925926125
+              -1.5354750873451228,
+              53.79883179895809
             ],
             [
-              -1.5351637510476477,
-              53.797986156883915
+              -1.5355639131134984,
+              53.79884440025356
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 399,
-        "id": 363,
+        "dst_i": 313,
+        "id": 316,
         "layer": 0,
         "osm_way_ids": [
-          673734329
+          663639116
         ],
-        "src_i": 326,
+        "src_i": 392,
         "type": "road"
       },
       "type": "Feature"
@@ -13618,37 +13336,45 @@
         "coordinates": [
           [
             [
-              -1.535198900716635,
-              53.79797624995622
+              -1.5348702651668407,
+              53.79935120399666
             ],
             [
-              -1.5352248419823458,
-              53.797968951061414
+              -1.5352190958656189,
+              53.79915269672084
             ],
             [
-              -1.5352117480226608,
-              53.797952712909044
+              -1.5353906906847385,
+              53.79899131074627
             ],
             [
-              -1.5351858067569497,
-              53.79796001180385
+              -1.5352553082769154,
+              53.798941089026016
             ],
             [
-              -1.535198900716635,
-              53.79797624995622
+              -1.5350941033625505,
+              53.79909270297115
+            ],
+            [
+              -1.5347593471478802,
+              53.79928320088803
+            ],
+            [
+              -1.5348702651668407,
+              53.79935120399666
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 327,
-        "id": 364,
+        "dst_i": 294,
+        "id": 318,
         "layer": 0,
         "osm_way_ids": [
-          673734329
+          663639118
         ],
-        "src_i": 399,
+        "src_i": 77,
         "type": "road"
       },
       "type": "Feature"
@@ -13658,37 +13384,61 @@
         "coordinates": [
           [
             [
-              -1.5353076125556435,
-              53.79794565503245
+              -1.5339278380763801,
+              53.79718837131396
             ],
             [
-              -1.5353381275719238,
-              53.797937064711704
+              -1.5338446899098264,
+              53.79720641890156
             ],
             [
-              -1.5353250275220247,
-              53.79792082835798
+              -1.5337877281400891,
+              53.797228600670955
             ],
             [
-              -1.5352945125057447,
-              53.79792941867873
+              -1.5339945944324722,
+              53.79743578280376
             ],
             [
-              -1.5353076125556435,
-              53.79794565503245
+              -1.5340017336856075,
+              53.797437388992286
+            ],
+            [
+              -1.534012574266184,
+              53.79742058066997
+            ],
+            [
+              -1.534015404693051,
+              53.797421217389726
+            ],
+            [
+              -1.5338286726475139,
+              53.79723419984777
+            ],
+            [
+              -1.5338585086049543,
+              53.79722258151091
+            ],
+            [
+              -1.5339383406500904,
+              53.79720525338065
+            ],
+            [
+              -1.5339278380763801,
+              53.79718837131396
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 331,
-        "id": 365,
+        "dst_i": 299,
+        "id": 320,
         "layer": 0,
         "osm_way_ids": [
-          673734329
+          663641181
         ],
-        "src_i": 327,
+        "src_i": 298,
         "type": "road"
       },
       "type": "Feature"
@@ -13698,37 +13448,53 @@
         "coordinates": [
           [
             [
-              -1.535358755126088,
-              53.79793125239565
+              -1.5341401277041584,
+              53.79745108476225
             ],
             [
-              -1.5353802414003992,
-              53.79792519366544
+              -1.5342067013538363,
+              53.797432603701594
             ],
             [
-              -1.535367123079859,
-              53.79790896270765
+              -1.5343444361067424,
+              53.797416290006204
             ],
             [
-              -1.5353456368055478,
-              53.79791502143785
+              -1.5343420700586785,
+              53.79740421031732
             ],
             [
-              -1.535358755126088,
-              53.79793125239565
+              -1.534311819966699,
+              53.797406276958554
+            ],
+            [
+              -1.534310964291659,
+              53.79740190985244
+            ],
+            [
+              -1.5341971001317696,
+              53.79741539608045
+            ],
+            [
+              -1.5341271768644977,
+              53.79743480703973
+            ],
+            [
+              -1.5341401277041584,
+              53.79745108476225
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 328,
-        "id": 366,
+        "dst_i": 303,
+        "id": 321,
         "layer": 0,
         "osm_way_ids": [
-          673734329
+          663641181
         ],
-        "src_i": 331,
+        "src_i": 299,
         "type": "road"
       },
       "type": "Feature"
@@ -13738,37 +13504,37 @@
         "coordinates": [
           [
             [
-              -1.5352991836997347,
-              53.79815352874363
+              -1.5347501022033212,
+              53.797472730535915
             ],
             [
-              -1.5352969683844624,
-              53.798154174456606
+              -1.5346126993670677,
+              53.79734673017174
             ],
             [
-              -1.5353104429825104,
-              53.79817030469037
+              -1.5345870991533297,
+              53.7973564698256
             ],
             [
-              -1.5353126582977827,
-              53.7981696589774
+              -1.5347245019895834,
+              53.79748247018978
             ],
             [
-              -1.5352991836997347,
-              53.79815352874363
+              -1.5347501022033212,
+              53.797472730535915
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 395,
-        "id": 368,
+        "dst_i": 305,
+        "id": 322,
         "layer": 0,
         "osm_way_ids": [
-          673734330
+          663641181
         ],
-        "src_i": 329,
+        "src_i": 303,
         "type": "road"
       },
       "type": "Feature"
@@ -13778,37 +13544,62 @@
         "coordinates": [
           [
             [
-              -1.535259691708303,
-              53.798170168892796
+              -1.5345944226354327,
+              53.797328254507015
             ],
             [
-              -1.5352208635501763,
-              53.79822436381625
+              -1.534462240634965,
+              53.797194743907426
             ],
             [
-              -1.5352489059396508,
-              53.79823137312948
+              -1.534352405151509,
+              53.7971422091318
             ],
             [
-              -1.5352877340977775,
-              53.79817717820602
+              -1.534150628755315,
+              53.79713835284041
             ],
             [
-              -1.535259691708303,
-              53.798170168892796
+              -1.5339901150802173,
+              53.79717460899419
+            ],
+            [
+              -1.5340009922020765,
+              53.79719140832329
+            ],
+            [
+              -1.5341557719408752,
+              53.79715644719274
+            ],
+            [
+              -1.5343411961129971,
+              53.797159990520186
+            ],
+            [
+              -1.5344387598156322,
+              53.79720665632249
+            ],
+            [
+              -1.5345681372726416,
+              53.79733733405876
+            ],
+            [
+              -1.5345944226354327,
+              53.797328254507015
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 371,
-        "id": 369,
+        "dst_i": 298,
+        "id": 323,
         "layer": 0,
         "osm_way_ids": [
-          673734330
+          663641181,
+          663641181
         ],
-        "src_i": 395,
+        "src_i": 305,
         "type": "road"
       },
       "type": "Feature"
@@ -13818,37 +13609,37 @@
         "coordinates": [
           [
             [
-              -1.5351566940123986,
-              53.79824787568242
+              -1.5322962652298187,
+              53.7966795413991
             ],
             [
-              -1.53510991203504,
-              53.79826501765309
+              -1.5322947046125306,
+              53.7966757012955
             ],
             [
-              -1.5351259658386354,
-              53.79828030252447
+              -1.532265093993001,
+              53.79667989932913
             ],
             [
-              -1.535172747815994,
-              53.7982631605538
+              -1.532266654610289,
+              53.79668373943273
             ],
             [
-              -1.5351566940123986,
-              53.79824787568242
+              -1.5322962652298187,
+              53.7966795413991
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 262,
-        "id": 370,
+        "dst_i": 415,
+        "id": 324,
         "layer": 0,
         "osm_way_ids": [
-          673734330
+          668984457
         ],
-        "src_i": 371,
+        "src_i": 300,
         "type": "road"
       },
       "type": "Feature"
@@ -13858,53 +13649,37 @@
         "coordinates": [
           [
             [
-              -1.5357709864731508,
-              53.7982789769243
-            ],
-            [
-              -1.5355129045277576,
-              53.79810404086988
-            ],
-            [
-              -1.535408999389996,
-              53.79799993808944
-            ],
-            [
-              -1.5353590931329544,
-              53.79793171374767
-            ],
-            [
-              -1.5353381275719238,
-              53.797937064711704
+              -1.5322947518116876,
+              53.796675821804605
             ],
             [
-              -1.5353886002188493,
-              53.79800606247012
+              -1.5322926522104776,
+              53.79667032155317
             ],
             [
-              -1.5354942958794702,
-              53.798111958498005
+              -1.532262947192634,
+              53.79667427856859
             ],
             [
-              -1.5357537694387184,
-              53.798287838840196
+              -1.532265046793844,
+              53.79667977882002
             ],
             [
-              -1.5357709864731508,
-              53.7982789769243
+              -1.5322947518116876,
+              53.796675821804605
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 331,
-        "id": 371,
+        "dst_i": 301,
+        "id": 325,
         "layer": 0,
         "osm_way_ids": [
-          673734331
+          668984457
         ],
-        "src_i": 330,
+        "src_i": 415,
         "type": "road"
       },
       "type": "Feature"
@@ -13914,45 +13689,37 @@
         "coordinates": [
           [
             [
-              -1.5351768754584016,
-              53.797698388333444
-            ],
-            [
-              -1.5351430412755969,
-              53.79770840497839
-            ],
-            [
-              -1.5350974514575908,
-              53.79770712704227
+              -1.5326202158826419,
+              53.796692726354344
             ],
             [
-              -1.5350960080769187,
-              53.79772509369092
+              -1.532755814493055,
+              53.796674541170525
             ],
             [
-              -1.5351495578043703,
-              53.79772659465881
+              -1.5327404823797959,
+              53.79663465445509
             ],
             [
-              -1.5351905205824363,
-              53.7977144682052
+              -1.5326048837693826,
+              53.79665283963891
             ],
             [
-              -1.5351768754584016,
-              53.797698388333444
+              -1.5326202158826419,
+              53.796692726354344
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 28,
-        "id": 372,
+        "dst_i": 453,
+        "id": 326,
         "layer": 0,
         "osm_way_ids": [
-          673734333
+          668984459
         ],
-        "src_i": 35,
+        "src_i": 12,
         "type": "road"
       },
       "type": "Feature"
@@ -13962,45 +13729,37 @@
         "coordinates": [
           [
             [
-              -1.5343787620743123,
-              53.79777576597134
-            ],
-            [
-              -1.5346028545364485,
-              53.79781964117844
-            ],
-            [
-              -1.5350325495716028,
-              53.79786468370511
+              -1.532786102648871,
+              53.796671946627455
             ],
             [
-              -1.5350378693733633,
-              53.797846974262455
+              -1.5328555006352018,
+              53.79666818656349
             ],
             [
-              -1.534610345499431,
-              53.79780215836487
+              -1.5328491759481633,
+              53.79662745628431
             ],
             [
-              -1.5343883419806308,
-              53.79775869324844
+              -1.5327797779618324,
+              53.79663121634828
             ],
             [
-              -1.5343787620743123,
-              53.79777576597134
+              -1.532786102648871,
+              53.796671946627455
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 333,
-        "id": 373,
+        "dst_i": 302,
+        "id": 327,
         "layer": 0,
         "osm_way_ids": [
-          673736353
+          668984459
         ],
-        "src_i": 332,
+        "src_i": 453,
         "type": "road"
       },
       "type": "Feature"
@@ -14010,37 +13769,45 @@
         "coordinates": [
           [
             [
-              -1.5352822879240806,
-              53.79767543674469
+              -1.5328952864794496,
+              53.796678276053484
             ],
             [
-              -1.5352807729833962,
-              53.79769614182787
+              -1.5334843075980096,
+              53.796598349737934
             ],
             [
-              -1.5353271377811089,
-              53.797697325335214
+              -1.5337851504570954,
+              53.796545655782374
             ],
             [
-              -1.5353286527217933,
-              53.79767662025203
+              -1.5337522693927512,
+              53.79648016178125
             ],
             [
-              -1.5352822879240806,
-              53.79767543674469
+              -1.5334548918653217,
+              53.796532249593994
+            ],
+            [
+              -1.5328693908903424,
+              53.796611697470404
+            ],
+            [
+              -1.5328952864794496,
+              53.796678276053484
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 335,
-        "id": 374,
+        "dst_i": 434,
+        "id": 328,
         "layer": 0,
         "osm_way_ids": [
-          673737341
+          668984461
         ],
-        "src_i": 334,
+        "src_i": 302,
         "type": "road"
       },
       "type": "Feature"
@@ -14050,37 +13817,37 @@
         "coordinates": [
           [
             [
-              -1.5352762860183737,
-              53.79773350324801
+              -1.5347612990614055,
+              53.79747469465448
             ],
             [
-              -1.53527152499373,
-              53.79776005662012
+              -1.5346190986592254,
+              53.79734429480861
             ],
             [
-              -1.5353176735888527,
-              53.797762943442734
+              -1.5345550996474342,
+              53.797368644842585
             ],
             [
-              -1.5353224346134964,
-              53.797736390070625
+              -1.5346973000496145,
+              53.79749904468846
             ],
             [
-              -1.5352762860183737,
-              53.79773350324801
+              -1.5347612990614055,
+              53.79747469465448
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 62,
-        "id": 375,
+        "dst_i": 305,
+        "id": 332,
         "layer": 0,
         "osm_way_ids": [
-          673737341
+          668997030
         ],
-        "src_i": 335,
+        "src_i": 303,
         "type": "road"
       },
       "type": "Feature"
@@ -14090,37 +13857,37 @@
         "coordinates": [
           [
             [
-              -1.5360445299488465,
-              53.79659042851252
+              -1.534619704635499,
+              53.79734488296499
             ],
             [
-              -1.5360702002000433,
-              53.79727231759745
+              -1.5344091948727059,
+              53.797128349685295
             ],
             [
-              -1.5361006451788646,
-              53.79727191829862
+              -1.534343176955038,
+              53.79715074099664
             ],
             [
-              -1.5360749749276679,
-              53.7965900292137
+              -1.534553686717831,
+              53.79736727427634
             ],
             [
-              -1.5360445299488465,
-              53.79659042851252
+              -1.534619704635499,
+              53.79734488296499
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 337,
-        "id": 376,
+        "dst_i": 306,
+        "id": 333,
         "layer": 0,
         "osm_way_ids": [
-          692442629
+          668997030
         ],
-        "src_i": 499,
+        "src_i": 305,
         "type": "road"
       },
       "type": "Feature"
@@ -14130,69 +13897,61 @@
         "coordinates": [
           [
             [
-              -1.5364143033703537,
-              53.79839983136979
-            ],
-            [
-              -1.5364310073042728,
-              53.79839710102915
-            ],
-            [
-              -1.5366571156271793,
-              53.798408905525605
+              -1.534353001992462,
+              53.79706450504014
             ],
             [
-              -1.5366818845267325,
-              53.798388915403166
+              -1.5342994294267085,
+              53.79699150619954
             ],
             [
-              -1.5366865724688104,
-              53.79834901699655
+              -1.5341201837764937,
+              53.79670001715525
             ],
             [
-              -1.5366939903492274,
-              53.798343284720126
+              -1.5340828659913912,
+              53.79668398135026
             ],
             [
-              -1.536669796974879,
-              53.79833236155892
+              -1.5340796503585012,
+              53.796680053113136
             ],
             [
-              -1.536656827864577,
-              53.798342383599795
+              -1.5340111141374237,
+              53.796699627748964
             ],
             [
-              -1.5366521155616437,
-              53.79838248525311
+              -1.5340226398670536,
+              53.796713707529285
             ],
             [
-              -1.5366426848655637,
-              53.798390095313216
+              -1.5340565745383863,
+              53.79672829003042
             ],
             [
-              -1.536428193625494,
-              53.79837889875822
+              -1.5342286672324847,
+              53.79700814724802
             ],
             [
-              -1.5364061820702422,
-              53.798382496044965
+              -1.5342831533303094,
+              53.797082388951196
             ],
             [
-              -1.5364143033703537,
-              53.79839983136979
+              -1.534353001992462,
+              53.79706450504014
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 338,
-        "id": 377,
+        "dst_i": 361,
+        "id": 335,
         "layer": 0,
         "osm_way_ids": [
-          701166698
+          668997030
         ],
-        "src_i": 281,
+        "src_i": 306,
         "type": "road"
       },
       "type": "Feature"
@@ -14202,77 +13961,37 @@
         "coordinates": [
           [
             [
-              -1.5364554549450478,
-              53.798433340095826
+              -1.5339799398554992,
+              53.79657047796024
             ],
             [
-              -1.5364910613800704,
-              53.79843682586668
+              -1.533972564606579,
+              53.796562659257496
             ],
             [
-              -1.5366226678553334,
-              53.79844409778184
-            ],
-            [
-              -1.5366752385809155,
-              53.798436331239756
-            ],
-            [
-              -1.5367302788881965,
-              53.79838317233487
-            ],
-            [
-              -1.5367326099175311,
-              53.79834297355482
-            ],
-            [
-              -1.5367177421830747,
-              53.798332027910575
-            ],
-            [
-              -1.5366939903492274,
-              53.7983432838208
-            ],
-            [
-              -1.5367017903905607,
-              53.79834902598977
-            ],
-            [
-              -1.5367001201494241,
-              53.798377826766774
-            ],
-            [
-              -1.5366557620771606,
-              53.798420668653264
-            ],
-            [
-              -1.5366203322583383,
-              53.79842590270548
-            ],
-            [
-              -1.5364949378011588,
-              53.798418974331206
+              -1.533906062516913,
+              53.796584545150054
             ],
             [
-              -1.536460433694835,
-              53.798415596478954
+              -1.5339134377658334,
+              53.796592363852795
             ],
             [
-              -1.5364554549450478,
-              53.798433340095826
+              -1.5339799398554992,
+              53.79657047796024
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 338,
-        "id": 378,
+        "dst_i": 309,
+        "id": 337,
         "layer": 0,
         "osm_way_ids": [
-          701166699
+          668997032
         ],
-        "src_i": 281,
+        "src_i": 308,
         "type": "road"
       },
       "type": "Feature"
@@ -14282,45 +14001,37 @@
         "coordinates": [
           [
             [
-              -1.5362692238195963,
-              53.79820235291798
-            ],
-            [
-              -1.5362069544285264,
-              53.798195104385194
-            ],
-            [
-              -1.5361757161993568,
-              53.798183372733796
+              -1.5339216823927746,
+              53.79651643861943
             ],
             [
-              -1.5361593792008195,
-              53.798198551485214
+              -1.5339176506712344,
+              53.796513094941396
             ],
             [
-              -1.536195446969538,
-              53.79821209616913
+              -1.5338556431593582,
+              53.79653918066623
             ],
             [
-              -1.536263334582845,
-              53.79821999940811
+              -1.5338596748808984,
+              53.79654252434426
             ],
             [
-              -1.5362692238195963,
-              53.79820235291798
+              -1.5339216823927746,
+              53.79651643861943
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 341,
-        "id": 379,
+        "dst_i": 434,
+        "id": 338,
         "layer": 0,
         "osm_way_ids": [
-          701166700
+          668997032
         ],
-        "src_i": 339,
+        "src_i": 309,
         "type": "road"
       },
       "type": "Feature"
@@ -14330,101 +14041,37 @@
         "coordinates": [
           [
             [
-              -1.5361498891251546,
-              53.79817369603245
-            ],
-            [
-              -1.536059798114861,
-              53.798140026327836
-            ],
-            [
-              -1.5360550157744688,
-              53.79811985274377
-            ],
-            [
-              -1.5360710680555107,
-              53.798007190219515
-            ],
-            [
-              -1.5360851044757824,
-              53.79799373007184
-            ],
-            [
-              -1.5361911122598608,
-              53.797982332068784
-            ],
-            [
-              -1.5362874320363258,
-              53.797985063308744
-            ],
-            [
-              -1.536296474481276,
-              53.79799319047883
-            ],
-            [
-              -1.536296474481276,
-              53.79803177497646
-            ],
-            [
-              -1.536270452520232,
-              53.798194665516206
-            ],
-            [
-              -1.5363007696045632,
-              53.79819635444234
-            ],
-            [
-              -1.536326925550311,
-              53.79803262573477
-            ],
-            [
-              -1.536326925550311,
-              53.797987808937854
-            ],
-            [
-              -1.5363043689209233,
-              53.79796753732772
-            ],
-            [
-              -1.53618908726377,
-              53.79796426829339
-            ],
-            [
-              -1.5360662948504396,
-              53.79797747033575
-            ],
-            [
-              -1.536041332586598,
-              53.798001409379715
+              -1.5338426040115973,
+              53.79645674973978
             ],
             [
-              -1.5360243850441264,
-              53.7981203473707
+              -1.5338349881992317,
+              53.79645167756547
             ],
             [
-              -1.5360316004249344,
-              53.798150773221984
+              -1.5337780325197083,
+              53.796481513461735
             ],
             [
-              -1.5361336069385416,
-              53.79818889636759
+              -1.5337856483320742,
+              53.796486585636046
             ],
             [
-              -1.5361498891251546,
-              53.79817369603245
+              -1.5338426040115973,
+              53.79645674973978
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 339,
-        "id": 380,
+        "dst_i": 311,
+        "id": 339,
         "layer": 0,
         "osm_way_ids": [
-          701166700
+          668997032
         ],
-        "src_i": 341,
+        "src_i": 434,
         "type": "road"
       },
       "type": "Feature"
@@ -14434,53 +14081,45 @@
         "coordinates": [
           [
             [
-              -1.5361326370719928,
-              53.798189946775324
-            ],
-            [
-              -1.5360993236024685,
-              53.79822606893018
-            ],
-            [
-              -1.5361268483237693,
-              53.79823675107316
+              -1.533804444254436,
+              53.79641417854912
             ],
             [
-              -1.5360967961637384,
-              53.79826345822928
+              -1.5336454226817209,
+              53.7961458695213
             ],
             [
-              -1.536122155814031,
-              53.79827341372035
+              -1.5336016781984985,
+              53.796119664186676
             ],
             [
-              -1.5361691509488729,
-              53.79823164832192
+              -1.5335366286248258,
+              53.79615754901204
             ],
             [
-              -1.5361394763820981,
-              53.7982201316084
+              -1.5335659758426083,
+              53.79617512985168
             ],
             [
-              -1.5361593792008195,
-              53.798198551485214
+              -1.5337182220524632,
+              53.796432006702226
             ],
             [
-              -1.5361326370719928,
-              53.798189946775324
+              -1.533804444254436,
+              53.79641417854912
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 342,
-        "id": 382,
+        "dst_i": 227,
+        "id": 340,
         "layer": 0,
         "osm_way_ids": [
-          701166702
+          668997033
         ],
-        "src_i": 341,
+        "src_i": 435,
         "type": "road"
       },
       "type": "Feature"
@@ -14490,37 +14129,37 @@
         "coordinates": [
           [
             [
-              -1.532193374112656,
-              53.79733742848754
+              -1.5340806582888862,
+              53.796650299954464
             ],
             [
-              -1.5321859364390442,
-              53.79736573373829
+              -1.534061888249933,
+              53.796627386137224
             ],
             [
-              -1.5322461168867783,
-              53.79737125017751
+              -1.5339796551380036,
+              53.79665088721153
             ],
             [
-              -1.5322535545603901,
-              53.79734294492676
+              -1.533998425176957,
+              53.796673801028774
             ],
             [
-              -1.532193374112656,
-              53.79733742848754
+              -1.5340806582888862,
+              53.796650299954464
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 346,
-        "id": 383,
+        "dst_i": 351,
+        "id": 341,
         "layer": 0,
         "osm_way_ids": [
-          701166705
+          668997034
         ],
-        "src_i": 343,
+        "src_i": 361,
         "type": "road"
       },
       "type": "Feature"
@@ -14530,37 +14169,37 @@
         "coordinates": [
           [
             [
-              -1.5321767874153527,
-              53.79740188647008
+              -1.5340511283646894,
+              53.79661548631267
             ],
             [
-              -1.5321073574553992,
-              53.797689437384705
+              -1.5340144637550177,
+              53.79657889740986
             ],
             [
-              -1.5321676505720887,
-              53.79769451675359
+              -1.5339358482300898,
+              53.79660638247924
             ],
             [
-              -1.532237080532042,
-              53.79740696583896
+              -1.5339725128397614,
+              53.79664297138205
             ],
             [
-              -1.5321767874153527,
-              53.79740188647008
+              -1.5340511283646894,
+              53.79661548631267
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 344,
-        "id": 384,
+        "dst_i": 308,
+        "id": 342,
         "layer": 0,
         "osm_way_ids": [
-          701166705
+          668997034
         ],
-        "src_i": 346,
+        "src_i": 351,
         "type": "road"
       },
       "type": "Feature"
@@ -14570,37 +14209,37 @@
         "coordinates": [
           [
             [
-              -1.532422746790163,
-              53.79737762816691
+              -1.535871685113343,
+              53.796433016640485
             ],
             [
-              -1.5322461168867783,
-              53.79737125107683
+              -1.535727503869122,
+              53.79643055070042
             ],
             [
-              -1.532242401856356,
-              53.79740715739448
+              -1.5357235391399338,
+              53.79651145547796
             ],
             [
-              -1.5324190317597406,
-              53.79741353448456
+              -1.5358677203841546,
+              53.796513921418025
             ],
             [
-              -1.532422746790163,
-              53.79737762816691
+              -1.535871685113343,
+              53.796433016640485
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 346,
-        "id": 385,
+        "dst_i": 8,
+        "id": 343,
         "layer": 0,
         "osm_way_ids": [
-          701166706
+          670751728
         ],
-        "src_i": 345,
+        "src_i": 49,
         "type": "road"
       },
       "type": "Feature"
@@ -14610,37 +14249,37 @@
         "coordinates": [
           [
             [
-              -1.5322123755797339,
-              53.797321354011714
+              -1.5356970299617851,
+              53.79643012352262
             ],
             [
-              -1.53208015551543,
-              53.797312539759865
+              -1.535193023660311,
+              53.79642534003057
             ],
             [
-              -1.5320767419505912,
-              53.797330412879056
+              -1.5351908220480197,
+              53.79650626819048
             ],
             [
-              -1.532208962014895,
-              53.797339227130905
+              -1.535694828349494,
+              53.79651105168252
             ],
             [
-              -1.5322123755797339,
-              53.797321354011714
+              -1.5356970299617851,
+              53.79643012352262
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 347,
-        "id": 386,
+        "dst_i": 269,
+        "id": 344,
         "layer": 0,
         "osm_way_ids": [
-          701166709
+          670751728
         ],
-        "src_i": 343,
+        "src_i": 8,
         "type": "road"
       },
       "type": "Feature"
@@ -14650,37 +14289,61 @@
         "coordinates": [
           [
             [
-              -1.5340969008891094,
-              53.79667633172
+              -1.5359314194529157,
+              53.79880869448465
             ],
             [
-              -1.5340983625404232,
-              53.796676016058086
+              -1.5359275293288466,
+              53.7988090119452
             ],
             [
-              -1.5340826771947633,
-              53.796650676770255
+              -1.5358482164744376,
+              53.798800270538415
             ],
             [
-              -1.5340812155434496,
-              53.79665099243216
+              -1.5357730982547884,
+              53.79877938649021
             ],
             [
-              -1.5340969008891094,
-              53.79667633172
+              -1.535721453241705,
+              53.79875399773969
+            ],
+            [
+              -1.5356337967943805,
+              53.79881620921666
+            ],
+            [
+              -1.5356989011799775,
+              53.79884821337751
+            ],
+            [
+              -1.5358057829097371,
+              53.79887792876467
+            ],
+            [
+              -1.5359242710644598,
+              53.7988909887142
+            ],
+            [
+              -1.5359501925369758,
+              53.79888887081162
+            ],
+            [
+              -1.5359314194529157,
+              53.79880869448465
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 348,
-        "id": 387,
+        "dst_i": 313,
+        "id": 345,
         "layer": 0,
         "osm_way_ids": [
-          701166712
+          673667995
         ],
-        "src_i": 361,
+        "src_i": 2,
         "type": "road"
       },
       "type": "Feature"
@@ -14690,53 +14353,45 @@
         "coordinates": [
           [
             [
-              -1.53422920773896,
-              53.796647744981556
-            ],
-            [
-              -1.5342624770544344,
-              53.79664054681078
-            ],
-            [
-              -1.534302450172757,
-              53.796729079634865
+              -1.5338847254528403,
+              53.79635783604547
             ],
             [
-              -1.5343585014555299,
-              53.796720062136316
+              -1.5338657057151208,
+              53.79634146299485
             ],
             [
-              -1.5343464976441161,
-              53.79669403037079
+              -1.533740178795791,
+              53.796120792835396
             ],
             [
-              -1.5343347496216824,
-              53.79669591984565
+              -1.5336102836706078,
+              53.79614657279085
             ],
             [
-              -1.5342937228963713,
-              53.79660505238247
+              -1.533741894713531,
+              53.79637793768381
             ],
             [
-              -1.5342134980324449,
-              53.79662241108965
+              -1.5337717367611854,
+              53.79640362770709
             ],
             [
-              -1.53422920773896,
-              53.796647744981556
+              -1.5338847254528403,
+              53.79635783604547
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 349,
-        "id": 388,
+        "dst_i": 314,
+        "id": 347,
         "layer": 0,
         "osm_way_ids": [
-          701166712
+          673731116
         ],
-        "src_i": 348,
+        "src_i": 434,
         "type": "road"
       },
       "type": "Feature"
@@ -14746,45 +14401,37 @@
         "coordinates": [
           [
             [
-              -1.5344489335177969,
-              53.79670338331633
-            ],
-            [
-              -1.534500054772493,
-              53.79669278391093
-            ],
-            [
-              -1.5345444813596616,
-              53.796581662824046
+              -1.5336917829117733,
+              53.79612053832736
             ],
             [
-              -1.5345000288890842,
-              53.79657546290034
+              -1.5336114895329416,
+              53.79603692119561
             ],
             [
-              -1.5344613453735354,
-              53.796672216423964
+              -1.5335711235958287,
+              53.79605044519513
             ],
             [
-              -1.5344338054267002,
-              53.79667792711667
+              -1.5336514169746605,
+              53.79613406232688
             ],
             [
-              -1.5344489335177969,
-              53.79670338331633
+              -1.5336917829117733,
+              53.79612053832736
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 114,
-        "id": 389,
+        "dst_i": 315,
+        "id": 348,
         "layer": 0,
         "osm_way_ids": [
-          701166712
+          673731118
         ],
-        "src_i": 349,
+        "src_i": 314,
         "type": "road"
       },
       "type": "Feature"
@@ -14794,53 +14441,45 @@
         "coordinates": [
           [
             [
-              -1.5368362592663127,
-              53.79790271422058
-            ],
-            [
-              -1.536806671485085,
-              53.79815220224415
-            ],
-            [
-              -1.5367819178110662,
-              53.79818727848788
+              -1.533592923516151,
+              53.796108886715594
             ],
             [
-              -1.5367254600065217,
-              53.79822933886383
+              -1.5335697137113324,
+              53.79608031526562
             ],
             [
-              -1.5367731829219136,
-              53.79825168700773
+              -1.5334838082004774,
+              53.79603241919125
             ],
             [
-              -1.536834881355439,
-              53.79820572177702
+              -1.5334211003140135,
+              53.796071658395064
             ],
             [
-              -1.536866727083436,
-              53.79816059831141
+              -1.5334946853223368,
+              53.796112685450396
             ],
             [
-              -1.5368970121941448,
-              53.79790522872401
+              -1.5335105625097316,
+              53.79613222950928
             ],
             [
-              -1.5368362592663127,
-              53.79790271422058
+              -1.533592923516151,
+              53.796108886715594
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 466,
-        "id": 390,
+        "dst_i": 316,
+        "id": 349,
         "layer": 0,
         "osm_way_ids": [
-          702394096
+          673731126
         ],
-        "src_i": 279,
+        "src_i": 227,
         "type": "road"
       },
       "type": "Feature"
@@ -14850,45 +14489,61 @@
         "coordinates": [
           [
             [
-              -1.5366903468788173,
-              53.79826289345526
+              -1.5345314574374354,
+              53.79676145611489
             ],
             [
-              -1.5366760257410501,
-              53.79827820350765
+              -1.5345687645646637,
+              53.79677094935462
             ],
             [
-              -1.5366636017048838,
-              53.798325969180375
+              -1.534622104179739,
+              53.796770841436015
             ],
             [
-              -1.5367237973781525,
-              53.798331431660294
+              -1.5346738694745452,
+              53.79675987960398
             ],
             [
-              -1.536734574011484,
-              53.798289997212244
+              -1.5347416200580415,
+              53.79672253617028
             ],
             [
-              -1.5367436545202702,
-              53.79828028993396
+              -1.5347260382460162,
+              53.79671267420866
             ],
             [
-              -1.5366903468788173,
-              53.79826289345526
+              -1.534661731678428,
+              53.79674812007361
+            ],
+            [
+              -1.5346180968190541,
+              53.796757358805294
+            ],
+            [
+              -1.5345734357586538,
+              53.796757450536106
+            ],
+            [
+              -1.5345404922696182,
+              53.796749067059345
+            ],
+            [
+              -1.5345314574374354,
+              53.79676145611489
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 338,
-        "id": 391,
+        "dst_i": 322,
+        "id": 350,
         "layer": 0,
         "osm_way_ids": [
-          702394096
+          673731129
         ],
-        "src_i": 466,
+        "src_i": 317,
         "type": "road"
       },
       "type": "Feature"
@@ -14898,37 +14553,61 @@
         "coordinates": [
           [
             [
-              -1.5342080899225843,
-              53.79656044872479
+              -1.5347646578143201,
+              53.79670912908258
             ],
             [
-              -1.5341892681168137,
-              53.79656777909585
+              -1.5348492569743133,
+              53.79665632181248
             ],
             [
-              -1.5342018413632184,
-              53.79657904040201
+              -1.534943772524938,
+              53.796620171778656
             ],
             [
-              -1.534220663168989,
-              53.796571710030946
+              -1.5350123544226189,
+              53.796607719770584
             ],
             [
-              -1.5342080899225843,
-              53.79656044872479
+              -1.5350890621880717,
+              53.79660658302797
+            ],
+            [
+              -1.535088489707974,
+              53.79659309679997
+            ],
+            [
+              -1.5350086454824103,
+              53.7965942803073
+            ],
+            [
+              -1.5349340281828467,
+              53.796607827689186
+            ],
+            [
+              -1.5348345430177557,
+              53.79664587888906
+            ],
+            [
+              -1.5347480680719097,
+              53.79669985707599
+            ],
+            [
+              -1.5347646578143201,
+              53.79670912908258
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 350,
-        "id": 392,
+        "dst_i": 319,
+        "id": 351,
         "layer": 0,
         "osm_way_ids": [
-          702394734
+          673731129
         ],
-        "src_i": 4,
+        "src_i": 322,
         "type": "road"
       },
       "type": "Feature"
@@ -14938,37 +14617,61 @@
         "coordinates": [
           [
             [
-              -1.5340620070091022,
-              53.796612134540744
+              -1.5351415004515037,
+              53.79657499705171
             ],
             [
-              -1.5340513247740848,
-              53.79661542695744
+              -1.5354641493211254,
+              53.796606908582426
             ],
             [
-              -1.53406189129504,
-              53.796627386137224
+              -1.5355114443989972,
+              53.79662588516933
             ],
             [
-              -1.5340725735300573,
-              53.79662409372053
+              -1.5356066694595305,
+              53.79664524037066
             ],
             [
-              -1.5340620070091022,
-              53.796612134540744
+              -1.5358678878650343,
+              53.79664581143993
+            ],
+            [
+              -1.5358679731280276,
+              53.79663232161464
+            ],
+            [
+              -1.535610530655084,
+              53.796631759538585
+            ],
+            [
+              -1.5355217551309726,
+              53.79661371554827
+            ],
+            [
+              -1.5354728491915488,
+              53.796594091449755
+            ],
+            [
+              -1.535145273338957,
+              53.796561692486684
+            ],
+            [
+              -1.5351415004515037,
+              53.79657499705171
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 351,
-        "id": 393,
+        "dst_i": 318,
+        "id": 352,
         "layer": 0,
         "osm_way_ids": [
-          702394734
+          673731129
         ],
-        "src_i": 350,
+        "src_i": 319,
         "type": "road"
       },
       "type": "Feature"
@@ -14978,37 +14681,37 @@
         "coordinates": [
           [
             [
-              -1.5345681372726416,
-              53.79733733405876
+              -1.535089116999996,
+              53.79660850487842
             ],
             [
-              -1.534013821237461,
-              53.79725070240072
+              -1.5350895372247486,
+              53.79662307029245
             ],
             [
-              -1.5340060318540019,
-              53.797268089886195
+              -1.5351352077380875,
+              53.796622609839744
             ],
             [
-              -1.5345603478891825,
-              53.79735472154424
+              -1.5351347875133348,
+              53.79660804442572
             ],
             [
-              -1.5345681372726416,
-              53.79733733405876
+              -1.535089116999996,
+              53.79660850487842
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 352,
-        "id": 394,
+        "dst_i": 320,
+        "id": 353,
         "layer": 0,
         "osm_way_ids": [
-          702394735
+          673731130
         ],
-        "src_i": 305,
+        "src_i": 319,
         "type": "road"
       },
       "type": "Feature"
@@ -15018,37 +14721,45 @@
         "coordinates": [
           [
             [
-              -1.5333953280517356,
-              53.797693170469024
+              -1.5346564377600762,
+              53.796646565970825
             ],
             [
-              -1.5333692482336605,
-              53.79771430452865
+              -1.5346835163732155,
+              53.796694824471835
             ],
             [
-              -1.5333938557425477,
-              53.797724898538114
+              -1.5347260352009093,
+              53.79671267420866
             ],
             [
-              -1.5334199355606228,
-              53.797703764478484
+              -1.5347436755052013,
+              53.79669801346653
             ],
             [
-              -1.5333953280517356,
-              53.797693170469024
+              -1.5347092840678331,
+              53.796683575756184
+            ],
+            [
+              -1.5346853419148043,
+              53.79664090743878
+            ],
+            [
+              -1.5346564377600762,
+              53.796646565970825
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 265,
-        "id": 395,
+        "dst_i": 322,
+        "id": 355,
         "layer": 0,
         "osm_way_ids": [
-          702394736
+          673731132
         ],
-        "src_i": 353,
+        "src_i": 117,
         "type": "road"
       },
       "type": "Feature"
@@ -15058,37 +14769,37 @@
         "coordinates": [
           [
             [
-              -1.5333616583047034,
-              53.797731788241556
+              -1.5357171809567192,
+              53.79783390352107
             ],
             [
-              -1.5333645937877585,
-              53.797756278569715
+              -1.5354731795856478,
+              53.79788153879215
             ],
             [
-              -1.5333949687291208,
-              53.79775500872749
+              -1.535482735131111,
+              53.79789861691097
             ],
             [
-              -1.533392033246066,
-              53.797730518399334
+              -1.5357267365021825,
+              53.79785098163989
             ],
             [
-              -1.5333616583047034,
-              53.797731788241556
+              -1.5357171809567192,
+              53.79783390352107
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 368,
-        "id": 396,
+        "dst_i": 328,
+        "id": 357,
         "layer": 0,
         "osm_way_ids": [
-          702394736
+          673731135
         ],
-        "src_i": 265,
+        "src_i": 324,
         "type": "road"
       },
       "type": "Feature"
@@ -15098,37 +14809,69 @@
         "coordinates": [
           [
             [
-              -1.5333807511249884,
-              53.79778320695897
+              -1.5357994369069503,
+              53.79791820323798
             ],
             [
-              -1.5335375863109468,
-              53.79793970242221
+              -1.5357217379592003,
+              53.79796504440801
             ],
             [
-              -1.5335637894558516,
-              53.79793054013287
+              -1.5356970467098732,
+              53.798025736930654
             ],
             [
-              -1.5334069542698932,
-              53.79777404466963
+              -1.5357003963274671,
+              53.798086359306204
             ],
             [
-              -1.5333807511249884,
-              53.79778320695897
+              -1.5357390676625882,
+              53.79814672807304
+            ],
+            [
+              -1.5358559449557587,
+              53.79822061544347
+            ],
+            [
+              -1.5359226967441906,
+              53.798183777428555
+            ],
+            [
+              -1.535818130818231,
+              53.798117672788
+            ],
+            [
+              -1.5357912044604367,
+              53.79807564119035
+            ],
+            [
+              -1.5357887531493792,
+              53.7980312623631
+            ],
+            [
+              -1.5358046623103967,
+              53.797992155359566
+            ],
+            [
+              -1.5358646905027857,
+              53.79795596755423
+            ],
+            [
+              -1.5357994369069503,
+              53.79791820323798
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 354,
-        "id": 397,
+        "dst_i": 128,
+        "id": 358,
         "layer": 0,
         "osm_way_ids": [
-          702394736
+          673731136
         ],
-        "src_i": 368,
+        "src_i": 119,
         "type": "road"
       },
       "type": "Feature"
@@ -15138,37 +14881,37 @@
         "coordinates": [
           [
             [
-              -1.5340017321630541,
-              53.797437388092966
+              -1.535890178047568,
+              53.79823853622671
             ],
             [
-              -1.5339074556533214,
-              53.79746926095285
+              -1.5360410691848507,
+              53.79830659779125
             ],
             [
-              -1.5339377087904078,
-              53.79750048180451
+              -1.5360965144913499,
+              53.79826371273732
             ],
             [
-              -1.5340319853001405,
-              53.79746860894463
+              -1.5359456233540671,
+              53.798195651172776
             ],
             [
-              -1.5340017321630541,
-              53.797437388092966
+              -1.535890178047568,
+              53.79823853622671
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 459,
-        "id": 398,
+        "dst_i": 342,
+        "id": 359,
         "layer": 0,
         "osm_way_ids": [
-          702394737
+          673731136
         ],
-        "src_i": 299,
+        "src_i": 128,
         "type": "road"
       },
       "type": "Feature"
@@ -15178,37 +14921,53 @@
         "coordinates": [
           [
             [
-              -1.533880798787488,
-              53.797478317122234
+              -1.5360788559164165,
+              53.79832092668368
             ],
             [
-              -1.5335629307357048,
-              53.797586928202286
+              -1.536233710260334,
+              53.79837016544533
             ],
             [
-              -1.5335934274813434,
-              53.79761806631635
+              -1.5363153373959897,
+              53.79837679344615
             ],
             [
-              -1.5339112955331267,
-              53.7975094552363
+              -1.5363152673585307,
+              53.79837720893278
             ],
             [
-              -1.533880798787488,
-              53.797478317122234
+              -1.5364061820702422,
+              53.798382495145646
+            ],
+            [
+              -1.536414863670024,
+              53.79833040643358
+            ],
+            [
+              -1.5362624895656791,
+              53.79831803536446
+            ],
+            [
+              -1.5361221573365844,
+              53.79827341372035
+            ],
+            [
+              -1.5360788559164165,
+              53.79832092668368
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 355,
-        "id": 399,
+        "dst_i": 281,
+        "id": 360,
         "layer": 0,
         "osm_way_ids": [
-          702394737
+          673731136
         ],
-        "src_i": 459,
+        "src_i": 342,
         "type": "road"
       },
       "type": "Feature"
@@ -15218,37 +14977,61 @@
         "coordinates": [
           [
             [
-              -1.5346538737800635,
-              53.799572208703786
+              -1.536381693320524,
+              53.79846517158691
             ],
             [
-              -1.5344999131750219,
-              53.799655315020814
+              -1.536427957629709,
+              53.798502573476526
             ],
             [
-              -1.5345153183708469,
-              53.79966527231053
+              -1.5364820600440638,
+              53.79853034273155
             ],
             [
-              -1.5346692789758882,
-              53.79958216599349
+              -1.5366445271552402,
+              53.79857390047811
             ],
             [
-              -1.5346538737800635,
-              53.799572208703786
+              -1.5367970748306785,
+              53.7985994951733
+            ],
+            [
+              -1.5368220355719666,
+              53.798547589922855
+            ],
+            [
+              -1.5366760714176537,
+              53.79852309959469
+            ],
+            [
+              -1.5365319388951433,
+              53.798484457540475
+            ],
+            [
+              -1.5364956412208535,
+              53.79846582719242
+            ],
+            [
+              -1.5364554549450478,
+              53.79843333919651
+            ],
+            [
+              -1.536381693320524,
+              53.79846517158691
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 293,
-        "id": 400,
+        "dst_i": 75,
+        "id": 361,
         "layer": 0,
         "osm_way_ids": [
-          717747209
+          673731136
         ],
-        "src_i": 356,
+        "src_i": 281,
         "type": "road"
       },
       "type": "Feature"
@@ -15258,45 +15041,37 @@
         "coordinates": [
           [
             [
-              -1.5344681085559682,
-              53.799674680114684
-            ],
-            [
-              -1.5340774274304616,
-              53.79994290010966
-            ],
-            [
-              -1.5340240390936757,
-              53.800010017386434
+              -1.5351637510476477,
+              53.797986156883915
             ],
             [
-              -1.5340447092793368,
-              53.80001575326015
+              -1.5351777981257935,
+              53.79798219447257
             ],
             [
-              -1.5340967729946196,
-              53.7999502997285
+              -1.5351646767601463,
+              53.79796596351477
             ],
             [
-              -1.5344854199887146,
-              53.79968347727942
+              -1.5351506296820003,
+              53.797969925926125
             ],
             [
-              -1.5344681085559682,
-              53.799674680114684
+              -1.5351637510476477,
+              53.797986156883915
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 357,
-        "id": 401,
+        "dst_i": 399,
+        "id": 363,
         "layer": 0,
         "osm_way_ids": [
-          717747209
+          673734329
         ],
-        "src_i": 293,
+        "src_i": 326,
         "type": "road"
       },
       "type": "Feature"
@@ -15306,37 +15081,37 @@
         "coordinates": [
           [
             [
-              -1.5339824551138015,
-              53.80006223470151
+              -1.535198900716635,
+              53.79797624995622
             ],
             [
-              -1.5339664104455268,
-              53.80008236062152
+              -1.5352248419823458,
+              53.797968951061414
             ],
             [
-              -1.5339870714958672,
-              53.8000881072871
+              -1.5352117480226608,
+              53.797952712909044
             ],
             [
-              -1.5340031161641419,
-              53.80006798136708
+              -1.5351858067569497,
+              53.79796001180385
             ],
             [
-              -1.5339824551138015,
-              53.80006223470151
+              -1.535198900716635,
+              53.79797624995622
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 358,
-        "id": 402,
+        "dst_i": 327,
+        "id": 364,
         "layer": 0,
         "osm_way_ids": [
-          717747209
+          673734329
         ],
-        "src_i": 357,
+        "src_i": 399,
         "type": "road"
       },
       "type": "Feature"
@@ -15346,37 +15121,37 @@
         "coordinates": [
           [
             [
-              -1.5339481215334643,
-              53.800105321203496
+              -1.5353076125556435,
+              53.79794565503245
             ],
             [
-              -1.5339181607266408,
-              53.8001429758025
+              -1.5353381275719238,
+              53.797937064711704
             ],
             [
-              -1.5339388309123017,
-              53.80014871347486
+              -1.5353250275220247,
+              53.79792082835798
             ],
             [
-              -1.5339687917191254,
-              53.800111058875856
+              -1.5352945125057447,
+              53.79792941867873
             ],
             [
-              -1.5339481215334643,
-              53.800105321203496
+              -1.5353076125556435,
+              53.79794565503245
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 359,
-        "id": 403,
+        "dst_i": 331,
+        "id": 365,
         "layer": 0,
         "osm_way_ids": [
-          717747209
+          673734329
         ],
-        "src_i": 358,
+        "src_i": 327,
         "type": "road"
       },
       "type": "Feature"
@@ -15386,37 +15161,37 @@
         "coordinates": [
           [
             [
-              -1.533898064543631,
-              53.80016823235274
+              -1.535358755126088,
+              53.79793125239565
             ],
             [
-              -1.533878641329247,
-              53.80019265163449
+              -1.5353802414003992,
+              53.79792519366544
             ],
             [
-              -1.533899311514908,
-              53.8001983875082
+              -1.535367123079859,
+              53.79790896270765
             ],
             [
-              -1.533918734729292,
-              53.80017396822645
+              -1.5353456368055478,
+              53.79791502143785
             ],
             [
-              -1.533898064543631,
-              53.80016823235274
+              -1.535358755126088,
+              53.79793125239565
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 360,
-        "id": 404,
+        "dst_i": 328,
+        "id": 366,
         "layer": 0,
         "osm_way_ids": [
-          717747209
+          673734329
         ],
-        "src_i": 359,
+        "src_i": 331,
         "type": "road"
       },
       "type": "Feature"
@@ -15426,37 +15201,37 @@
         "coordinates": [
           [
             [
-              -1.5339880261368815,
-              53.79669281358854
+              -1.5352991836997347,
+              53.79815352874363
             ],
             [
-              -1.5339880946517868,
-              53.79669289722546
+              -1.5352969683844624,
+              53.798154174456606
             ],
             [
-              -1.5340155067041321,
-              53.79668506233493
+              -1.5353104429825104,
+              53.79817030469037
             ],
             [
-              -1.5340154381892268,
-              53.79668497869801
+              -1.5353126582977827,
+              53.7981696589774
             ],
             [
-              -1.5339880261368815,
-              53.79669281358854
+              -1.5352991836997347,
+              53.79815352874363
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 362,
-        "id": 405,
+        "dst_i": 395,
+        "id": 368,
         "layer": 0,
         "osm_way_ids": [
-          737539059
+          673734330
         ],
-        "src_i": 361,
+        "src_i": 329,
         "type": "road"
       },
       "type": "Feature"
@@ -15466,37 +15241,37 @@
         "coordinates": [
           [
             [
-              -1.53640752648494,
-              53.79777817975074
+              -1.535259691708303,
+              53.798170168892796
             ],
             [
-              -1.5364279012952313,
-              53.79776495162806
+              -1.5352208635501763,
+              53.79822436381625
             ],
             [
-              -1.536393573805108,
-              53.79774650474163
+              -1.5352489059396508,
+              53.79823137312948
             ],
             [
-              -1.5363731989948166,
-              53.797759732864314
+              -1.5352877340977775,
+              53.79817717820602
             ],
             [
-              -1.53640752648494,
-              53.79777817975074
+              -1.535259691708303,
+              53.798170168892796
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 490,
-        "id": 406,
+        "dst_i": 371,
+        "id": 369,
         "layer": 0,
         "osm_way_ids": [
-          745724293
+          673734330
         ],
-        "src_i": 48,
+        "src_i": 395,
         "type": "road"
       },
       "type": "Feature"
@@ -15506,79 +15281,37 @@
         "coordinates": [
           [
             [
-              -1.536438291199986,
-              53.79768239749454
-            ],
-            [
-              -1.536443582073231,
-              53.797457427678104
-            ],
-            [
-              -1.5363730391267043,
-              53.797374862752726
-            ],
-            [
-              -1.5363602237943008,
-              53.79671879319342
-            ],
-            [
-              -1.5362652301618924,
-              53.79663175773994
-            ],
-            [
-              -1.536143792821134,
-              53.796571039136964
-            ],
-            [
-              -1.5361138076534548,
-              53.796591960956675
-            ],
-            [
-              -1.5362299708690565,
-              53.79665004274847
-            ],
-            [
-              -1.5363139747106502,
-              53.7967270075977
+              -1.5351566940123986,
+              53.79824787568242
             ],
             [
-              -1.5363267595919847,
-              53.797381537518284
+              -1.53510991203504,
+              53.79826501765309
             ],
             [
-              -1.5363970193435694,
-              53.79746377149328
+              -1.5351259658386354,
+              53.79828030252447
             ],
             [
-              -1.5363918868158835,
-              53.797682016182144
+              -1.535172747815994,
+              53.7982631605538
             ],
             [
-              -1.536438291199986,
-              53.79768239749454
+              -1.5351566940123986,
+              53.79824787568242
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 499,
-        "id": 407,
+        "dst_i": 262,
+        "id": 370,
         "layer": 0,
         "osm_way_ids": [
-          745724293,
-          745724293,
-          745724293,
-          745724293,
-          745724293,
-          745724293,
-          745724293,
-          745724293,
-          745724293,
-          745724293,
-          745724293
+          673734330
         ],
-        "src_i": 490,
+        "src_i": 371,
         "type": "road"
       },
       "type": "Feature"
@@ -15588,37 +15321,53 @@
         "coordinates": [
           [
             [
-              -1.5361043008297022,
-              53.796551167724985
+              -1.5357709864731508,
+              53.7982789769243
             ],
             [
-              -1.5360313385457407,
-              53.796514453816464
+              -1.5355129045277576,
+              53.79810404086988
             ],
             [
-              -1.5360012437542132,
-              53.79653531987823
+              -1.535408999389996,
+              53.79799993808944
             ],
             [
-              -1.5360742060381747,
-              53.79657203378675
+              -1.5353590931329544,
+              53.79793171374767
             ],
             [
-              -1.5361043008297022,
-              53.796551167724985
+              -1.5353381275719238,
+              53.797937064711704
+            ],
+            [
+              -1.5353886002188493,
+              53.79800606247012
+            ],
+            [
+              -1.5354942958794702,
+              53.798111958498005
+            ],
+            [
+              -1.5357537694387184,
+              53.798287838840196
+            ],
+            [
+              -1.5357709864731508,
+              53.7982789769243
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 49,
-        "id": 419,
+        "dst_i": 331,
+        "id": 371,
         "layer": 0,
         "osm_way_ids": [
-          745724293
+          673734331
         ],
-        "src_i": 499,
+        "src_i": 330,
         "type": "road"
       },
       "type": "Feature"
@@ -15628,37 +15377,45 @@
         "coordinates": [
           [
             [
-              -1.535905199559923,
-              53.79782196772365
+              -1.5351768754584016,
+              53.797698388333444
             ],
             [
-              -1.5358057204850457,
-              53.797856310120885
+              -1.5351430412755969,
+              53.79770840497839
             ],
             [
-              -1.5358287688991983,
-              53.797879602552555
+              -1.5350974514575908,
+              53.79770712704227
             ],
             [
-              -1.5359282479740757,
-              53.79784526015532
+              -1.5350960080769187,
+              53.79772509369092
             ],
             [
-              -1.535905199559923,
-              53.79782196772365
+              -1.5351495578043703,
+              53.79772659465881
+            ],
+            [
+              -1.5351905205824363,
+              53.7977144682052
+            ],
+            [
+              -1.5351768754584016,
+              53.797698388333444
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 363,
-        "id": 420,
+        "dst_i": 28,
+        "id": 372,
         "layer": 0,
         "osm_way_ids": [
-          745724294
+          673734333
         ],
-        "src_i": 36,
+        "src_i": 35,
         "type": "road"
       },
       "type": "Feature"
@@ -15668,45 +15425,45 @@
         "coordinates": [
           [
             [
-              -1.5363209845467423,
-              53.797778084422646
+              -1.5343787620743123,
+              53.79777576597134
             ],
             [
-              -1.5362593531055686,
-              53.79778638246384
+              -1.5346028545364485,
+              53.79781964117844
             ],
             [
-              -1.5359441556125397,
-              53.79779635863931
+              -1.5350325495716028,
+              53.79786468370511
             ],
             [
-              -1.5359490430091198,
-              53.79785024059882
+              -1.5350378693733633,
+              53.797846974262455
             ],
             [
-              -1.5362720481562493,
-              53.79784001800921
+              -1.534610345499431,
+              53.79780215836487
             ],
             [
-              -1.5363412893195747,
-              53.79783069474129
+              -1.5343883419806308,
+              53.79775869324844
             ],
             [
-              -1.5363209845467423,
-              53.797778084422646
+              -1.5343787620743123,
+              53.79777576597134
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 36,
-        "id": 422,
+        "dst_i": 333,
+        "id": 373,
         "layer": 0,
         "osm_way_ids": [
-          745724295
+          673736353
         ],
-        "src_i": 48,
+        "src_i": 332,
         "type": "road"
       },
       "type": "Feature"
@@ -15716,37 +15473,37 @@
         "coordinates": [
           [
             [
-              -1.5366081898945605,
-              53.7970356862767
+              -1.5352822879240806,
+              53.79767543674469
             ],
             [
-              -1.536563904904863,
-              53.79703497671189
+              -1.5352807729833962,
+              53.79769614182787
             ],
             [
-              -1.536563079680892,
-              53.797052955951045
+              -1.5353271377811089,
+              53.797697325335214
             ],
             [
-              -1.5366073646705898,
-              53.797053665515854
+              -1.5353286527217933,
+              53.79767662025203
             ],
             [
-              -1.5366081898945605,
-              53.7970356862767
+              -1.5352822879240806,
+              53.79767543674469
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 365,
-        "id": 423,
+        "dst_i": 335,
+        "id": 374,
         "layer": 0,
         "osm_way_ids": [
-          745724297
+          673737341
         ],
-        "src_i": 364,
+        "src_i": 334,
         "type": "road"
       },
       "type": "Feature"
@@ -15756,45 +15513,37 @@
         "coordinates": [
           [
             [
-              -1.5339279629257632,
-              53.79634913510816
-            ],
-            [
-              -1.533789648079992,
-              53.79610930759814
-            ],
-            [
-              -1.5337223024957138,
-              53.796022404344946
+              -1.5352762860183737,
+              53.79773350324801
             ],
             [
-              -1.533680770282657,
-              53.79603363327552
+              -1.53527152499373,
+              53.79776005662012
             ],
             [
-              -1.5337471505680464,
-              53.7961192918675
+              -1.5353176735888527,
+              53.797762943442734
             ],
             [
-              -1.5338847254528403,
-              53.79635783514615
+              -1.5353224346134964,
+              53.797736390070625
             ],
             [
-              -1.5339279629257632,
-              53.79634913510816
+              -1.5352762860183737,
+              53.79773350324801
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 366,
-        "id": 424,
+        "dst_i": 62,
+        "id": 375,
         "layer": 0,
         "osm_way_ids": [
-          760129761
+          673737341
         ],
-        "src_i": 434,
+        "src_i": 335,
         "type": "road"
       },
       "type": "Feature"
@@ -15804,37 +15553,37 @@
         "coordinates": [
           [
             [
-              -1.5340548403500047,
-              53.796474780240274
+              -1.5360445299488465,
+              53.79659042851252
             ],
             [
-              -1.5340887460928219,
-              53.79646928268681
+              -1.5360702002000433,
+              53.79727231759745
             ],
             [
-              -1.5340684017335995,
-              53.79642550370711
+              -1.5361006451788646,
+              53.79727191829862
             ],
             [
-              -1.5340344959907823,
-              53.796431001260586
+              -1.5360749749276679,
+              53.7965900292137
             ],
             [
-              -1.5340548403500047,
-              53.796474780240274
+              -1.5360445299488465,
+              53.79659042851252
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 55,
-        "id": 425,
+        "dst_i": 337,
+        "id": 376,
         "layer": 0,
         "osm_way_ids": [
-          760129762
+          692442629
         ],
-        "src_i": 434,
+        "src_i": 499,
         "type": "road"
       },
       "type": "Feature"
@@ -15844,38 +15593,69 @@
         "coordinates": [
           [
             [
-              -1.53408786301182,
-              53.79746954963511
+              -1.5364143033703537,
+              53.79839983136979
             ],
             [
-              -1.5341215434167261,
-              53.79750281104768
+              -1.5364310073042728,
+              53.79839710102915
             ],
             [
-              -1.534173809631618,
-              53.79748434617482
+              -1.5366571156271793,
+              53.798408905525605
             ],
             [
-              -1.5341401292267118,
-              53.79745108476225
+              -1.5366818845267325,
+              53.798388915403166
             ],
             [
-              -1.53408786301182,
-              53.79746954963511
+              -1.5366865724688104,
+              53.79834901699655
+            ],
+            [
+              -1.5366939903492274,
+              53.798343284720126
+            ],
+            [
+              -1.536669796974879,
+              53.79833236155892
+            ],
+            [
+              -1.536656827864577,
+              53.798342383599795
+            ],
+            [
+              -1.5366521155616437,
+              53.79838248525311
+            ],
+            [
+              -1.5366426848655637,
+              53.798390095313216
+            ],
+            [
+              -1.536428193625494,
+              53.79837889875822
+            ],
+            [
+              -1.5364061820702422,
+              53.798382496044965
+            ],
+            [
+              -1.5364143033703537,
+              53.79839983136979
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 460,
-        "id": 426,
+        "dst_i": 338,
+        "id": 377,
         "layer": 0,
         "osm_way_ids": [
-          760649540,
-          147479112
+          701166698
         ],
-        "src_i": 299,
+        "src_i": 281,
         "type": "road"
       },
       "type": "Feature"
@@ -15885,46 +15665,77 @@
         "coordinates": [
           [
             [
-              -1.5341373033675054,
-              53.79751820653563
+              -1.5364554549450478,
+              53.798433340095826
             ],
             [
-              -1.5342966918756022,
-              53.79767209126802
+              -1.5364910613800704,
+              53.79843682586668
             ],
             [
-              -1.5342780999754029,
-              53.79771119827154
+              -1.5366226678553334,
+              53.79844409778184
             ],
             [
-              -1.53433673350883,
-              53.79772092353626
+              -1.5366752385809155,
+              53.798436331239756
             ],
             [
-              -1.5343625088162147,
-              53.7976667079284
+              -1.5367302788881965,
+              53.79838317233487
             ],
             [
-              -1.5341892528912793,
-              53.797499434094746
+              -1.5367326099175311,
+              53.79834297355482
             ],
             [
-              -1.5341373033675054,
-              53.79751820653563
+              -1.5367177421830747,
+              53.798332027910575
+            ],
+            [
+              -1.5366939903492274,
+              53.7983432838208
+            ],
+            [
+              -1.5367017903905607,
+              53.79834902598977
+            ],
+            [
+              -1.5367001201494241,
+              53.798377826766774
+            ],
+            [
+              -1.5366557620771606,
+              53.798420668653264
+            ],
+            [
+              -1.5366203322583383,
+              53.79842590270548
+            ],
+            [
+              -1.5364949378011588,
+              53.798418974331206
+            ],
+            [
+              -1.536460433694835,
+              53.798415596478954
+            ],
+            [
+              -1.5364554549450478,
+              53.798433340095826
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 462,
-        "id": 428,
+        "dst_i": 338,
+        "id": 378,
         "layer": 0,
         "osm_way_ids": [
-          760649541,
-          760649540
+          701166699
         ],
-        "src_i": 460,
+        "src_i": 281,
         "type": "road"
       },
       "type": "Feature"
@@ -15934,37 +15745,45 @@
         "coordinates": [
           [
             [
-              -1.5342944187032987,
-              53.797746797021176
+              -1.5362692238195963,
+              53.79820235291798
             ],
             [
-              -1.5343369938654703,
-              53.79777108859925
+              -1.5362069544285264,
+              53.798195104385194
             ],
             [
-              -1.5343793056258945,
-              53.79774521511433
+              -1.5361757161993568,
+              53.798183372733796
             ],
             [
-              -1.5343367304637232,
-              53.79772092353626
+              -1.5361593792008195,
+              53.798198551485214
             ],
             [
-              -1.5342944187032987,
-              53.797746797021176
+              -1.536195446969538,
+              53.79821209616913
+            ],
+            [
+              -1.536263334582845,
+              53.79821999940811
+            ],
+            [
+              -1.5362692238195963,
+              53.79820235291798
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 332,
-        "id": 429,
+        "dst_i": 341,
+        "id": 379,
         "layer": 0,
         "osm_way_ids": [
-          760649541
+          701166700
         ],
-        "src_i": 462,
+        "src_i": 339,
         "type": "road"
       },
       "type": "Feature"
@@ -15974,45 +15793,101 @@
         "coordinates": [
           [
             [
-              -1.533550649819563,
-              53.79762082093868
+              -1.5361498891251546,
+              53.79817369603245
             ],
             [
-              -1.5335585457817638,
-              53.7976309194219
+              -1.536059798114861,
+              53.798140026327836
             ],
             [
-              -1.533419221483054,
-              53.797675061727546
+              -1.5360550157744688,
+              53.79811985274377
             ],
             [
-              -1.5334408112909999,
-              53.79769883619564
+              -1.5360710680555107,
+              53.798007190219515
             ],
             [
-              -1.533618053260872,
-              53.79764268075091
+              -1.5360851044757824,
+              53.79799373007184
             ],
             [
-              -1.5335921180853749,
-              53.79760950927051
+              -1.5361911122598608,
+              53.797982332068784
             ],
             [
-              -1.533550649819563,
-              53.79762082093868
+              -1.5362874320363258,
+              53.797985063308744
+            ],
+            [
+              -1.536296474481276,
+              53.79799319047883
+            ],
+            [
+              -1.536296474481276,
+              53.79803177497646
+            ],
+            [
+              -1.536270452520232,
+              53.798194665516206
+            ],
+            [
+              -1.5363007696045632,
+              53.79819635444234
+            ],
+            [
+              -1.536326925550311,
+              53.79803262573477
+            ],
+            [
+              -1.536326925550311,
+              53.797987808937854
+            ],
+            [
+              -1.5363043689209233,
+              53.79796753732772
+            ],
+            [
+              -1.53618908726377,
+              53.79796426829339
+            ],
+            [
+              -1.5360662948504396,
+              53.79797747033575
+            ],
+            [
+              -1.536041332586598,
+              53.798001409379715
+            ],
+            [
+              -1.5360243850441264,
+              53.7981203473707
+            ],
+            [
+              -1.5360316004249344,
+              53.798150773221984
+            ],
+            [
+              -1.5361336069385416,
+              53.79818889636759
+            ],
+            [
+              -1.5361498891251546,
+              53.79817369603245
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 353,
-        "id": 430,
+        "dst_i": 339,
+        "id": 380,
         "layer": 0,
         "osm_way_ids": [
-          760649542
+          701166700
         ],
-        "src_i": 355,
+        "src_i": 341,
         "type": "road"
       },
       "type": "Feature"
@@ -16022,37 +15897,53 @@
         "coordinates": [
           [
             [
-              -1.5333521788869129,
-              53.79776215743558
+              -1.5361326370719928,
+              53.798189946775324
             ],
             [
-              -1.5332503276737577,
-              53.79781038985626
+              -1.5360993236024685,
+              53.79822606893018
             ],
             [
-              -1.5332788999118332,
-              53.79783143937965
+              -1.5361268483237693,
+              53.79823675107316
             ],
             [
-              -1.5333807511249884,
-              53.79778320695897
+              -1.5360967961637384,
+              53.79826345822928
             ],
             [
-              -1.5333521788869129,
-              53.79776215743558
+              -1.536122155814031,
+              53.79827341372035
+            ],
+            [
+              -1.5361691509488729,
+              53.79823164832192
+            ],
+            [
+              -1.5361394763820981,
+              53.7982201316084
+            ],
+            [
+              -1.5361593792008195,
+              53.798198551485214
+            ],
+            [
+              -1.5361326370719928,
+              53.798189946775324
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 213,
-        "id": 431,
+        "dst_i": 342,
+        "id": 382,
         "layer": 0,
         "osm_way_ids": [
-          760649543
+          701166702
         ],
-        "src_i": 368,
+        "src_i": 341,
         "type": "road"
       },
       "type": "Feature"
@@ -16062,37 +15953,37 @@
         "coordinates": [
           [
             [
-              -1.5351727462934406,
-              53.7982631605538
+              -1.532193374112656,
+              53.79733742848754
             ],
             [
-              -1.5351075231486742,
-              53.79842359684468
+              -1.5321859364390442,
+              53.79736573373829
             ],
             [
-              -1.5351963519621565,
-              53.7984361963415
+              -1.5322461168867783,
+              53.79737125017751
             ],
             [
-              -1.535261575106923,
-              53.79827576005063
+              -1.5322535545603901,
+              53.79734294492676
             ],
             [
-              -1.5351727462934406,
-              53.7982631605538
+              -1.532193374112656,
+              53.79733742848754
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 375,
-        "id": 433,
+        "dst_i": 346,
+        "id": 383,
         "layer": 0,
         "osm_way_ids": [
-          775795899
+          701166705
         ],
-        "src_i": 371,
+        "src_i": 343,
         "type": "road"
       },
       "type": "Feature"
@@ -16102,37 +15993,37 @@
         "coordinates": [
           [
             [
-              -1.5350859881526526,
-              53.79847654800624
+              -1.5321767874153527,
+              53.79740188647008
             ],
             [
-              -1.5350453816520944,
-              53.79857634393513
+              -1.5321073574553992,
+              53.797689437384705
             ],
             [
-              -1.5351342043753629,
-              53.79858895422382
+              -1.5321676505720887,
+              53.79769451675359
             ],
             [
-              -1.5351748108759211,
-              53.79848915829493
+              -1.532237080532042,
+              53.79740696583896
             ],
             [
-              -1.5350859881526526,
-              53.79847654800624
+              -1.5321767874153527,
+              53.79740188647008
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 383,
-        "id": 434,
+        "dst_i": 344,
+        "id": 384,
         "layer": 0,
         "osm_way_ids": [
-          775795899
+          701166705
         ],
-        "src_i": 375,
+        "src_i": 346,
         "type": "road"
       },
       "type": "Feature"
@@ -16142,53 +16033,77 @@
         "coordinates": [
           [
             [
-              -1.5350379850874256,
-              53.79859452462234
+              -1.532422746790163,
+              53.79737762816691
             ],
             [
-              -1.535032246583466,
-              53.79860864577146
+              -1.5322461168867783,
+              53.79737125107683
             ],
             [
-              -1.5350181370806286,
-              53.79860830942515
+              -1.532242401856356,
+              53.79740715739448
             ],
             [
-              -1.535018394392162,
-              53.79860048082987
+              -1.5324190317597406,
+              53.79741353448456
             ],
             [
-              -1.534927059455698,
-              53.79859943222078
+              -1.532422746790163,
+              53.79737762816691
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 346,
+        "id": 385,
+        "layer": 0,
+        "osm_way_ids": [
+          701166706
+        ],
+        "src_i": 345,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5322123755797339,
+              53.797321354011714
             ],
             [
-              -1.5349250633881228,
-              53.7986600905692
+              -1.53208015551543,
+              53.797312539759865
             ],
             [
-              -1.5351035538518256,
-              53.79866435335399
+              -1.5320767419505912,
+              53.797330412879056
             ],
             [
-              -1.535126813900908,
-              53.79860712052188
+              -1.532208962014895,
+              53.797339227130905
             ],
             [
-              -1.5350379850874256,
-              53.79859452462234
+              -1.5322123755797339,
+              53.797321354011714
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 382,
-        "id": 435,
+        "dst_i": 347,
+        "id": 386,
         "layer": 0,
         "osm_way_ids": [
-          775795899
+          701166709
         ],
-        "src_i": 383,
+        "src_i": 343,
         "type": "road"
       },
       "type": "Feature"
@@ -16198,37 +16113,37 @@
         "coordinates": [
           [
             [
-              -1.5350189912331151,
-              53.798582316330446
+              -1.5340969008891094,
+              53.79667633172
             ],
             [
-              -1.535022584459261,
-              53.798472795136846
+              -1.5340983625404232,
+              53.796676016058086
             ],
             [
-              -1.5349312495227974,
-              53.798471750125046
+              -1.5340826771947633,
+              53.796650676770255
             ],
             [
-              -1.5349276562966512,
-              53.798581271318646
+              -1.5340812155434496,
+              53.79665099243216
             ],
             [
-              -1.5350189912331151,
-              53.798582316330446
+              -1.5340969008891094,
+              53.79667633172
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 386,
-        "id": 436,
+        "dst_i": 348,
+        "id": 387,
         "layer": 0,
         "osm_way_ids": [
-          775795899
+          701166712
         ],
-        "src_i": 382,
+        "src_i": 361,
         "type": "road"
       },
       "type": "Feature"
@@ -16238,37 +16153,53 @@
         "coordinates": [
           [
             [
-              -1.5348600244723243,
-              53.798459280130544
+              -1.53422920773896,
+              53.796647744981556
             ],
             [
-              -1.5348123929101394,
-              53.79856479214807
+              -1.5342624770544344,
+              53.79664054681078
             ],
             [
-              -1.5349006614239515,
-              53.798578693862694
+              -1.534302450172757,
+              53.796729079634865
             ],
             [
-              -1.5349482929861362,
-              53.798473181845175
+              -1.5343585014555299,
+              53.796720062136316
             ],
             [
-              -1.5348600244723243,
-              53.798459280130544
+              -1.5343464976441161,
+              53.79669403037079
+            ],
+            [
+              -1.5343347496216824,
+              53.79669591984565
+            ],
+            [
+              -1.5342937228963713,
+              53.79660505238247
+            ],
+            [
+              -1.5342134980324449,
+              53.79662241108965
+            ],
+            [
+              -1.53422920773896,
+              53.796647744981556
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 381,
-        "id": 438,
+        "dst_i": 349,
+        "id": 388,
         "layer": 0,
         "osm_way_ids": [
-          775795899
+          701166712
         ],
-        "src_i": 386,
+        "src_i": 348,
         "type": "road"
       },
       "type": "Feature"
@@ -16278,45 +16209,45 @@
         "coordinates": [
           [
             [
-              -1.5347973272437343,
-              53.798570385029635
+              -1.5344489335177969,
+              53.79670338331633
             ],
             [
-              -1.5347755455940535,
-              53.79856977978614
+              -1.534500054772493,
+              53.79669278391093
             ],
             [
-              -1.5347787810201385,
-              53.798444117566916
+              -1.5345444813596616,
+              53.796581662824046
             ],
             [
-              -1.5346874369483539,
-              53.79844329738554
+              -1.5345000288890842,
+              53.79657546290034
             ],
             [
-              -1.5346828555850176,
-              53.7986212209866
+              -1.5344613453735354,
+              53.796672216423964
             ],
             [
-              -1.5347930305978934,
-              53.79862428497558
+              -1.5344338054267002,
+              53.79667792711667
             ],
             [
-              -1.5347973272437343,
-              53.798570385029635
+              -1.5344489335177969,
+              53.79670338331633
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 377,
-        "id": 439,
+        "dst_i": 114,
+        "id": 389,
         "layer": 0,
         "osm_way_ids": [
-          775795899
+          701166712
         ],
-        "src_i": 381,
+        "src_i": 349,
         "type": "road"
       },
       "type": "Feature"
@@ -16326,37 +16257,53 @@
         "coordinates": [
           [
             [
-              -1.534772600975678,
-              53.798418553448656
+              -1.5368362592663127,
+              53.79790271422058
             ],
             [
-              -1.5347563005184233,
-              53.79840245289251
+              -1.536806671485085,
+              53.79815220224415
             ],
             [
-              -1.5346778981509788,
-              53.79843014660452
+              -1.5367819178110662,
+              53.79818727848788
             ],
             [
-              -1.5346941986082332,
-              53.79844624716067
+              -1.5367254600065217,
+              53.79822933886383
             ],
             [
-              -1.534772600975678,
-              53.798418553448656
+              -1.5367731829219136,
+              53.79825168700773
+            ],
+            [
+              -1.536834881355439,
+              53.79820572177702
+            ],
+            [
+              -1.536866727083436,
+              53.79816059831141
+            ],
+            [
+              -1.5368970121941448,
+              53.79790522872401
+            ],
+            [
+              -1.5368362592663127,
+              53.79790271422058
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 372,
-        "id": 440,
+        "dst_i": 466,
+        "id": 390,
         "layer": 0,
         "osm_way_ids": [
-          775795899
+          702394096
         ],
-        "src_i": 377,
+        "src_i": 279,
         "type": "road"
       },
       "type": "Feature"
@@ -16366,37 +16313,45 @@
         "coordinates": [
           [
             [
-              -1.5346943082320816,
-              53.79841207563455
+              -1.5366903468788173,
+              53.79826289345526
             ],
             [
-              -1.5347043281563477,
-              53.79842119565577
+              -1.5366760257410501,
+              53.79827820350765
             ],
             [
-              -1.5347298705130543,
-              53.79841140384125
+              -1.5366636017048838,
+              53.798325969180375
             ],
             [
-              -1.5347198505887882,
-              53.79840228382003
+              -1.5367237973781525,
+              53.798331431660294
             ],
             [
-              -1.5346943082320816,
-              53.79841207563455
+              -1.536734574011484,
+              53.798289997212244
+            ],
+            [
+              -1.5367436545202702,
+              53.79828028993396
+            ],
+            [
+              -1.5366903468788173,
+              53.79826289345526
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 372,
-        "id": 441,
+        "dst_i": 338,
+        "id": 391,
         "layer": 0,
         "osm_way_ids": [
-          775795900
+          702394096
         ],
-        "src_i": 373,
+        "src_i": 466,
         "type": "road"
       },
       "type": "Feature"
@@ -16406,37 +16361,37 @@
         "coordinates": [
           [
             [
-              -1.535351565628689,
-              53.79846030086066
+              -1.5342080899225843,
+              53.79656044872479
             ],
             [
-              -1.5352624140338749,
-              53.7984570929802
+              -1.5341892681168137,
+              53.79656777909585
             ],
             [
-              -1.5352605626088776,
-              53.798475045239705
+              -1.5342018413632184,
+              53.79657904040201
             ],
             [
-              -1.5353497142036916,
-              53.79847825312016
+              -1.534220663168989,
+              53.796571710030946
             ],
             [
-              -1.535351565628689,
-              53.79846030086066
+              -1.5342080899225843,
+              53.79656044872479
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 375,
-        "id": 442,
+        "dst_i": 350,
+        "id": 392,
         "layer": 0,
         "osm_way_ids": [
-          775795901
+          702394734
         ],
-        "src_i": 374,
+        "src_i": 4,
         "type": "road"
       },
       "type": "Feature"
@@ -16446,37 +16401,37 @@
         "coordinates": [
           [
             [
-              -1.5348676113561743,
-              53.798431287843734
+              -1.5340620070091022,
+              53.796612134540744
             ],
             [
-              -1.5347818109015074,
-              53.798426221065355
+              -1.5340513247740848,
+              53.79661542695744
             ],
             [
-              -1.5347787810201385,
-              53.798444117566916
+              -1.53406189129504,
+              53.796627386137224
             ],
             [
-              -1.5348645814748052,
-              53.798449184345294
+              -1.5340725735300573,
+              53.79662409372053
             ],
             [
-              -1.5348676113561743,
-              53.798431287843734
+              -1.5340620070091022,
+              53.796612134540744
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 377,
-        "id": 443,
+        "dst_i": 351,
+        "id": 393,
         "layer": 0,
         "osm_way_ids": [
-          775795902
+          702394734
         ],
-        "src_i": 386,
+        "src_i": 350,
         "type": "road"
       },
       "type": "Feature"
@@ -16486,70 +16441,37 @@
         "coordinates": [
           [
             [
-              -1.5345905690526462,
-              53.798615079518804
+              -1.5345681372726416,
+              53.79733733405876
             ],
             [
-              -1.534575031394671,
-              53.798745681712056
+              -1.534013821237461,
+              53.79725070240072
             ],
             [
-              -1.5345117190544868,
-              53.798859998088886
-            ],
-            [
-              -1.5344295224838405,
-              53.79891650336976
-            ],
-            [
-              -1.5343327276706984,
-              53.79892970271415
-            ],
-            [
-              -1.5341982100732359,
-              53.7989292530533
-            ],
-            [
-              -1.5341976924050622,
-              53.798983212354486
-            ],
-            [
-              -1.534342870921794,
-              53.79898369798819
-            ],
-            [
-              -1.5344792764855368,
-              53.798965097317755
-            ],
-            [
-              -1.534592880288786,
-              53.79888700112184
-            ],
-            [
-              -1.5346653675360706,
-              53.7987561174409
+              -1.5340060318540019,
+              53.797268089886195
             ],
             [
-              -1.5346816969218409,
-              53.798618862065815
+              -1.5345603478891825,
+              53.79735472154424
             ],
             [
-              -1.5345905690526462,
-              53.798615079518804
+              -1.5345681372726416,
+              53.79733733405876
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 380,
-        "id": 445,
+        "dst_i": 352,
+        "id": 394,
         "layer": 0,
         "osm_way_ids": [
-          775795904,
-          775795905
+          702394735
         ],
-        "src_i": 377,
+        "src_i": 305,
         "type": "road"
       },
       "type": "Feature"
@@ -16559,37 +16481,37 @@
         "coordinates": [
           [
             [
-              -1.5348958014333336,
-              53.79859644917075
+              -1.5333953280517356,
+              53.797693170469024
             ],
             [
-              -1.5349227963060332,
-              53.798599026626704
+              -1.5333692482336605,
+              53.79771430452865
             ],
             [
-              -1.5349276562966512,
-              53.79858127041933
+              -1.5333938557425477,
+              53.797724898538114
             ],
             [
-              -1.5349006614239515,
-              53.798578692963375
+              -1.5334199355606228,
+              53.797703764478484
             ],
             [
-              -1.5348958014333336,
-              53.79859644917075
+              -1.5333953280517356,
+              53.797693170469024
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 382,
-        "id": 447,
+        "dst_i": 265,
+        "id": 395,
         "layer": 0,
         "osm_way_ids": [
-          775795907
+          702394736
         ],
-        "src_i": 381,
+        "src_i": 353,
         "type": "road"
       },
       "type": "Feature"
@@ -16599,37 +16521,37 @@
         "coordinates": [
           [
             [
-              -1.5351353599934328,
-              53.79860692806704
+              -1.5333616583047034,
+              53.797731788241556
             ],
             [
-              -1.5351665220949298,
-              53.79860622929409
+              -1.5333645937877585,
+              53.797756278569715
             ],
             [
-              -1.5351653679994133,
-              53.798588255450866
+              -1.5333949687291208,
+              53.79775500872749
             ],
             [
-              -1.5351342058979163,
-              53.79858895422382
+              -1.533392033246066,
+              53.797730518399334
             ],
             [
-              -1.5351353599934328,
-              53.79860692806704
+              -1.5333616583047034,
+              53.797731788241556
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 384,
-        "id": 448,
+        "dst_i": 368,
+        "id": 396,
         "layer": 0,
         "osm_way_ids": [
-          775795908
+          702394736
         ],
-        "src_i": 383,
+        "src_i": 265,
         "type": "road"
       },
       "type": "Feature"
@@ -16639,37 +16561,37 @@
         "coordinates": [
           [
             [
-              -1.5350941338136195,
-              53.79844767798147
+              -1.5333807511249884,
+              53.79778320695897
             ],
             [
-              -1.5350266435867637,
-              53.79844284592605
+              -1.5335375863109468,
+              53.79793970242221
             ],
             [
-              -1.5350229803231585,
-              53.79846070105881
+              -1.5335637894558516,
+              53.79793054013287
             ],
             [
-              -1.5350904705500146,
-              53.79846553311423
+              -1.5334069542698932,
+              53.79777404466963
             ],
             [
-              -1.5350941338136195,
-              53.79844767798147
+              -1.5333807511249884,
+              53.79778320695897
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 386,
-        "id": 449,
+        "dst_i": 354,
+        "id": 397,
         "layer": 0,
         "osm_way_ids": [
-          775795909
+          702394736
         ],
-        "src_i": 375,
+        "src_i": 368,
         "type": "road"
       },
       "type": "Feature"
@@ -16679,53 +16601,37 @@
         "coordinates": [
           [
             [
-              -1.5353268576312737,
-              53.79862555751577
-            ],
-            [
-              -1.5352497737951183,
-              53.798616452783016
-            ],
-            [
-              -1.5352575753590052,
-              53.79862176597554
-            ],
-            [
-              -1.5352578692118213,
-              53.79860685971859
-            ],
-            [
-              -1.5351665220949298,
-              53.79860623019341
+              -1.5340017321630541,
+              53.797437388092966
             ],
             [
-              -1.5351658232428955,
-              53.79864163379023
+              -1.5339074556533214,
+              53.79746926095285
             ],
             [
-              -1.5352012256557557,
-              53.79866574640329
+              -1.5339377087904078,
+              53.79750048180451
             ],
             [
-              -1.5353089432673603,
-              53.79867847000651
+              -1.5340319853001405,
+              53.79746860894463
             ],
             [
-              -1.5353268576312737,
-              53.79862555751577
+              -1.5340017321630541,
+              53.797437388092966
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 384,
-        "id": 450,
+        "dst_i": 459,
+        "id": 398,
         "layer": 0,
         "osm_way_ids": [
-          775795910
+          702394737
         ],
-        "src_i": 387,
+        "src_i": 299,
         "type": "road"
       },
       "type": "Feature"
@@ -16735,37 +16641,37 @@
         "coordinates": [
           [
             [
-              -1.5352582300569895,
-              53.79858887418418
+              -1.533880798787488,
+              53.797478317122234
             ],
             [
-              -1.5352602672335078,
-              53.79848946946023
+              -1.5335629307357048,
+              53.797586928202286
             ],
             [
-              -1.5351689201166163,
-              53.79848881655269
+              -1.5335934274813434,
+              53.79761806631635
             ],
             [
-              -1.535166882940098,
-              53.79858822127664
+              -1.5339112955331267,
+              53.7975094552363
             ],
             [
-              -1.5352582300569895,
-              53.79858887418418
+              -1.533880798787488,
+              53.797478317122234
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 375,
-        "id": 451,
+        "dst_i": 355,
+        "id": 399,
         "layer": 0,
         "osm_way_ids": [
-          775795910
+          702394737
         ],
-        "src_i": 384,
+        "src_i": 459,
         "type": "road"
       },
       "type": "Feature"
@@ -16775,37 +16681,37 @@
         "coordinates": [
           [
             [
-              -1.5356900840729384,
-              53.799012394443885
+              -1.5346538737800635,
+              53.799572208703786
             ],
             [
-              -1.5356968929319745,
-              53.79901815729725
+              -1.5344999131750219,
+              53.799655315020814
             ],
             [
-              -1.5357343507919947,
-              53.79900271774254
+              -1.5345153183708469,
+              53.79966527231053
             ],
             [
-              -1.5357275419329584,
-              53.79899695488917
+              -1.5346692789758882,
+              53.79958216599349
             ],
             [
-              -1.5356900840729384,
-              53.799012394443885
+              -1.5346538737800635,
+              53.799572208703786
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 389,
-        "id": 453,
+        "dst_i": 293,
+        "id": 400,
         "layer": 0,
         "osm_way_ids": [
-          775795915
+          717747209
         ],
-        "src_i": 388,
+        "src_i": 356,
         "type": "road"
       },
       "type": "Feature"
@@ -16815,37 +16721,45 @@
         "coordinates": [
           [
             [
-              -1.5355524071770634,
-              53.79883175758929
+              -1.5344681085559682,
+              53.799674680114684
             ],
             [
-              -1.5355285015653173,
-              53.79882570155706
+              -1.5340774274304616,
+              53.79994290010966
             ],
             [
-              -1.5355104988933037,
-              53.79885049765459
+              -1.5340240390936757,
+              53.800010017386434
             ],
             [
-              -1.5355344045050499,
-              53.798856553686825
+              -1.5340447092793368,
+              53.80001575326015
             ],
             [
-              -1.5355524071770634,
-              53.79883175758929
+              -1.5340967729946196,
+              53.7999502997285
+            ],
+            [
+              -1.5344854199887146,
+              53.79968347727942
+            ],
+            [
+              -1.5344681085559682,
+              53.799674680114684
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 392,
-        "id": 455,
+        "dst_i": 357,
+        "id": 401,
         "layer": 0,
         "osm_way_ids": [
-          775795916
+          717747209
         ],
-        "src_i": 391,
+        "src_i": 293,
         "type": "road"
       },
       "type": "Feature"
@@ -16855,53 +16769,37 @@
         "coordinates": [
           [
             [
-              -1.535482462594043,
-              53.798817259624386
-            ],
-            [
-              -1.5354991284641262,
-              53.79882028674118
-            ],
-            [
-              -1.5355205447009785,
-              53.79877090858468
-            ],
-            [
-              -1.535472087914823,
-              53.79876101874409
-            ],
-            [
-              -1.5354571699361026,
-              53.798786518111186
+              -1.5339824551138015,
+              53.80006223470151
             ],
             [
-              -1.5354658545809914,
-              53.79878829067423
+              -1.5339664104455268,
+              53.80008236062152
             ],
             [
-              -1.5354440729313106,
-              53.798838512394475
+              -1.5339870714958672,
+              53.8000881072871
             ],
             [
-              -1.5354690367177055,
-              53.79884304677442
+              -1.5340031161641419,
+              53.80006798136708
             ],
             [
-              -1.535482462594043,
-              53.798817259624386
+              -1.5339824551138015,
+              53.80006223470151
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 241,
-        "id": 456,
+        "dst_i": 358,
+        "id": 402,
         "layer": 0,
         "osm_way_ids": [
-          775795916
+          717747209
         ],
-        "src_i": 392,
+        "src_i": 357,
         "type": "road"
       },
       "type": "Feature"
@@ -16911,37 +16809,37 @@
         "coordinates": [
           [
             [
-              -1.5353809158915783,
-              53.79874276341318
+              -1.5339481215334643,
+              53.800105321203496
             ],
             [
-              -1.5353787553882303,
-              53.798742338933344
+              -1.5339181607266408,
+              53.8001429758025
             ],
             [
-              -1.535364339852149,
-              53.798767939024465
+              -1.5339388309123017,
+              53.80014871347486
             ],
             [
-              -1.535366500355497,
-              53.7987683635043
+              -1.5339687917191254,
+              53.800111058875856
             ],
             [
-              -1.5353809158915783,
-              53.79874276341318
+              -1.5339481215334643,
+              53.800105321203496
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 393,
-        "id": 457,
+        "dst_i": 359,
+        "id": 403,
         "layer": 0,
         "osm_way_ids": [
-          775795916
+          717747209
         ],
-        "src_i": 241,
+        "src_i": 358,
         "type": "road"
       },
       "type": "Feature"
@@ -16951,37 +16849,37 @@
         "coordinates": [
           [
             [
-              -1.5353577228348478,
-              53.79874550454568
+              -1.533898064543631,
+              53.80016823235274
             ],
             [
-              -1.5353441599286994,
-              53.7987439918866
+              -1.533878641329247,
+              53.80019265163449
             ],
             [
-              -1.53533992113989,
-              53.79875724788826
+              -1.533899311514908,
+              53.8001983875082
             ],
             [
-              -1.535353484046038,
-              53.79875876054734
+              -1.533918734729292,
+              53.80017396822645
             ],
             [
-              -1.5353577228348478,
-              53.79874550454568
+              -1.533898064543631,
+              53.80016823235274
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 394,
-        "id": 458,
+        "dst_i": 360,
+        "id": 404,
         "layer": 0,
         "osm_way_ids": [
-          775795917
+          717747209
         ],
-        "src_i": 393,
+        "src_i": 359,
         "type": "road"
       },
       "type": "Feature"
@@ -16991,45 +16889,37 @@
         "coordinates": [
           [
             [
-              -1.5353216200473998,
-              53.79873978126247
-            ],
-            [
-              -1.5353164296626827,
-              53.7987384637562
-            ],
-            [
-              -1.5353315151222826,
-              53.798680520459946
+              -1.5339880261368815,
+              53.79669281358854
             ],
             [
-              -1.535308941744807,
-              53.79867847000651
+              -1.5339880946517868,
+              53.79669289722546
             ],
             [
-              -1.535291170500918,
-              53.79874673571707
+              -1.5340155067041321,
+              53.79668506233493
             ],
             [
-              -1.5353126034858584,
-              53.79875217571395
+              -1.5340154381892268,
+              53.79668497869801
             ],
             [
-              -1.5353216200473998,
-              53.79873978126247
+              -1.5339880261368815,
+              53.79669281358854
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 387,
-        "id": 459,
+        "dst_i": 362,
+        "id": 405,
         "layer": 0,
         "osm_way_ids": [
-          775795917
+          737539059
         ],
-        "src_i": 394,
+        "src_i": 361,
         "type": "road"
       },
       "type": "Feature"
@@ -17039,45 +16929,37 @@
         "coordinates": [
           [
             [
-              -1.5353456124446925,
-              53.798628013563295
-            ],
-            [
-              -1.5353692851057603,
-              53.79854247188314
-            ],
-            [
-              -1.535373260492823,
-              53.79847877472674
+              -1.53640752648494,
+              53.79777817975074
             ],
             [
-              -1.5353504374165812,
-              53.79847827830117
+              -1.5364279012952313,
+              53.79776495162806
             ],
             [
-              -1.535346513796336,
-              53.798541128296534
+              -1.536393573805108,
+              53.79774650474163
             ],
             [
-              -1.5353230725633926,
-              53.79862583720482
+              -1.5363731989948166,
+              53.797759732864314
             ],
             [
-              -1.5353456124446925,
-              53.798628013563295
+              -1.53640752648494,
+              53.79777817975074
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 374,
-        "id": 460,
+        "dst_i": 490,
+        "id": 406,
         "layer": 0,
         "osm_way_ids": [
-          775795917
+          745724293
         ],
-        "src_i": 387,
+        "src_i": 48,
         "type": "road"
       },
       "type": "Feature"
@@ -17087,53 +16969,53 @@
         "coordinates": [
           [
             [
-              -1.5353743887049307,
-              53.798460804480804
+              -1.5364427461913859,
+              53.79769232420732
             ],
             [
-              -1.5353780443557683,
-              53.79840291604318
+              -1.5364534360391708,
+              53.79758427520331
             ],
             [
-              -1.5353428992544416,
-              53.798233732050264
+              -1.5364432440663647,
+              53.79745703287588
             ],
             [
-              -1.5353094518002133,
-              53.79817300445407
+              -1.5363731304799113,
+              53.79737496887269
             ],
             [
-              -1.5352877340977775,
-              53.7981771773067
+              -1.5363316987553821,
+              53.79738731835808
             ],
             [
-              -1.5353204994480592,
-              53.79823666743625
+              -1.5363973573504357,
+              53.7974641662955
             ],
             [
-              -1.5353551542871746,
-              53.798403484414486
+              -1.5364069646627163,
+              53.79758412411727
             ],
             [
-              -1.535351565628689,
-              53.79846030086066
+              -1.5363964179349558,
+              53.79769072521336
             ],
             [
-              -1.5353743887049307,
-              53.798460804480804
+              -1.5364427461913859,
+              53.79769232420732
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 395,
-        "id": 461,
+        "dst_i": 169,
+        "id": 407,
         "layer": 0,
         "osm_way_ids": [
-          775795917
+          745724293
         ],
-        "src_i": 374,
+        "src_i": 490,
         "type": "road"
       },
       "type": "Feature"
@@ -17143,37 +17025,37 @@
         "coordinates": [
           [
             [
-              -1.5352969714295692,
-              53.798154173557286
+              -1.5363734014944257,
+              53.797342226368734
             ],
             [
-              -1.5351635104842023,
-              53.79798627739302
+              -1.5363734030169791,
+              53.797342091470476
             ],
             [
-              -1.5351428372534344,
-              53.7979920114681
+              -1.5363269955877696,
+              53.79734190800885
             ],
             [
-              -1.5352762981988013,
-              53.79815990763235
+              -1.5363269940652162,
+              53.797342042907104
             ],
             [
-              -1.5352969714295692,
-              53.798154173557286
+              -1.5363734014944257,
+              53.797342226368734
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 326,
-        "id": 462,
+        "dst_i": 167,
+        "id": 408,
         "layer": 0,
         "osm_way_ids": [
-          775795917
+          745724293
         ],
-        "src_i": 395,
+        "src_i": 169,
         "type": "road"
       },
       "type": "Feature"
@@ -17183,37 +17065,37 @@
         "coordinates": [
           [
             [
-              -1.5351506296820003,
-              53.797969925926125
+              -1.5363734030169791,
+              53.79734206539015
             ],
             [
-              -1.535066947099185,
-              53.79786274206958
+              -1.536373803448537,
+              53.79729276547463
             ],
             [
-              -1.535046206876065,
-              53.79786839160842
+              -1.5363273960193276,
+              53.79729263417366
             ],
             [
-              -1.5351298894588805,
-              53.79797557546495
+              -1.5363269955877696,
+              53.79734193408918
             ],
             [
-              -1.5351506296820003,
-              53.797969925926125
+              -1.5363734030169791,
+              53.79734206539015
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 333,
-        "id": 463,
+        "dst_i": 159,
+        "id": 409,
         "layer": 0,
         "osm_way_ids": [
-          775795917
+          745724293
         ],
-        "src_i": 326,
+        "src_i": 167,
         "type": "road"
       },
       "type": "Feature"
@@ -17223,37 +17105,37 @@
         "coordinates": [
           [
             [
-              -1.5355593561110172,
-              53.798817832492304
+              -1.536373803448537,
+              53.79729276547463
             ],
             [
-              -1.535554987905164,
-              53.79882530315755
+              -1.536374203880095,
+              53.797243465559106
             ],
             [
-              -1.53564133495652,
-              53.798842919070744
+              -1.5363277964508852,
+              53.79724333425814
             ],
             [
-              -1.5356457031623731,
-              53.79883544840549
+              -1.5363273960193276,
+              53.79729263417366
             ],
             [
-              -1.5355593561110172,
-              53.798817832492304
+              -1.536373803448537,
+              53.79729276547463
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 416,
-        "id": 464,
+        "dst_i": 186,
+        "id": 410,
         "layer": 0,
         "osm_way_ids": [
-          775795918
+          745724293
         ],
-        "src_i": 397,
+        "src_i": 159,
         "type": "road"
       },
       "type": "Feature"
@@ -17263,69 +17145,37 @@
         "coordinates": [
           [
             [
-              -1.5356034599168542,
-              53.79889202383346
-            ],
-            [
-              -1.5356623705550094,
-              53.79890787707615
-            ],
-            [
-              -1.5356768287225873,
-              53.79891570926871
-            ],
-            [
-              -1.535689318228552,
-              53.798939033176644
-            ],
-            [
-              -1.535676679512349,
-              53.79896406489646
-            ],
-            [
-              -1.5356666611106364,
-              53.79896870629568
-            ],
-            [
-              -1.5357230351747413,
-              53.79901116686978
-            ],
-            [
-              -1.5357559192841923,
-              53.79899593505838
-            ],
-            [
-              -1.535784882818505,
-              53.79893856732801
+              -1.536374203880095,
+              53.797243465559106
             ],
             [
-              -1.5357565709370695,
-              53.79888568991082
+              -1.5363746043116526,
+              53.79719416564358
             ],
             [
-              -1.5357134309075675,
-              53.79886232283545
+              -1.5363281968824432,
+              53.79719403434262
             ],
             [
-              -1.53564133495652,
-              53.79884292086938
+              -1.5363277964508852,
+              53.79724333425814
             ],
             [
-              -1.5356034599168542,
-              53.79889202383346
+              -1.536374203880095,
+              53.797243465559106
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 388,
-        "id": 465,
+        "dst_i": 141,
+        "id": 411,
         "layer": 0,
         "osm_way_ids": [
-          775795918
+          745724293
         ],
-        "src_i": 416,
+        "src_i": 186,
         "type": "road"
       },
       "type": "Feature"
@@ -17335,37 +17185,37 @@
         "coordinates": [
           [
             [
-              -1.5353863635878287,
-              53.79866467441184
+              -1.5363746043116526,
+              53.79719416564358
             ],
             [
-              -1.5353800693518591,
-              53.79866186762885
+              -1.5363750032206571,
+              53.797144865728065
             ],
             [
-              -1.5353663085137623,
-              53.79867263430808
+              -1.5363285957914474,
+              53.79714473442709
             ],
             [
-              -1.5353726027497319,
-              53.79867544109106
+              -1.5363281968824432,
+              53.79719403434262
             ],
             [
-              -1.5353863635878287,
-              53.79866467441184
+              -1.5363746043116526,
+              53.79719416564358
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 295,
-        "id": 466,
+        "dst_i": 175,
+        "id": 412,
         "layer": 0,
         "osm_way_ids": [
-          775795921
+          745724293
         ],
-        "src_i": 398,
+        "src_i": 141,
         "type": "road"
       },
       "type": "Feature"
@@ -17375,61 +17225,37 @@
         "coordinates": [
           [
             [
-              -1.5353709797077522,
-              53.79865781528534
-            ],
-            [
-              -1.535401645456824,
-              53.79855704089446
-            ],
-            [
-              -1.5354194852156182,
-              53.798409603399236
-            ],
-            [
-              -1.5353749550948148,
-              53.798245292830536
-            ],
-            [
-              -1.5353345282555637,
-              53.798165779303645
-            ],
-            [
-              -1.535312655252676,
-              53.7981696589774
-            ],
-            [
-              -1.5353526435965328,
-              53.79824830735683
+              -1.5363750032206571,
+              53.797144865728065
             ],
             [
-              -1.535396515974245,
-              53.79841019695155
+              -1.5363754036522148,
+              53.79709566563725
             ],
             [
-              -1.5353789533201792,
-              53.798555359162904
+              -1.5363289962230053,
+              53.79709553433628
             ],
             [
-              -1.5353485007285905,
-              53.79865542848558
+              -1.5363285957914474,
+              53.79714473442709
             ],
             [
-              -1.5353709797077522,
-              53.79865781528534
+              -1.5363750032206571,
+              53.797144865728065
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 329,
-        "id": 467,
+        "dst_i": 147,
+        "id": 413,
         "layer": 0,
         "osm_way_ids": [
-          775795921
+          745724293
         ],
-        "src_i": 295,
+        "src_i": 175,
         "type": "road"
       },
       "type": "Feature"
@@ -17439,37 +17265,37 @@
         "coordinates": [
           [
             [
-              -1.5353234973558059,
-              53.79814736209483
+              -1.5363754036522148,
+              53.79709566563725
             ],
             [
-              -1.5352589959013756,
-              53.798056567476706
+              -1.5363758040837727,
+              53.79704636572173
             ],
             [
-              -1.535237935942031,
-              53.79806178713977
+              -1.536329396654563,
+              53.79704623442076
             ],
             [
-              -1.535302437396461,
-              53.7981525817579
+              -1.5363289962230053,
+              53.79709553433628
             ],
             [
-              -1.5353234973558059,
-              53.79814736209483
+              -1.5363754036522148,
+              53.79709566563725
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 247,
-        "id": 468,
+        "dst_i": 161,
+        "id": 414,
         "layer": 0,
         "osm_way_ids": [
-          775795921
+          745724293
         ],
-        "src_i": 329,
+        "src_i": 147,
         "type": "road"
       },
       "type": "Feature"
@@ -17479,37 +17305,37 @@
         "coordinates": [
           [
             [
-              -1.5352436546527957,
-              53.79803513664092
+              -1.5363758040837727,
+              53.79704636572173
             ],
             [
-              -1.5351985870706237,
-              53.797976610584215
+              -1.536376202992777,
+              53.7969970658062
             ],
             [
-              -1.5351777981257935,
-              53.79798219537189
+              -1.5363297955635675,
+              53.79699693450524
             ],
             [
-              -1.5352228657079654,
-              53.79804072142859
+              -1.536329396654563,
+              53.79704623442076
             ],
             [
-              -1.5352436546527957,
-              53.79803513664092
+              -1.5363758040837727,
+              53.79704636572173
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 399,
-        "id": 469,
+        "dst_i": 151,
+        "id": 415,
         "layer": 0,
         "osm_way_ids": [
-          775795921
+          745724293
         ],
-        "src_i": 247,
+        "src_i": 161,
         "type": "road"
       },
       "type": "Feature"
@@ -17519,45 +17345,37 @@
         "coordinates": [
           [
             [
-              -1.5351858052343963,
-              53.79796001180385
-            ],
-            [
-              -1.5351209642505463,
-              53.797875808314366
-            ],
-            [
-              -1.534868753271263,
-              53.79761900340955
+              -1.536376202992777,
+              53.7969970658062
             ],
             [
-              -1.53484899966278,
-              53.79762577170456
+              -1.536376603424335,
+              53.796947765890685
             ],
             [
-              -1.5351006351168586,
-              53.79788199205028
+              -1.5363301959951252,
+              53.79694763458971
             ],
             [
-              -1.535165016289566,
-              53.797965596591524
+              -1.5363297955635675,
+              53.79699693450524
             ],
             [
-              -1.5351858052343963,
-              53.79796001180385
+              -1.536376202992777,
+              53.7969970658062
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 303,
-        "id": 470,
+        "dst_i": 177,
+        "id": 416,
         "layer": 0,
         "osm_way_ids": [
-          775795921
+          745724293
         ],
-        "src_i": 399,
+        "src_i": 151,
         "type": "road"
       },
       "type": "Feature"
@@ -17567,37 +17385,37 @@
         "coordinates": [
           [
             [
-              -1.5355747506489679,
-              53.79880368975946
+              -1.536376603424335,
+              53.796947765890685
             ],
             [
-              -1.535547687261363,
-              53.79878545331431
+              -1.5363770038558926,
+              53.79689846597516
             ],
             [
-              -1.5355305128584271,
-              53.798794345807146
+              -1.5363305964266831,
+              53.7968983346742
             ],
             [
-              -1.535557576246032,
-              53.798812582252296
+              -1.5363301959951252,
+              53.79694763458971
             ],
             [
-              -1.5355747506489679,
-              53.79880368975946
+              -1.536376603424335,
+              53.796947765890685
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 313,
-        "id": 472,
+        "dst_i": 157,
+        "id": 417,
         "layer": 0,
         "osm_way_ids": [
-          775795922
+          745724293
         ],
-        "src_i": 401,
+        "src_i": 177,
         "type": "road"
       },
       "type": "Feature"
@@ -17607,37 +17425,69 @@
         "coordinates": [
           [
             [
-              -1.5355067747275608,
-              53.79875330076538
+              -1.5363774271257522,
+              53.7968446982295
             ],
             [
-              -1.5354903448532629,
-              53.79874040179443
+              -1.536377810809222,
+              53.7967959837724
             ],
             [
-              -1.5354720955275902,
-              53.7987485118774
+              -1.5363595827992977,
+              53.79671890560863
             ],
             [
-              -1.535488525401888,
-              53.79876141084835
+              -1.5363236520603896,
+              53.796674423359384
             ],
             [
-              -1.5355067747275608,
-              53.79875330076538
+              -1.5362642405021487,
+              53.796631263113014
+            ],
+            [
+              -1.5361829346252716,
+              53.79659061017551
+            ],
+            [
+              -1.5361529494575927,
+              53.79661153199521
+            ],
+            [
+              -1.5362309605288003,
+              53.79665053737539
+            ],
+            [
+              -1.5362841478885305,
+              53.79668917583232
+            ],
+            [
+              -1.5363146157056535,
+              53.79672689518249
+            ],
+            [
+              -1.536331388154478,
+              53.796797816589994
+            ],
+            [
+              -1.5363310196965427,
+              53.79684457052582
+            ],
+            [
+              -1.5363774271257522,
+              53.7968446982295
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 403,
-        "id": 473,
+        "dst_i": 499,
+        "id": 418,
         "layer": 0,
         "osm_way_ids": [
-          775795922
+          745724293
         ],
-        "src_i": 313,
+        "src_i": 157,
         "type": "road"
       },
       "type": "Feature"
@@ -17647,37 +17497,37 @@
         "coordinates": [
           [
             [
-              -1.535403661317594,
-              53.79867616954163
+              -1.5361043008297022,
+              53.796551167724985
             ],
             [
-              -1.5353992565704582,
-              53.79867309925739
+              -1.5360313385457407,
+              53.796514453816464
             ],
             [
-              -1.5353818324687563,
-              53.79868182087911
+              -1.5360012437542132,
+              53.79653531987823
             ],
             [
-              -1.5353862372158922,
-              53.79868489116335
+              -1.5360742060381747,
+              53.79657203378675
             ],
             [
-              -1.535403661317594,
-              53.79867616954163
+              -1.5361043008297022,
+              53.796551167724985
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 398,
-        "id": 474,
+        "dst_i": 49,
+        "id": 419,
         "layer": 0,
         "osm_way_ids": [
-          775795922
+          745724293
         ],
-        "src_i": 403,
+        "src_i": 499,
         "type": "road"
       },
       "type": "Feature"
@@ -17687,37 +17537,37 @@
         "coordinates": [
           [
             [
-              -1.5355834185457686,
-              53.798793858374786
+              -1.535905199559923,
+              53.79782196772365
             ],
             [
-              -1.5355707432882828,
-              53.79880460616826
+              -1.5358057204850457,
+              53.797856310120885
             ],
             [
-              -1.5356457016398197,
-              53.79883544930482
+              -1.5358287688991983,
+              53.797879602552555
             ],
             [
-              -1.5356583768973056,
-              53.79882470151134
+              -1.5359282479740757,
+              53.79784526015532
             ],
             [
-              -1.5355834185457686,
-              53.798793858374786
+              -1.535905199559923,
+              53.79782196772365
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 397,
-        "id": 475,
+        "dst_i": 363,
+        "id": 420,
         "layer": 0,
         "osm_way_ids": [
-          775795923
+          745724294
         ],
-        "src_i": 102,
+        "src_i": 36,
         "type": "road"
       },
       "type": "Feature"
@@ -17727,37 +17577,45 @@
         "coordinates": [
           [
             [
-              -1.5339943158051905,
-              53.79926796188205
+              -1.5363209845467423,
+              53.797778084422646
             ],
             [
-              -1.5340226490023743,
-              53.799125135209124
+              -1.5362593531055686,
+              53.79778638246384
             ],
             [
-              -1.533962160998843,
-              53.79912094796735
+              -1.5359441556125397,
+              53.79779635863931
             ],
             [
-              -1.5339338278016592,
-              53.79926377464028
+              -1.5359490430091198,
+              53.79785024059882
             ],
             [
-              -1.5339943158051905,
-              53.79926796188205
+              -1.5362720481562493,
+              53.79784001800921
+            ],
+            [
+              -1.5363412893195747,
+              53.79783069474129
+            ],
+            [
+              -1.5363209845467423,
+              53.797778084422646
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 407,
-        "id": 476,
+        "dst_i": 36,
+        "id": 422,
         "layer": 0,
         "osm_way_ids": [
-          775795924
+          745724295
         ],
-        "src_i": 404,
+        "src_i": 48,
         "type": "road"
       },
       "type": "Feature"
@@ -17767,37 +17625,37 @@
         "coordinates": [
           [
             [
-              -1.53402619350681,
-              53.799107245002816
+              -1.5366081898945605,
+              53.7970356862767
             ],
             [
-              -1.5340552651424177,
-              53.798960275154876
+              -1.536563904904863,
+              53.79703497671189
             ],
             [
-              -1.5339947740937796,
-              53.79895610050361
+              -1.536563079680892,
+              53.797052955951045
             ],
             [
-              -1.5339657024581719,
-              53.79910307035155
+              -1.5366073646705898,
+              53.797053665515854
             ],
             [
-              -1.53402619350681,
-              53.799107245002816
+              -1.5366081898945605,
+              53.7970356862767
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 405,
-        "id": 477,
+        "dst_i": 365,
+        "id": 423,
         "layer": 0,
         "osm_way_ids": [
-          775795924
+          745724297
         ],
-        "src_i": 407,
+        "src_i": 364,
         "type": "road"
       },
       "type": "Feature"
@@ -17807,45 +17665,45 @@
         "coordinates": [
           [
             [
-              -1.5340586543464014,
-              53.79894237955264
+              -1.5339279629257632,
+              53.79634913510816
             ],
             [
-              -1.5340833821370115,
-              53.79880687965348
+              -1.533789648079992,
+              53.79610930759814
             ],
             [
-              -1.534019372467346,
-              53.7987798505402
+              -1.5337223024957138,
+              53.796022404344946
             ],
             [
-              -1.5339839548289513,
-              53.79880911446787
+              -1.533680770282657,
+              53.79603363327552
             ],
             [
-              -1.5340190177123918,
-              53.7988239200008
+              -1.5337471505680464,
+              53.7961192918675
             ],
             [
-              -1.533998102395625,
-              53.79893852505989
+              -1.5338847254528403,
+              53.79635783514615
             ],
             [
-              -1.5340586543464014,
-              53.79894237955264
+              -1.5339279629257632,
+              53.79634913510816
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 87,
-        "id": 478,
+        "dst_i": 366,
+        "id": 424,
         "layer": 0,
         "osm_way_ids": [
-          775795924
+          760129761
         ],
-        "src_i": 405,
+        "src_i": 434,
         "type": "road"
       },
       "type": "Feature"
@@ -17855,53 +17713,37 @@
         "coordinates": [
           [
             [
-              -1.5339636333080309,
-              53.7992874960484
-            ],
-            [
-              -1.5339698575065417,
-              53.79929074170037
-            ],
-            [
-              -1.534131252740088,
-              53.79929791199217
-            ],
-            [
-              -1.5341655650046768,
-              53.799131722740476
-            ],
-            [
-              -1.5341353392735526,
-              53.79912954458335
+              -1.5340548403500047,
+              53.796474780240274
             ],
             [
-              -1.5341045471525443,
-              53.7992786880918
+              -1.5340887460928219,
+              53.79646928268681
             ],
             [
-              -1.533982342444846,
-              53.799273258886785
+              -1.5340684017335995,
+              53.79642550370711
             ],
             [
-              -1.5339837858255183,
-              53.79927401161904
+              -1.5340344959907823,
+              53.796431001260586
             ],
             [
-              -1.5339636333080309,
-              53.7992874960484
+              -1.5340548403500047,
+              53.796474780240274
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 406,
-        "id": 479,
+        "dst_i": 55,
+        "id": 425,
         "layer": 0,
         "osm_way_ids": [
-          775795925
+          760129762
         ],
-        "src_i": 404,
+        "src_i": 434,
         "type": "road"
       },
       "type": "Feature"
@@ -17911,37 +17753,38 @@
         "coordinates": [
           [
             [
-              -1.5341693226665958,
-              53.799113952143955
+              -1.53408786301182,
+              53.79746954963511
             ],
             [
-              -1.5341976893599554,
-              53.798983213253806
+              -1.5341215434167261,
+              53.79750281104768
             ],
             [
-              -1.5341674849445794,
-              53.79898092717808
+              -1.534173809631618,
+              53.79748434617482
             ],
             [
-              -1.5341391182512198,
-              53.79911166606823
+              -1.5341401292267118,
+              53.79745108476225
             ],
             [
-              -1.5341693226665958,
-              53.799113952143955
+              -1.53408786301182,
+              53.79746954963511
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 380,
-        "id": 480,
+        "dst_i": 460,
+        "id": 426,
         "layer": 0,
         "osm_way_ids": [
-          775795925
+          760649540,
+          147479112
         ],
-        "src_i": 406,
+        "src_i": 299,
         "type": "road"
       },
       "type": "Feature"
@@ -17951,37 +17794,46 @@
         "coordinates": [
           [
             [
-              -1.5341729417761505,
-              53.79894662345168
+              -1.5341373033675054,
+              53.79751820653563
             ],
             [
-              -1.5340586558689548,
-              53.79894237955264
+              -1.5342966918756022,
+              53.79767209126802
             ],
             [
-              -1.5340567465869264,
-              53.7989603300135
+              -1.5342780999754029,
+              53.79771119827154
             ],
             [
-              -1.534171032494122,
-              53.798964573912535
+              -1.53433673350883,
+              53.79772092353626
             ],
             [
-              -1.5341729417761505,
-              53.79894662345168
+              -1.5343625088162147,
+              53.7976667079284
+            ],
+            [
+              -1.5341892528912793,
+              53.797499434094746
+            ],
+            [
+              -1.5341373033675054,
+              53.79751820653563
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 405,
-        "id": 481,
+        "dst_i": 462,
+        "id": 428,
         "layer": 0,
         "osm_way_ids": [
-          775795925
+          760649541,
+          760649540
         ],
-        "src_i": 380,
+        "src_i": 460,
         "type": "road"
       },
       "type": "Feature"
@@ -17991,37 +17843,37 @@
         "coordinates": [
           [
             [
-              -1.5341373520892159,
-              53.79911159771978
+              -1.5342944187032987,
+              53.797746797021176
             ],
             [
-              -1.5340261919842566,
-              53.79910724680146
+              -1.5343369938654703,
+              53.79777108859925
             ],
             [
-              -1.5340241791685933,
-              53.799125193665034
+              -1.5343793056258945,
+              53.79774521511433
             ],
             [
-              -1.5341353392735526,
-              53.79912954458335
+              -1.5343367304637232,
+              53.79772092353626
             ],
             [
-              -1.5341373520892159,
-              53.79911159771978
+              -1.5342944187032987,
+              53.797746797021176
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 407,
-        "id": 482,
+        "dst_i": 332,
+        "id": 429,
         "layer": 0,
         "osm_way_ids": [
-          775795926
+          760649541
         ],
-        "src_i": 406,
+        "src_i": 462,
         "type": "road"
       },
       "type": "Feature"
@@ -18031,37 +17883,45 @@
         "coordinates": [
           [
             [
-              -1.5353594783389777,
-              53.79761092210488
+              -1.533550649819563,
+              53.79762082093868
             ],
             [
-              -1.5355052795800712,
-              53.797745339220725
+              -1.5335585457817638,
+              53.7976309194219
             ],
             [
-              -1.535544354391857,
-              53.797730552573555
+              -1.533419221483054,
+              53.797675061727546
+            ],
+            [
+              -1.5334408112909999,
+              53.79769883619564
+            ],
+            [
+              -1.533618053260872,
+              53.79764268075091
             ],
             [
-              -1.5353985531507635,
-              53.79759613545771
+              -1.5335921180853749,
+              53.79760950927051
             ],
             [
-              -1.5353594783389777,
-              53.79761092210488
+              -1.533550649819563,
+              53.79762082093868
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 411,
-        "id": 486,
+        "dst_i": 353,
+        "id": 430,
         "layer": 0,
         "osm_way_ids": [
-          775795929
+          760649542
         ],
-        "src_i": 210,
+        "src_i": 355,
         "type": "road"
       },
       "type": "Feature"
@@ -18071,37 +17931,37 @@
         "coordinates": [
           [
             [
-              -1.5338132385231733,
-              53.79643800697652
+              -1.5333521788869129,
+              53.79776215743558
             ],
             [
-              -1.5337918984139935,
-              53.79642535082243
+              -1.5332503276737577,
+              53.79781038985626
             ],
             [
-              -1.5337379573903047,
-              53.79645708248881
+              -1.5332788999118332,
+              53.79783143937965
             ],
             [
-              -1.5337592974994845,
-              53.7964697386429
+              -1.5333807511249884,
+              53.79778320695897
             ],
             [
-              -1.5338132385231733,
-              53.79643800697652
+              -1.5333521788869129,
+              53.79776215743558
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 435,
-        "id": 487,
+        "dst_i": 213,
+        "id": 431,
         "layer": 0,
         "osm_way_ids": [
-          776103800
+          760649543
         ],
-        "src_i": 311,
+        "src_i": 368,
         "type": "road"
       },
       "type": "Feature"
@@ -18111,37 +17971,45 @@
         "coordinates": [
           [
             [
-              -1.5352468611503651,
-              53.797657730000005
+              -1.5333177569984755,
+              53.79763105611879
             ],
             [
-              -1.5352447782972432,
-              53.79765918420318
+              -1.5333171434094344,
+              53.79764400545175
             ],
             [
-              -1.5352802081160655,
-              53.79767688824989
+              -1.5332912569556478,
+              53.79764489847819
             ],
             [
-              -1.5352822909691874,
-              53.797675434046724
+              -1.5332948075502972,
+              53.797680810191764
             ],
             [
-              -1.5352468611503651,
-              53.797657730000005
+              -1.5333764560017011,
+              53.797677994415565
+            ],
+            [
+              -1.5333786347756906,
+              53.79763206335908
+            ],
+            [
+              -1.5333177569984755,
+              53.79763105611879
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 35,
-        "id": 488,
+        "dst_i": 370,
+        "id": 432,
         "layer": 0,
         "osm_way_ids": [
-          777360594
+          760649544
         ],
-        "src_i": 334,
+        "src_i": 369,
         "type": "road"
       },
       "type": "Feature"
@@ -18151,37 +18019,37 @@
         "coordinates": [
           [
             [
-              -1.5341968565232174,
-              53.7965068995143
+              -1.5351727462934406,
+              53.7982631605538
             ],
             [
-              -1.5341754890080754,
-              53.79650846343471
+              -1.5351075231486742,
+              53.79842359684468
             ],
             [
-              -1.5341867224074424,
-              53.796562012645204
+              -1.5351963519621565,
+              53.7984361963415
             ],
             [
-              -1.5342080899225843,
-              53.79656044872479
+              -1.535261575106923,
+              53.79827576005063
             ],
             [
-              -1.5341968565232174,
-              53.7965068995143
+              -1.5351727462934406,
+              53.7982631605538
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 54,
-        "id": 489,
+        "dst_i": 375,
+        "id": 433,
         "layer": 0,
         "osm_way_ids": [
-          778025015
+          775795899
         ],
-        "src_i": 4,
+        "src_i": 371,
         "type": "road"
       },
       "type": "Feature"
@@ -18191,37 +18059,37 @@
         "coordinates": [
           [
             [
-              -1.5340710814276746,
-              53.79620824107753
+              -1.5350859881526526,
+              53.79847654800624
             ],
             [
-              -1.5339822373886578,
-              53.7960152736233
+              -1.5350453816520944,
+              53.79857634393513
             ],
             [
-              -1.5338940845889082,
-              53.79602943434257
+              -1.5351342043753629,
+              53.79858895422382
             ],
             [
-              -1.533982928627925,
-              53.796222401796804
+              -1.5351748108759211,
+              53.79848915829493
             ],
             [
-              -1.5340710814276746,
-              53.79620824107753
+              -1.5350859881526526,
+              53.79847654800624
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 413,
-        "id": 490,
+        "dst_i": 383,
+        "id": 434,
         "layer": 0,
         "osm_way_ids": [
-          778025016
+          775795899
         ],
-        "src_i": 412,
+        "src_i": 375,
         "type": "road"
       },
       "type": "Feature"
@@ -18231,37 +18099,53 @@
         "coordinates": [
           [
             [
-              -1.5341687684571392,
-              53.796449778198074
+              -1.5350379850874256,
+              53.79859452462234
             ],
             [
-              -1.5342474540195261,
-              53.796442244580305
+              -1.535032246583466,
+              53.79860864577146
             ],
             [
-              -1.5342400300488952,
-              53.79641518578941
+              -1.5350181370806286,
+              53.79860830942515
             ],
             [
-              -1.5341613444865085,
-              53.796422719407175
+              -1.535018394392162,
+              53.79860048082987
             ],
             [
-              -1.5341687684571392,
-              53.796449778198074
+              -1.534927059455698,
+              53.79859943222078
+            ],
+            [
+              -1.5349250633881228,
+              53.7986600905692
+            ],
+            [
+              -1.5351035538518256,
+              53.79866435335399
+            ],
+            [
+              -1.535126813900908,
+              53.79860712052188
+            ],
+            [
+              -1.5350379850874256,
+              53.79859452462234
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 79,
-        "id": 491,
+        "dst_i": 382,
+        "id": 435,
         "layer": 0,
         "osm_way_ids": [
-          778025017
+          775795899
         ],
-        "src_i": 55,
+        "src_i": 383,
         "type": "road"
       },
       "type": "Feature"
@@ -18271,37 +18155,37 @@
         "coordinates": [
           [
             [
-              -1.5320152551519954,
-              53.79673369315512
+              -1.5350189912331151,
+              53.798582316330446
             ],
             [
-              -1.5322858159454793,
-              53.796690829684906
+              -1.535022584459261,
+              53.798472795136846
             ],
             [
-              -1.5322739826600522,
-              53.79666477093972
+              -1.5349312495227974,
+              53.798471750125046
             ],
             [
-              -1.5320034218665683,
-              53.796707634409934
+              -1.5349276562966512,
+              53.798581271318646
             ],
             [
-              -1.5320152551519954,
-              53.79673369315512
+              -1.5350189912331151,
+              53.798582316330446
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 415,
-        "id": 492,
+        "dst_i": 386,
+        "id": 436,
         "layer": 0,
         "osm_way_ids": [
-          778025023
+          775795899
         ],
-        "src_i": 414,
+        "src_i": 382,
         "type": "road"
       },
       "type": "Feature"
@@ -18311,37 +18195,37 @@
         "coordinates": [
           [
             [
-              -1.5322850455334327,
-              53.79669094299944
+              -1.5348600244723243,
+              53.798459280130544
             ],
             [
-              -1.5327391851642551,
-              53.796628895199014
+              -1.5348123929101394,
+              53.79856479214807
             ],
             [
-              -1.5327288927029212,
-              53.79660260982477
+              -1.5349006614239515,
+              53.798578693862694
             ],
             [
-              -1.5322747530720988,
-              53.79666465762519
+              -1.5349482929861362,
+              53.798473181845175
             ],
             [
-              -1.5322850455334327,
-              53.79669094299944
+              -1.5348600244723243,
+              53.798459280130544
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 450,
-        "id": 493,
+        "dst_i": 381,
+        "id": 438,
         "layer": 0,
         "osm_way_ids": [
-          778025023
+          775795899
         ],
-        "src_i": 415,
+        "src_i": 386,
         "type": "road"
       },
       "type": "Feature"
@@ -18351,69 +18235,45 @@
         "coordinates": [
           [
             [
-              -1.5327624193299287,
-              53.796625952618456
-            ],
-            [
-              -1.5330403203536036,
-              53.79659325238262
-            ],
-            [
-              -1.5334392187000894,
-              53.7965314617882
-            ],
-            [
-              -1.5335264518775542,
-              53.79652457118544
-            ],
-            [
-              -1.5336785153809949,
-              53.796491245021706
-            ],
-            [
-              -1.5337273832565823,
-              53.7964629253818
-            ],
-            [
-              -1.533695394408561,
-              53.796443667307216
+              -1.5347973272437343,
+              53.798570385029635
             ],
             [
-              -1.533653484602248,
-              53.796467954388675
+              -1.5347755455940535,
+              53.79856977978614
             ],
             [
-              -1.533515349417784,
-              53.7964982282546
+              -1.5347787810201385,
+              53.798444117566916
             ],
             [
-              -1.5334303817998554,
-              53.796504938993024
+              -1.5346874369483539,
+              53.79844329738554
             ],
             [
-              -1.533030079659087,
-              53.7965669472233
+              -1.5346828555850176,
+              53.7986212209866
             ],
             [
-              -1.5327534941215946,
-              53.7965994927758
+              -1.5347930305978934,
+              53.79862428497558
             ],
             [
-              -1.5327624193299287,
-              53.796625952618456
+              -1.5347973272437343,
+              53.798570385029635
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 435,
-        "id": 494,
+        "dst_i": 377,
+        "id": 439,
         "layer": 0,
         "osm_way_ids": [
-          778025023
+          775795899
         ],
-        "src_i": 450,
+        "src_i": 381,
         "type": "road"
       },
       "type": "Feature"
@@ -18423,37 +18283,37 @@
         "coordinates": [
           [
             [
-              -1.5356080306223163,
-              53.79883414079176
+              -1.534772600975678,
+              53.798418553448656
             ],
             [
-              -1.5355938998037306,
-              53.79882915315369
+              -1.5347563005184233,
+              53.79840245289251
             ],
             [
-              -1.5355470386535925,
-              53.79887547181782
+              -1.5346778981509788,
+              53.79843014660452
             ],
             [
-              -1.5355611694721782,
-              53.798880459455894
+              -1.5346941986082332,
+              53.79844624716067
             ],
             [
-              -1.5356080306223163,
-              53.79883414079176
+              -1.534772600975678,
+              53.798418553448656
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 391,
-        "id": 496,
+        "dst_i": 372,
+        "id": 440,
         "layer": 0,
         "osm_way_ids": [
-          778102279
+          775795899
         ],
-        "src_i": 416,
+        "src_i": 377,
         "type": "road"
       },
       "type": "Feature"
@@ -18463,37 +18323,37 @@
         "coordinates": [
           [
             [
-              -1.5361440607905412,
-              53.79875111271571
+              -1.5346943082320816,
+              53.79841207563455
             ],
             [
-              -1.5361528900780081,
-              53.79875853841488
+              -1.5347043281563477,
+              53.79842119565577
             ],
             [
-              -1.5361902687652487,
-              53.79874303231036
+              -1.5347298705130543,
+              53.79841140384125
             ],
             [
-              -1.536181439477782,
-              53.7987356066112
+              -1.5347198505887882,
+              53.79840228382003
             ],
             [
-              -1.5361440607905412,
-              53.79875111271571
+              -1.5346943082320816,
+              53.79841207563455
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 431,
-        "id": 497,
+        "dst_i": 372,
+        "id": 441,
         "layer": 0,
         "osm_way_ids": [
-          778102285
+          775795900
         ],
-        "src_i": 134,
+        "src_i": 373,
         "type": "road"
       },
       "type": "Feature"
@@ -18503,37 +18363,37 @@
         "coordinates": [
           [
             [
-              -1.5362581335402536,
-              53.79882377521
+              -1.535351565628689,
+              53.79846030086066
             ],
             [
-              -1.5362766249519253,
-              53.79883195993667
+              -1.5352624140338749,
+              53.7984570929802
             ],
             [
-              -1.5363040156885224,
-              53.79881036902163
+              -1.5352605626088776,
+              53.798475045239705
             ],
             [
-              -1.5362855242768507,
-              53.79880218429496
+              -1.5353497142036916,
+              53.79847825312016
             ],
             [
-              -1.5362581335402536,
-              53.79882377521
+              -1.535351565628689,
+              53.79846030086066
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 127,
-        "id": 498,
+        "dst_i": 375,
+        "id": 442,
         "layer": 0,
         "osm_way_ids": [
-          778102285
+          775795901
         ],
-        "src_i": 431,
+        "src_i": 374,
         "type": "road"
       },
       "type": "Feature"
@@ -18543,37 +18403,37 @@
         "coordinates": [
           [
             [
-              -1.5363211307118736,
-              53.79883806992821
+              -1.5348676113561743,
+              53.798431287843734
             ],
             [
-              -1.5363573720516857,
-              53.79883353374962
+              -1.5347818109015074,
+              53.798426221065355
             ],
             [
-              -1.5363479017692159,
-              53.79880714045677
+              -1.5347787810201385,
+              53.798444117566916
             ],
             [
-              -1.5363116604294036,
-              53.79881167663536
+              -1.5348645814748052,
+              53.798449184345294
             ],
             [
-              -1.5363211307118736,
-              53.79883806992821
+              -1.5348676113561743,
+              53.798431287843734
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 417,
-        "id": 499,
+        "dst_i": 377,
+        "id": 443,
         "layer": 0,
         "osm_way_ids": [
-          778102285
+          775795902
         ],
-        "src_i": 127,
+        "src_i": 386,
         "type": "road"
       },
       "type": "Feature"
@@ -18583,37 +18443,70 @@
         "coordinates": [
           [
             [
-              -1.5357813794230124,
-              53.799109393482325
+              -1.5345905690526462,
+              53.798615079518804
             ],
             [
-              -1.535784627029525,
-              53.79910852833486
+              -1.534575031394671,
+              53.798745681712056
             ],
             [
-              -1.535747068680977,
-              53.79905934083455
+              -1.5345117190544868,
+              53.798859998088886
             ],
             [
-              -1.5357438210744645,
-              53.799060205982016
+              -1.5344295224838405,
+              53.79891650336976
             ],
             [
-              -1.5357813794230124,
-              53.799109393482325
+              -1.5343327276706984,
+              53.79892970271415
+            ],
+            [
+              -1.5341982100732359,
+              53.7989292530533
+            ],
+            [
+              -1.5341976924050622,
+              53.798983212354486
+            ],
+            [
+              -1.534342870921794,
+              53.79898369798819
+            ],
+            [
+              -1.5344792764855368,
+              53.798965097317755
+            ],
+            [
+              -1.534592880288786,
+              53.79888700112184
+            ],
+            [
+              -1.5346653675360706,
+              53.7987561174409
+            ],
+            [
+              -1.5346816969218409,
+              53.798618862065815
+            ],
+            [
+              -1.5345905690526462,
+              53.798615079518804
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 389,
-        "id": 501,
+        "dst_i": 380,
+        "id": 445,
         "layer": 0,
         "osm_way_ids": [
-          778102286
+          775795904,
+          775795905
         ],
-        "src_i": 419,
+        "src_i": 377,
         "type": "road"
       },
       "type": "Feature"
@@ -18623,37 +18516,37 @@
         "coordinates": [
           [
             [
-              -1.5362117976710565,
-              53.79892578796685
+              -1.5348958014333336,
+              53.79859644917075
             ],
             [
-              -1.5362083917189848,
-              53.79893384319119
+              -1.5349227963060332,
+              53.798599026626704
             ],
             [
-              -1.5362970226005184,
-              53.79894691752987
+              -1.5349276562966512,
+              53.79858127041933
             ],
             [
-              -1.53630042855259,
-              53.798938862305526
+              -1.5349006614239515,
+              53.798578692963375
             ],
             [
-              -1.5362117976710565,
-              53.79892578796685
+              -1.5348958014333336,
+              53.79859644917075
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 420,
-        "id": 502,
+        "dst_i": 382,
+        "id": 447,
         "layer": 0,
         "osm_way_ids": [
-          778102287
+          775795907
         ],
-        "src_i": 126,
+        "src_i": 381,
         "type": "road"
       },
       "type": "Feature"
@@ -18663,37 +18556,37 @@
         "coordinates": [
           [
             [
-              -1.5363459787842062,
-              53.79898939429176
+              -1.5351353599934328,
+              53.79860692806704
             ],
             [
-              -1.5363534225480318,
-              53.79898615673368
+              -1.5351665220949298,
+              53.79860622929409
             ],
             [
-              -1.5362992561864321,
-              53.798942706905734
+              -1.5351653679994133,
+              53.798588255450866
             ],
             [
-              -1.5362918124226066,
-              53.7989459444638
+              -1.5351342058979163,
+              53.79858895422382
             ],
             [
-              -1.5363459787842062,
-              53.79898939429176
+              -1.5351353599934328,
+              53.79860692806704
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 132,
-        "id": 503,
+        "dst_i": 384,
+        "id": 448,
         "layer": 0,
         "osm_way_ids": [
-          778102288
+          775795908
         ],
-        "src_i": 420,
+        "src_i": 383,
         "type": "road"
       },
       "type": "Feature"
@@ -18703,69 +18596,37 @@
         "coordinates": [
           [
             [
-              -1.5367851654175788,
-              53.79870146925931
-            ],
-            [
-              -1.536530448315314,
-              53.7986745174877
-            ],
-            [
-              -1.5364577829292756,
-              53.79868173184626
-            ],
-            [
-              -1.5363934382978508,
-              53.79870662866782
-            ],
-            [
-              -1.536360459790086,
-              53.79874567451748
-            ],
-            [
-              -1.5363737166629903,
-              53.798803911891916
-            ],
-            [
-              -1.5364642537814455,
-              53.79879672091572
-            ],
-            [
-              -1.5364547393449255,
-              53.79875492494035
-            ],
-            [
-              -1.5364641609056848,
-              53.798743770653466
+              -1.5350941338136195,
+              53.79844767798147
             ],
             [
-              -1.536491818089136,
-              53.798733068725404
+              -1.5350266435867637,
+              53.79844284592605
             ],
             [
-              -1.5365299519628888,
-              53.7987292825811
+              -1.5350229803231585,
+              53.79846070105881
             ],
             [
-              -1.5367690568020593,
-              53.798754583198104
+              -1.5350904705500146,
+              53.79846553311423
             ],
             [
-              -1.5367851654175788,
-              53.79870146925931
+              -1.5350941338136195,
+              53.79844767798147
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 417,
-        "id": 504,
+        "dst_i": 386,
+        "id": 449,
         "layer": 0,
         "osm_way_ids": [
-          778102289
+          775795909
         ],
-        "src_i": 72,
+        "src_i": 375,
         "type": "road"
       },
       "type": "Feature"
@@ -18775,45 +18636,53 @@
         "coordinates": [
           [
             [
-              -1.5363910174378625,
-              53.79883292850613
+              -1.5353268576312737,
+              53.79862555751577
             ],
             [
-              -1.5364281723097457,
-              53.798863657428825
+              -1.5352497737951183,
+              53.798616452783016
             ],
             [
-              -1.5364859821417554,
-              53.79889033940394
+              -1.5352575753590052,
+              53.79862176597554
             ],
             [
-              -1.5365422313564772,
-              53.798847821273256
+              -1.5352578692118213,
+              53.79860685971859
             ],
             [
-              -1.5364948266547567,
-              53.79882594167595
+              -1.5351665220949298,
+              53.79860623019341
             ],
             [
-              -1.536465357632698,
-              53.798801569158925
+              -1.5351658232428955,
+              53.79864163379023
             ],
             [
-              -1.5363910174378625,
-              53.79883292850613
+              -1.5352012256557557,
+              53.79866574640329
+            ],
+            [
+              -1.5353089432673603,
+              53.79867847000651
+            ],
+            [
+              -1.5353268576312737,
+              53.79862555751577
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 130,
-        "id": 505,
+        "dst_i": 384,
+        "id": 450,
         "layer": 0,
         "osm_way_ids": [
-          778102289
+          775795910
         ],
-        "src_i": 417,
+        "src_i": 387,
         "type": "road"
       },
       "type": "Feature"
@@ -18823,45 +18692,37 @@
         "coordinates": [
           [
             [
-              -1.536497544412668,
-              53.79889497450791
-            ],
-            [
-              -1.5365348012956326,
-              53.79890757310541
-            ],
-            [
-              -1.5367190698496846,
-              53.79893300232541
+              -1.5352582300569895,
+              53.79858887418418
             ],
             [
-              -1.5367398527043012,
-              53.798880458556575
+              -1.5352602672335078,
+              53.79848946946023
             ],
             [
-              -1.5365685989371547,
-              53.7988568261813
+              -1.5351689201166163,
+              53.79848881655269
             ],
             [
-              -1.5365429347761719,
-              53.7988481468277
+              -1.535166882940098,
+              53.79858822127664
             ],
             [
-              -1.536497544412668,
-              53.79889497450791
+              -1.5352582300569895,
+              53.79858887418418
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 235,
-        "id": 506,
+        "dst_i": 375,
+        "id": 451,
         "layer": 0,
         "osm_way_ids": [
-          778102289
+          775795910
         ],
-        "src_i": 130,
+        "src_i": 384,
         "type": "road"
       },
       "type": "Feature"
@@ -18871,37 +18732,37 @@
         "coordinates": [
           [
             [
-              -1.5367487581194406,
-              53.79893710862824
+              -1.5356900840729384,
+              53.799012394443885
             ],
             [
-              -1.5367677489286442,
-              53.7989397445401
+              -1.5356968929319745,
+              53.79901815729725
             ],
             [
-              -1.536788647497323,
-              53.7988872151604
+              -1.5357343507919947,
+              53.79900271774254
             ],
             [
-              -1.5367696566881193,
-              53.798884579248536
+              -1.5357275419329584,
+              53.79899695488917
             ],
             [
-              -1.5367487581194406,
-              53.79893710862824
+              -1.5356900840729384,
+              53.799012394443885
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 422,
-        "id": 507,
+        "dst_i": 389,
+        "id": 453,
         "layer": 0,
         "osm_way_ids": [
-          778102289
+          775795915
         ],
-        "src_i": 235,
+        "src_i": 388,
         "type": "road"
       },
       "type": "Feature"
@@ -18911,37 +18772,37 @@
         "coordinates": [
           [
             [
-              -1.5367700479843565,
-              53.79888279049771
+              -1.5355524071770634,
+              53.79883175758929
             ],
             [
-              -1.5367741223373932,
-              53.79886438318143
+              -1.5355285015653173,
+              53.79882570155706
             ],
             [
-              -1.536743927057338,
-              53.79886205213962
+              -1.5355104988933037,
+              53.79885049765459
             ],
             [
-              -1.5367398527043012,
-              53.798880459455894
+              -1.5355344045050499,
+              53.798856553686825
             ],
             [
-              -1.5367700479843565,
-              53.79888279049771
+              -1.5355524071770634,
+              53.79883175758929
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 233,
-        "id": 508,
+        "dst_i": 392,
+        "id": 455,
         "layer": 0,
         "osm_way_ids": [
-          778102290
+          775795916
         ],
-        "src_i": 235,
+        "src_i": 391,
         "type": "road"
       },
       "type": "Feature"
@@ -18951,77 +18812,53 @@
         "coordinates": [
           [
             [
-              -1.5364016418158488,
-              53.79916561187958
+              -1.535482462594043,
+              53.798817259624386
             ],
             [
-              -1.5363937793498241,
-              53.79916490861002
+              -1.5354991284641262,
+              53.79882028674118
             ],
             [
-              -1.536384659254648,
-              53.799200476782715
+              -1.5355205447009785,
+              53.79877090858468
             ],
             [
-              -1.5363925217206729,
-              53.79920118005227
+              -1.535472087914823,
+              53.79876101874409
             ],
             [
-              -1.5364016418158488,
-              53.79916561187958
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "dst_i": 427,
-        "id": 509,
-        "layer": 0,
-        "osm_way_ids": [
-          778102291
-        ],
-        "src_i": 423,
-        "type": "road"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
-            [
-              -1.5363491000187823,
-              53.79916091112513
+              -1.5354571699361026,
+              53.798786518111186
             ],
             [
-              -1.536338900433209,
-              53.79916001090412
+              -1.5354658545809914,
+              53.79878829067423
             ],
             [
-              -1.5363298990972023,
-              53.79919558807003
+              -1.5354440729313106,
+              53.798838512394475
             ],
             [
-              -1.5363400986827755,
-              53.79919648829104
+              -1.5354690367177055,
+              53.79884304677442
             ],
             [
-              -1.5363491000187823,
-              53.79916091112513
+              -1.535482462594043,
+              53.798817259624386
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 424,
-        "id": 510,
+        "dst_i": 241,
+        "id": 456,
         "layer": 0,
         "osm_way_ids": [
-          778102291
+          775795916
         ],
-        "src_i": 427,
+        "src_i": 392,
         "type": "road"
       },
       "type": "Feature"
@@ -19031,37 +18868,37 @@
         "coordinates": [
           [
             [
-              -1.5332890507756962,
-              53.79722758713541
+              -1.5353809158915783,
+              53.79874276341318
             ],
             [
-              -1.5339234622577598,
-              53.797174215990616
+              -1.5353787553882303,
+              53.798742338933344
             ],
             [
-              -1.5339105814555578,
-              53.79712079628245
+              -1.535364339852149,
+              53.798767939024465
             ],
             [
-              -1.5332761699734943,
-              53.797174167427244
+              -1.535366500355497,
+              53.7987683635043
             ],
             [
-              -1.5332890507756962,
-              53.79722758713541
+              -1.5353809158915783,
+              53.79874276341318
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 105,
-        "id": 514,
+        "dst_i": 393,
+        "id": 457,
         "layer": 0,
         "osm_way_ids": [
-          779181825
+          775795916
         ],
-        "src_i": 11,
+        "src_i": 241,
         "type": "road"
       },
       "type": "Feature"
@@ -19071,37 +18908,37 @@
         "coordinates": [
           [
             [
-              -1.5339387349914342,
-              53.7971729299606
+              -1.5353577228348478,
+              53.79874550454568
             ],
             [
-              -1.5339425215818687,
-              53.797172632285125
+              -1.5353441599286994,
+              53.7987439918866
             ],
             [
-              -1.5339304690487447,
-              53.79711914422851
+              -1.53533992113989,
+              53.79875724788826
             ],
             [
-              -1.5339266824583102,
-              53.79711944190399
+              -1.535353484046038,
+              53.79875876054734
             ],
             [
-              -1.5339387349914342,
-              53.7971729299606
+              -1.5353577228348478,
+              53.79874550454568
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 483,
-        "id": 515,
+        "dst_i": 394,
+        "id": 458,
         "layer": 0,
         "osm_way_ids": [
-          779181825
+          775795917
         ],
-        "src_i": 105,
+        "src_i": 393,
         "type": "road"
       },
       "type": "Feature"
@@ -19111,37 +18948,45 @@
         "coordinates": [
           [
             [
-              -1.5340045549771537,
-              53.79716777145141
+              -1.5353216200473998,
+              53.79873978126247
             ],
             [
-              -1.5342275496782511,
-              53.797150437025905
+              -1.5353164296626827,
+              53.7987384637562
             ],
             [
-              -1.534215631129831,
-              53.79709693817743
+              -1.5353315151222826,
+              53.798680520459946
             ],
             [
-              -1.5339926364287333,
-              53.79711427260294
+              -1.535308941744807,
+              53.79867847000651
             ],
             [
-              -1.5340045549771537,
-              53.79716777145141
+              -1.535291170500918,
+              53.79874673571707
+            ],
+            [
+              -1.5353126034858584,
+              53.79875217571395
+            ],
+            [
+              -1.5353216200473998,
+              53.79873978126247
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 306,
-        "id": 516,
+        "dst_i": 387,
+        "id": 459,
         "layer": 0,
         "osm_way_ids": [
-          779181825
+          775795917
         ],
-        "src_i": 483,
+        "src_i": 394,
         "type": "road"
       },
       "type": "Feature"
@@ -19151,45 +18996,45 @@
         "coordinates": [
           [
             [
-              -1.5358316099839393,
-              53.79909535956741
+              -1.5353456124446925,
+              53.798628013563295
             ],
             [
-              -1.5361531610925225,
-              53.798995810052666
+              -1.5353692851057603,
+              53.79854247188314
             ],
             [
-              -1.536212517838839,
-              53.79899330544177
+              -1.535373260492823,
+              53.79847877472674
             ],
             [
-              -1.5362060074002795,
-              53.79893948283749
+              -1.5353504374165812,
+              53.79847827830117
             ],
             [
-              -1.5361276400515642,
-              53.79894278964333
+              -1.535346513796336,
+              53.798541128296534
             ],
             [
-              -1.5357892007800942,
-              53.799047567814355
+              -1.5353230725633926,
+              53.79862583720482
             ],
             [
-              -1.5358316099839393,
-              53.79909535956741
+              -1.5353456124446925,
+              53.798628013563295
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 420,
-        "id": 517,
+        "dst_i": 374,
+        "id": 460,
         "layer": 0,
         "osm_way_ids": [
-          779181826
+          775795917
         ],
-        "src_i": 389,
+        "src_i": 387,
         "type": "road"
       },
       "type": "Feature"
@@ -19199,53 +19044,53 @@
         "coordinates": [
           [
             [
-              -1.536278825041663,
-              53.79900010521304
+              -1.5353743887049307,
+              53.798460804480804
             ],
             [
-              -1.5362897843814087,
-              53.79900504878435
+              -1.5353780443557683,
+              53.79840291604318
             ],
             [
-              -1.5363237525489175,
-              53.79906653271008
+              -1.5353428992544416,
+              53.798233732050264
             ],
             [
-              -1.5363032209156207,
-              53.79915780306938
+              -1.5353094518002133,
+              53.79817300445407
             ],
             [
-              -1.5363937793498241,
-              53.799164909509344
+              -1.5352877340977775,
+              53.7981771773067
             ],
             [
-              -1.5364170485342272,
-              53.79906146773034
+              -1.5353204994480592,
+              53.79823666743625
             ],
             [
-              -1.5363678152458113,
-              53.798972351246476
+              -1.5353551542871746,
+              53.798403484414486
             ],
             [
-              -1.5363342703481622,
-              53.7989572201591
+              -1.535351565628689,
+              53.79846030086066
             ],
             [
-              -1.536278825041663,
-              53.79900010521304
+              -1.5353743887049307,
+              53.798460804480804
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 427,
-        "id": 519,
+        "dst_i": 395,
+        "id": 461,
         "layer": 0,
         "osm_way_ids": [
-          779181826
+          775795917
         ],
-        "src_i": 420,
+        "src_i": 374,
         "type": "road"
       },
       "type": "Feature"
@@ -19255,37 +19100,37 @@
         "coordinates": [
           [
             [
-              -1.5324291049733774,
-              53.79956020455791
+              -1.5352969714295692,
+              53.798154173557286
             ],
             [
-              -1.5333526782844449,
-              53.799737869154335
+              -1.5351635104842023,
+              53.79798627739302
             ],
             [
-              -1.5333809673275787,
-              53.79968656285213
+              -1.5351428372534344,
+              53.7979920114681
             ],
             [
-              -1.5324573940165112,
-              53.79950889825571
+              -1.5352762981988013,
+              53.79815990763235
             ],
             [
-              -1.5324291049733774,
-              53.79956020455791
+              -1.5352969714295692,
+              53.798154173557286
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 138,
-        "id": 520,
+        "dst_i": 326,
+        "id": 462,
         "layer": 0,
         "osm_way_ids": [
-          812851864
+          775795917
         ],
-        "src_i": 428,
+        "src_i": 395,
         "type": "road"
       },
       "type": "Feature"
@@ -19295,37 +19140,37 @@
         "coordinates": [
           [
             [
-              -1.5351919868014103,
-              53.797714033832825
+              -1.5351506296820003,
+              53.797969925926125
             ],
             [
-              -1.5352545591806173,
-              53.797774538397235
+              -1.535066947099185,
+              53.79786274206958
             ],
             [
-              -1.5353325169624539,
-              53.79774640941353
+              -1.535046206876065,
+              53.79786839160842
             ],
             [
-              -1.5352699445832472,
-              53.79768590484912
+              -1.5351298894588805,
+              53.79797557546495
             ],
             [
-              -1.5351919868014103,
-              53.797714033832825
+              -1.5351506296820003,
+              53.797969925926125
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 62,
-        "id": 521,
+        "dst_i": 333,
+        "id": 463,
         "layer": 0,
         "osm_way_ids": [
-          813941484
+          775795917
         ],
-        "src_i": 35,
+        "src_i": 326,
         "type": "road"
       },
       "type": "Feature"
@@ -19335,37 +19180,37 @@
         "coordinates": [
           [
             [
-              -1.533965790766272,
-              53.79954507976579
+              -1.5355593561110172,
+              53.798817832492304
             ],
             [
-              -1.5341441091814347,
-              53.79949774217019
+              -1.535554987905164,
+              53.79882530315755
             ],
             [
-              -1.534125384819085,
-              53.79947313313157
+              -1.53564133495652,
+              53.798842919070744
             ],
             [
-              -1.5339470664039223,
-              53.799520470727174
+              -1.5356457031623731,
+              53.79883544840549
             ],
             [
-              -1.533965790766272,
-              53.79954507976579
+              -1.5355593561110172,
+              53.798817832492304
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 429,
-        "id": 522,
+        "dst_i": 416,
+        "id": 464,
         "layer": 0,
         "osm_way_ids": [
-          823888306
+          775795918
         ],
-        "src_i": 96,
+        "src_i": 397,
         "type": "road"
       },
       "type": "Feature"
@@ -19375,101 +19220,69 @@
         "coordinates": [
           [
             [
-              -1.5341754494216855,
-              53.79949115913545
-            ],
-            [
-              -1.5343018000424329,
-              53.79947334537149
-            ],
-            [
-              -1.5343559603138188,
-              53.799472464935555
+              -1.5356034599168542,
+              53.79889202383346
             ],
             [
-              -1.5343547026846676,
-              53.79944549607683
+              -1.5356623705550094,
+              53.79890787707615
             ],
             [
-              -1.534295801181833,
-              53.79944645385442
+              -1.5356768287225873,
+              53.79891570926871
             ],
             [
-              -1.5341648433143407,
-              53.79946491692864
+              -1.535689318228552,
+              53.798939033176644
             ],
             [
-              -1.5341754494216855,
-              53.79949115913545
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "dst_i": 76,
-        "id": 523,
-        "layer": 0,
-        "osm_way_ids": [
-          823888306
-        ],
-        "src_i": 429,
-        "type": "road"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
-            [
-              -1.5356791353910668,
-              53.79851093896685
+              -1.535676679512349,
+              53.79896406489646
             ],
             [
-              -1.5356926236920958,
-              53.79849745004088
+              -1.5356666611106364,
+              53.79896870629568
             ],
             [
-              -1.5357562877421276,
-              53.79846133058399
+              -1.5357230351747413,
+              53.79901116686978
             ],
             [
-              -1.535819903070449,
-              53.79844115969789
+              -1.5357559192841923,
+              53.79899593505838
             ],
             [
-              -1.5357550910151145,
-              53.79836984708545
+              -1.535784882818505,
+              53.79893856732801
             ],
             [
-              -1.5356749133503451,
-              53.7983952700102
+              -1.5357565709370695,
+              53.79888568991082
             ],
             [
-              -1.5355841752548343,
-              53.79844674988149
+              -1.5357134309075675,
+              53.79886232283545
             ],
             [
-              -1.5355611496789834,
-              53.79846977521463
+              -1.53564133495652,
+              53.79884292086938
             ],
             [
-              -1.5356791353910668,
-              53.79851093896685
+              -1.5356034599168542,
+              53.79889202383346
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 430,
-        "id": 524,
+        "dst_i": 388,
+        "id": 465,
         "layer": 0,
         "osm_way_ids": [
-          845622686
+          775795918
         ],
-        "src_i": 6,
+        "src_i": 416,
         "type": "road"
       },
       "type": "Feature"
@@ -19479,37 +19292,37 @@
         "coordinates": [
           [
             [
-              -1.5358636658243126,
-              53.79843301813866
+              -1.5353863635878287,
+              53.79866467441184
             ],
             [
-              -1.53593751727949,
-              53.7984237389375
+              -1.5353800693518591,
+              53.79866186762885
             ],
             [
-              -1.5359090059435525,
-              53.79834457164946
+              -1.5353663085137623,
+              53.79867263430808
             ],
             [
-              -1.535835154488375,
-              53.79835385085062
+              -1.5353726027497319,
+              53.79867544109106
             ],
             [
-              -1.5358636658243126,
-              53.79843301813866
+              -1.5353863635878287,
+              53.79866467441184
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 63,
-        "id": 525,
+        "dst_i": 295,
+        "id": 466,
         "layer": 0,
         "osm_way_ids": [
-          845622686
+          775795921
         ],
-        "src_i": 430,
+        "src_i": 398,
         "type": "road"
       },
       "type": "Feature"
@@ -19519,37 +19332,61 @@
         "coordinates": [
           [
             [
-              -1.5356276197950267,
-              53.7986514274034
+              -1.5353709797077522,
+              53.79865781528534
             ],
             [
-              -1.535624955326486,
-              53.79859249215533
+              -1.535401645456824,
+              53.79855704089446
             ],
             [
-              -1.5354879742375385,
-              53.79859465232602
+              -1.5354194852156182,
+              53.798409603399236
             ],
             [
-              -1.5354906387060792,
-              53.79865358757409
+              -1.5353749550948148,
+              53.798245292830536
             ],
             [
-              -1.5356276197950267,
-              53.7986514274034
+              -1.5353345282555637,
+              53.798165779303645
+            ],
+            [
+              -1.535312655252676,
+              53.7981696589774
+            ],
+            [
+              -1.5353526435965328,
+              53.79824830735683
+            ],
+            [
+              -1.535396515974245,
+              53.79841019695155
+            ],
+            [
+              -1.5353789533201792,
+              53.798555359162904
+            ],
+            [
+              -1.5353485007285905,
+              53.79865542848558
+            ],
+            [
+              -1.5353709797077522,
+              53.79865781528534
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 6,
-        "id": 526,
+        "dst_i": 329,
+        "id": 467,
         "layer": 0,
         "osm_way_ids": [
-          845622687
+          775795921
         ],
-        "src_i": 313,
+        "src_i": 295,
         "type": "road"
       },
       "type": "Feature"
@@ -19559,37 +19396,37 @@
         "coordinates": [
           [
             [
-              -1.5362693136502499,
-              53.79865145168508
+              -1.5353234973558059,
+              53.79814736209483
             ],
             [
-              -1.5362657295594246,
-              53.79866156455745
+              -1.5352589959013756,
+              53.798056567476706
             ],
             [
-              -1.5363998512929897,
-              53.79867814804934
+              -1.535237935942031,
+              53.79806178713977
             ],
             [
-              -1.5364034353838152,
-              53.79866803517698
+              -1.535302437396461,
+              53.7981525817579
             ],
             [
-              -1.5362693136502499,
-              53.79865145168508
+              -1.5353234973558059,
+              53.79814736209483
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 51,
-        "id": 527,
+        "dst_i": 247,
+        "id": 468,
         "layer": 0,
         "osm_way_ids": [
-          845622689
+          775795921
         ],
-        "src_i": 15,
+        "src_i": 329,
         "type": "road"
       },
       "type": "Feature"
@@ -19599,37 +19436,37 @@
         "coordinates": [
           [
             [
-              -1.5362299967524653,
-              53.798713983320575
+              -1.5352436546527957,
+              53.79803513664092
             ],
             [
-              -1.5361902672426953,
-              53.79874303320969
+              -1.5351985870706237,
+              53.797976610584215
             ],
             [
-              -1.5362968612098526,
-              53.79879389524698
+              -1.5351777981257935,
+              53.79798219537189
             ],
             [
-              -1.5363365907196227,
-              53.798764845357866
+              -1.5352228657079654,
+              53.79804072142859
             ],
             [
-              -1.5362299967524653,
-              53.798713983320575
+              -1.5352436546527957,
+              53.79803513664092
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 431,
-        "id": 528,
+        "dst_i": 399,
+        "id": 469,
         "layer": 0,
         "osm_way_ids": [
-          845622689
+          775795921
         ],
-        "src_i": 51,
+        "src_i": 247,
         "type": "road"
       },
       "type": "Feature"
@@ -19639,45 +19476,45 @@
         "coordinates": [
           [
             [
-              -1.5362513216361107,
-              53.798551280739055
+              -1.5351858052343963,
+              53.79796001180385
             ],
             [
-              -1.5362711117858765,
-              53.798591770000016
+              -1.5351209642505463,
+              53.797875808314366
             ],
             [
-              -1.5362697917320338,
-              53.7986355570736
+              -1.534868753271263,
+              53.79761900340955
             ],
             [
-              -1.5364068002269435,
-              53.79863699958558
+              -1.53484899966278,
+              53.79762577170456
             ],
             [
-              -1.5364084887387215,
-              53.79858103030044
+              -1.5351006351168586,
+              53.79788199205028
             ],
             [
-              -1.536382973787977,
-              53.79852883007248
+              -1.535165016289566,
+              53.797965596591524
             ],
             [
-              -1.5362513216361107,
-              53.798551280739055
+              -1.5351858052343963,
+              53.79796001180385
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 15,
-        "id": 530,
+        "dst_i": 303,
+        "id": 470,
         "layer": 0,
         "osm_way_ids": [
-          845622690
+          775795921
         ],
-        "src_i": 0,
+        "src_i": 399,
         "type": "road"
       },
       "type": "Feature"
@@ -19687,37 +19524,37 @@
         "coordinates": [
           [
             [
-              -1.5360284609197168,
-              53.798430155597735
+              -1.5355747506489679,
+              53.79880368975946
             ],
             [
-              -1.5360493625335025,
-              53.79843374029397
+              -1.535547687261363,
+              53.79878545331431
             ],
             [
-              -1.5360875725349277,
-              53.798356011920625
+              -1.5355305128584271,
+              53.798794345807146
             ],
             [
-              -1.5360666709211421,
-              53.79835242722439
+              -1.535557576246032,
+              53.798812582252296
             ],
             [
-              -1.5360284609197168,
-              53.798430155597735
+              -1.5355747506489679,
+              53.79880368975946
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 280,
-        "id": 531,
+        "dst_i": 313,
+        "id": 472,
         "layer": 0,
         "osm_way_ids": [
-          845622691
+          775795922
         ],
-        "src_i": 63,
+        "src_i": 401,
         "type": "road"
       },
       "type": "Feature"
@@ -19727,37 +19564,37 @@
         "coordinates": [
           [
             [
-              -1.5361514604003168,
-              53.79846626066547
+              -1.5355067747275608,
+              53.79875330076538
             ],
             [
-              -1.5361896414732266,
-              53.79848748915388
+              -1.5354903448532629,
+              53.79874040179443
             ],
             [
-              -1.5362835647505584,
-              53.79842855300649
+              -1.5354720955275902,
+              53.7987485118774
             ],
             [
-              -1.5362453836776486,
-              53.79840732451808
+              -1.535488525401888,
+              53.79876141084835
             ],
             [
-              -1.5361514604003168,
-              53.79846626066547
+              -1.5355067747275608,
+              53.79875330076538
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 0,
-        "id": 532,
+        "dst_i": 403,
+        "id": 473,
         "layer": 0,
         "osm_way_ids": [
-          845622691
+          775795922
         ],
-        "src_i": 280,
+        "src_i": 313,
         "type": "road"
       },
       "type": "Feature"
@@ -19767,37 +19604,37 @@
         "coordinates": [
           [
             [
-              -1.5338881649010876,
-              53.79657650971078
+              -1.535403661317594,
+              53.79867616954163
             ],
             [
-              -1.5338822634839087,
-              53.79656825843431
+              -1.5353992565704582,
+              53.79867309925739
             ],
             [
-              -1.5338612248403123,
-              53.79657350867432
+              -1.5353818324687563,
+              53.79868182087911
             ],
             [
-              -1.5338671262574914,
-              53.79658175995079
+              -1.5353862372158922,
+              53.79868489116335
             ],
             [
-              -1.5338881649010876,
-              53.79657650971078
+              -1.535403661317594,
+              53.79867616954163
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 309,
-        "id": 533,
+        "dst_i": 398,
+        "id": 474,
         "layer": 0,
         "osm_way_ids": [
-          847518147
+          775795922
         ],
-        "src_i": 432,
+        "src_i": 403,
         "type": "road"
       },
       "type": "Feature"
@@ -19807,45 +19644,37 @@
         "coordinates": [
           [
             [
-              -1.5338611715509416,
-              53.796538846118565
-            ],
-            [
-              -1.5338539866212026,
-              53.79652885645327
-            ],
-            [
-              -1.5338526102328822,
-              53.796527935547864
+              -1.5355834185457686,
+              53.798793858374786
             ],
             [
-              -1.5338354906418707,
-              53.79653686401357
+              -1.5355707432882828,
+              53.79880460616826
             ],
             [
-              -1.5338344126740269,
-              53.796536142757574
+              -1.5356457016398197,
+              53.79883544930482
             ],
             [
-              -1.5338401511779867,
-              53.796544121539576
+              -1.5356583768973056,
+              53.79882470151134
             ],
             [
-              -1.5338611715509416,
-              53.796538846118565
+              -1.5355834185457686,
+              53.798793858374786
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 434,
-        "id": 534,
+        "dst_i": 397,
+        "id": 475,
         "layer": 0,
         "osm_way_ids": [
-          847518147
+          775795923
         ],
-        "src_i": 309,
+        "src_i": 102,
         "type": "road"
       },
       "type": "Feature"
@@ -19855,37 +19684,37 @@
         "coordinates": [
           [
             [
-              -1.5337696478178495,
-              53.796471410481914
+              -1.5339943158051905,
+              53.79926796188205
             ],
             [
-              -1.533744763204234,
-              53.79645417318315
+              -1.5340226490023743,
+              53.799125135209124
             ],
             [
-              -1.5337273847791357,
-              53.7964629253818
+              -1.533962160998843,
+              53.79912094796735
             ],
             [
-              -1.5337522693927512,
-              53.79648016268057
+              -1.5339338278016592,
+              53.79926377464028
             ],
             [
-              -1.5337696478178495,
-              53.796471410481914
+              -1.5339943158051905,
+              53.79926796188205
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 435,
-        "id": 535,
+        "dst_i": 407,
+        "id": 476,
         "layer": 0,
         "osm_way_ids": [
-          847518147
+          775795924
         ],
-        "src_i": 434,
+        "src_i": 404,
         "type": "road"
       },
       "type": "Feature"
@@ -19895,37 +19724,37 @@
         "coordinates": [
           [
             [
-              -1.5337151419268302,
-              53.79643340874474
+              -1.53402619350681,
+              53.799107245002816
             ],
             [
-              -1.5336953152357815,
-              53.796419332561705
+              -1.5340552651424177,
+              53.798960275154876
             ],
             [
-              -1.5336777571493758,
-              53.796427960653965
+              -1.5339947740937796,
+              53.79895610050361
             ],
             [
-              -1.5336975838404245,
-              53.79644203683699
+              -1.5339657024581719,
+              53.79910307035155
             ],
             [
-              -1.5337151419268302,
-              53.79643340874474
+              -1.53402619350681,
+              53.799107245002816
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 226,
-        "id": 536,
+        "dst_i": 405,
+        "id": 477,
         "layer": 0,
         "osm_way_ids": [
-          847518147
+          775795924
         ],
-        "src_i": 435,
+        "src_i": 407,
         "type": "road"
       },
       "type": "Feature"
@@ -19935,61 +19764,45 @@
         "coordinates": [
           [
             [
-              -1.5336611567490914,
-              53.79641869764059
-            ],
-            [
-              -1.5336251011608004,
-              53.796441241836625
-            ],
-            [
-              -1.533577332568805,
-              53.79645891620573
-            ],
-            [
-              -1.5334213104263898,
-              53.79649314708707
-            ],
-            [
-              -1.5327483844322105,
-              53.796592593179824
+              -1.5340586543464014,
+              53.79894237955264
             ],
             [
-              -1.532753926526775,
-              53.796605680109
+              -1.5340833821370115,
+              53.79880687965348
             ],
             [
-              -1.533428088834357,
-              53.79650605235327
+              -1.534019372467346,
+              53.7987798505402
             ],
             [
-              -1.53358746668458,
-              53.79647108402814
+              -1.5339839548289513,
+              53.79880911446787
             ],
             [
-              -1.5336396994032957,
-              53.796451758504425
+              -1.5340190177123918,
+              53.7988239200008
             ],
             [
-              -1.5336777586719292,
-              53.796427960653965
+              -1.533998102395625,
+              53.79893852505989
             ],
             [
-              -1.5336611567490914,
-              53.79641869764059
+              -1.5340586543464014,
+              53.79894237955264
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 450,
-        "id": 537,
+        "dst_i": 87,
+        "id": 478,
         "layer": 0,
         "osm_way_ids": [
-          847518147
+          775795924
         ],
-        "src_i": 226,
+        "src_i": 405,
         "type": "road"
       },
       "type": "Feature"
@@ -19999,37 +19812,53 @@
         "coordinates": [
           [
             [
-              -1.532725754720257,
-              53.79659601689748
+              -1.5339636333080309,
+              53.7992874960484
             ],
             [
-              -1.532274905327444,
-              53.79666577548205
+              -1.5339698575065417,
+              53.79929074170037
             ],
             [
-              -1.5322806940756677,
-              53.79667882463971
+              -1.534131252740088,
+              53.79929791199217
             ],
             [
-              -1.5327315434684807,
-              53.79660906605515
+              -1.5341655650046768,
+              53.799131722740476
             ],
             [
-              -1.532725754720257,
-              53.79659601689748
+              -1.5341353392735526,
+              53.79912954458335
+            ],
+            [
+              -1.5341045471525443,
+              53.7992786880918
+            ],
+            [
+              -1.533982342444846,
+              53.799273258886785
+            ],
+            [
+              -1.5339837858255183,
+              53.79927401161904
+            ],
+            [
+              -1.5339636333080309,
+              53.7992874960484
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 301,
-        "id": 538,
+        "dst_i": 406,
+        "id": 479,
         "layer": 0,
         "osm_way_ids": [
-          847518147
+          775795925
         ],
-        "src_i": 450,
+        "src_i": 404,
         "type": "road"
       },
       "type": "Feature"
@@ -20039,37 +19868,37 @@
         "coordinates": [
           [
             [
-              -1.5322748505155197,
-              53.796665784475266
+              -1.5341693226665958,
+              53.799113952143955
             ],
             [
-              -1.5319835144801868,
-              53.796711794672056
+              -1.5341976893599554,
+              53.798983213253806
             ],
             [
-              -1.5319894128522589,
-              53.79672482584329
+              -1.5341674849445794,
+              53.79898092717808
             ],
             [
-              -1.5322807488875918,
-              53.796678815646494
+              -1.5341391182512198,
+              53.79911166606823
             ],
             [
-              -1.5322748505155197,
-              53.796665784475266
+              -1.5341693226665958,
+              53.799113952143955
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 436,
-        "id": 539,
+        "dst_i": 380,
+        "id": 480,
         "layer": 0,
         "osm_way_ids": [
-          847518147
+          775795925
         ],
-        "src_i": 301,
+        "src_i": 406,
         "type": "road"
       },
       "type": "Feature"
@@ -20079,37 +19908,37 @@
         "coordinates": [
           [
             [
-              -1.535287429587087,
-              53.79762501087842
+              -1.5341729417761505,
+              53.79894662345168
             ],
             [
-              -1.5352862770141242,
-              53.79763022334691
+              -1.5340586558689548,
+              53.79894237955264
             ],
             [
-              -1.53533229466965,
-              53.79763377386893
+              -1.5340567465869264,
+              53.7989603300135
             ],
             [
-              -1.535333447242613,
-              53.79762856140044
+              -1.534171032494122,
+              53.798964573912535
             ],
             [
-              -1.535287429587087,
-              53.79762501087842
+              -1.5341729417761505,
+              53.79894662345168
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 334,
-        "id": 541,
+        "dst_i": 405,
+        "id": 481,
         "layer": 0,
         "osm_way_ids": [
-          864595640
+          775795925
         ],
-        "src_i": 210,
+        "src_i": 380,
         "type": "road"
       },
       "type": "Feature"
@@ -20119,57 +19948,37 @@
         "coordinates": [
           [
             [
-              -1.5352585832893901,
-              53.79670097763081
-            ],
-            [
-              -1.5352570378976367,
-              53.79669902700208
-            ],
-            [
-              -1.535286988046586,
-              53.797344585289515
+              -1.5341373520892159,
+              53.79911159771978
             ],
             [
-              -1.5353333772051543,
-              53.79734383525523
+              -1.5340261919842566,
+              53.79910724680146
             ],
             [
-              -1.5353031621319042,
-              53.796692573469656
+              -1.5340241791685933,
+              53.799125193665034
             ],
             [
-              -1.5353006148999793,
-              53.79668935839462
+              -1.5341353392735526,
+              53.79912954458335
             ],
             [
-              -1.5352585832893901,
-              53.79670097763081
+              -1.5341373520892159,
+              53.79911159771978
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 210,
-        "id": 547,
+        "dst_i": 407,
+        "id": 482,
         "layer": 0,
         "osm_way_ids": [
-          864595645,
-          864595646,
-          864595647,
-          864595649,
-          864595651,
-          864595653,
-          864595655,
-          864595656,
-          864595657,
-          864595659,
-          864595661,
-          864595662,
-          864595663
+          775795926
         ],
-        "src_i": 66,
+        "src_i": 406,
         "type": "road"
       },
       "type": "Feature"
@@ -20179,37 +19988,37 @@
         "coordinates": [
           [
             [
-              -1.5360580136822153,
-              53.79879816072974
+              -1.5355760235036535,
+              53.79763422982502
             ],
             [
-              -1.536056981390975,
-              53.798798443116745
+              -1.5355129547720214,
+              53.79761439978184
             ],
             [
-              -1.5361145674076273,
-              53.79887188712158
+              -1.5354700279000026,
+              53.79766203145563
             ],
             [
-              -1.5361155996988676,
-              53.79887160473457
+              -1.5355330966316347,
+              53.797681861498816
             ],
             [
-              -1.5360580136822153,
-              53.79879816072974
+              -1.5355760235036535,
+              53.79763422982502
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 2,
-        "id": 567,
+        "dst_i": 103,
+        "id": 483,
         "layer": 0,
         "osm_way_ids": [
-          890039689
+          775795927
         ],
-        "src_i": 431,
+        "src_i": 408,
         "type": "road"
       },
       "type": "Feature"
@@ -20219,37 +20028,45 @@
         "coordinates": [
           [
             [
-              -1.5346710694987475,
-              53.800165192645444
+              -1.535387368473107,
+              53.79762929254896
             ],
             [
-              -1.5345898199563481,
-              53.800307999533295
+              -1.5354931326486332,
+              53.79762699118477
             ],
             [
-              -1.5346186845246865,
-              53.800313730011084
+              -1.5355900705817995,
+              53.797652386230546
             ],
             [
-              -1.534699934067086,
-              53.800170923123225
+              -1.535627108217067,
+              53.7976030602347
             ],
             [
-              -1.5346710694987475,
-              53.800165192645444
+              -1.5355108673512392,
+              53.7975726092024
+            ],
+            [
+              -1.5353840066750855,
+              53.79757536922065
+            ],
+            [
+              -1.535387368473107,
+              53.79762929254896
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 438,
-        "id": 568,
+        "dst_i": 409,
+        "id": 484,
         "layer": 0,
         "osm_way_ids": [
-          894330328
+          775795927
         ],
-        "src_i": 437,
+        "src_i": 103,
         "type": "road"
       },
       "type": "Feature"
@@ -20259,37 +20076,37 @@
         "coordinates": [
           [
             [
-              -1.534063374262102,
-              53.80015218035996
+              -1.5354309561333237,
+              53.79767681900212
             ],
             [
-              -1.534157257953044,
-              53.80023974191663
+              -1.5355052795800712,
+              53.797745339220725
             ],
             [
-              -1.5341829830161648,
-              53.800230119174586
+              -1.535544354391857,
+              53.797730552573555
             ],
             [
-              -1.5340890993252227,
-              53.80014255761792
+              -1.5354700309451097,
+              53.79766203235496
             ],
             [
-              -1.534063374262102,
-              53.80015218035996
+              -1.5354309561333237,
+              53.79767681900212
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 439,
-        "id": 569,
+        "dst_i": 411,
+        "id": 486,
         "layer": 0,
         "osm_way_ids": [
-          894330329
+          775795929
         ],
-        "src_i": 80,
+        "src_i": 103,
         "type": "road"
       },
       "type": "Feature"
@@ -20299,37 +20116,37 @@
         "coordinates": [
           [
             [
-              -1.5367951746839708,
-              53.79758221036072
+              -1.5338132385231733,
+              53.79643800697652
             ],
             [
-              -1.5367239207049819,
-              53.797569241242684
+              -1.5337918984139935,
+              53.79642535082243
             ],
             [
-              -1.5367149528651511,
-              53.797586430877395
+              -1.5337379573903047,
+              53.79645708248881
             ],
             [
-              -1.5367862068441398,
-              53.797599399995434
+              -1.5337592974994845,
+              53.7964697386429
             ],
             [
-              -1.5367951746839708,
-              53.79758221036072
+              -1.5338132385231733,
+              53.79643800697652
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 446,
-        "id": 570,
+        "dst_i": 435,
+        "id": 487,
         "layer": 0,
         "osm_way_ids": [
-          913030752
+          776103800
         ],
-        "src_i": 440,
+        "src_i": 311,
         "type": "road"
       },
       "type": "Feature"
@@ -20339,37 +20156,37 @@
         "coordinates": [
           [
             [
-              -1.5366933950308277,
-              53.79756472215121
+              -1.5352468611503651,
+              53.797657730000005
             ],
             [
-              -1.5365842812377077,
-              53.797550735001025
+              -1.5352447782972432,
+              53.79765918420318
             ],
             [
-              -1.5365778225659654,
-              53.797568313142705
+              -1.5352802081160655,
+              53.79767688824989
             ],
             [
-              -1.5366869363590854,
-              53.79758230029289
+              -1.5352822909691874,
+              53.797675434046724
             ],
             [
-              -1.5366933950308277,
-              53.79756472215121
+              -1.5352468611503651,
+              53.797657730000005
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 441,
-        "id": 571,
+        "dst_i": 35,
+        "id": 488,
         "layer": 0,
         "osm_way_ids": [
-          913030752
+          777360594
         ],
-        "src_i": 446,
+        "src_i": 334,
         "type": "road"
       },
       "type": "Feature"
@@ -20379,37 +20196,37 @@
         "coordinates": [
           [
             [
-              -1.5367678753005807,
-              53.79740789124098
+              -1.5341968565232174,
+              53.7965068995143
             ],
             [
-              -1.536723331476796,
-              53.79740637498462
+              -1.5341754890080754,
+              53.79650846343471
             ],
             [
-              -1.5367215805403267,
-              53.7974243308414
+              -1.5341867224074424,
+              53.796562012645204
             ],
             [
-              -1.536766124364111,
-              53.79742584709777
+              -1.5342080899225843,
+              53.79656044872479
             ],
             [
-              -1.5367678753005807,
-              53.79740789124098
+              -1.5341968565232174,
+              53.7965068995143
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 447,
-        "id": 572,
+        "dst_i": 54,
+        "id": 489,
         "layer": 0,
         "osm_way_ids": [
-          913030753
+          778025015
         ],
-        "src_i": 442,
+        "src_i": 4,
         "type": "road"
       },
       "type": "Feature"
@@ -20419,37 +20236,37 @@
         "coordinates": [
           [
             [
-              -1.5366908234380476,
-              53.79740527331555
+              -1.5340710814276746,
+              53.79620824107753
             ],
             [
-              -1.5365890894615084,
-              53.79740184420196
+              -1.5339822373886578,
+              53.7960152736233
             ],
             [
-              -1.5365873537505734,
-              53.797419801857394
+              -1.5338940845889082,
+              53.79602943434257
             ],
             [
-              -1.5366890877271127,
-              53.797423230970985
+              -1.533982928627925,
+              53.796222401796804
             ],
             [
-              -1.5366908234380476,
-              53.79740527331555
+              -1.5340710814276746,
+              53.79620824107753
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 443,
-        "id": 573,
+        "dst_i": 413,
+        "id": 490,
         "layer": 0,
         "osm_way_ids": [
-          913030753
+          778025016
         ],
-        "src_i": 447,
+        "src_i": 412,
         "type": "road"
       },
       "type": "Feature"
@@ -20459,37 +20276,37 @@
         "coordinates": [
           [
             [
-              -1.5366314012219326,
-              53.797196789864266
+              -1.5341687684571392,
+              53.796449778198074
             ],
             [
-              -1.5365803104183056,
-              53.79719507575713
+              -1.5342474540195261,
+              53.796442244580305
             ],
             [
-              -1.5365785838426913,
-              53.79721303341256
+              -1.5342400300488952,
+              53.79641518578941
             ],
             [
-              -1.5366296746463184,
-              53.797214747519696
+              -1.5341613444865085,
+              53.796422719407175
             ],
             [
-              -1.5366314012219326,
-              53.797196789864266
+              -1.5341687684571392,
+              53.796449778198074
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 445,
-        "id": 574,
+        "dst_i": 79,
+        "id": 491,
         "layer": 0,
         "osm_way_ids": [
-          913030756
+          778025017
         ],
-        "src_i": 444,
+        "src_i": 55,
         "type": "road"
       },
       "type": "Feature"
@@ -20499,37 +20316,37 @@
         "coordinates": [
           [
             [
-              -1.5367238445773095,
-              53.79756455217941
+              -1.5320152551519954,
+              53.79673369315512
             ],
             [
-              -1.5367215805403267,
-              53.79742432994208
+              -1.5322858159454793,
+              53.796690829684906
             ],
             [
-              -1.5366911294712915,
-              53.7974245008132
+              -1.5322739826600522,
+              53.79666477093972
             ],
             [
-              -1.5366933935082743,
-              53.797564723050534
+              -1.5320034218665683,
+              53.796707634409934
             ],
             [
-              -1.5367238445773095,
-              53.79756455217941
+              -1.5320152551519954,
+              53.79673369315512
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 447,
-        "id": 575,
+        "dst_i": 415,
+        "id": 492,
         "layer": 0,
         "osm_way_ids": [
-          913030760
+          778025023
         ],
-        "src_i": 446,
+        "src_i": 414,
         "type": "road"
       },
       "type": "Feature"
@@ -20539,37 +20356,37 @@
         "coordinates": [
           [
             [
-              -1.5367212760296363,
-              53.79740510784036
+              -1.5322850455334327,
+              53.79669094299944
             ],
             [
-              -1.5367201402047612,
-              53.79733178164667
+              -1.5327391851642551,
+              53.796628895199014
             ],
             [
-              -1.5366896891357262,
-              53.797331945323215
+              -1.5327288927029212,
+              53.79660260982477
             ],
             [
-              -1.5366908249606013,
-              53.79740527151691
+              -1.5322747530720988,
+              53.79666465762519
             ],
             [
-              -1.5367212760296363,
-              53.79740510784036
+              -1.5322850455334327,
+              53.79669094299944
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 448,
-        "id": 576,
+        "dst_i": 450,
+        "id": 493,
         "layer": 0,
         "osm_way_ids": [
-          913030760
+          778025023
         ],
-        "src_i": 447,
+        "src_i": 415,
         "type": "road"
       },
       "type": "Feature"
@@ -20579,45 +20396,69 @@
         "coordinates": [
           [
             [
-              -1.5335264153362713,
-              53.80009386024793
+              -1.5327624193299287,
+              53.796625952618456
             ],
             [
-              -1.5335236823528255,
-              53.80008940590761
+              -1.5330403203536036,
+              53.79659325238262
             ],
             [
-              -1.533533923047342,
-              53.80008694986009
+              -1.5334392187000894,
+              53.7965314617882
             ],
             [
-              -1.5335138740634893,
-              53.800057786656446
+              -1.5335264518775542,
+              53.79652457118544
             ],
             [
-              -1.5334560992502089,
-              53.80007164430431
+              -1.5336785153809949,
+              53.796491245021706
             ],
             [
-              -1.5334763172374948,
-              53.800104587357
+              -1.5337273832565823,
+              53.7964629253818
             ],
             [
-              -1.5335264153362713,
-              53.80009386024793
+              -1.533695394408561,
+              53.796443667307216
+            ],
+            [
+              -1.533653484602248,
+              53.796467954388675
+            ],
+            [
+              -1.533515349417784,
+              53.7964982282546
+            ],
+            [
+              -1.5334303817998554,
+              53.796504938993024
+            ],
+            [
+              -1.533030079659087,
+              53.7965669472233
+            ],
+            [
+              -1.5327534941215946,
+              53.7965994927758
+            ],
+            [
+              -1.5327624193299287,
+              53.796625952618456
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 81,
-        "id": 577,
+        "dst_i": 435,
+        "id": 494,
         "layer": 0,
         "osm_way_ids": [
-          936169264
+          778025023
         ],
-        "src_i": 449,
+        "src_i": 450,
         "type": "road"
       },
       "type": "Feature"
@@ -20627,37 +20468,37 @@
         "coordinates": [
           [
             [
-              -1.5327110377185924,
-              53.79655739103106
+              -1.5356080306223163,
+              53.79883414079176
             ],
             [
-              -1.5327261429713874,
-              53.79659565626949
+              -1.5355938998037306,
+              53.79882915315369
             ],
             [
-              -1.5327483844322105,
-              53.796592593179824
+              -1.5355470386535925,
+              53.79887547181782
             ],
             [
-              -1.5327332791794157,
-              53.796554327941394
+              -1.5355611694721782,
+              53.798880459455894
             ],
             [
-              -1.5327110377185924,
-              53.79655739103106
+              -1.5356080306223163,
+              53.79883414079176
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 450,
-        "id": 578,
+        "dst_i": 391,
+        "id": 496,
         "layer": 0,
         "osm_way_ids": [
-          943136734
+          778102279
         ],
-        "src_i": 38,
+        "src_i": 416,
         "type": "road"
       },
       "type": "Feature"
@@ -20667,37 +20508,37 @@
         "coordinates": [
           [
             [
-              -1.5327403255567904,
-              53.79662937183951
+              -1.5361440607905412,
+              53.79875111271571
             ],
             [
-              -1.5327430935589657,
-              53.796635611333365
+              -1.5361528900780081,
+              53.79875853841488
             ],
             [
-              -1.5327651858095508,
-              53.79663219211231
+              -1.5361902687652487,
+              53.79874303231036
             ],
             [
-              -1.5327624178073753,
-              53.796625952618456
+              -1.536181439477782,
+              53.7987356066112
             ],
             [
-              -1.5327403255567904,
-              53.79662937183951
+              -1.5361440607905412,
+              53.79875111271571
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 452,
-        "id": 580,
+        "dst_i": 431,
+        "id": 497,
         "layer": 0,
         "osm_way_ids": [
-          943136734
+          778102285
         ],
-        "src_i": 450,
+        "src_i": 134,
         "type": "road"
       },
       "type": "Feature"
@@ -20707,37 +20548,37 @@
         "coordinates": [
           [
             [
-              -1.5327436051369254,
-              53.79664566574982
+              -1.5362581335402536,
+              53.79882377521
             ],
             [
-              -1.5327475348473845,
-              53.79665489368964
+              -1.5362766249519253,
+              53.79883195993667
             ],
             [
-              -1.5327770662941347,
-              53.79665050679846
+              -1.5363040156885224,
+              53.79881036902163
             ],
             [
-              -1.5327731365836756,
-              53.79664127885863
+              -1.5362855242768507,
+              53.79880218429496
             ],
             [
-              -1.5327436051369254,
-              53.79664566574982
+              -1.5362581335402536,
+              53.79882377521
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 453,
-        "id": 581,
+        "dst_i": 127,
+        "id": 498,
         "layer": 0,
         "osm_way_ids": [
-          943136735
+          778102285
         ],
-        "src_i": 452,
+        "src_i": 431,
         "type": "road"
       },
       "type": "Feature"
@@ -20747,37 +20588,37 @@
         "coordinates": [
           [
             [
-              -1.5327565514089259,
-              53.79667629125052
+              -1.5363211307118736,
+              53.79883806992821
             ],
             [
-              -1.532767131632862,
-              53.796701397614044
+              -1.5363573720516857,
+              53.79883353374962
             ],
             [
-              -1.5327966813502536,
-              53.7966970538903
-            ],
+              -1.5363479017692159,
+              53.79880714045677
+            ],
             [
-              -1.5327861011263175,
-              53.79667194752678
+              -1.5363116604294036,
+              53.79881167663536
             ],
             [
-              -1.5327565514089259,
-              53.79667629125052
+              -1.5363211307118736,
+              53.79883806992821
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 454,
-        "id": 582,
+        "dst_i": 417,
+        "id": 499,
         "layer": 0,
         "osm_way_ids": [
-          943136735
+          778102285
         ],
-        "src_i": 453,
+        "src_i": 127,
         "type": "road"
       },
       "type": "Feature"
@@ -20787,37 +20628,37 @@
         "coordinates": [
           [
             [
-              -1.5327785644867313,
-              53.79672802023392
+              -1.5357813794230124,
+              53.799109393482325
             ],
             [
-              -1.5327824439529263,
-              53.79673688844507
+              -1.535784627029525,
+              53.79910852833486
             ],
             [
-              -1.532811926677966,
-              53.79673238823935
+              -1.535747068680977,
+              53.79905934083455
             ],
             [
-              -1.532808047211771,
-              53.7967235200282
+              -1.5357438210744645,
+              53.799060205982016
             ],
             [
-              -1.5327785644867313,
-              53.79672802023392
+              -1.5357813794230124,
+              53.799109393482325
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 455,
-        "id": 583,
+        "dst_i": 389,
+        "id": 501,
         "layer": 0,
         "osm_way_ids": [
-          943136735
+          778102286
         ],
-        "src_i": 454,
+        "src_i": 419,
         "type": "road"
       },
       "type": "Feature"
@@ -20827,37 +20668,37 @@
         "coordinates": [
           [
             [
-              -1.534726947210427,
-              53.79630527159223
+              -1.5362117976710565,
+              53.79892578796685
             ],
             [
-              -1.535146731945164,
-              53.796308798731886
+              -1.5362083917189848,
+              53.79893384319119
             ],
             [
-              -1.5351473805529343,
-              53.79628182267858
+              -1.5362970226005184,
+              53.79894691752987
             ],
             [
-              -1.5347275958181974,
-              53.796278295538926
+              -1.53630042855259,
+              53.798938862305526
             ],
             [
-              -1.534726947210427,
-              53.79630527159223
+              -1.5362117976710565,
+              53.79892578796685
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 458,
-        "id": 584,
+        "dst_i": 420,
+        "id": 502,
         "layer": 0,
         "osm_way_ids": [
-          944039772
+          778102287
         ],
-        "src_i": 456,
+        "src_i": 126,
         "type": "road"
       },
       "type": "Feature"
@@ -20867,53 +20708,37 @@
         "coordinates": [
           [
             [
-              -1.5351924115938234,
-              53.79630923580222
-            ],
-            [
-              -1.5355074172451175,
-              53.796312592070755
-            ],
-            [
-              -1.5355974960749836,
-              53.79636462952149
-            ],
-            [
-              -1.5356877667465847,
-              53.79638589937869
-            ],
-            [
-              -1.5357046914507544,
-              53.79636084067923
+              -1.5363459787842062,
+              53.79898939429176
             ],
             [
-              -1.5356229044469865,
-              53.796341570913455
+              -1.5363534225480318,
+              53.79898615673368
             ],
             [
-              -1.5355263821709124,
-              53.79628580847229
+              -1.5362992561864321,
+              53.798942706905734
             ],
             [
-              -1.5351932337726875,
-              53.79628225974892
+              -1.5362918124226066,
+              53.7989459444638
             ],
             [
-              -1.5351924115938234,
-              53.79630923580222
+              -1.5363459787842062,
+              53.79898939429176
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 457,
-        "id": 585,
+        "dst_i": 132,
+        "id": 503,
         "layer": 0,
         "osm_way_ids": [
-          944039772
+          778102288
         ],
-        "src_i": 458,
+        "src_i": 420,
         "type": "road"
       },
       "type": "Feature"
@@ -20923,77 +20748,69 @@
         "coordinates": [
           [
             [
-              -1.5351930251828645,
-              53.79642533913125
+              -1.5367851654175788,
+              53.79870146925931
             ],
             [
-              -1.5351924115938234,
-              53.79630923580222
+              -1.536530448315314,
+              53.7986745174877
             ],
             [
-              -1.5351467349902708,
-              53.79630932033846
+              -1.5364577829292756,
+              53.79868173184626
             ],
             [
-              -1.535147348579312,
-              53.796425423667486
+              -1.5363934382978508,
+              53.79870662866782
             ],
             [
-              -1.5351930251828645,
-              53.79642533913125
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "dst_i": 458,
-        "id": 586,
-        "layer": 0,
-        "osm_way_ids": [
-          944039773
-        ],
-        "src_i": 269,
-        "type": "road"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.536360459790086,
+              53.79874567451748
+            ],
             [
-              -1.5339119091221678,
-              53.797510033500146
+              -1.5363737166629903,
+              53.798803911891916
             ],
             [
-              -1.5339622340814087,
-              53.79755745832995
+              -1.5364642537814455,
+              53.79879672091572
             ],
             [
-              -1.5339880352722022,
-              53.797547905734994
+              -1.5364547393449255,
+              53.79875492494035
             ],
             [
-              -1.5339377103129612,
-              53.79750048090519
+              -1.5364641609056848,
+              53.798743770653466
             ],
             [
-              -1.5339119091221678,
-              53.797510033500146
+              -1.536491818089136,
+              53.798733068725404
+            ],
+            [
+              -1.5365299519628888,
+              53.7987292825811
+            ],
+            [
+              -1.5367690568020593,
+              53.798754583198104
+            ],
+            [
+              -1.5367851654175788,
+              53.79870146925931
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 461,
-        "id": 587,
+        "dst_i": 417,
+        "id": 504,
         "layer": 0,
         "osm_way_ids": [
-          971371100
+          778102289
         ],
-        "src_i": 459,
+        "src_i": 72,
         "type": "road"
       },
       "type": "Feature"
@@ -21003,37 +20820,45 @@
         "coordinates": [
           [
             [
-              -1.534004087553244,
-              53.79756320319688
+              -1.5363910174378625,
+              53.79883292850613
             ],
             [
-              -1.5341366608499487,
-              53.79751842417148
+              -1.5364281723097457,
+              53.798863657428825
             ],
             [
-              -1.5341215449392795,
-              53.79750281014836
+              -1.5364859821417554,
+              53.79889033940394
             ],
             [
-              -1.533988971642575,
-              53.79754758917377
+              -1.5365422313564772,
+              53.798847821273256
             ],
             [
-              -1.534004087553244,
-              53.79756320319688
+              -1.5364948266547567,
+              53.79882594167595
+            ],
+            [
+              -1.536465357632698,
+              53.798801569158925
+            ],
+            [
+              -1.5363910174378625,
+              53.79883292850613
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 460,
-        "id": 588,
+        "dst_i": 130,
+        "id": 505,
         "layer": 0,
         "osm_way_ids": [
-          971371100
+          778102289
         ],
-        "src_i": 461,
+        "src_i": 417,
         "type": "road"
       },
       "type": "Feature"
@@ -21043,45 +20868,45 @@
         "coordinates": [
           [
             [
-              -1.5339781325845518,
-              53.79757260830308
+              -1.536497544412668,
+              53.79889497450791
             ],
             [
-              -1.534181641646574,
-              53.79776856150531
+              -1.5365348012956326,
+              53.79890757310541
             ],
             [
-              -1.5342844322752087,
-              53.79774109801965
+              -1.5367190698496846,
+              53.79893300232541
             ],
             [
-              -1.5342718833896594,
-              53.797724710579885
+              -1.5367398527043012,
+              53.798880458556575
             ],
             [
-              -1.5341935571498873,
-              53.79774563779552
+              -1.5365685989371547,
+              53.7988568261813
             ],
             [
-              -1.5340040890757973,
-              53.79756320319688
+              -1.5365429347761719,
+              53.7988481468277
             ],
             [
-              -1.5339781325845518,
-              53.79757260830308
+              -1.536497544412668,
+              53.79889497450791
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 462,
-        "id": 589,
+        "dst_i": 235,
+        "id": 506,
         "layer": 0,
         "osm_way_ids": [
-          971371101
+          778102289
         ],
-        "src_i": 461,
+        "src_i": 130,
         "type": "road"
       },
       "type": "Feature"
@@ -21091,37 +20916,37 @@
         "coordinates": [
           [
             [
-              -1.5340214933843044,
-              53.79876639398981
+              -1.5367487581194406,
+              53.79893710862824
             ],
             [
-              -1.534065851456568,
-              53.79848494857011
+              -1.5367677489286442,
+              53.7989397445401
             ],
             [
-              -1.534020372784964,
-              53.79848244845583
+              -1.536788647497323,
+              53.7988872151604
             ],
             [
-              -1.5339760147127006,
-              53.798763893875524
+              -1.5367696566881193,
+              53.798884579248536
             ],
             [
-              -1.5340214933843044,
-              53.79876639398981
+              -1.5367487581194406,
+              53.79893710862824
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 463,
-        "id": 590,
+        "dst_i": 422,
+        "id": 507,
         "layer": 0,
         "osm_way_ids": [
-          1003280130
+          778102289
         ],
-        "src_i": 87,
+        "src_i": 235,
         "type": "road"
       },
       "type": "Feature"
@@ -21131,37 +20956,37 @@
         "coordinates": [
           [
             [
-              -1.5375298569687066,
-              53.79944984069989
+              -1.5367700479843565,
+              53.79888279049771
             ],
             [
-              -1.5374777932534238,
-              53.79944476223033
+              -1.5367741223373932,
+              53.79886438318143
             ],
             [
-              -1.537472832774278,
-              53.79946250764584
+              -1.536743927057338,
+              53.79886205213962
             ],
             [
-              -1.5375248964895607,
-              53.799467586115405
+              -1.5367398527043012,
+              53.798880459455894
             ],
             [
-              -1.5375298569687066,
-              53.79944984069989
+              -1.5367700479843565,
+              53.79888279049771
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 465,
-        "id": 591,
+        "dst_i": 233,
+        "id": 508,
         "layer": 0,
         "osm_way_ids": [
-          1003280134
+          778102290
         ],
-        "src_i": 464,
+        "src_i": 235,
         "type": "road"
       },
       "type": "Feature"
@@ -21171,38 +20996,37 @@
         "coordinates": [
           [
             [
-              -1.5362928294883123,
-              53.798232019741775
+              -1.5364016418158488,
+              53.79916561187958
             ],
             [
-              -1.5366903468788173,
-              53.79826289345526
+              -1.5363937793498241,
+              53.79916490861002
             ],
             [
-              -1.5366982854725149,
-              53.798227228155824
+              -1.536384659254648,
+              53.799200476782715
             ],
             [
-              -1.5363007680820098,
-              53.79819635444234
+              -1.5363925217206729,
+              53.79920118005227
             ],
             [
-              -1.5362928294883123,
-              53.798232019741775
+              -1.5364016418158488,
+              53.79916561187958
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 466,
-        "id": 592,
+        "dst_i": 427,
+        "id": 509,
         "layer": 0,
         "osm_way_ids": [
-          1009731644,
-          701166701
+          778102291
         ],
-        "src_i": 339,
+        "src_i": 423,
         "type": "road"
       },
       "type": "Feature"
@@ -21212,37 +21036,37 @@
         "coordinates": [
           [
             [
-              -1.5331590856130544,
-              53.79837352441182
+              -1.536349098496229,
+              53.7991609102258
             ],
             [
-              -1.5331398618531724,
-              53.79837190023686
+              -1.5363336049923038,
+              53.79915954325684
             ],
             [
-              -1.5331355499817971,
-              53.79838970500761
+              -1.5363246067014038,
+              53.79919512222139
             ],
             [
-              -1.5331547737416789,
-              53.79839132918257
+              -1.536340100205329,
+              53.79919648919036
             ],
             [
-              -1.5331590856130544,
-              53.79837352441182
+              -1.536349098496229,
+              53.7991609102258
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 253,
-        "id": 593,
+        "dst_i": 424,
+        "id": 510,
         "layer": 0,
         "osm_way_ids": [
-          1009731656
+          778102291
         ],
-        "src_i": 110,
+        "src_i": 427,
         "type": "road"
       },
       "type": "Feature"
@@ -21252,37 +21076,37 @@
         "coordinates": [
           [
             [
-              -1.5331096939790794,
-              53.79836941091443
+              -1.5363171370541695,
+              53.79915806297334
             ],
             [
-              -1.5327027260992994,
-              53.798336713376564
+              -1.5362096310774946,
+              53.79914838177539
             ],
             [
-              -1.5326986212951934,
-              53.79835453613374
+              -1.5362004531252875,
+              53.799183944552155
             ],
             [
-              -1.5331055891749734,
-              53.79838723367161
+              -1.5363079591019624,
+              53.79919362575011
             ],
             [
-              -1.5331096939790794,
-              53.79836941091443
+              -1.5363171370541695,
+              53.79915806297334
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 467,
-        "id": 594,
+        "dst_i": 425,
+        "id": 511,
         "layer": 0,
         "osm_way_ids": [
-          1009731656
+          778102292
         ],
-        "src_i": 253,
+        "src_i": 424,
         "type": "road"
       },
       "type": "Feature"
@@ -21292,53 +21116,37 @@
         "coordinates": [
           [
             [
-              -1.5345074269763064,
-              53.79847982963108
-            ],
-            [
-              -1.5344954703640497,
-              53.798513520919414
-            ],
-            [
-              -1.534462030522589,
-              53.79851094796007
-            ],
-            [
-              -1.534462118830689,
-              53.79851026267694
-            ],
-            [
-              -1.5343710305478844,
-              53.79850616716598
+              -1.5332890507756962,
+              53.79722758713541
             ],
             [
-              -1.5343643708990864,
-              53.7985578511833
+              -1.5339234622577598,
+              53.797174215990616
             ],
             [
-              -1.5345675297738144,
-              53.798573478696234
+              -1.5339105814555578,
+              53.79712079628245
             ],
             [
-              -1.5345968374052072,
-              53.79849090028104
+              -1.5332761699734943,
+              53.797174167427244
             ],
             [
-              -1.5345074269763064,
-              53.79847982963108
+              -1.5332890507756962,
+              53.79722758713541
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 469,
-        "id": 595,
+        "dst_i": 105,
+        "id": 514,
         "layer": 0,
         "osm_way_ids": [
-          1009731660
+          779181825
         ],
-        "src_i": 468,
+        "src_i": 11,
         "type": "road"
       },
       "type": "Feature"
@@ -21348,37 +21156,37 @@
         "coordinates": [
           [
             [
-              -1.5345125153499422,
-              53.79847500926684
+              -1.5339387349914342,
+              53.7971729299606
             ],
             [
-              -1.5344666606076356,
-              53.79847440851995
+              -1.5339425215818687,
+              53.797172632285125
             ],
             [
-              -1.534465984593903,
-              53.79849239135639
+              -1.5339304690487447,
+              53.79711914422851
             ],
             [
-              -1.5345118393362096,
-              53.79849299210328
+              -1.5339266824583102,
+              53.79711944190399
             ],
             [
-              -1.5345125153499422,
-              53.79847500926684
+              -1.5339387349914342,
+              53.7971729299606
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 255,
-        "id": 596,
+        "dst_i": 483,
+        "id": 515,
         "layer": 0,
         "osm_way_ids": [
-          1009731661
+          779181825
         ],
-        "src_i": 258,
+        "src_i": 105,
         "type": "road"
       },
       "type": "Feature"
@@ -21388,37 +21196,37 @@
         "coordinates": [
           [
             [
-              -1.5339245189098552,
-              53.79843725304448
+              -1.5340045549771537,
+              53.79716777145141
             ],
             [
-              -1.5338520636361932,
-              53.79843129773627
+              -1.5342275496782511,
+              53.797150437025905
             ],
             [
-              -1.53384786747888,
-              53.79844911329888
+              -1.534215631129831,
+              53.79709693817743
             ],
             [
-              -1.5339203227525422,
-              53.79845506860709
+              -1.5339926364287333,
+              53.79711427260294
             ],
             [
-              -1.5339245189098552,
-              53.79843725304448
+              -1.5340045549771537,
+              53.79716777145141
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 267,
-        "id": 597,
+        "dst_i": 306,
+        "id": 516,
         "layer": 0,
         "osm_way_ids": [
-          1009731662
+          779181825
         ],
-        "src_i": 256,
+        "src_i": 483,
         "type": "road"
       },
       "type": "Feature"
@@ -21428,37 +21236,45 @@
         "coordinates": [
           [
             [
-              -1.5338138231836989,
-              53.79842815460698
+              -1.5358316099839393,
+              53.79909535956741
             ],
             [
-              -1.5335397787879175,
-              53.79840563109535
+              -1.5361531610925225,
+              53.798995810052666
             ],
             [
-              -1.5335355826306043,
-              53.79842344665796
+              -1.536212517838839,
+              53.79899330544177
             ],
             [
-              -1.533809627026386,
-              53.79844597016959
+              -1.5362060074002795,
+              53.79893948283749
             ],
             [
-              -1.5338138231836989,
-              53.79842815460698
-            ]
+              -1.5361276400515642,
+              53.79894278964333
+            ],
+            [
+              -1.5357892007800942,
+              53.799047567814355
+            ],
+            [
+              -1.5358316099839393,
+              53.79909535956741
+            ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 109,
-        "id": 598,
+        "dst_i": 420,
+        "id": 517,
         "layer": 0,
         "osm_way_ids": [
-          1009731662
+          779181826
         ],
-        "src_i": 267,
+        "src_i": 389,
         "type": "road"
       },
       "type": "Feature"
@@ -21468,69 +21284,53 @@
         "coordinates": [
           [
             [
-              -1.5368265819165734,
-              53.797824213329896
-            ],
-            [
-              -1.536533677651185,
-              53.79781913575966
-            ],
-            [
-              -1.536362728394729,
-              53.79783862136264
-            ],
-            [
-              -1.5360750053787369,
-              53.797856259758866
-            ],
-            [
-              -1.5359648014373455,
-              53.797876315531795
+              -1.536278825041663,
+              53.79900010521304
             ],
             [
-              -1.5358666957056817,
-              53.79791273356348
+              -1.5362897843814087,
+              53.79900504878435
             ],
             [
-              -1.5358788487273336,
-              53.797924154948895
+              -1.5363237525489175,
+              53.79906653271008
             ],
             [
-              -1.5359743996143054,
-              53.79788868480227
+              -1.5363032209156207,
+              53.79915780306938
             ],
             [
-              -1.5360795943548406,
-              53.797869540941534
+              -1.5363937793498241,
+              53.799164909509344
             ],
             [
-              -1.536366071922109,
-              53.79785197808832
+              -1.5364170485342272,
+              53.79906146773034
             ],
             [
-              -1.5365355229859687,
-              53.797832663356466
+              -1.5363678152458113,
+              53.798972351246476
             ],
             [
-              -1.5368259119930547,
-              53.79783769775926
+              -1.5363342703481622,
+              53.7989572201591
             ],
             [
-              -1.5368265819165734,
-              53.797824213329896
+              -1.536278825041663,
+              53.79900010521304
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 119,
-        "id": 599,
+        "dst_i": 427,
+        "id": 519,
         "layer": 0,
         "osm_way_ids": [
-          1010049065
+          779181826
         ],
-        "src_i": 470,
+        "src_i": 420,
         "type": "road"
       },
       "type": "Feature"
@@ -21540,37 +21340,37 @@
         "coordinates": [
           [
             [
-              -1.5346744099810208,
-              53.79956134759578
+              -1.5324291049733774,
+              53.79956020455791
             ],
             [
-              -1.5353602061195275,
-              53.79924796816233
+              -1.5333526782844449,
+              53.799737869154335
             ],
             [
-              -1.5353462321239473,
-              53.79923729860984
+              -1.5333809673275787,
+              53.79968656285213
             ],
             [
-              -1.5346604359854406,
-              53.79955067804329
+              -1.5324573940165112,
+              53.79950889825571
             ],
             [
-              -1.5346744099810208,
-              53.79956134759578
+              -1.5324291049733774,
+              53.79956020455791
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 479,
-        "id": 601,
+        "dst_i": 138,
+        "id": 520,
         "layer": 0,
         "osm_way_ids": [
-          1010049066
+          812851864
         ],
-        "src_i": 356,
+        "src_i": 428,
         "type": "road"
       },
       "type": "Feature"
@@ -21580,45 +21380,37 @@
         "coordinates": [
           [
             [
-              -1.535409332829202,
-              53.79922667132547
-            ],
-            [
-              -1.5357248668065437,
-              53.79909715731146
-            ],
-            [
-              -1.5357400283938163,
-              53.79909498095298
+              -1.5351919868014103,
+              53.797714033832825
             ],
             [
-              -1.53573463550949,
-              53.79908187244008
+              -1.5352545591806173,
+              53.797774538397235
             ],
             [
-              -1.535715332576829,
-              53.79908464235088
+              -1.5353325169624539,
+              53.79774640941353
             ],
             [
-              -1.5353962997716548,
-              53.79921559348094
+              -1.5352699445832472,
+              53.79768590484912
             ],
             [
-              -1.535409332829202,
-              53.79922667132547
+              -1.5351919868014103,
+              53.797714033832825
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 419,
-        "id": 602,
+        "dst_i": 62,
+        "id": 521,
         "layer": 0,
         "osm_way_ids": [
-          1010049066
+          813941484
         ],
-        "src_i": 479,
+        "src_i": 35,
         "type": "road"
       },
       "type": "Feature"
@@ -21628,37 +21420,37 @@
         "coordinates": [
           [
             [
-              -1.5346884509689527,
-              53.799573221340005
+              -1.533965790766272,
+              53.79954507976579
             ],
             [
-              -1.5353801622276197,
-              53.79926397518902
+              -1.5341441091814347,
+              53.79949774217019
             ],
             [
-              -1.5353663800737745,
-              53.79925321930165
+              -1.534125384819085,
+              53.79947313313157
             ],
             [
-              -1.5346746688151074,
-              53.79956246545263
+              -1.5339470664039223,
+              53.799520470727174
             ],
             [
-              -1.5346884509689527,
-              53.799573221340005
+              -1.533965790766272,
+              53.79954507976579
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 480,
-        "id": 603,
+        "dst_i": 429,
+        "id": 522,
         "layer": 0,
         "osm_way_ids": [
-          1010049067
+          823888306
         ],
-        "src_i": 356,
+        "src_i": 96,
         "type": "road"
       },
       "type": "Feature"
@@ -21668,45 +21460,45 @@
         "coordinates": [
           [
             [
-              -1.5354287240699636,
-              53.799243191864846
+              -1.5341754494216855,
+              53.79949115913545
             ],
             [
-              -1.53575100448165,
-              53.799111142663
+              -1.5343018000424329,
+              53.79947334537149
             ],
             [
-              -1.5357600195206378,
-              53.799101505531816
+              -1.5343559603138188,
+              53.799472464935555
             ],
             [
-              -1.5357400283938163,
-              53.7990949818523
+              -1.5343547026846676,
+              53.79944549607683
             ],
             [
-              -1.5357335956054825,
-              53.79910185806592
+              -1.534295801181833,
+              53.79944645385442
             ],
             [
-              -1.535415706237951,
-              53.79923210862439
+              -1.5341648433143407,
+              53.79946491692864
             ],
             [
-              -1.5354287240699636,
-              53.799243191864846
+              -1.5341754494216855,
+              53.79949115913545
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 419,
-        "id": 604,
+        "dst_i": 76,
+        "id": 523,
         "layer": 0,
         "osm_way_ids": [
-          1010049067
+          823888306
         ],
-        "src_i": 480,
+        "src_i": 429,
         "type": "road"
       },
       "type": "Feature"
@@ -21716,37 +21508,53 @@
         "coordinates": [
           [
             [
-              -1.5346550293981334,
-              53.799551044067215
+              -1.5356791353910668,
+              53.79851093896685
             ],
             [
-              -1.5346470527405995,
-              53.799550428031864
+              -1.5356926236920958,
+              53.79849745004088
             ],
             [
-              -1.5346440928966893,
-              53.79956380454262
+              -1.5357562877421276,
+              53.79846133058399
             ],
             [
-              -1.5346520695542232,
-              53.79956442057798
+              -1.535819903070449,
+              53.79844115969789
             ],
             [
-              -1.5346550293981334,
-              53.799551044067215
+              -1.5357550910151145,
+              53.79836984708545
+            ],
+            [
+              -1.5356749133503451,
+              53.7983952700102
+            ],
+            [
+              -1.5355841752548343,
+              53.79844674988149
+            ],
+            [
+              -1.5355611496789834,
+              53.79846977521463
+            ],
+            [
+              -1.5356791353910668,
+              53.79851093896685
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 242,
-        "id": 605,
+        "dst_i": 430,
+        "id": 524,
         "layer": 0,
         "osm_way_ids": [
-          1010049068
+          845622686
         ],
-        "src_i": 356,
+        "src_i": 6,
         "type": "road"
       },
       "type": "Feature"
@@ -21756,45 +21564,37 @@
         "coordinates": [
           [
             [
-              -1.5355613613139132,
-              53.79997821197568
-            ],
-            [
-              -1.5356728426776507,
-              53.80007005520289
-            ],
-            [
-              -1.5357459952807937,
-              53.800079418040966
+              -1.5358636658243126,
+              53.79843301813866
             ],
             [
-              -1.5357524448172153,
-              53.800061839899286
+              -1.53593751727949,
+              53.7984237389375
             ],
             [
-              -1.535690757041564,
-              53.800053944754204
+              -1.5359090059435525,
+              53.79834457164946
             ],
             [
-              -1.535586108897718,
-              53.799967731280745
+              -1.535835154488375,
+              53.79835385085062
             ],
             [
-              -1.5355613613139132,
-              53.79997821197568
+              -1.5358636658243126,
+              53.79843301813866
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 475,
-        "id": 607,
+        "dst_i": 63,
+        "id": 525,
         "layer": 0,
         "osm_way_ids": [
-          1010049070
+          845622686
         ],
-        "src_i": 474,
+        "src_i": 430,
         "type": "road"
       },
       "type": "Feature"
@@ -21804,45 +21604,37 @@
         "coordinates": [
           [
             [
-              -1.536346648707725,
-              53.79940592322466
-            ],
-            [
-              -1.5361045078969717,
-              53.799386176818395
-            ],
-            [
-              -1.5359281688012962,
-              53.799455452467214
+              -1.5356276197950267,
+              53.7986514274034
             ],
             [
-              -1.535978760207391,
-              53.799500382578664
+              -1.535624955326486,
+              53.79859249215533
             ],
             [
-              -1.5361262925917594,
-              53.799442423993945
+              -1.5354879742375385,
+              53.79859465232602
             ],
             [
-              -1.5363341546340998,
-              53.79945937530841
+              -1.5354906387060792,
+              53.79865358757409
             ],
             [
-              -1.536346648707725,
-              53.79940592322466
+              -1.5356276197950267,
+              53.7986514274034
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 477,
-        "id": 608,
+        "dst_i": 6,
+        "id": 526,
         "layer": 0,
         "osm_way_ids": [
-          1010049071
+          845622687
         ],
-        "src_i": 476,
+        "src_i": 313,
         "type": "road"
       },
       "type": "Feature"
@@ -21852,37 +21644,37 @@
         "coordinates": [
           [
             [
-              -1.5353418212865977,
-              53.79923231726702
+              -1.5362693136502499,
+              53.79865145168508
             ],
             [
-              -1.5353462549622492,
-              53.79923609351878
+              -1.5362657295594246,
+              53.79866156455745
             ],
             [
-              -1.5353963012942082,
-              53.79921559438026
+              -1.5363998512929897,
+              53.79867814804934
             ],
             [
-              -1.5353918676185567,
-              53.7992118181285
+              -1.5364034353838152,
+              53.79866803517698
             ],
             [
-              -1.5353418212865977,
-              53.79923231726702
+              -1.5362693136502499,
+              53.79865145168508
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 479,
-        "id": 609,
+        "dst_i": 51,
+        "id": 527,
         "layer": 0,
         "osm_way_ids": [
-          1010049073
+          845622689
         ],
-        "src_i": 478,
+        "src_i": 15,
         "type": "road"
       },
       "type": "Feature"
@@ -21892,37 +21684,37 @@
         "coordinates": [
           [
             [
-              -1.535360207642081,
-              53.799247969960966
+              -1.5362299967524653,
+              53.798713983320575
             ],
             [
-              -1.5353656857894005,
-              53.799252628447306
+              -1.5361902672426953,
+              53.79874303320969
             ],
             [
-              -1.5354157047153976,
-              53.79923210592642
+              -1.5362968612098526,
+              53.79879389524698
             ],
             [
-              -1.535410226568078,
-              53.79922744744009
+              -1.5363365907196227,
+              53.798764845357866
             ],
             [
-              -1.535360207642081,
-              53.799247969960966
+              -1.5362299967524653,
+              53.798713983320575
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 480,
-        "id": 610,
+        "dst_i": 431,
+        "id": 528,
         "layer": 0,
         "osm_way_ids": [
-          1010049073
+          845622689
         ],
-        "src_i": 479,
+        "src_i": 51,
         "type": "road"
       },
       "type": "Feature"
@@ -21932,37 +21724,45 @@
         "coordinates": [
           [
             [
-              -1.5326041788271345,
-              53.79675764748755
+              -1.5362513216361107,
+              53.798551280739055
             ],
             [
-              -1.5326004653192655,
-              53.796787490578396
+              -1.5362711117858765,
+              53.798591770000016
             ],
             [
-              -1.5326460201185421,
-              53.7967894690861
+              -1.5362697917320338,
+              53.7986355570736
             ],
             [
-              -1.5326497336264109,
-              53.796759625995264
+              -1.5364068002269435,
+              53.79863699958558
             ],
             [
-              -1.5326041788271345,
-              53.79675764748755
+              -1.5364084887387215,
+              53.79858103030044
+            ],
+            [
+              -1.536382973787977,
+              53.79852883007248
+            ],
+            [
+              -1.5362513216361107,
+              53.798551280739055
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 482,
-        "id": 612,
+        "dst_i": 15,
+        "id": 530,
         "layer": 0,
         "osm_way_ids": [
-          1019599366
+          845622690
         ],
-        "src_i": 13,
+        "src_i": 0,
         "type": "road"
       },
       "type": "Feature"
@@ -21972,37 +21772,37 @@
         "coordinates": [
           [
             [
-              -1.5325894542127025,
-              53.79682244721234
+              -1.5360284609197168,
+              53.798430155597735
             ],
             [
-              -1.5325378777145244,
-              53.79692818226164
+              -1.5360493625335025,
+              53.79843374029397
             ],
             [
-              -1.5325817698854316,
-              53.79693565202757
+              -1.5360875725349277,
+              53.798356011920625
             ],
             [
-              -1.5326333463836097,
-              53.79682991697827
+              -1.5360666709211421,
+              53.79835242722439
             ],
             [
-              -1.5325894542127025,
-              53.79682244721234
+              -1.5360284609197168,
+              53.798430155597735
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 211,
-        "id": 613,
+        "dst_i": 280,
+        "id": 531,
         "layer": 0,
         "osm_way_ids": [
-          1019599366
+          845622691
         ],
-        "src_i": 482,
+        "src_i": 63,
         "type": "road"
       },
       "type": "Feature"
@@ -22012,37 +21812,37 @@
         "coordinates": [
           [
             [
-              -1.5325908503942178,
-              53.796731843250406
+              -1.5361514604003168,
+              53.79846626066547
             ],
             [
-              -1.5323066307737183,
-              53.79678306321773
+              -1.5361896414732266,
+              53.79848748915388
             ],
             [
-              -1.532319959206635,
-              53.7968088683542
+              -1.5362835647505584,
+              53.79842855300649
             ],
             [
-              -1.5326041788271345,
-              53.79675764838687
+              -1.5362453836776486,
+              53.79840732451808
             ],
             [
-              -1.5325908503942178,
-              53.796731843250406
+              -1.5361514604003168,
+              53.79846626066547
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 212,
-        "id": 614,
+        "dst_i": 0,
+        "id": 532,
         "layer": 0,
         "osm_way_ids": [
-          1019599367
+          845622691
         ],
-        "src_i": 13,
+        "src_i": 280,
         "type": "road"
       },
       "type": "Feature"
@@ -22052,45 +21852,37 @@
         "coordinates": [
           [
             [
-              -1.5339871735069484,
-              53.79710603301765
-            ],
-            [
-              -1.5338715035986652,
-              53.79693149086613
-            ],
-            [
-              -1.5338463555833024,
-              53.79691868272667
+              -1.5338881649010876,
+              53.79657650971078
             ],
             [
-              -1.5338065864871426,
-              53.79694592677784
+              -1.5338822634839087,
+              53.79656825843431
             ],
             [
-              -1.5338202970809758,
-              53.796952909111404
+              -1.5338612248403123,
+              53.79657350867432
             ],
             [
-              -1.5339304614359774,
-              53.79711914512784
+              -1.5338671262574914,
+              53.79658175995079
             ],
             [
-              -1.5339871735069484,
-              53.79710603301765
+              -1.5338881649010876,
+              53.79657650971078
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 485,
-        "id": 615,
+        "dst_i": 309,
+        "id": 533,
         "layer": 0,
         "osm_way_ids": [
-          1060145090
+          847518147
         ],
-        "src_i": 483,
+        "src_i": 432,
         "type": "road"
       },
       "type": "Feature"
@@ -22100,53 +21892,45 @@
         "coordinates": [
           [
             [
-              -1.533768846954734,
-              53.79690792414134
+              -1.5338611715509416,
+              53.796538846118565
             ],
             [
-              -1.5337559022052871,
-              53.79690727213311
-            ],
-            [
-              -1.5333185319781826,
-              53.79695496406146
-            ],
-            [
-              -1.533337387280129,
-              53.79700753570928
+              -1.5338539866212026,
+              53.79652885645327
             ],
             [
-              -1.5333969678418031,
-              53.797000080332495
+              -1.5338526102328822,
+              53.796527935547864
             ],
             [
-              -1.533391069469731,
-              53.79698363623546
+              -1.5338354906418707,
+              53.79653686401357
             ],
             [
-              -1.5337588985904802,
-              53.796943527387576
+              -1.5338344126740269,
+              53.796536142757574
             ],
             [
-              -1.5337636733181048,
-              53.79694376750646
+              -1.5338401511779867,
+              53.796544121539576
             ],
             [
-              -1.533768846954734,
-              53.79690792414134
+              -1.5338611715509416,
+              53.796538846118565
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 484,
-        "id": 616,
+        "dst_i": 434,
+        "id": 534,
         "layer": 0,
         "osm_way_ids": [
-          1060145090
+          847518147
         ],
-        "src_i": 485,
+        "src_i": 309,
         "type": "road"
       },
       "type": "Feature"
@@ -22156,37 +21940,37 @@
         "coordinates": [
           [
             [
-              -1.533823900964996,
-              53.79689254484118
+              -1.5337696478178495,
+              53.796471410481914
             ],
             [
-              -1.5338213354624297,
-              53.79688934055801
+              -1.533744763204234,
+              53.79645417318315
             ],
             [
-              -1.5337662799296143,
-              53.79690471895884
+              -1.5337273847791357,
+              53.7964629253818
             ],
             [
-              -1.5337688454321805,
-              53.79690792324202
+              -1.5337522693927512,
+              53.79648016268057
             ],
             [
-              -1.533823900964996,
-              53.79689254484118
+              -1.5337696478178495,
+              53.796471410481914
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 486,
-        "id": 617,
+        "dst_i": 435,
+        "id": 535,
         "layer": 0,
         "osm_way_ids": [
-          1060145091
+          847518147
         ],
-        "src_i": 485,
+        "src_i": 434,
         "type": "road"
       },
       "type": "Feature"
@@ -22196,37 +21980,37 @@
         "coordinates": [
           [
             [
-              -1.533813145647413,
-              53.79687581026324
+              -1.5337151419268302,
+              53.79643340874474
             ],
             [
-              -1.533797821146921,
-              53.79683963235044
+              -1.5336953152357815,
+              53.796419332561705
             ],
             [
-              -1.5337387399827789,
-              53.79684836296537
+              -1.5336777571493758,
+              53.796427960653965
             ],
             [
-              -1.5337540644832708,
-              53.79688454087817
+              -1.5336975838404245,
+              53.79644203683699
             ],
             [
-              -1.533813145647413,
-              53.79687581026324
+              -1.5337151419268302,
+              53.79643340874474
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 487,
-        "id": 618,
+        "dst_i": 226,
+        "id": 536,
         "layer": 0,
         "osm_way_ids": [
-          1060145092
+          847518147
         ],
-        "src_i": 486,
+        "src_i": 435,
         "type": "road"
       },
       "type": "Feature"
@@ -22236,37 +22020,61 @@
         "coordinates": [
           [
             [
-              -1.5362253910282737,
-              53.79643388718387
+              -1.5336611567490914,
+              53.79641869764059
             ],
             [
-              -1.5360317816087952,
-              53.796433515764015
+              -1.5336251011608004,
+              53.796441241836625
             ],
             [
-              -1.536031337023187,
-              53.79651445471578
+              -1.533577332568805,
+              53.79645891620573
             ],
             [
-              -1.5362249464426658,
-              53.79651482613564
+              -1.5334213104263898,
+              53.79649314708707
             ],
             [
-              -1.5362253910282737,
-              53.79643388718387
+              -1.5327483844322105,
+              53.796592593179824
+            ],
+            [
+              -1.532753926526775,
+              53.796605680109
+            ],
+            [
+              -1.533428088834357,
+              53.79650605235327
+            ],
+            [
+              -1.53358746668458,
+              53.79647108402814
+            ],
+            [
+              -1.5336396994032957,
+              53.796451758504425
+            ],
+            [
+              -1.5336777586719292,
+              53.796427960653965
+            ],
+            [
+              -1.5336611567490914,
+              53.79641869764059
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 49,
-        "id": 620,
+        "dst_i": 450,
+        "id": 537,
         "layer": 0,
         "osm_way_ids": [
-          1079858511
+          847518147
         ],
-        "src_i": 489,
+        "src_i": 226,
         "type": "road"
       },
       "type": "Feature"
@@ -22276,37 +22084,37 @@
         "coordinates": [
           [
             [
-              -1.5363918868158835,
-              53.797682016182144
+              -1.532725754720257,
+              53.79659601689748
             ],
             [
-              -1.5363903977586078,
-              53.7976791527419
+              -1.532274905327444,
+              53.79666577548205
             ],
             [
-              -1.5363612895817171,
-              53.79768443355884
+              -1.5322806940756677,
+              53.79667882463971
             ],
             [
-              -1.5363627786389928,
-              53.79768729699909
+              -1.5327315434684807,
+              53.79660906605515
             ],
             [
-              -1.5363918868158835,
-              53.797682016182144
+              -1.532725754720257,
+              53.79659601689748
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 491,
-        "id": 621,
+        "dst_i": 301,
+        "id": 538,
         "layer": 0,
         "osm_way_ids": [
-          1106332519
+          847518147
         ],
-        "src_i": 490,
+        "src_i": 450,
         "type": "road"
       },
       "type": "Feature"
@@ -22316,37 +22124,37 @@
         "coordinates": [
           [
             [
-              -1.5358674036930366,
-              53.79659380096885
+              -1.5322748505155197,
+              53.796665784475266
             ],
             [
-              -1.5358679731280276,
-              53.79663232161464
+              -1.5319835144801868,
+              53.796711794672056
             ],
             [
-              -1.5358984241970628,
-              53.796632165132664
+              -1.5319894128522589,
+              53.79672482584329
             ],
             [
-              -1.5358978547620719,
-              53.796593644486876
+              -1.5322807488875918,
+              53.796678815646494
             ],
             [
-              -1.5358674036930366,
-              53.79659380096885
+              -1.5322748505155197,
+              53.796665784475266
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 318,
-        "id": 622,
+        "dst_i": 436,
+        "id": 539,
         "layer": 0,
         "osm_way_ids": [
-          1106332520
+          847518147
         ],
-        "src_i": 50,
+        "src_i": 301,
         "type": "road"
       },
       "type": "Feature"
@@ -22356,37 +22164,37 @@
         "coordinates": [
           [
             [
-              -1.5358681741050833,
-              53.7966458141379
+              -1.535287429587087,
+              53.79762501087842
             ],
             [
-              -1.5358681954208315,
-              53.79664721977769
+              -1.5352862770141242,
+              53.79763022334691
             ],
             [
-              -1.5358986464898667,
-              53.79664705789979
+              -1.53533229466965,
+              53.79763377386893
             ],
             [
-              -1.5358986251741185,
-              53.79664565225999
+              -1.535333447242613,
+              53.79762856140044
             ],
             [
-              -1.5358681741050833,
-              53.7966458141379
+              -1.535287429587087,
+              53.79762501087842
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 492,
-        "id": 623,
+        "dst_i": 334,
+        "id": 541,
         "layer": 0,
         "osm_way_ids": [
-          1106332521
+          864595640
         ],
-        "src_i": 318,
+        "src_i": 103,
         "type": "road"
       },
       "type": "Feature"
@@ -22396,45 +22204,37 @@
         "coordinates": [
           [
             [
-              -1.5337190366185598,
-              53.796097332230566
-            ],
-            [
-              -1.5336528740583137,
-              53.79604634968417
-            ],
-            [
-              -1.5335294299921058,
-              53.795980448290315
+              -1.5352874037036786,
+              53.797353549728086
             ],
             [
-              -1.5334375469363992,
-              53.796040495999314
+              -1.5352874432900683,
+              53.79735446523756
             ],
             [
-              -1.5335517247422998,
-              53.79610145112389
+              -1.5353338354937431,
+              53.79735376556529
             ],
             [
-              -1.5336102836706078,
-              53.79614657369018
+              -1.5353337959073534,
+              53.79735285005581
             ],
             [
-              -1.5337190366185598,
-              53.796097332230566
+              -1.5352874037036786,
+              53.797353549728086
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 493,
-        "id": 624,
+        "dst_i": 103,
+        "id": 545,
         "layer": 0,
         "osm_way_ids": [
-          1136185236
+          864595644
         ],
-        "src_i": 314,
+        "src_i": 210,
         "type": "road"
       },
       "type": "Feature"
@@ -22444,37 +22244,37 @@
         "coordinates": [
           [
             [
-              -1.5334419258001266,
-              53.79983112971252
+              -1.5352857060565797,
+              53.79731869381816
             ],
             [
-              -1.5333252692772066,
-              53.7997926324491
+              -1.535287405226232,
+              53.797353593794845
             ],
             [
-              -1.5332807132729944,
-              53.799839738919026
+              -1.5353337943848,
+              53.79735280598905
             ],
             [
-              -1.5333973697959145,
-              53.79987823618245
+              -1.535332095215148,
+              53.79731790601237
             ],
             [
-              -1.5334419258001266,
-              53.79983112971252
+              -1.5352857060565797,
+              53.79731869381816
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 236,
-        "id": 627,
+        "dst_i": 210,
+        "id": 547,
         "layer": 0,
         "osm_way_ids": [
-          1178545764
+          864595645
         ],
-        "src_i": 59,
+        "src_i": 202,
         "type": "road"
       },
       "type": "Feature"
@@ -22484,37 +22284,37 @@
         "coordinates": [
           [
             [
-              -1.5341707645247145,
-              53.79993487995886
+              -1.5352842032963228,
+              53.79728526333312
             ],
             [
-              -1.5334460732357291,
-              53.799809141297295
+              -1.5352846372240565,
+              53.79729493194057
             ],
             [
-              -1.53342032685686,
-              53.79986091344813
+              -1.5353310294277316,
+              53.797294205288644
             ],
             [
-              -1.5341450181458454,
-              53.7999866521097
+              -1.5353305954999978,
+              53.7972845366812
             ],
             [
-              -1.5341707645247145,
-              53.79993487995886
+              -1.5352842032963228,
+              53.79728526333312
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 56,
-        "id": 628,
-        "layer": 1,
+        "dst_i": 202,
+        "id": 548,
+        "layer": 0,
         "osm_way_ids": [
-          1178545766
+          864595646
         ],
-        "src_i": 278,
+        "src_i": 188,
         "type": "road"
       },
       "type": "Feature"
@@ -22524,37 +22324,37 @@
         "coordinates": [
           [
             [
-              -1.5341570767691832,
-              53.79641253638772
+              -1.5352825041266707,
+              53.79724786773876
             ],
             [
-              -1.5340789971830704,
-              53.79622624639701
+              -1.535283125328479,
+              53.797261532931785
             ],
             [
-              -1.5339903206249332,
-              53.796239212817085
+              -1.535329517532154,
+              53.79726079728665
             ],
             [
-              -1.534068400211046,
-              53.79642550280779
+              -1.5353288963303457,
+              53.797247132093624
             ],
             [
-              -1.5341570767691832,
-              53.79641253638772
+              -1.5352825041266707,
+              53.79724786773876
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 412,
-        "id": 629,
+        "dst_i": 188,
+        "id": 549,
         "layer": 0,
         "osm_way_ids": [
-          1231241486
+          864595647
         ],
-        "src_i": 55,
+        "src_i": 153,
         "type": "road"
       },
       "type": "Feature"
@@ -22564,37 +22364,37 @@
         "coordinates": [
           [
             [
-              -1.5356246584285629,
-              53.79879886040201
+              -1.535279131670775,
+              53.79717644720772
             ],
             [
-              -1.535609936859238,
-              53.79879461020772
+              -1.5352819027180573,
+              53.79720643598867
             ],
             [
-              -1.535569820620891,
-              53.79884308904254
+              -1.535328240109808,
+              53.79720494131603
             ],
             [
-              -1.5355845421902161,
-              53.79884733923683
+              -1.5353254690625258,
+              53.79717495253508
             ],
             [
-              -1.5356246584285629,
-              53.79879886040201
+              -1.535279131670775,
+              53.79717644720772
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 401,
-        "id": 630,
+        "dst_i": 153,
+        "id": 551,
         "layer": 0,
         "osm_way_ids": [
-          1238603931
+          864595649
         ],
-        "src_i": 397,
+        "src_i": 143,
         "type": "road"
       },
       "type": "Feature"
@@ -22604,37 +22404,37 @@
         "coordinates": [
           [
             [
-              -1.5365577187701884,
-              53.79776416022497
+              -1.5352757059255087,
+              53.797101772930816
             ],
             [
-              -1.5365778225659654,
-              53.797568313142705
+              -1.5352762114132545,
+              53.79711273116557
             ],
             [
-              -1.5365474263088545,
-              53.797567224963466
+              -1.5353226005718226,
+              53.797111984728566
             ],
             [
-              -1.5365273225130776,
-              53.79776307204573
+              -1.5353220950840767,
+              53.79710102649382
             ],
             [
-              -1.5365577187701884,
-              53.79776416022497
+              -1.5352757059255087,
+              53.797101772930816
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 441,
-        "id": 631,
+        "dst_i": 143,
+        "id": 553,
         "layer": 0,
         "osm_way_ids": [
-          177344221
+          864595651
         ],
-        "src_i": 496,
+        "src_i": 208,
         "type": "road"
       },
       "type": "Feature"
@@ -22644,37 +22444,37 @@
         "coordinates": [
           [
             [
-              -1.5365793740479328,
-              53.79755010547584
+              -1.535271905632093,
+              53.797020883441746
             ],
             [
-              -1.5365873537505734,
-              53.797419801857394
+              -1.535272580123272,
+              53.79703513948912
             ],
             [
-              -1.5365569239972865,
-              53.797419152547135
+              -1.5353189692818403,
+              53.79703437326704
             ],
             [
-              -1.5365489442946458,
-              53.797549456165584
+              -1.5353182947906612,
+              53.79702011721967
             ],
             [
-              -1.5365793740479328,
-              53.79755010547584
+              -1.535271905632093,
+              53.797020883441746
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 443,
-        "id": 632,
+        "dst_i": 208,
+        "id": 555,
         "layer": 0,
         "osm_way_ids": [
-          177344221
+          864595653
         ],
-        "src_i": 441,
+        "src_i": 163,
         "type": "road"
       },
       "type": "Feature"
@@ -22684,37 +22484,37 @@
         "coordinates": [
           [
             [
-              -1.5365875288442203,
-              53.79740179114198
+              -1.5352681053386774,
+              53.796938483092234
             ],
             [
-              -1.5365785838426913,
-              53.79721303341256
+              -1.53526878135241,
+              53.79695275352876
             ],
             [
-              -1.5365481449540837,
-              53.797213537032704
+              -1.5353151705109782,
+              53.79695198730668
             ],
             [
-              -1.5365570899556127,
-              53.79740229476212
+              -1.5353144944972454,
+              53.79693771687016
             ],
             [
-              -1.5365875288442203,
-              53.79740179114198
+              -1.5352681053386774,
+              53.796938483092234
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 445,
-        "id": 633,
+        "dst_i": 163,
+        "id": 557,
         "layer": 0,
         "osm_way_ids": [
-          177344221
+          864595655
         ],
-        "src_i": 443,
+        "src_i": 165,
         "type": "road"
       },
       "type": "Feature"
@@ -22724,37 +22524,37 @@
         "coordinates": [
           [
             [
-              -1.5365772988075779,
-              53.79719497593242
+              -1.535266304157944,
+              53.796898867971954
             ],
             [
-              -1.536563079680892,
-              53.797052955951045
+              -1.5352670258482801,
+              53.796914732905826
             ],
             [
-              -1.5365326803786743,
-              53.797054017150636
+              -1.5353134180519552,
+              53.79691399726068
             ],
             [
-              -1.5365468995053602,
-              53.79719603713201
+              -1.535312696361619,
+              53.79689813232682
             ],
             [
-              -1.5365772988075779,
-              53.79719497593242
+              -1.535266304157944,
+              53.796898867971954
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 365,
-        "id": 634,
+        "dst_i": 165,
+        "id": 558,
         "layer": 0,
         "osm_way_ids": [
-          177344221
+          864595656
         ],
-        "src_i": 445,
+        "src_i": 155,
         "type": "road"
       },
       "type": "Feature"
@@ -22764,37 +22564,37 @@
         "coordinates": [
           [
             [
-              -1.5365614155299692,
-              53.79703493624241
+              -1.5352650054198498,
+              53.796870369367035
             ],
             [
-              -1.5365514610755016,
-              53.79691506835281
+              -1.5352663056804974,
+              53.7968988697706
             ],
             [
-              -1.5365210465477495,
-              53.796915949688064
+              -1.5353126948390656,
+              53.79689813052817
             ],
             [
-              -1.536531001002217,
-              53.797035817577665
+              -1.5353113945784178,
+              53.79686963012461
             ],
             [
-              -1.5365614155299692,
-              53.79703493624241
+              -1.5352650054198498,
+              53.796870369367035
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 497,
-        "id": 635,
+        "dst_i": 155,
+        "id": 559,
         "layer": 0,
         "osm_way_ids": [
-          177344221
+          864595657
         ],
-        "src_i": 365,
+        "src_i": 196,
         "type": "road"
       },
       "type": "Feature"
@@ -22804,37 +22604,37 @@
         "coordinates": [
           [
             [
-              -1.5363756518284275,
-              53.796573034731786
+              -1.535261505069464,
+              53.79679597298054
             ],
             [
-              -1.5361830427265666,
-              53.796572622842454
+              -1.5352620105572101,
+              53.796806942007144
             ],
             [
-              -1.5361829331027181,
-              53.79659060927618
+              -1.5353083997157781,
+              53.79680619557015
             ],
             [
-              -1.5363755422045788,
-              53.79659102116551
+              -1.5353078942280323,
+              53.79679522654354
             ],
             [
-              -1.5363756518284275,
-              53.796573034731786
+              -1.535261505069464,
+              53.79679597298054
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 499,
-        "id": 636,
+        "dst_i": 196,
+        "id": 561,
         "layer": 0,
         "osm_way_ids": [
-          177344221
+          864595659
         ],
-        "src_i": 498,
+        "src_i": 181,
         "type": "road"
       },
       "type": "Feature"
@@ -22844,37 +22644,37 @@
         "coordinates": [
           [
             [
-              -1.53604333169928,
-              53.79657227300632
+              -1.5352578052645762,
+              53.796716583560034
             ],
             [
-              -1.535897784724613,
-              53.796575646361966
+              -1.5352593049797263,
+              53.796748282850835
             ],
             [
-              -1.5358989784065191,
-              53.79659361840655
+              -1.5353056941382943,
+              53.796747516628756
             ],
             [
-              -1.5360445253811863,
-              53.7965902450509
+              -1.5353041944231445,
+              53.79671581733796
             ],
             [
-              -1.53604333169928,
-              53.79657227300632
+              -1.5352578052645762,
+              53.796716583560034
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 50,
-        "id": 638,
+        "dst_i": 181,
+        "id": 563,
         "layer": 0,
         "osm_way_ids": [
-          177344221
+          864595661
         ],
-        "src_i": 499,
+        "src_i": 184,
         "type": "road"
       },
       "type": "Feature"
@@ -22884,46 +22684,38 @@
         "coordinates": [
           [
             [
-              -1.5364071093052942,
-              53.79850592434913
-            ],
-            [
-              -1.536382973787977,
-              53.79852883007248
+              -1.5352570302848694,
+              53.796699020706825
             ],
             [
-              -1.5362513216361107,
-              53.798551280739055
+              -1.5352578037420228,
+              53.796716557479705
             ],
             [
-              -1.5361896414732266,
-              53.79848748915388
+              -1.535304195945698,
+              53.79671584341829
             ],
             [
-              -1.5362835647505584,
-              53.79842855300649
+              -1.5353034224885445,
+              53.7966983066454
             ],
             [
-              -1.5364071093052942,
-              53.79850592434913
+              -1.5352570302848694,
+              53.796699020706825
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 0,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #532 -> Road #0",
-          "Road #532 -> Road #530"
-        ],
-        "osm_node_ids": [
-          26298423
+        "dst_i": 184,
+        "id": 564,
+        "layer": 0,
+        "osm_way_ids": [
+          864595662
         ],
-        "type": "intersection"
+        "src_i": 198,
+        "type": "road"
       },
       "type": "Feature"
     },
@@ -22932,37 +22724,38 @@
         "coordinates": [
           [
             [
-              -1.5372590936756136,
-              53.79865022231234
+              -1.5352430014773648,
+              53.79668133464654
             ],
             [
-              -1.5372515661713482,
-              53.79867683324104
+              -1.5352570302848694,
+              53.796699019807505
             ],
             [
-              -1.5372065138147106,
-              53.7986723860953
+              -1.5352990527601378,
+              53.79668738977946
             ],
             [
-              -1.537214041318976,
-              53.7986457751666
+              -1.5352850239526334,
+              53.796669704618495
             ],
             [
-              -1.5372590936756136,
-              53.79865022231234
+              -1.5352430014773648,
+              53.79668133464654
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
-        "crossing": null,
-        "id": 1,
-        "intersection_kind": "MapEdge",
-        "movements": [],
-        "osm_node_ids": [],
-        "type": "intersection"
+        "dst_i": 198,
+        "id": 565,
+        "layer": 0,
+        "osm_way_ids": [
+          864595663
+        ],
+        "src_i": 194,
+        "type": "road"
       },
       "type": "Feature"
     },
@@ -22971,46 +22764,38 @@
         "coordinates": [
           [
             [
-              -1.5360219794096728,
-              53.79892224374008
-            ],
-            [
-              -1.5359501910144224,
-              53.79888887171094
+              -1.5352407008990994,
+              53.7966804164391
             ],
             [
-              -1.5359314194529157,
-              53.79880869448465
+              -1.5352429999548114,
+              53.79668133554586
             ],
             [
-              -1.5360569524624594,
-              53.79879845031132
+              -1.5352690112579812,
+              53.79665863486785
             ],
             [
-              -1.5361145506595395,
-              53.798871890718864
+              -1.5352667122022692,
+              53.79665771576109
             ],
             [
-              -1.5360219794096728,
-              53.79892224374008
+              -1.5352407008990994,
+              53.7966804164391
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 2,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #567 -> Road #2",
-          "Road #567 -> Road #345"
-        ],
-        "osm_node_ids": [
-          643945
+        "dst_i": 194,
+        "id": 566,
+        "layer": 0,
+        "osm_way_ids": [
+          864595664
         ],
-        "type": "intersection"
+        "src_i": 66,
+        "type": "road"
       },
       "type": "Feature"
     },
@@ -23019,41 +22804,38 @@
         "coordinates": [
           [
             [
-              -1.5356796089051903,
-              53.799092111217476
+              -1.5360580136822153,
+              53.79879816072974
             ],
             [
-              -1.5356547029758265,
-              53.79910244532297
+              -1.536056981390975,
+              53.798798443116745
             ],
             [
-              -1.5356021809719547,
-              53.79905829582275
+              -1.5361145674076273,
+              53.79887188712158
             ],
             [
-              -1.5356271112621738,
-              53.79904795272404
+              -1.5361155996988676,
+              53.79887160473457
             ],
             [
-              -1.5356796089051903,
-              53.799092111217476
+              -1.5360580136822153,
+              53.79879816072974
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 3,
-        "intersection_kind": "Connection",
-        "movements": [
-          "Road #3 -> Road #238"
-        ],
-        "osm_node_ids": [
-          4833244388
+        "dst_i": 2,
+        "id": 567,
+        "layer": 0,
+        "osm_way_ids": [
+          890039689
         ],
-        "type": "intersection"
+        "src_i": 431,
+        "type": "road"
       },
       "type": "Feature"
     },
@@ -23062,70 +22844,6385 @@
         "coordinates": [
           [
             [
-              -1.5343770613821066,
-              53.79654853451109
-            ],
-            [
-              -1.5342886253874148,
-              53.79656206570518
+              -1.5346710694987475,
+              53.800165192645444
             ],
             [
-              -1.5342823235386782,
-              53.796547695443955
+              -1.5345898199563481,
+              53.800307999533295
             ],
             [
-              -1.5342206616464356,
-              53.796571710030946
+              -1.5346186845246865,
+              53.800313730011084
             ],
             [
-              -1.5342080914451377,
-              53.79656044872479
+              -1.534699934067086,
+              53.800170923123225
             ],
             [
-              -1.5341968550006637,
+              -1.5346710694987475,
+              53.800165192645444
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 438,
+        "id": 568,
+        "layer": 0,
+        "osm_way_ids": [
+          894330328
+        ],
+        "src_i": 437,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.534063374262102,
+              53.80015218035996
+            ],
+            [
+              -1.534157257953044,
+              53.80023974191663
+            ],
+            [
+              -1.5341829830161648,
+              53.800230119174586
+            ],
+            [
+              -1.5340890993252227,
+              53.80014255761792
+            ],
+            [
+              -1.534063374262102,
+              53.80015218035996
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 439,
+        "id": 569,
+        "layer": 0,
+        "osm_way_ids": [
+          894330329
+        ],
+        "src_i": 80,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5367951746839708,
+              53.79758221036072
+            ],
+            [
+              -1.5367239207049819,
+              53.797569241242684
+            ],
+            [
+              -1.5367149528651511,
+              53.797586430877395
+            ],
+            [
+              -1.5367862068441398,
+              53.797599399995434
+            ],
+            [
+              -1.5367951746839708,
+              53.79758221036072
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 446,
+        "id": 570,
+        "layer": 0,
+        "osm_way_ids": [
+          913030752
+        ],
+        "src_i": 440,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5366933950308277,
+              53.79756472215121
+            ],
+            [
+              -1.5365842812377077,
+              53.797550735001025
+            ],
+            [
+              -1.5365778225659654,
+              53.797568313142705
+            ],
+            [
+              -1.5366869363590854,
+              53.79758230029289
+            ],
+            [
+              -1.5366933950308277,
+              53.79756472215121
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 441,
+        "id": 571,
+        "layer": 0,
+        "osm_way_ids": [
+          913030752
+        ],
+        "src_i": 446,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5367678753005807,
+              53.79740789124098
+            ],
+            [
+              -1.536723331476796,
+              53.79740637498462
+            ],
+            [
+              -1.5367215805403267,
+              53.7974243308414
+            ],
+            [
+              -1.536766124364111,
+              53.79742584709777
+            ],
+            [
+              -1.5367678753005807,
+              53.79740789124098
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 447,
+        "id": 572,
+        "layer": 0,
+        "osm_way_ids": [
+          913030753
+        ],
+        "src_i": 442,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5366908234380476,
+              53.79740527331555
+            ],
+            [
+              -1.5365890894615084,
+              53.79740184420196
+            ],
+            [
+              -1.5365873537505734,
+              53.797419801857394
+            ],
+            [
+              -1.5366890877271127,
+              53.797423230970985
+            ],
+            [
+              -1.5366908234380476,
+              53.79740527331555
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 443,
+        "id": 573,
+        "layer": 0,
+        "osm_way_ids": [
+          913030753
+        ],
+        "src_i": 447,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5366314012219326,
+              53.797196789864266
+            ],
+            [
+              -1.5365803104183056,
+              53.79719507575713
+            ],
+            [
+              -1.5365785838426913,
+              53.79721303341256
+            ],
+            [
+              -1.5366296746463184,
+              53.797214747519696
+            ],
+            [
+              -1.5366314012219326,
+              53.797196789864266
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 445,
+        "id": 574,
+        "layer": 0,
+        "osm_way_ids": [
+          913030756
+        ],
+        "src_i": 444,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5367238445773095,
+              53.79756455217941
+            ],
+            [
+              -1.5367215805403267,
+              53.79742432994208
+            ],
+            [
+              -1.5366911294712915,
+              53.7974245008132
+            ],
+            [
+              -1.5366933935082743,
+              53.797564723050534
+            ],
+            [
+              -1.5367238445773095,
+              53.79756455217941
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 447,
+        "id": 575,
+        "layer": 0,
+        "osm_way_ids": [
+          913030760
+        ],
+        "src_i": 446,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5367212760296363,
+              53.79740510784036
+            ],
+            [
+              -1.5367201402047612,
+              53.79733178164667
+            ],
+            [
+              -1.5366896891357262,
+              53.797331945323215
+            ],
+            [
+              -1.5366908249606013,
+              53.79740527151691
+            ],
+            [
+              -1.5367212760296363,
+              53.79740510784036
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 448,
+        "id": 576,
+        "layer": 0,
+        "osm_way_ids": [
+          913030760
+        ],
+        "src_i": 447,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5335264153362713,
+              53.80009386024793
+            ],
+            [
+              -1.5335236823528255,
+              53.80008940590761
+            ],
+            [
+              -1.533533923047342,
+              53.80008694986009
+            ],
+            [
+              -1.5335138740634893,
+              53.800057786656446
+            ],
+            [
+              -1.5334560992502089,
+              53.80007164430431
+            ],
+            [
+              -1.5334763172374948,
+              53.800104587357
+            ],
+            [
+              -1.5335264153362713,
+              53.80009386024793
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 81,
+        "id": 577,
+        "layer": 0,
+        "osm_way_ids": [
+          936169264
+        ],
+        "src_i": 449,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5327110377185924,
+              53.79655739103106
+            ],
+            [
+              -1.5327261429713874,
+              53.79659565626949
+            ],
+            [
+              -1.5327483844322105,
+              53.796592593179824
+            ],
+            [
+              -1.5327332791794157,
+              53.796554327941394
+            ],
+            [
+              -1.5327110377185924,
+              53.79655739103106
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 450,
+        "id": 578,
+        "layer": 0,
+        "osm_way_ids": [
+          943136734
+        ],
+        "src_i": 38,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5327403255567904,
+              53.79662937183951
+            ],
+            [
+              -1.5327430935589657,
+              53.796635611333365
+            ],
+            [
+              -1.5327651858095508,
+              53.79663219211231
+            ],
+            [
+              -1.5327624178073753,
+              53.796625952618456
+            ],
+            [
+              -1.5327403255567904,
+              53.79662937183951
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 452,
+        "id": 580,
+        "layer": 0,
+        "osm_way_ids": [
+          943136734
+        ],
+        "src_i": 450,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5327436051369254,
+              53.79664566574982
+            ],
+            [
+              -1.5327475348473845,
+              53.79665489368964
+            ],
+            [
+              -1.5327770662941347,
+              53.79665050679846
+            ],
+            [
+              -1.5327731365836756,
+              53.79664127885863
+            ],
+            [
+              -1.5327436051369254,
+              53.79664566574982
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 453,
+        "id": 581,
+        "layer": 0,
+        "osm_way_ids": [
+          943136735
+        ],
+        "src_i": 452,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5327565514089259,
+              53.79667629125052
+            ],
+            [
+              -1.532767131632862,
+              53.796701397614044
+            ],
+            [
+              -1.5327966813502536,
+              53.7966970538903
+            ],
+            [
+              -1.5327861011263175,
+              53.79667194752678
+            ],
+            [
+              -1.5327565514089259,
+              53.79667629125052
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 454,
+        "id": 582,
+        "layer": 0,
+        "osm_way_ids": [
+          943136735
+        ],
+        "src_i": 453,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5327785644867313,
+              53.79672802023392
+            ],
+            [
+              -1.5327824439529263,
+              53.79673688844507
+            ],
+            [
+              -1.532811926677966,
+              53.79673238823935
+            ],
+            [
+              -1.532808047211771,
+              53.7967235200282
+            ],
+            [
+              -1.5327785644867313,
+              53.79672802023392
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 455,
+        "id": 583,
+        "layer": 0,
+        "osm_way_ids": [
+          943136735
+        ],
+        "src_i": 454,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.534726947210427,
+              53.79630527159223
+            ],
+            [
+              -1.535146731945164,
+              53.796308798731886
+            ],
+            [
+              -1.5351473805529343,
+              53.79628182267858
+            ],
+            [
+              -1.5347275958181974,
+              53.796278295538926
+            ],
+            [
+              -1.534726947210427,
+              53.79630527159223
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 458,
+        "id": 584,
+        "layer": 0,
+        "osm_way_ids": [
+          944039772
+        ],
+        "src_i": 456,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5351924115938234,
+              53.79630923580222
+            ],
+            [
+              -1.5355074172451175,
+              53.796312592070755
+            ],
+            [
+              -1.5355974960749836,
+              53.79636462952149
+            ],
+            [
+              -1.5356877667465847,
+              53.79638589937869
+            ],
+            [
+              -1.5357046914507544,
+              53.79636084067923
+            ],
+            [
+              -1.5356229044469865,
+              53.796341570913455
+            ],
+            [
+              -1.5355263821709124,
+              53.79628580847229
+            ],
+            [
+              -1.5351932337726875,
+              53.79628225974892
+            ],
+            [
+              -1.5351924115938234,
+              53.79630923580222
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 457,
+        "id": 585,
+        "layer": 0,
+        "osm_way_ids": [
+          944039772
+        ],
+        "src_i": 458,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5351930251828645,
+              53.79642533913125
+            ],
+            [
+              -1.5351924115938234,
+              53.79630923580222
+            ],
+            [
+              -1.5351467349902708,
+              53.79630932033846
+            ],
+            [
+              -1.535147348579312,
+              53.796425423667486
+            ],
+            [
+              -1.5351930251828645,
+              53.79642533913125
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 458,
+        "id": 586,
+        "layer": 0,
+        "osm_way_ids": [
+          944039773
+        ],
+        "src_i": 269,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5339119091221678,
+              53.797510033500146
+            ],
+            [
+              -1.5339622340814087,
+              53.79755745832995
+            ],
+            [
+              -1.5339880352722022,
+              53.797547905734994
+            ],
+            [
+              -1.5339377103129612,
+              53.79750048090519
+            ],
+            [
+              -1.5339119091221678,
+              53.797510033500146
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 461,
+        "id": 587,
+        "layer": 0,
+        "osm_way_ids": [
+          971371100
+        ],
+        "src_i": 459,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.534004087553244,
+              53.79756320319688
+            ],
+            [
+              -1.5341366608499487,
+              53.79751842417148
+            ],
+            [
+              -1.5341215449392795,
+              53.79750281014836
+            ],
+            [
+              -1.533988971642575,
+              53.79754758917377
+            ],
+            [
+              -1.534004087553244,
+              53.79756320319688
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 460,
+        "id": 588,
+        "layer": 0,
+        "osm_way_ids": [
+          971371100
+        ],
+        "src_i": 461,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5339781325845518,
+              53.79757260830308
+            ],
+            [
+              -1.534181641646574,
+              53.79776856150531
+            ],
+            [
+              -1.5342844322752087,
+              53.79774109801965
+            ],
+            [
+              -1.5342718833896594,
+              53.797724710579885
+            ],
+            [
+              -1.5341935571498873,
+              53.79774563779552
+            ],
+            [
+              -1.5340040890757973,
+              53.79756320319688
+            ],
+            [
+              -1.5339781325845518,
+              53.79757260830308
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 462,
+        "id": 589,
+        "layer": 0,
+        "osm_way_ids": [
+          971371101
+        ],
+        "src_i": 461,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5340214933843044,
+              53.79876639398981
+            ],
+            [
+              -1.534065851456568,
+              53.79848494857011
+            ],
+            [
+              -1.534020372784964,
+              53.79848244845583
+            ],
+            [
+              -1.5339760147127006,
+              53.798763893875524
+            ],
+            [
+              -1.5340214933843044,
+              53.79876639398981
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 463,
+        "id": 590,
+        "layer": 0,
+        "osm_way_ids": [
+          1003280130
+        ],
+        "src_i": 87,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5375298569687066,
+              53.79944984069989
+            ],
+            [
+              -1.5374777932534238,
+              53.79944476223033
+            ],
+            [
+              -1.537472832774278,
+              53.79946250764584
+            ],
+            [
+              -1.5375248964895607,
+              53.799467586115405
+            ],
+            [
+              -1.5375298569687066,
+              53.79944984069989
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 465,
+        "id": 591,
+        "layer": 0,
+        "osm_way_ids": [
+          1003280134
+        ],
+        "src_i": 464,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5362928294883123,
+              53.798232019741775
+            ],
+            [
+              -1.5366903468788173,
+              53.79826289345526
+            ],
+            [
+              -1.5366982854725149,
+              53.798227228155824
+            ],
+            [
+              -1.5363007680820098,
+              53.79819635444234
+            ],
+            [
+              -1.5362928294883123,
+              53.798232019741775
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 466,
+        "id": 592,
+        "layer": 0,
+        "osm_way_ids": [
+          1009731644,
+          701166701
+        ],
+        "src_i": 339,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5331590856130544,
+              53.79837352441182
+            ],
+            [
+              -1.5331398618531724,
+              53.79837190023686
+            ],
+            [
+              -1.5331355499817971,
+              53.79838970500761
+            ],
+            [
+              -1.5331547737416789,
+              53.79839132918257
+            ],
+            [
+              -1.5331590856130544,
+              53.79837352441182
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 253,
+        "id": 593,
+        "layer": 0,
+        "osm_way_ids": [
+          1009731656
+        ],
+        "src_i": 110,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5331096939790794,
+              53.79836941091443
+            ],
+            [
+              -1.5327027260992994,
+              53.798336713376564
+            ],
+            [
+              -1.5326986212951934,
+              53.79835453613374
+            ],
+            [
+              -1.5331055891749734,
+              53.79838723367161
+            ],
+            [
+              -1.5331096939790794,
+              53.79836941091443
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 467,
+        "id": 594,
+        "layer": 0,
+        "osm_way_ids": [
+          1009731656
+        ],
+        "src_i": 253,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5345074269763064,
+              53.79847982963108
+            ],
+            [
+              -1.5344954703640497,
+              53.798513520919414
+            ],
+            [
+              -1.534462030522589,
+              53.79851094796007
+            ],
+            [
+              -1.534462118830689,
+              53.79851026267694
+            ],
+            [
+              -1.5343710305478844,
+              53.79850616716598
+            ],
+            [
+              -1.5343643708990864,
+              53.7985578511833
+            ],
+            [
+              -1.5345675297738144,
+              53.798573478696234
+            ],
+            [
+              -1.5345968374052072,
+              53.79849090028104
+            ],
+            [
+              -1.5345074269763064,
+              53.79847982963108
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 469,
+        "id": 595,
+        "layer": 0,
+        "osm_way_ids": [
+          1009731660
+        ],
+        "src_i": 468,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5345125153499422,
+              53.79847500926684
+            ],
+            [
+              -1.5344666606076356,
+              53.79847440851995
+            ],
+            [
+              -1.534465984593903,
+              53.79849239135639
+            ],
+            [
+              -1.5345118393362096,
+              53.79849299210328
+            ],
+            [
+              -1.5345125153499422,
+              53.79847500926684
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 255,
+        "id": 596,
+        "layer": 0,
+        "osm_way_ids": [
+          1009731661
+        ],
+        "src_i": 258,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5339245189098552,
+              53.79843725304448
+            ],
+            [
+              -1.5338520636361932,
+              53.79843129773627
+            ],
+            [
+              -1.53384786747888,
+              53.79844911329888
+            ],
+            [
+              -1.5339203227525422,
+              53.79845506860709
+            ],
+            [
+              -1.5339245189098552,
+              53.79843725304448
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 267,
+        "id": 597,
+        "layer": 0,
+        "osm_way_ids": [
+          1009731662
+        ],
+        "src_i": 256,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5338138231836989,
+              53.79842815460698
+            ],
+            [
+              -1.5335397787879175,
+              53.79840563109535
+            ],
+            [
+              -1.5335355826306043,
+              53.79842344665796
+            ],
+            [
+              -1.533809627026386,
+              53.79844597016959
+            ],
+            [
+              -1.5338138231836989,
+              53.79842815460698
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 109,
+        "id": 598,
+        "layer": 0,
+        "osm_way_ids": [
+          1009731662
+        ],
+        "src_i": 267,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5368265819165734,
+              53.797824213329896
+            ],
+            [
+              -1.536533677651185,
+              53.79781913575966
+            ],
+            [
+              -1.536362728394729,
+              53.79783862136264
+            ],
+            [
+              -1.5360750053787369,
+              53.797856259758866
+            ],
+            [
+              -1.5359648014373455,
+              53.797876315531795
+            ],
+            [
+              -1.5358666957056817,
+              53.79791273356348
+            ],
+            [
+              -1.5358788487273336,
+              53.797924154948895
+            ],
+            [
+              -1.5359743996143054,
+              53.79788868480227
+            ],
+            [
+              -1.5360795943548406,
+              53.797869540941534
+            ],
+            [
+              -1.536366071922109,
+              53.79785197808832
+            ],
+            [
+              -1.5365355229859687,
+              53.797832663356466
+            ],
+            [
+              -1.5368259119930547,
+              53.79783769775926
+            ],
+            [
+              -1.5368265819165734,
+              53.797824213329896
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 119,
+        "id": 599,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049065
+        ],
+        "src_i": 470,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5346744099810208,
+              53.79956134759578
+            ],
+            [
+              -1.5353602061195275,
+              53.79924796816233
+            ],
+            [
+              -1.5353462321239473,
+              53.79923729860984
+            ],
+            [
+              -1.5346604359854406,
+              53.79955067804329
+            ],
+            [
+              -1.5346744099810208,
+              53.79956134759578
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 479,
+        "id": 601,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049066
+        ],
+        "src_i": 356,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.535409332829202,
+              53.79922667132547
+            ],
+            [
+              -1.5357248668065437,
+              53.79909715731146
+            ],
+            [
+              -1.5357400283938163,
+              53.79909498095298
+            ],
+            [
+              -1.53573463550949,
+              53.79908187244008
+            ],
+            [
+              -1.535715332576829,
+              53.79908464235088
+            ],
+            [
+              -1.5353962997716548,
+              53.79921559348094
+            ],
+            [
+              -1.535409332829202,
+              53.79922667132547
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 419,
+        "id": 602,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049066
+        ],
+        "src_i": 479,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5346884509689527,
+              53.799573221340005
+            ],
+            [
+              -1.53537887871506,
+              53.79926454895625
+            ],
+            [
+              -1.5353650965612147,
+              53.799253793068885
+            ],
+            [
+              -1.5346746688151074,
+              53.79956246545263
+            ],
+            [
+              -1.5346884509689527,
+              53.799573221340005
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 480,
+        "id": 603,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049067
+        ],
+        "src_i": 356,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5354287240699636,
+              53.799243191864846
+            ],
+            [
+              -1.53575100448165,
+              53.799111142663
+            ],
+            [
+              -1.5357600195206378,
+              53.799101505531816
+            ],
+            [
+              -1.5357400283938163,
+              53.7990949818523
+            ],
+            [
+              -1.5357335956054825,
+              53.79910185806592
+            ],
+            [
+              -1.535415706237951,
+              53.79923210862439
+            ],
+            [
+              -1.5354287240699636,
+              53.799243191864846
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 419,
+        "id": 604,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049067
+        ],
+        "src_i": 480,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5346550293981334,
+              53.799551044067215
+            ],
+            [
+              -1.5346470527405995,
+              53.799550428031864
+            ],
+            [
+              -1.5346440928966893,
+              53.79956380454262
+            ],
+            [
+              -1.5346520695542232,
+              53.79956442057798
+            ],
+            [
+              -1.5346550293981334,
+              53.799551044067215
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 242,
+        "id": 605,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049068
+        ],
+        "src_i": 356,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5358617748129255,
+              53.800043486542314
+            ],
+            [
+              -1.5358714201890424,
+              53.80000796783231
+            ],
+            [
+              -1.5358112854179118,
+              53.80000226973011
+            ],
+            [
+              -1.535801640041795,
+              53.80003778844011
+            ],
+            [
+              -1.5358617748129255,
+              53.800043486542314
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 473,
+        "id": 606,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049069
+        ],
+        "src_i": 472,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5355613613139132,
+              53.79997821197568
+            ],
+            [
+              -1.5356728426776507,
+              53.80007005520289
+            ],
+            [
+              -1.5357459952807937,
+              53.800079418040966
+            ],
+            [
+              -1.5357524448172153,
+              53.800061839899286
+            ],
+            [
+              -1.535690757041564,
+              53.800053944754204
+            ],
+            [
+              -1.535586108897718,
+              53.799967731280745
+            ],
+            [
+              -1.5355613613139132,
+              53.79997821197568
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 475,
+        "id": 607,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049070
+        ],
+        "src_i": 474,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.536346648707725,
+              53.79940592322466
+            ],
+            [
+              -1.5361045078969717,
+              53.799386176818395
+            ],
+            [
+              -1.5359281688012962,
+              53.799455452467214
+            ],
+            [
+              -1.535978760207391,
+              53.799500382578664
+            ],
+            [
+              -1.5361262925917594,
+              53.799442423993945
+            ],
+            [
+              -1.5363341546340998,
+              53.79945937530841
+            ],
+            [
+              -1.536346648707725,
+              53.79940592322466
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 477,
+        "id": 608,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049071
+        ],
+        "src_i": 476,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5353418212865977,
+              53.79923231726702
+            ],
+            [
+              -1.5353462549622492,
+              53.79923609351878
+            ],
+            [
+              -1.5353963012942082,
+              53.79921559438026
+            ],
+            [
+              -1.5353918676185567,
+              53.7992118181285
+            ],
+            [
+              -1.5353418212865977,
+              53.79923231726702
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 479,
+        "id": 609,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049073
+        ],
+        "src_i": 478,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.535360207642081,
+              53.799247969960966
+            ],
+            [
+              -1.5353656857894005,
+              53.799252628447306
+            ],
+            [
+              -1.5354157047153976,
+              53.79923210592642
+            ],
+            [
+              -1.535410226568078,
+              53.79922744744009
+            ],
+            [
+              -1.535360207642081,
+              53.799247969960966
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 480,
+        "id": 610,
+        "layer": 0,
+        "osm_way_ids": [
+          1010049073
+        ],
+        "src_i": 479,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5326041788271345,
+              53.79675764748755
+            ],
+            [
+              -1.5326004653192655,
+              53.796787490578396
+            ],
+            [
+              -1.5326460201185421,
+              53.7967894690861
+            ],
+            [
+              -1.5326497336264109,
+              53.796759625995264
+            ],
+            [
+              -1.5326041788271345,
+              53.79675764748755
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 482,
+        "id": 612,
+        "layer": 0,
+        "osm_way_ids": [
+          1019599366
+        ],
+        "src_i": 13,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5325894542127025,
+              53.79682244721234
+            ],
+            [
+              -1.5325378777145244,
+              53.79692818226164
+            ],
+            [
+              -1.5325817698854316,
+              53.79693565202757
+            ],
+            [
+              -1.5326333463836097,
+              53.79682991697827
+            ],
+            [
+              -1.5325894542127025,
+              53.79682244721234
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 211,
+        "id": 613,
+        "layer": 0,
+        "osm_way_ids": [
+          1019599366
+        ],
+        "src_i": 482,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5325908503942178,
+              53.796731843250406
+            ],
+            [
+              -1.5323066307737183,
+              53.79678306321773
+            ],
+            [
+              -1.532319959206635,
+              53.7968088683542
+            ],
+            [
+              -1.5326041788271345,
+              53.79675764838687
+            ],
+            [
+              -1.5325908503942178,
+              53.796731843250406
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 212,
+        "id": 614,
+        "layer": 0,
+        "osm_way_ids": [
+          1019599367
+        ],
+        "src_i": 13,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5339871735069484,
+              53.79710603301765
+            ],
+            [
+              -1.5338715035986652,
+              53.79693149086613
+            ],
+            [
+              -1.5338463555833024,
+              53.79691868272667
+            ],
+            [
+              -1.5338065864871426,
+              53.79694592677784
+            ],
+            [
+              -1.5338202970809758,
+              53.796952909111404
+            ],
+            [
+              -1.5339304614359774,
+              53.79711914512784
+            ],
+            [
+              -1.5339871735069484,
+              53.79710603301765
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 485,
+        "id": 615,
+        "layer": 0,
+        "osm_way_ids": [
+          1060145090
+        ],
+        "src_i": 483,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.533768846954734,
+              53.79690792414134
+            ],
+            [
+              -1.5337559022052871,
+              53.79690727213311
+            ],
+            [
+              -1.5333185319781826,
+              53.79695496406146
+            ],
+            [
+              -1.533337387280129,
+              53.79700753570928
+            ],
+            [
+              -1.5333969678418031,
+              53.797000080332495
+            ],
+            [
+              -1.533391069469731,
+              53.79698363623546
+            ],
+            [
+              -1.5337588985904802,
+              53.796943527387576
+            ],
+            [
+              -1.5337636733181048,
+              53.79694376750646
+            ],
+            [
+              -1.533768846954734,
+              53.79690792414134
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 484,
+        "id": 616,
+        "layer": 0,
+        "osm_way_ids": [
+          1060145090
+        ],
+        "src_i": 485,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5338151995720193,
+              53.79687737508297
+            ],
+            [
+              -1.533788519867884,
+              53.79677065887371
+            ],
+            [
+              -1.533728272427798,
+              53.796775914509645
+            ],
+            [
+              -1.5337549521319334,
+              53.79688263071891
+            ],
+            [
+              -1.5338151995720193,
+              53.79687737508297
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 488,
+        "id": 618,
+        "layer": 0,
+        "osm_way_ids": [
+          1060145092,
+          1060145093
+        ],
+        "src_i": 485,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5362253910282737,
+              53.79643388718387
+            ],
+            [
+              -1.5360317816087952,
+              53.796433515764015
+            ],
+            [
+              -1.536031337023187,
+              53.79651445471578
+            ],
+            [
+              -1.5362249464426658,
+              53.79651482613564
+            ],
+            [
+              -1.5362253910282737,
+              53.79643388718387
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 49,
+        "id": 620,
+        "layer": 0,
+        "osm_way_ids": [
+          1079858511
+        ],
+        "src_i": 489,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5363964179349558,
+              53.79769072611268
+            ],
+            [
+              -1.5363903977586078,
+              53.79767915184257
+            ],
+            [
+              -1.5363612895817171,
+              53.79768443445816
+            ],
+            [
+              -1.5363673097580652,
+              53.797696008728266
+            ],
+            [
+              -1.5363964179349558,
+              53.79769072611268
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 491,
+        "id": 621,
+        "layer": 0,
+        "osm_way_ids": [
+          1106332519
+        ],
+        "src_i": 490,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5358674036930366,
+              53.79659380096885
+            ],
+            [
+              -1.5358679731280276,
+              53.79663232161464
+            ],
+            [
+              -1.5358984241970628,
+              53.796632165132664
+            ],
+            [
+              -1.5358978547620719,
+              53.796593644486876
+            ],
+            [
+              -1.5358674036930366,
+              53.79659380096885
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 318,
+        "id": 622,
+        "layer": 0,
+        "osm_way_ids": [
+          1106332520
+        ],
+        "src_i": 50,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5358681741050833,
+              53.7966458141379
+            ],
+            [
+              -1.5358681954208315,
+              53.79664721977769
+            ],
+            [
+              -1.5358986464898667,
+              53.79664705789979
+            ],
+            [
+              -1.5358986251741185,
+              53.79664565225999
+            ],
+            [
+              -1.5358681741050833,
+              53.7966458141379
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 492,
+        "id": 623,
+        "layer": 0,
+        "osm_way_ids": [
+          1106332521
+        ],
+        "src_i": 318,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5337190366185598,
+              53.796097332230566
+            ],
+            [
+              -1.5336528740583137,
+              53.79604634968417
+            ],
+            [
+              -1.5335294299921058,
+              53.795980448290315
+            ],
+            [
+              -1.5334375469363992,
+              53.796040495999314
+            ],
+            [
+              -1.5335517247422998,
+              53.79610145112389
+            ],
+            [
+              -1.5336102836706078,
+              53.79614657369018
+            ],
+            [
+              -1.5337190366185598,
+              53.796097332230566
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 493,
+        "id": 624,
+        "layer": 0,
+        "osm_way_ids": [
+          1136185236
+        ],
+        "src_i": 314,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5334419258001266,
+              53.79983112971252
+            ],
+            [
+              -1.5333252692772066,
+              53.7997926324491
+            ],
+            [
+              -1.5332807132729944,
+              53.799839738919026
+            ],
+            [
+              -1.5333973697959145,
+              53.79987823618245
+            ],
+            [
+              -1.5334419258001266,
+              53.79983112971252
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 236,
+        "id": 627,
+        "layer": 0,
+        "osm_way_ids": [
+          1178545764
+        ],
+        "src_i": 59,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5341707645247145,
+              53.79993487995886
+            ],
+            [
+              -1.5334460732357291,
+              53.799809141297295
+            ],
+            [
+              -1.53342032685686,
+              53.79986091344813
+            ],
+            [
+              -1.5341450181458454,
+              53.7999866521097
+            ],
+            [
+              -1.5341707645247145,
+              53.79993487995886
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 56,
+        "id": 628,
+        "layer": 1,
+        "osm_way_ids": [
+          1178545766
+        ],
+        "src_i": 278,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5341570767691832,
+              53.79641253638772
+            ],
+            [
+              -1.5340789971830704,
+              53.79622624639701
+            ],
+            [
+              -1.5339903206249332,
+              53.796239212817085
+            ],
+            [
+              -1.534068400211046,
+              53.79642550280779
+            ],
+            [
+              -1.5341570767691832,
+              53.79641253638772
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 412,
+        "id": 629,
+        "layer": 0,
+        "osm_way_ids": [
+          1231241486
+        ],
+        "src_i": 55,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5356246584285629,
+              53.79879886040201
+            ],
+            [
+              -1.535609936859238,
+              53.79879461020772
+            ],
+            [
+              -1.535569820620891,
+              53.79884308904254
+            ],
+            [
+              -1.5355845421902161,
+              53.79884733923683
+            ],
+            [
+              -1.5356246584285629,
+              53.79879886040201
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 401,
+        "id": 630,
+        "layer": 0,
+        "osm_way_ids": [
+          1238603931
+        ],
+        "src_i": 397,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5365577187701884,
+              53.79776416022497
+            ],
+            [
+              -1.5365778225659654,
+              53.797568313142705
+            ],
+            [
+              -1.5365474263088545,
+              53.797567224963466
+            ],
+            [
+              -1.5365273225130776,
+              53.79776307204573
+            ],
+            [
+              -1.5365577187701884,
+              53.79776416022497
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 441,
+        "id": 631,
+        "layer": 0,
+        "osm_way_ids": [
+          177344221
+        ],
+        "src_i": 496,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5365793740479328,
+              53.79755010547584
+            ],
+            [
+              -1.5365873537505734,
+              53.797419801857394
+            ],
+            [
+              -1.5365569239972865,
+              53.797419152547135
+            ],
+            [
+              -1.5365489442946458,
+              53.797549456165584
+            ],
+            [
+              -1.5365793740479328,
+              53.79755010547584
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 443,
+        "id": 632,
+        "layer": 0,
+        "osm_way_ids": [
+          177344221
+        ],
+        "src_i": 441,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5365875288442203,
+              53.79740179114198
+            ],
+            [
+              -1.5365785838426913,
+              53.79721303341256
+            ],
+            [
+              -1.5365481449540837,
+              53.797213537032704
+            ],
+            [
+              -1.5365570899556127,
+              53.79740229476212
+            ],
+            [
+              -1.5365875288442203,
+              53.79740179114198
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 445,
+        "id": 633,
+        "layer": 0,
+        "osm_way_ids": [
+          177344221
+        ],
+        "src_i": 443,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5365772988075779,
+              53.79719497593242
+            ],
+            [
+              -1.536563079680892,
+              53.797052955951045
+            ],
+            [
+              -1.5365326803786743,
+              53.797054017150636
+            ],
+            [
+              -1.5365468995053602,
+              53.79719603713201
+            ],
+            [
+              -1.5365772988075779,
+              53.79719497593242
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 365,
+        "id": 634,
+        "layer": 0,
+        "osm_way_ids": [
+          177344221
+        ],
+        "src_i": 445,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5365614155299692,
+              53.79703493624241
+            ],
+            [
+              -1.5365514610755016,
+              53.79691506835281
+            ],
+            [
+              -1.5365210465477495,
+              53.796915949688064
+            ],
+            [
+              -1.536531001002217,
+              53.797035817577665
+            ],
+            [
+              -1.5365614155299692,
+              53.79703493624241
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 497,
+        "id": 635,
+        "layer": 0,
+        "osm_way_ids": [
+          177344221
+        ],
+        "src_i": 365,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5363756518284275,
+              53.796573034731786
+            ],
+            [
+              -1.5361830427265666,
+              53.796572622842454
+            ],
+            [
+              -1.5361829331027181,
+              53.79659060927618
+            ],
+            [
+              -1.5363755422045788,
+              53.79659102116551
+            ],
+            [
+              -1.5363756518284275,
+              53.796573034731786
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 499,
+        "id": 636,
+        "layer": 0,
+        "osm_way_ids": [
+          177344221
+        ],
+        "src_i": 498,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.53604333169928,
+              53.79657227300632
+            ],
+            [
+              -1.535897784724613,
+              53.796575646361966
+            ],
+            [
+              -1.5358989784065191,
+              53.79659361840655
+            ],
+            [
+              -1.5360445253811863,
+              53.7965902450509
+            ],
+            [
+              -1.53604333169928,
+              53.79657227300632
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 50,
+        "id": 638,
+        "layer": 0,
+        "osm_way_ids": [
+          177344221
+        ],
+        "src_i": 499,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5364071093052942,
+              53.79850592434913
+            ],
+            [
+              -1.536382973787977,
+              53.79852883007248
+            ],
+            [
+              -1.5362513216361107,
+              53.798551280739055
+            ],
+            [
+              -1.5361896414732266,
+              53.79848748915388
+            ],
+            [
+              -1.5362835647505584,
+              53.79842855300649
+            ],
+            [
+              -1.5364071093052942,
+              53.79850592434913
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 0,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #532 -> Road #0",
+          "Road #532 -> Road #530"
+        ],
+        "osm_node_ids": [
+          26298423
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5372590936756136,
+              53.79865022231234
+            ],
+            [
+              -1.5372515661713482,
+              53.79867683324104
+            ],
+            [
+              -1.5372065138147106,
+              53.7986723860953
+            ],
+            [
+              -1.537214041318976,
+              53.7986457751666
+            ],
+            [
+              -1.5372590936756136,
+              53.79865022231234
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 1,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5360219794096728,
+              53.79892224374008
+            ],
+            [
+              -1.5359501910144224,
+              53.79888887171094
+            ],
+            [
+              -1.5359314194529157,
+              53.79880869448465
+            ],
+            [
+              -1.5360569524624594,
+              53.79879845031132
+            ],
+            [
+              -1.5361145506595395,
+              53.798871890718864
+            ],
+            [
+              -1.5360219794096728,
+              53.79892224374008
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 2,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #567 -> Road #2",
+          "Road #567 -> Road #345"
+        ],
+        "osm_node_ids": [
+          643945
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5356796089051903,
+              53.799092111217476
+            ],
+            [
+              -1.5356547029758265,
+              53.79910244532297
+            ],
+            [
+              -1.5356021809719547,
+              53.79905829582275
+            ],
+            [
+              -1.5356271112621738,
+              53.79904795272404
+            ],
+            [
+              -1.5356796089051903,
+              53.799092111217476
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 3,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #3 -> Road #238"
+        ],
+        "osm_node_ids": [
+          4833244388
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5343770613821066,
+              53.79654853451109
+            ],
+            [
+              -1.5342886253874148,
+              53.79656206570518
+            ],
+            [
+              -1.5342823235386782,
+              53.796547695443955
+            ],
+            [
+              -1.5342206616464356,
+              53.796571710030946
+            ],
+            [
+              -1.5342080914451377,
+              53.79656044872479
+            ],
+            [
+              -1.5341968550006637,
               53.7965068995143
             ],
             [
-              -1.5342666534185527,
-              53.79650178956848
+              -1.5342666534185527,
+              53.79650178956848
+            ],
+            [
+              -1.534356742906293,
+              53.79649284851227
+            ],
+            [
+              -1.534357501137912,
+              53.79649551410175
+            ],
+            [
+              -1.5343671419463685,
+              53.79649489267047
+            ],
+            [
+              -1.5343770598595532,
+              53.79654853361177
+            ],
+            [
+              -1.5343770613821066,
+              53.79654853451109
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signalled",
+        "crossing": null,
+        "id": 4,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #291 -> Road #4",
+          "Road #273 -> Road #4",
+          "Road #273 -> Road #489"
+        ],
+        "osm_node_ids": [
+          643914
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5345312199190968,
+              53.79681473732752
+            ],
+            [
+              -1.5345179188921423,
+              53.79684099931941
+            ],
+            [
+              -1.5344285769781467,
+              53.79685226602149
+            ],
+            [
+              -1.5343933801100027,
+              53.79677989580675
+            ],
+            [
+              -1.5344800164465144,
+              53.79676277991642
+            ],
+            [
+              -1.5345214146748676,
+              53.796774178818794
+            ],
+            [
+              -1.5344945218132493,
+              53.79680825231884
+            ],
+            [
+              -1.5345312199190968,
+              53.79681473732752
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 5,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #5 -> Road #72",
+          "Road #25 -> Road #72"
+        ],
+        "osm_node_ids": [
+          301689321
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.535624955326486,
+              53.79859249215533
+            ],
+            [
+              -1.5354879742375385,
+              53.79859465232602
+            ],
+            [
+              -1.5354717285922084,
+              53.798480808992394
+            ],
+            [
+              -1.5355611512015368,
+              53.7984697743153
+            ],
+            [
+              -1.5356791353910668,
+              53.79851093896685
+            ],
+            [
+              -1.535624955326486,
+              53.79859249215533
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 6,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #526 -> Road #6",
+          "Road #526 -> Road #524"
+        ],
+        "osm_node_ids": [
+          26298420
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5355414189088021,
+              53.79841399029042
+            ],
+            [
+              -1.5354519962994735,
+              53.798425024967514
+            ],
+            [
+              -1.5355423233055523,
+              53.79842114529376
+            ],
+            [
+              -1.5354509761886608,
+              53.7984218395701
+            ],
+            [
+              -1.5355408098874213,
+              53.798412040561004
+            ],
+            [
+              -1.5355414189088021,
+              53.79841399029042
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 7,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #6 -> Road #309",
+          "Road #237 -> Road #309"
+        ],
+        "osm_node_ids": [
+          1022749752
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5357275053916757,
+              53.79643055070042
+            ],
+            [
+              -1.5357235376173803,
+              53.79651145547796
+            ],
+            [
+              -1.5357062520680425,
+              53.796511159601124
+            ],
+            [
+              -1.535694828349494,
+              53.79651105168252
+            ],
+            [
+              -1.5356970299617851,
+              53.79643012352262
+            ],
+            [
+              -1.535697113702225,
+              53.79642937798494
+            ],
+            [
+              -1.5357275008240152,
+              53.79643055070042
+            ],
+            [
+              -1.5357275053916757,
+              53.79643055070042
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 8,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #343 -> Road #344",
+          "Road #344 -> Road #343"
+        ],
+        "osm_node_ids": [
+          301689309
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5357774771185155,
+              53.795700489449366
+            ],
+            [
+              -1.5358078642403057,
+              53.79570165856756
+            ],
+            [
+              -1.535805886443372,
+              53.79571960722978
+            ],
+            [
+              -1.5357754993215817,
+              53.795718438111585
+            ],
+            [
+              -1.5357774771185155,
+              53.795700489449366
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 9,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5325555149737096,
+              53.79720350150201
+            ],
+            [
+              -1.5325504966375325,
+              53.797257379864234
+            ],
+            [
+              -1.5325456061958453,
+              53.797257220684294
+            ],
+            [
+              -1.5324550264458936,
+              53.797250217666324
+            ],
+            [
+              -1.5324618444402505,
+              53.797219450072795
+            ],
+            [
+              -1.5324644221232444,
+              53.797199412286304
+            ],
+            [
+              -1.532555513451156,
+              53.797203500602684
+            ],
+            [
+              -1.5325555149737096,
+              53.79720350150201
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 10,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #201 -> Road #9",
+          "Road #201 -> Road #200",
+          "Road #200 -> Road #9",
+          "Road #200 -> Road #201"
+        ],
+        "osm_node_ids": [
+          26661450
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.533285446891676,
+              53.79723403886919
+            ],
+            [
+              -1.5332553916865381,
+              53.79723114844929
+            ],
+            [
+              -1.5332393698565654,
+              53.7971780264166
+            ],
+            [
+              -1.5332761699734943,
+              53.797174167427244
+            ],
+            [
+              -1.5332890507756962,
+              53.79722758713541
+            ],
+            [
+              -1.533285446891676,
+              53.79723403886919
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 11,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #10 -> Road #514"
+        ],
+        "osm_node_ids": [
+          5506378793
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5326202158826419,
+              53.796692727253664
+            ],
+            [
+              -1.5325939975122025,
+              53.79671481999021
+            ],
+            [
+              -1.532582654488987,
+              53.79671518601413
+            ],
+            [
+              -1.5325587443095807,
+              53.796662214168165
+            ],
+            [
+              -1.5326048837693826,
+              53.79665283963891
+            ],
+            [
+              -1.5326202158826419,
+              53.796692726354344
+            ],
+            [
+              -1.5326202158826419,
+              53.796692727253664
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 12,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          5728993713
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5326497336264109,
+              53.796759626894584
+            ],
+            [
+              -1.5326041788271345,
+              53.79675764838687
+            ],
+            [
+              -1.5325908503942178,
+              53.796731843250406
+            ],
+            [
+              -1.5326016346403166,
+              53.79672989981624
+            ],
+            [
+              -1.5326013438326074,
+              53.79672925859988
+            ],
+            [
+              -1.5326454674316392,
+              53.79672228346088
+            ],
+            [
+              -1.5326579371444091,
+              53.79674823878407
+            ],
+            [
+              -1.5326510064810968,
+              53.79674940070769
+            ],
+            [
+              -1.5326497336264109,
+              53.796759626894584
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signalled",
+        "crossing": null,
+        "id": 13,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #11 -> Road #612",
+          "Road #11 -> Road #614",
+          "Road #284 -> Road #612",
+          "Road #284 -> Road #614"
+        ],
+        "osm_node_ids": [
+          5728993689
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5372885870585276,
+              53.79872392352318
+            ],
+            [
+              -1.537282262371489,
+              53.79875064237047
+            ],
+            [
+              -1.5372370257858838,
+              53.798746905688866
+            ],
+            [
+              -1.5372433504729224,
+              53.79872018684157
+            ],
+            [
+              -1.5372885870585276,
+              53.79872392352318
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 14,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5364034353838152,
+              53.79866803517698
+            ],
+            [
+              -1.5362693136502499,
+              53.79865145168508
+            ],
+            [
+              -1.5362697917320338,
+              53.7986355570736
+            ],
+            [
+              -1.5364068002269435,
+              53.79863699958558
+            ],
+            [
+              -1.536412783862009,
+              53.79866374631186
+            ],
+            [
+              -1.536404732599356,
+              53.798664374937715
+            ],
+            [
+              -1.5364034353838152,
+              53.79866803517698
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 15,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #530 -> Road #527",
+          "Road #13 -> Road #527"
+        ],
+        "osm_node_ids": [
+          4540786888
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5371129331119056,
+              53.79896013126341
+            ],
+            [
+              -1.5371049062101079,
+              53.79898669183009
+            ],
+            [
+              -1.5371025934514146,
+              53.7989981213094
+            ],
+            [
+              -1.5370572396291937,
+              53.798994919724194
+            ],
+            [
+              -1.53707673440359,
+              53.79894220418491
+            ],
+            [
+              -1.5371129331119056,
+              53.79896013126341
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 16,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #268 -> Road #14",
+          "Road #268 -> Road #274"
+        ],
+        "osm_node_ids": [
+          26298430
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.536965673264605,
+              53.799674955307125
+            ],
+            [
+              -1.5369203194423842,
+              53.79967175372192
+            ],
+            [
+              -1.5369257382101191,
+              53.79964496472753
+            ],
+            [
+              -1.5369710920323398,
+              53.79964816631273
+            ],
+            [
+              -1.536965673264605,
+              53.799674955307125
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 17,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5374752673372474,
+              53.79925613849984
+            ],
+            [
+              -1.5375205084905128,
+              53.799259850899766
+            ],
+            [
+              -1.537514223389864,
+              53.79928657424367
+            ],
+            [
+              -1.5374689822365983,
+              53.79928286184375
+            ],
+            [
+              -1.5374752673372474,
+              53.79925613849984
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 18,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5374560481450257,
+              53.79953342725471
+            ],
+            [
+              -1.5374108100368673,
+              53.79952969147242
+            ],
+            [
+              -1.5374171332013524,
+              53.7995029717258
+            ],
+            [
+              -1.537462371309511,
+              53.79950670750808
+            ],
+            [
+              -1.5374560481450257,
+              53.79953342725471
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 19,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.533235627420181,
+              53.79996106281044
+            ],
+            [
+              -1.533282980355084,
+              53.79996625189657
+            ],
+            [
+              -1.5332980901755393,
+              53.79997308674139
+            ],
+            [
+              -1.5332967396706274,
+              53.800001170759
+            ],
+            [
+              -1.533235627420181,
+              53.79996106281044
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 20,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          26298442
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5329794273508541,
+              53.80016983314534
+            ],
+            [
+              -1.5329183211906214,
+              53.80012972159949
+            ],
+            [
+              -1.5329862301196766,
+              53.80009362912225
+            ],
+            [
+              -1.5330473362799093,
+              53.80013374066811
+            ],
+            [
+              -1.5329794273508541,
+              53.80016983314534
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 21,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.535440555832837,
+              53.79600028822604
+            ],
+            [
+              -1.5354717666560447,
+              53.79599646341091
+            ],
+            [
+              -1.5354796321671764,
+              53.79602304016538
+            ],
+            [
+              -1.5354512380678547,
+              53.79602651964098
+            ],
+            [
+              -1.535440555832837,
+              53.79600028822604
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 22,
+        "intersection_kind": "Connection",
+        "movements": [],
+        "osm_node_ids": [
+          60197213
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5344712815573616,
+              53.79618271293214
+            ],
+            [
+              -1.534441526295254,
+              53.796187802193565
+            ],
+            [
+              -1.5344293275969985,
+              53.79616180280361
+            ],
+            [
+              -1.5344580688385072,
+              53.79615688621195
+            ],
+            [
+              -1.5344712815573616,
+              53.79618271293214
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 23,
+        "intersection_kind": "Connection",
+        "movements": [],
+        "osm_node_ids": [
+          60197210
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.531951871251799,
+              53.79660100093827
+            ],
+            [
+              -1.5319394167645635,
+              53.79657504291711
+            ],
+            [
+              -1.5319833622248415,
+              53.79656768646572
+            ],
+            [
+              -1.5319958167120769,
+              53.796593644486876
+            ],
+            [
+              -1.531951871251799,
+              53.79660100093827
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 24,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.534798067204712,
+              53.79655094199524
+            ],
+            [
+              -1.5347708469941015,
+              53.796529275537175
+            ],
+            [
+              -1.5347650095241674,
+              53.79647542505392
+            ],
+            [
+              -1.5348409818963031,
+              53.79647255172114
+            ],
+            [
+              -1.534846819366237,
+              53.796526401305066
+            ],
+            [
+              -1.534798067204712,
+              53.79655094199524
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 25,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #270 -> Road #23",
+          "Road #270 -> Road #272"
+        ],
+        "osm_node_ids": [
+          643911
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5363346966631286,
+              53.79981791328102
+            ],
+            [
+              -1.5363284206978005,
+              53.79987174487852
+            ],
+            [
+              -1.5362373750464926,
+              53.799867309423966
+            ],
+            [
+              -1.5362680758142937,
+              53.79981459028739
+            ],
+            [
+              -1.5363135605761113,
+              53.79981705263017
+            ],
+            [
+              -1.5363346966631286,
+              53.79981791328102
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 26,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #26 -> Road #229",
+          "Road #229 -> Road #26",
+          "Road #56 -> Road #26",
+          "Road #56 -> Road #229"
+        ],
+        "osm_node_ids": [
+          9791722
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5365631512409041,
+              53.79982720597201
+            ],
+            [
+              -1.536556875275576,
+              53.799881037569506
+            ],
+            [
+              -1.536465738271061,
+              53.799877330565515
+            ],
+            [
+              -1.536472014236389,
+              53.79982349896802
+            ],
+            [
+              -1.5365631512409041,
+              53.79982720597201
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 27,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5350960080769187,
+              53.79772509459024
+            ],
+            [
+              -1.5350167652599687,
+              53.79775194293987
+            ],
+            [
+              -1.5349755268997278,
+              53.79770947876848
+            ],
+            [
+              -1.5348858043473692,
+              53.79762069143636
+            ],
+            [
+              -1.5349642463012036,
+              53.79759303549586
+            ],
+            [
+              -1.5350101010435102,
+              53.797588806885294
+            ],
+            [
+              -1.5350974514575908,
+              53.79770712704227
+            ],
+            [
+              -1.5350960080769187,
+              53.79772509369092
+            ],
+            [
+              -1.5350960080769187,
+              53.79772509459024
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signalled",
+        "crossing": null,
+        "id": 28,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #311 -> Road #29",
+          "Road #372 -> Road #29"
+        ],
+        "osm_node_ids": [
+          5452444899
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5348179776362005,
+              53.79679609888557
+            ],
+            [
+              -1.534771573252098,
+              53.796796374078006
+            ],
+            [
+              -1.5347325593424501,
+              53.79678152987425
+            ],
+            [
+              -1.534777802018269,
+              53.7967399128639
+            ],
+            [
+              -1.5348172696488454,
+              53.79675433258782
+            ],
+            [
+              -1.5348179776362005,
+              53.79679609888557
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 29,
+        "intersection_kind": "Connection",
+        "movements": [],
+        "osm_node_ids": [
+          342579517
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5347667726410645,
+              53.79583903445175
+            ],
+            [
+              -1.5347797661122218,
+              53.79585530138242
+            ],
+            [
+              -1.53475222768794,
+              53.79586297709301
+            ],
+            [
+              -1.5347392342167827,
+              53.795846710162344
+            ],
+            [
+              -1.5347667726410645,
+              53.79583903445175
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 31,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5341773038917899,
+              53.79596955660537
+            ],
+            [
+              -1.5340863282779404,
+              53.79597445251263
+            ],
+            [
+              -1.5340840094290336,
+              53.79595393988429
+            ],
+            [
+              -1.5341751616590833,
+              53.795950374973124
+            ],
+            [
+              -1.5341877653565568,
+              53.795966747124425
+            ],
+            [
+              -1.5341773038917899,
+              53.79596955660537
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 32,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #81 -> Road #82"
+        ],
+        "osm_node_ids": [
+          26661442
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5328624221631937,
+              53.79726751432032
+            ],
+            [
+              -1.5328674404993705,
+              53.797213635958094
+            ],
+            [
+              -1.5328682352722725,
+              53.797207798461024
+            ],
+            [
+              -1.5329289394783938,
+              53.797210687082284
+            ],
+            [
+              -1.5329449613083668,
+              53.79726380911497
+            ],
+            [
+              -1.5328624221631937,
+              53.79726751432032
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 33,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #9 -> Road #32",
+          "Road #9 -> Road #10",
+          "Road #32 -> Road #10"
+        ],
+        "osm_node_ids": [
+          26661452
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5328234782910046,
+              53.796811998892984
+            ],
+            [
+              -1.5328271308967354,
+              53.796794595219716
+            ],
+            [
+              -1.5328721619376244,
+              53.796790071631634
+            ],
+            [
+              -1.532884057647743,
+              53.79680829188899
+            ],
+            [
+              -1.5328234782910046,
+              53.796811998892984
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 34,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          342529328
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5352612294872894,
+              53.79769013166104
+            ],
+            [
+              -1.5352401360317687,
+              53.797714062611114
+            ],
+            [
+              -1.535269947628354,
+              53.79768590574844
+            ],
+            [
+              -1.5351919868014103,
+              53.7977140329335
+            ],
+            [
+              -1.5351905205824363,
+              53.7977144682052
+            ],
+            [
+              -1.5351768754584016,
+              53.797698388333444
+            ],
+            [
+              -1.5351645016664992,
+              53.79768492818577
+            ],
+            [
+              -1.5352447828649034,
+              53.79765918060589
+            ],
+            [
+              -1.535280206593512,
+              53.797676890048535
+            ],
+            [
+              -1.5352612310098428,
+              53.79769013256036
+            ],
+            [
+              -1.5352612294872894,
+              53.79769013166104
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 35,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #73 -> Road #521",
+          "Road #73 -> Road #372"
+        ],
+        "osm_node_ids": [
+          5452444896
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5359282479740757,
+              53.79784526015532
+            ],
+            [
+              -1.535905199559923,
+              53.79782196772365
+            ],
+            [
+              -1.5359323954096782,
+              53.79780029137304
+            ],
+            [
+              -1.5359441556125397,
+              53.79779635863931
+            ],
+            [
+              -1.5359490430091198,
+              53.79785024059882
+            ],
+            [
+              -1.5359282479740757,
+              53.79784526015532
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 36,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #422 -> Road #420"
+        ],
+        "osm_node_ids": [
+          342579667
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5326793153174252,
+              53.79632473111488
+            ],
+            [
+              -1.5325902703013528,
+              53.79633678022683
+            ],
+            [
+              -1.5325673513042435,
+              53.79628454582465
+            ],
+            [
+              -1.5325883747223052,
+              53.79628132715233
+            ],
+            [
+              -1.5326319258412393,
+              53.79627319548565
+            ],
+            [
+              -1.5326323475885455,
+              53.79627398329144
+            ],
+            [
+              -1.5326512592249697,
+              53.79627052450024
+            ],
+            [
+              -1.5326782845487383,
+              53.79632206822336
+            ],
+            [
+              -1.5326793153174252,
+              53.79632473111488
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 37,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #38 -> Road #59",
+          "Road #38 -> Road #58",
+          "Road #59 -> Road #38",
+          "Road #59 -> Road #58",
+          "Road #212 -> Road #38",
+          "Road #212 -> Road #59",
+          "Road #212 -> Road #58",
+          "Road #58 -> Road #38",
+          "Road #58 -> Road #59"
+        ],
+        "osm_node_ids": [
+          342579565
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5327598233762936,
+              53.796532309848544
+            ],
+            [
+              -1.5327332791794157,
+              53.79655432704207
+            ],
+            [
+              -1.5327110377185924,
+              53.79655739013173
+            ],
+            [
+              -1.5326707783602211,
+              53.796544358960496
+            ],
+            [
+              -1.5327598233762936,
+              53.796532309848544
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 38,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          7241259895
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.537059521936818,
+              53.79921102492677
+            ],
+            [
+              -1.537014168114597,
+              53.79920782334157
+            ],
+            [
+              -1.5370132439246518,
+              53.79920774779855
+            ],
+            [
+              -1.5370195868823318,
+              53.799181028951246
+            ],
+            [
+              -1.5370649437496595,
+              53.79918422963713
+            ],
+            [
+              -1.537059521936818,
+              53.79921102492677
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 39,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #14 -> Road #15",
+          "Road #14 -> Road #39"
+        ],
+        "osm_node_ids": [
+          342579576
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5364549403219812,
+              53.799134251633056
+            ],
+            [
+              -1.5364485973643012,
+              53.79916097048036
+            ],
+            [
+              -1.5364032450646337,
+              53.7991577500094
+            ],
+            [
+              -1.536405999363828,
+              53.79914421791598
+            ],
+            [
+              -1.5364080746041826,
+              53.79913154017817
+            ],
+            [
+              -1.536453538050252,
+              53.799134135620555
+            ],
+            [
+              -1.5364549403219812,
+              53.799134251633056
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 40,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #39 -> Road #53",
+          "Road #52 -> Road #53"
+        ],
+        "osm_node_ids": [
+          342579578
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5363419653333075,
+              53.79963400559346
+            ],
+            [
+              -1.5362964805714896,
+              53.79963154325068
+            ],
+            [
+              -1.536294321590695,
+              53.799631365184986
+            ],
+            [
+              -1.5363068613409236,
+              53.799577916698524
+            ],
+            [
+              -1.536352119242277,
+              53.79958156974322
+            ],
+            [
+              -1.5363459955322942,
+              53.79960803767977
+            ],
+            [
+              -1.5363419653333075,
+              53.79963400559346
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 41,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #40 -> Road #56",
+          "Road #55 -> Road #56",
+          "Road #55 -> Road #40"
+        ],
+        "osm_node_ids": [
+          342579580
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.535129129704708,
+              53.79968706917024
+            ],
+            [
+              -1.5350720704915501,
+              53.799644930553306
+            ],
+            [
+              -1.535143412778639,
+              53.799611227573784
+            ],
+            [
+              -1.535200471991797,
+              53.79965336619072
+            ],
+            [
+              -1.535129129704708,
+              53.79968706917024
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 42,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          342579596
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5357956624969433,
+              53.79967584563559
+            ],
+            [
+              -1.5357062155267598,
+              53.79966487570966
+            ],
+            [
+              -1.5357260026314188,
+              53.79961219704256
+            ],
+            [
+              -1.5357696877350564,
+              53.79961379333856
+            ],
+            [
+              -1.5357995480533524,
+              53.79966478847546
+            ],
+            [
+              -1.5357956624969433,
+              53.79967584563559
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 43,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #42 -> Road #41",
+          "Road #42 -> Road #40",
+          "Road #41 -> Road #42",
+          "Road #41 -> Road #40",
+          "Road #40 -> Road #42",
+          "Road #40 -> Road #41"
+        ],
+        "osm_node_ids": [
+          342579586
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5354284515328955,
+              53.80001287992736
+            ],
+            [
+              -1.535391547882332,
+              53.799963519757284
+            ],
+            [
+              -1.5354751162736384,
+              53.79994172199825
+            ],
+            [
+              -1.5355120168790952,
+              53.799991082168326
+            ],
+            [
+              -1.5354284515328955,
+              53.80001287992736
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 44,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          342579609
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5360975178540746,
+              53.79582082768422
+            ],
+            [
+              -1.5361078133605153,
+              53.795856282542374
+            ],
+            [
+              -1.5360477882132333,
+              53.79586236375562
+            ],
+            [
+              -1.5360374927067926,
+              53.79582690889746
+            ],
+            [
+              -1.5360975178540746,
+              53.79582082768422
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 45,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5359188477290646,
+              53.795875427302434
+            ],
+            [
+              -1.535908552222624,
+              53.79583997244427
+            ],
+            [
+              -1.5359685773699059,
+              53.79583389123103
+            ],
+            [
+              -1.5359788728763466,
+              53.79586934608919
+            ],
+            [
+              -1.5359188477290646,
+              53.795875427302434
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 46,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          342579626
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.53684213784519,
+              53.79780478438419
+            ],
+            [
+              -1.5368161752637308,
+              53.797814184094456
+            ],
+            [
+              -1.5368105296355317,
+              53.79781867980356
+            ],
+            [
+              -1.5368108706875048,
+              53.797764720502386
+            ],
+            [
+              -1.5368411329599119,
+              53.79777781192817
+            ],
+            [
+              -1.53684213784519,
+              53.79780478438419
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 47,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #287 -> Road #45",
+          "Road #158 -> Road #45"
+        ],
+        "osm_node_ids": [
+          26109191
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5364075249623865,
+              53.79777817975074
+            ],
+            [
+              -1.5364040657209441,
+              53.79783209948177
+            ],
+            [
+              -1.5363412877970213,
+              53.79783069474129
+            ],
+            [
+              -1.5363209830241888,
+              53.797778084422646
+            ],
+            [
+              -1.5363731989948166,
+              53.797759732864314
+            ],
+            [
+              -1.53640752648494,
+              53.79777817975074
+            ],
+            [
+              -1.5364075249623865,
+              53.79777817975074
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 48,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #46 -> Road #422"
+        ],
+        "osm_node_ids": [
+          342579538
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5360317800862415,
+              53.796433515764015
+            ],
+            [
+              -1.5360313355006336,
+              53.79651445471578
+            ],
+            [
+              -1.5360012437542132,
+              53.79653531987823
+            ],
+            [
+              -1.5358983648174782,
+              53.79648355312332
+            ],
+            [
+              -1.5358981729757433,
+              53.79651398796783
+            ],
+            [
+              -1.535867721906708,
+              53.796513921418025
+            ],
+            [
+              -1.5358716835907895,
+              53.796433016640485
+            ],
+            [
+              -1.535884337532527,
+              53.79643323337701
+            ],
+            [
+              -1.5360317800862415,
+              53.796433515764015
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 49,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #620 -> Road #343",
+          "Road #343 -> Road #620"
+        ],
+        "osm_node_ids": [
+          342579666
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5358978547620719,
+              53.796593644486876
+            ],
+            [
+              -1.5358674036930366,
+              53.79659380096885
+            ],
+            [
+              -1.535867333655578,
+              53.79657557981216
+            ],
+            [
+              -1.535897784724613,
+              53.796575646361966
+            ],
+            [
+              -1.5358989784065191,
+              53.79659361840655
+            ],
+            [
+              -1.5358978547620719,
+              53.796593644486876
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 50,
+        "intersection_kind": "Connection",
+        "movements": [],
+        "osm_node_ids": [
+          6500031459
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5363815227945374,
+              53.79875998722212
+            ],
+            [
+              -1.5363365922421761,
+              53.798764845357866
+            ],
+            [
+              -1.5362299967524653,
+              53.798713983320575
+            ],
+            [
+              -1.536265728036871,
+              53.79866156545677
+            ],
+            [
+              -1.5363998528155431,
+              53.79867814715002
+            ],
+            [
+              -1.5363815227945374,
+              53.79875998722212
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 51,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #527 -> Road #48",
+          "Road #527 -> Road #528"
+        ],
+        "osm_node_ids": [
+          643946
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5334537073187362,
+              53.7961290620983
+            ],
+            [
+              -1.5334864239473076,
+              53.79613728099919
+            ],
+            [
+              -1.5335016799328942,
+              53.79616271201784
+            ],
+            [
+              -1.5334761771625771,
+              53.79618136305029
+            ],
+            [
+              -1.5334537073187362,
+              53.7961290620983
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 52,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          342579557
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5319323399361198,
+              53.796437491665195
+            ],
+            [
+              -1.531909422461564,
+              53.79638525726301
+            ],
+            [
+              -1.5319978538885954,
+              53.79637172067299
+            ],
+            [
+              -1.5320207713631513,
+              53.79642395507517
+            ],
+            [
+              -1.5319323399361198,
+              53.796437491665195
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 53,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5341867239299958,
+              53.79656201354452
+            ],
+            [
+              -1.5340541338852032,
+              53.79658244793188
+            ],
+            [
+              -1.5340434303344372,
+              53.79655821930633
+            ],
+            [
+              -1.534029648180592,
+              53.79655908265515
+            ],
+            [
+              -1.5340248277763637,
+              53.7965322540906
+            ],
+            [
+              -1.5340875493658088,
+              53.79649302208136
+            ],
+            [
+              -1.534090542705895,
+              53.796494692121726
+            ],
+            [
+              -1.5341360366030334,
+              53.79649709780724
+            ],
+            [
+              -1.53413385173883,
+              53.796511511235906
+            ],
+            [
+              -1.5341754874855218,
+              53.79650846343471
+            ],
+            [
+              -1.5341867239299958,
+              53.796562012645204
+            ],
+            [
+              -1.5341867239299958,
+              53.79656201354452
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 54,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #118 -> Road #271",
+          "Road #118 -> Road #60",
+          "Road #489 -> Road #281",
+          "Road #489 -> Road #271",
+          "Road #489 -> Road #60"
+        ],
+        "osm_node_ids": [
+          342628235
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5341400302607373,
+              53.79647074948048
+            ],
+            [
+              -1.534094536363599,
+              53.79646834469428
+            ],
+            [
+              -1.5340887460928219,
+              53.79646928268681
+            ],
+            [
+              -1.5340684017335995,
+              53.79642550370711
+            ],
+            [
+              -1.5341570767691832,
+              53.79641253638772
+            ],
+            [
+              -1.5341613444865085,
+              53.796422719407175
+            ],
+            [
+              -1.5341687699796926,
+              53.796449778198074
+            ],
+            [
+              -1.5341428317590886,
+              53.79645226212457
+            ],
+            [
+              -1.5341400302607373,
+              53.79647074948048
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 55,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #60 -> Road #629",
+          "Road #425 -> Road #629"
+        ],
+        "osm_node_ids": [
+          5728993836
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5334532475075937,
+              53.79979992414933
+            ],
+            [
+              -1.5334235089935742,
+              53.79985094446724
+            ],
+            [
+              -1.5333398416362933,
+              53.79988982394238
+            ],
+            [
+              -1.5333515287565889,
+              53.79983630710747
+            ],
+            [
+              -1.5333812657480552,
+              53.799785285890245
+            ],
+            [
+              -1.5334532475075937,
+              53.79979992414933
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 56,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #628 -> Road #61",
+          "Road #628 -> Road #223"
+        ],
+        "osm_node_ids": [
+          358204009
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5332779574512467,
+              53.799885108798776
+            ],
+            [
+              -1.5332440029867191,
+              53.799881612236064
+            ],
+            [
+              -1.5332636591517812,
+              53.79982891738118
+            ],
+            [
+              -1.5332896445715423,
+              53.79983159196387
+            ],
+            [
+              -1.5332779574512467,
+              53.799885108798776
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 57,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #61 -> Road #106"
+        ],
+        "osm_node_ids": [
+          358204012
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.533861564369732,
+              53.79998852719542
+            ],
+            [
+              -1.5338388296015906,
+              53.80004078857725
+            ],
+            [
+              -1.5337749143302393,
+              53.80003108759422
+            ],
+            [
+              -1.5337733613257185,
+              53.80003499514695
+            ],
+            [
+              -1.5336844228883877,
+              53.80002266904392
+            ],
+            [
+              -1.5336412828588855,
+              53.80003061634966
+            ],
+            [
+              -1.5336276834114544,
+              53.800004859776564
+            ],
+            [
+              -1.5336557029626272,
+              53.79995350041438
+            ],
+            [
+              -1.5336770278462724,
+              53.79995755905315
+            ],
+            [
+              -1.5337094110356377,
+              53.799928785255794
+            ],
+            [
+              -1.5338615689373924,
+              53.79998852719542
+            ],
+            [
+              -1.533861564369732,
+              53.79998852719542
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 58,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #129 -> Road #62",
+          "Road #129 -> Road #104",
+          "Road #234 -> Road #104"
+        ],
+        "osm_node_ids": [
+          3381506666
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5335967131516923,
+              53.79994227328245
+            ],
+            [
+              -1.5335686951230731,
+              53.79999363174531
+            ],
+            [
+              -1.5335009186561683,
+              53.80000405758162
+            ],
+            [
+              -1.5334387330055381,
+              53.799916371019236
+            ],
+            [
+              -1.5334130323032726,
+              53.79990672489483
+            ],
+            [
+              -1.5334083002071446,
+              53.79988828340433
+            ],
+            [
+              -1.5333932086573308,
+              53.799881434170366
+            ],
+            [
+              -1.5333973713184679,
+              53.79987823528313
+            ],
+            [
+              -1.5334419258001266,
+              53.7998311288132
+            ],
+            [
+              -1.5334487361817162,
+              53.79983337531878
+            ],
+            [
+              -1.5334651325598383,
+              53.799839082414195
+            ],
+            [
+              -1.5334748936500173,
+              53.799849656638585
+            ],
+            [
+              -1.5335004816833275,
+              53.79985940888295
+            ],
+            [
+              -1.533510736080825,
+              53.799882722898346
+            ],
+            [
+              -1.5335666777397496,
+              53.79990608727576
+            ],
+            [
+              -1.5335967131516923,
+              53.79994227328245
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signalled",
+        "crossing": null,
+        "id": 59,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #62 -> Road #627",
+          "Road #62 -> Road #97",
+          "Road #112 -> Road #627",
+          "Road #112 -> Road #97"
+        ],
+        "osm_node_ids": [
+          3381506667,
+          6211582997,
+          1591373158
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5343090717577186,
+              53.799918036563
+            ],
+            [
+              -1.5342800199153057,
+              53.799912572284434
+            ],
+            [
+              -1.5343077699745173,
+              53.79986116345956
+            ],
+            [
+              -1.5343367487343647,
+              53.799866613348975
+            ],
+            [
+              -1.5343090717577186,
+              53.799918036563
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 60,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #160 -> Road #63"
+        ],
+        "osm_node_ids": [
+          9823112
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5354267234347279,
+              53.800072542726674
+            ],
+            [
+              -1.5354172653326856,
+              53.80009893781817
+            ],
+            [
+              -1.5354267249572813,
+              53.800072542726674
+            ],
+            [
+              -1.535398204486023,
+              53.80012380406279
+            ],
+            [
+              -1.5353258816745112,
+              53.80010976475195
+            ],
+            [
+              -1.5353544021457695,
+              53.800058503415826
+            ],
+            [
+              -1.5354267234347279,
+              53.800072542726674
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 61,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #63 -> Road #74",
+          "Road #63 -> Road #161"
+        ],
+        "osm_node_ids": [
+          370191920
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.535336440582699,
+              53.797750613742416
+            ],
+            [
+              -1.5352545576580636,
+              53.797774537497915
+            ],
+            [
+              -1.5353325169624539,
+              53.79774640941353
+            ],
+            [
+              -1.53527152499373,
+              53.79776005662012
+            ],
+            [
+              -1.5353176735888527,
+              53.797762943442734
+            ],
+            [
+              -1.535336440582699,
+              53.797750613742416
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 62,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #521 -> Road #64"
+        ],
+        "osm_node_ids": [
+          26660391
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5360666754888024,
+              53.79835242722439
+            ],
+            [
+              -1.5360284593971634,
+              53.798430155597735
+            ],
+            [
+              -1.53593751727949,
+              53.7984237389375
+            ],
+            [
+              -1.5359090059435525,
+              53.79834457164946
+            ],
+            [
+              -1.5359765235763705,
+              53.7983082255635
+            ],
+            [
+              -1.5360666754888024,
+              53.79835242722439
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 63,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #525 -> Road #531",
+          "Road #67 -> Road #531"
+        ],
+        "osm_node_ids": [
+          643907
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.535662530423122,
+              53.79810230338038
+            ],
+            [
+              -1.5355944692387216,
+              53.79813829603291
+            ],
+            [
+              -1.5355278879762764,
+              53.79807230650554
+            ],
+            [
+              -1.5356066862076185,
+              53.79804500669643
+            ],
+            [
+              -1.5356086152828419,
+              53.79804120076705
+            ],
+            [
+              -1.535652318657121,
+              53.798049042852156
+            ],
+            [
+              -1.535662530423122,
+              53.79810230338038
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 65,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #65 -> Road #66",
+          "Road #68 -> Road #66"
+        ],
+        "osm_node_ids": [
+          26300437
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5352667091571621,
+              53.796657713962446
+            ],
+            [
+              -1.5352407039442062,
+              53.79668041823774
+            ],
+            [
+              -1.5351985885931771,
+              53.796663588331704
+            ],
+            [
+              -1.535163469375259,
+              53.7966553523437
+            ],
+            [
+              -1.5351805950564843,
+              53.79662987635897
+            ],
+            [
+              -1.5352042524920178,
+              53.79661716264829
+            ],
+            [
+              -1.5352667106797155,
+              53.79665771486177
+            ],
+            [
+              -1.5352667091571621,
+              53.796657713962446
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 66,
+        "intersection_kind": "Connection",
+        "movements": [],
+        "osm_node_ids": [
+          342579525
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5348674195144394,
+              53.79728712762697
+            ],
+            [
+              -1.5347897083862618,
+              53.79731549403161
             ],
             [
-              -1.534356742906293,
-              53.79649284851227
+              -1.534744132271237,
+              53.79731032922716
             ],
             [
-              -1.534357501137912,
-              53.79649551410175
+              -1.5346917016205723,
+              53.797221338648335
             ],
             [
-              -1.5343671419463685,
-              53.79649489267047
+              -1.5347696137258056,
+              53.79719316469855
             ],
             [
-              -1.5343770598595532,
-              53.79654853361177
+              -1.5348158886928647,
+              53.79719524303096
             ],
             [
-              -1.5343770613821066,
-              53.79654853451109
+              -1.5348674195144394,
+              53.79728712762697
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signalled",
+        "crossing": null,
+        "id": 67,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #72 -> Road #73"
+        ],
+        "osm_node_ids": [
+          319558919
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5356645980507093,
+              53.800102280596874
+            ],
+            [
+              -1.535655139948667,
+              53.80012867568837
+            ],
+            [
+              -1.535610453004858,
+              53.80012308910205
+            ],
+            [
+              -1.5356199111069004,
+              53.80009669401056
+            ],
+            [
+              -1.5356645980507093,
+              53.800102280596874
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 68,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5319849121842555,
+              53.79680932341097
+            ],
+            [
+              -1.531961002004849,
+              53.796756351565
+            ],
+            [
+              -1.5320506834482643,
+              53.79674222771792
+            ],
+            [
+              -1.5320745936276707,
+              53.79679519956389
+            ],
+            [
+              -1.5319849121842555,
+              53.79680932341097
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 69,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5323388008056005,
+              53.799450386588155
+            ],
+            [
+              -1.5323514227737154,
+              53.799424457345296
+            ],
+            [
+              -1.5323953210348364,
+              53.79943191182276
+            ],
+            [
+              -1.5323826990667215,
+              53.79945784106562
+            ],
+            [
+              -1.5323388008056005,
+              53.799450386588155
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 70,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5334312831514987,
+              53.79960576959047
+            ],
+            [
+              -1.5334208780212095,
+              53.799632040575574
+            ],
+            [
+              -1.5333458618126414,
+              53.79962140160003
+            ],
+            [
+              -1.5333584837807566,
+              53.79959547235717
+            ],
+            [
+              -1.5334126044657526,
+              53.79958114796135
+            ],
+            [
+              -1.5334312831514987,
+              53.79960576959047
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 71,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #76 -> Road #269",
+          "Road #76 -> Road #96"
+        ],
+        "osm_node_ids": [
+          1152092910
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5368498221724611,
+              53.79868768265786
+            ],
+            [
+              -1.5368434974854226,
+              53.79871440150516
+            ],
+            [
+              -1.5367931405525592,
+              53.79876558999622
+            ],
+            [
+              -1.5367690568020593,
+              53.79875458409742
+            ],
+            [
+              -1.5367851654175788,
+              53.79870146925931
+            ],
+            [
+              -1.5367496914447063,
+              53.79869771549059
+            ],
+            [
+              -1.5368053499086887,
+              53.79870902086351
+            ],
+            [
+              -1.5368202039401642,
+              53.79868350710727
+            ],
+            [
+              -1.5368202480942141,
+              53.79868340008799
+            ],
+            [
+              -1.5368498221724611,
+              53.79868768265786
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signalled",
+        "crossing": {
+          "has_island": true,
+          "kind": "Signalized"
+        },
+        "id": 72,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #12 -> Road #13"
+        ],
+        "osm_node_ids": [
+          7261942276,
+          632541753
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5368295478506975,
+              53.798607822892116
+            ],
+            [
+              -1.536822020346432,
+              53.798634433820816
+            ],
+            [
+              -1.5368210596152039,
+              53.79863433849271
+            ],
+            [
+              -1.5367911444849838,
+              53.79863098492215
+            ],
+            [
+              -1.5367913713454482,
+              53.79863027535733
+            ],
+            [
+              -1.5367864748135474,
+              53.79862938502887
+            ],
+            [
+              -1.5367999067800988,
+              53.79860359787883
+            ],
+            [
+              -1.536829832568193,
+              53.79860692716772
+            ],
+            [
+              -1.536829546328144,
+              53.798607821992796
+            ],
+            [
+              -1.5368295478506975,
+              53.798607822892116
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signalled",
+        "crossing": {
+          "has_island": true,
+          "kind": "Signalized"
+        },
+        "id": 74,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #0 -> Road #1"
+        ],
+        "osm_node_ids": [
+          9319419251
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5368064202637652,
+              53.79858317338402
+            ],
+            [
+              -1.5367970748306785,
+              53.7985994951733
+            ],
+            [
+              -1.5368220355719666,
+              53.798547589922855
+            ],
+            [
+              -1.536836344529306,
+              53.7985865026729
+            ],
+            [
+              -1.5368064202637652,
+              53.79858317338402
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 75,
+        "intersection_kind": "Connection",
+        "movements": [],
+        "osm_node_ids": [
+          9319419252
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5344726381524871,
+              53.79955551189735
+            ],
+            [
+              -1.5343559618363722,
+              53.799472463136915
+            ],
+            [
+              -1.5343547026846676,
+              53.79944549607683
+            ],
+            [
+              -1.5344217818220915,
+              53.79944896565989
+            ],
+            [
+              -1.5345239847450942,
+              53.79952157869149
+            ],
+            [
+              -1.5344726381524871,
+              53.79955551189735
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signalled",
+        "crossing": null,
+        "id": 76,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #105 -> Road #80",
+          "Road #523 -> Road #80"
+        ],
+        "osm_node_ids": [
+          643951
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5348615759542916,
+              53.7993558004298
+            ],
+            [
+              -1.5347593486704338,
+              53.79928319998871
+            ],
+            [
+              -1.5348702651668407,
+              53.79935120399666
+            ],
+            [
+              -1.534791046710746,
+              53.799294644756486
+            ],
+            [
+              -1.5348343542211276,
+              53.799342155921174
+            ],
+            [
+              -1.5348615759542916,
+              53.7993558004298
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 77,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #80 -> Road #318",
+          "Road #80 -> Road #315"
+        ],
+        "osm_node_ids": [
+          659971029
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5340681154935507,
+              53.79581215912248
+            ],
+            [
+              -1.5341592677236005,
+              53.795808594211316
+            ],
+            [
+              -1.5341653031254832,
+              53.79586243570135
+            ],
+            [
+              -1.5340741508954334,
+              53.79586600061252
+            ],
+            [
+              -1.5340681154935507,
+              53.79581215912248
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
+        "control": "Uncontrolled",
         "crossing": null,
-        "id": 4,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #291 -> Road #4",
-          "Road #273 -> Road #4",
-          "Road #273 -> Road #489"
-        ],
-        "osm_node_ids": [
-          643914
-        ],
+        "id": 78,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
         "type": "intersection"
       },
       "type": "Feature"
@@ -23135,52 +29232,55 @@
         "coordinates": [
           [
             [
-              -1.5345312199190968,
-              53.79681473732752
+              -1.5343417625028812,
+              53.796410846562274
             ],
             [
-              -1.5345179188921423,
-              53.79684099931941
+              -1.5343412143836386,
+              53.79643825608863
             ],
             [
-              -1.5344285769781467,
-              53.79685226602149
+              -1.534251124895898,
+              53.79644719714483
             ],
             [
-              -1.5343933801100027,
-              53.79677989580675
+              -1.5342496556318173,
+              53.79644203323971
             ],
             [
-              -1.5344800164465144,
-              53.79676277991642
+              -1.5342474555420795,
+              53.796442244580305
             ],
             [
-              -1.5345214146748676,
-              53.796774178818794
+              -1.5342400315714486,
+              53.79641518578941
             ],
             [
-              -1.5344945218132493,
-              53.79680825231884
+              -1.5343286761559634,
+              53.796402149222246
             ],
             [
-              -1.5345312199190968,
-              53.79681473732752
+              -1.5343323150587131,
+              53.79641078091179
+            ],
+            [
+              -1.5343417625028812,
+              53.796410846562274
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
+        "control": "Signalled",
         "crossing": null,
-        "id": 5,
-        "intersection_kind": "Fork",
+        "id": 79,
+        "intersection_kind": "Connection",
         "movements": [
-          "Road #5 -> Road #72",
-          "Road #25 -> Road #72"
+          "Road #82 -> Road #291"
         ],
         "osm_node_ids": [
-          301689321
+          5728993833
         ],
         "type": "intersection"
       },
@@ -23191,28 +29291,40 @@
         "coordinates": [
           [
             [
-              -1.535624955326486,
-              53.79859249215533
+              -1.5340890993252227,
+              53.80014255761792
             ],
             [
-              -1.5354879742375385,
-              53.79859465232602
+              -1.534063374262102,
+              53.80015218035996
             ],
             [
-              -1.5354717285922084,
-              53.798480808992394
+              -1.534058605624691,
+              53.800147733214224
             ],
             [
-              -1.5355611512015368,
-              53.7984697743153
+              -1.534052404264482,
+              53.80014930342989
             ],
             [
-              -1.5356791353910668,
-              53.79851093896685
+              -1.5340344015924685,
+              53.80012450733235
             ],
             [
-              -1.535624955326486,
-              53.79859249215533
+              -1.5340605072939522,
+              53.80011524431898
+            ],
+            [
+              -1.5340636407089558,
+              53.80011832269712
+            ],
+            [
+              -1.5340789043073098,
+              53.800116257854526
+            ],
+            [
+              -1.5340890993252227,
+              53.80014255761792
             ]
           ]
         ],
@@ -23220,15 +29332,17 @@
       },
       "properties": {
         "control": "Signed",
-        "crossing": null,
-        "id": 6,
-        "intersection_kind": "Fork",
+        "crossing": {
+          "has_island": false,
+          "kind": "Signalized"
+        },
+        "id": 80,
+        "intersection_kind": "Connection",
         "movements": [
-          "Road #526 -> Road #6",
-          "Road #526 -> Road #524"
+          "Road #107 -> Road #108"
         ],
         "osm_node_ids": [
-          26298420
+          1591373175
         ],
         "type": "intersection"
       },
@@ -23239,44 +29353,55 @@
         "coordinates": [
           [
             [
-              -1.5355414189088021,
-              53.79841399029042
+              -1.5336054921948952,
+              53.80006447671047
             ],
             [
-              -1.5354519962994735,
-              53.798425024967514
+              -1.5336035585520114,
+              53.800082427171326
             ],
             [
-              -1.5355423233055523,
-              53.79842114529376
+              -1.5335341240243976,
+              53.8000878500811
             ],
             [
-              -1.5354509761886608,
-              53.7984218395701
+              -1.533533923047342,
+              53.80008694986009
             ],
             [
-              -1.5355408098874213,
-              53.798412040561004
+              -1.5335138740634893,
+              53.800057786656446
             ],
             [
-              -1.5355414189088021,
-              53.79841399029042
+              -1.533523114440388,
+              53.80005557072781
+            ],
+            [
+              -1.5335911756247882,
+              53.8000458166848
+            ],
+            [
+              -1.5335987366252297,
+              53.80006422310176
+            ],
+            [
+              -1.5336054921948952,
+              53.80006447671047
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
+        "control": "Signalled",
         "crossing": null,
-        "id": 7,
-        "intersection_kind": "Fork",
+        "id": 81,
+        "intersection_kind": "Connection",
         "movements": [
-          "Road #6 -> Road #309",
-          "Road #237 -> Road #309"
+          "Road #110 -> Road #111"
         ],
         "osm_node_ids": [
-          1022749752
+          1591373161
         ],
         "type": "intersection"
       },
@@ -23287,52 +29412,58 @@
         "coordinates": [
           [
             [
-              -1.5357275053916757,
-              53.79643055070042
+              -1.5337145435633237,
+              53.79962975719781
             ],
             [
-              -1.5357235376173803,
-              53.79651145547796
+              -1.5336486504950386,
+              53.79964084763285
             ],
             [
-              -1.5357062520680425,
-              53.796511159601124
+              -1.5336328128940335,
+              53.79961554341856
             ],
             [
-              -1.535694828349494,
-              53.79651105168252
+              -1.5336509586860714,
+              53.799611580107886
             ],
             [
-              -1.5356970299617851,
-              53.79643012352262
+              -1.533650151732742,
+              53.799601998734644
             ],
             [
-              -1.535697113702225,
-              53.79642937798494
+              -1.5336957704792635,
+              53.79960065874533
             ],
             [
-              -1.5357275008240152,
-              53.79643055070042
+              -1.5337139741283328,
+              53.79962540178288
             ],
             [
-              -1.5357275053916757,
-              53.79643055070042
+              -1.5337126114429933,
+              53.79962575161902
+            ],
+            [
+              -1.5337145435633237,
+              53.79962975719781
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
+        "control": "Signalled",
         "crossing": null,
-        "id": 8,
-        "intersection_kind": "Connection",
+        "id": 82,
+        "intersection_kind": "Intersection",
         "movements": [
-          "Road #343 -> Road #344",
-          "Road #344 -> Road #343"
+          "Road #99 -> Road #87",
+          "Road #99 -> Road #224",
+          "Road #269 -> Road #87",
+          "Road #269 -> Road #224"
         ],
         "osm_node_ids": [
-          301689309
+          615978081
         ],
         "type": "intersection"
       },
@@ -23343,36 +29474,56 @@
         "coordinates": [
           [
             [
-              -1.5357774771185155,
-              53.795700489449366
+              -1.533741884055657,
+              53.79947189206764
             ],
             [
-              -1.5358078642403057,
-              53.79570165856756
+              -1.5337010034954772,
+              53.799483926790444
             ],
             [
-              -1.535805886443372,
-              53.79571960722978
+              -1.5336958618324705,
+              53.79951296858567
             ],
             [
-              -1.5357754993215817,
-              53.795718438111585
+              -1.5336504318825772,
+              53.799510162702
             ],
             [
-              -1.5357774771185155,
-              53.795700489449366
+              -1.5336113250971688,
+              53.79949622321586
+            ],
+            [
+              -1.5336383717366857,
+              53.79944859424003
+            ],
+            [
+              -1.533729228591366,
+              53.79945420600736
+            ],
+            [
+              -1.533741884055657,
+              53.79947189206764
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 9,
-        "intersection_kind": "MapEdge",
-        "movements": [],
-        "osm_node_ids": [],
+        "id": 83,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #87 -> Road #103",
+          "Road #87 -> Road #100",
+          "Road #96 -> Road #103",
+          "Road #96 -> Road #100",
+          "Road #100 -> Road #103"
+        ],
+        "osm_node_ids": [
+          1569761300
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -23382,36 +29533,28 @@
         "coordinates": [
           [
             [
-              -1.5325555149737096,
-              53.79720350150201
-            ],
-            [
-              -1.5325504966375325,
-              53.797257379864234
-            ],
-            [
-              -1.5325456061958453,
-              53.797257220684294
+              -1.5324546488526376,
+              53.79773097705339
             ],
             [
-              -1.5324550264458936,
-              53.797250217666324
+              -1.5324330133680881,
+              53.797783402111776
             ],
             [
-              -1.5324618444402505,
-              53.797219450072795
+              -1.5323423346521619,
+              53.79777686674108
             ],
             [
-              -1.5324644221232444,
-              53.797199412286304
+              -1.5323536228634533,
+              53.79772279322605
             ],
             [
-              -1.532555513451156,
-              53.797203500602684
+              -1.5324442726508638,
+              53.79772948238075
             ],
             [
-              -1.5325555149737096,
-              53.79720350150201
+              -1.5324546488526376,
+              53.79773097705339
             ]
           ]
         ],
@@ -23420,16 +29563,18 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 10,
+        "id": 84,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #201 -> Road #9",
-          "Road #201 -> Road #200",
-          "Road #200 -> Road #9",
-          "Road #200 -> Road #201"
+          "Road #203 -> Road #88",
+          "Road #203 -> Road #202",
+          "Road #88 -> Road #203",
+          "Road #88 -> Road #202",
+          "Road #202 -> Road #203",
+          "Road #202 -> Road #88"
         ],
         "osm_node_ids": [
-          26661450
+          26661448
         ],
         "type": "intersection"
       },
@@ -23440,28 +29585,32 @@
         "coordinates": [
           [
             [
-              -1.5332873165873147,
-              53.797233394954866
+              -1.5323874859747737,
+              53.79799879415225
             ],
             [
-              -1.5332571456681146,
-              53.79723096498767
+              -1.5323348878432295,
+              53.798042911276895
             ],
             [
-              -1.5332411238381418,
-              53.79717784205565
+              -1.532331364654542,
+              53.798041445382545
             ],
             [
-              -1.5332761699734943,
-              53.797174167427244
+              -1.5323262625779253,
+              53.798042464314015
             ],
             [
-              -1.5332890507756962,
-              53.79722758713541
+              -1.5322970021456894,
+              53.79799134686937
             ],
             [
-              -1.5332873165873147,
-              53.797233394954866
+              -1.532387621482031,
+              53.79799816732504
+            ],
+            [
+              -1.5323874859747737,
+              53.79799879415225
             ]
           ]
         ],
@@ -23470,13 +29619,18 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 11,
-        "intersection_kind": "Connection",
+        "id": 85,
+        "intersection_kind": "Intersection",
         "movements": [
-          "Road #10 -> Road #514"
+          "Road #95 -> Road #94",
+          "Road #95 -> Road #89",
+          "Road #94 -> Road #95",
+          "Road #94 -> Road #89",
+          "Road #89 -> Road #95",
+          "Road #89 -> Road #94"
         ],
         "osm_node_ids": [
-          5506378793
+          394143337
         ],
         "type": "intersection"
       },
@@ -23487,32 +29641,32 @@
         "coordinates": [
           [
             [
-              -1.5326202158826419,
-              53.796692727253664
+              -1.5337406629677885,
+              53.79911202130029
             ],
             [
-              -1.5325939975122025,
-              53.79671481999021
+              -1.5336666303287503,
+              53.79914363515553
             ],
             [
-              -1.532582654488987,
-              53.79671518601413
+              -1.5336537693197434,
+              53.79913312838027
             ],
             [
-              -1.5325587443095807,
-              53.796662214168165
+              -1.5336178020395526,
+              53.799117508961224
             ],
             [
-              -1.5326048837693826,
-              53.79665283963891
+              -1.5336719166343349,
+              53.799074035750905
             ],
             [
-              -1.5326202158826419,
-              53.796692726354344
+              -1.5337517167058483,
+              53.79910030313872
             ],
             [
-              -1.5326202158826419,
-              53.796692727253664
+              -1.5337406629677885,
+              53.79911202130029
             ]
           ]
         ],
@@ -23521,11 +29675,18 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 12,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "id": 86,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #100 -> Road #101",
+          "Road #100 -> Road #90",
+          "Road #101 -> Road #100",
+          "Road #101 -> Road #90",
+          "Road #90 -> Road #100",
+          "Road #90 -> Road #101"
+        ],
         "osm_node_ids": [
-          5728993713
+          1296601330
         ],
         "type": "intersection"
       },
@@ -23536,58 +29697,48 @@
         "coordinates": [
           [
             [
-              -1.5326497336264109,
-              53.796759626894584
-            ],
-            [
-              -1.5326041788271345,
-              53.79675764838687
-            ],
-            [
-              -1.5325908503942178,
-              53.796731843250406
+              -1.534019372467346,
+              53.7987798505402
             ],
             [
-              -1.5326016346403166,
-              53.79672989981624
+              -1.5339839548289513,
+              53.79880911446787
             ],
             [
-              -1.5326013438326074,
-              53.79672925859988
+              -1.534007167678877,
+              53.79881891617494
             ],
             [
-              -1.5326454674316392,
-              53.79672228346088
+              -1.5339711273161203,
+              53.79881777583503
             ],
             [
-              -1.5326579371444091,
-              53.79674823878407
+              -1.5339760147127006,
+              53.798763893875524
             ],
             [
-              -1.5326510064810968,
-              53.79674940070769
+              -1.5340214933843044,
+              53.79876639398981
             ],
             [
-              -1.5326497336264109,
-              53.796759626894584
+              -1.534019372467346,
+              53.7987798505402
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
+        "control": "Signed",
         "crossing": null,
-        "id": 13,
-        "intersection_kind": "Intersection",
+        "id": 87,
+        "intersection_kind": "Connection",
         "movements": [
-          "Road #11 -> Road #612",
-          "Road #11 -> Road #614",
-          "Road #284 -> Road #612",
-          "Road #284 -> Road #614"
+          "Road #478 -> Road #90",
+          "Road #90 -> Road #478"
         ],
         "osm_node_ids": [
-          5728993689
+          7237437098
         ],
         "type": "intersection"
       },
@@ -23598,24 +29749,24 @@
         "coordinates": [
           [
             [
-              -1.5372885870585276,
-              53.79872392352318
+              -1.536140412752471,
+              53.7959274161898
             ],
             [
-              -1.537282262371489,
-              53.79875064237047
+              -1.5361482782636027,
+              53.79595399294427
             ],
             [
-              -1.5372370257858838,
-              53.798746905688866
+              -1.5361032837639963,
+              53.795958638840105
             ],
             [
-              -1.5372433504729224,
-              53.79872018684157
+              -1.5360954182528646,
+              53.795932062085626
             ],
             [
-              -1.5372885870585276,
-              53.79872392352318
+              -1.536140412752471,
+              53.7959274161898
             ]
           ]
         ],
@@ -23624,7 +29775,7 @@
       "properties": {
         "control": "Uncontrolled",
         "crossing": null,
-        "id": 14,
+        "id": 88,
         "intersection_kind": "MapEdge",
         "movements": [],
         "osm_node_ids": [],
@@ -23637,32 +29788,24 @@
         "coordinates": [
           [
             [
-              -1.5364034353838152,
-              53.79866803517698
-            ],
-            [
-              -1.5362693136502499,
-              53.79865145168508
-            ],
-            [
-              -1.5362697917320338,
-              53.7986355570736
+              -1.5341256192923165,
+              53.799438007425145
             ],
             [
-              -1.5364068002269435,
-              53.79863699958558
+              -1.5341555800991402,
+              53.79943479324944
             ],
             [
-              -1.536412783862009,
-              53.79866374631186
+              -1.5341610217051767,
+              53.79945249010158
             ],
             [
-              -1.536404732599356,
-              53.798664374937715
+              -1.5341310608983532,
+              53.799455704277285
             ],
             [
-              -1.5364034353838152,
-              53.79866803517698
+              -1.5341256192923165,
+              53.799438007425145
             ]
           ]
         ],
@@ -23671,14 +29814,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 15,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #530 -> Road #527",
-          "Road #13 -> Road #527"
-        ],
+        "id": 89,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          4540786888
+          6211583011
         ],
         "type": "intersection"
       },
@@ -23689,28 +29829,36 @@
         "coordinates": [
           [
             [
-              -1.5371129331119056,
-              53.79896013126341
+              -1.534172491100329,
+              53.799547521424174
             ],
             [
-              -1.5371049062101079,
-              53.79898669183009
+              -1.534143985854605,
+              53.799568603323145
             ],
             [
-              -1.5371025934514146,
-              53.7989981213094
+              -1.5341404489629367,
+              53.799566935081415
+            ],
+            [
+              -1.5341257121680771,
+              53.79955119515326
+            ],
+            [
+              -1.5341380006969862,
+              53.79954718148058
             ],
             [
-              -1.5370572396291937,
-              53.798994919724194
+              -1.5341458509825834,
+              53.799538808795674
             ],
             [
-              -1.53707673440359,
-              53.79894220418491
+              -1.5341724895777753,
+              53.799547521424174
             ],
             [
-              -1.5371129331119056,
-              53.79896013126341
+              -1.534172491100329,
+              53.799547521424174
             ]
           ]
         ],
@@ -23719,14 +29867,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 16,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #268 -> Road #14",
-          "Road #268 -> Road #274"
-        ],
+        "id": 90,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          26298430
+          1591373154
         ],
         "type": "intersection"
       },
@@ -23737,24 +29882,24 @@
         "coordinates": [
           [
             [
-              -1.536965673264605,
-              53.799674955307125
+              -1.5321435972726578,
+              53.79811245222561
             ],
             [
-              -1.5369203194423842,
-              53.79967175372192
+              -1.5320785233381298,
+              53.7980745817894
             ],
             [
-              -1.5369257382101191,
-              53.79964496472753
+              -1.5321426395865365,
+              53.79803614478053
             ],
             [
-              -1.5369710920323398,
-              53.79964816631273
+              -1.5322077135210646,
+              53.79807401521674
             ],
             [
-              -1.536965673264605,
-              53.799674955307125
+              -1.5321435972726578,
+              53.79811245222561
             ]
           ]
         ],
@@ -23763,7 +29908,7 @@
       "properties": {
         "control": "Uncontrolled",
         "crossing": null,
-        "id": 17,
+        "id": 91,
         "intersection_kind": "MapEdge",
         "movements": [],
         "osm_node_ids": [],
@@ -23776,36 +29921,38 @@
         "coordinates": [
           [
             [
-              -1.5374752673372474,
-              53.79925613849984
+              -1.5325121952829002,
+              53.79807144855265
             ],
             [
-              -1.5375205084905128,
-              53.799259850899766
+              -1.5324837692099558,
+              53.79807860805259
             ],
             [
-              -1.537514223389864,
-              53.79928657424367
+              -1.5324969027560307,
+              53.798094835413096
             ],
             [
-              -1.5374689822365983,
-              53.79928286184375
+              -1.5324286710456436,
+              53.79809330566691
             ],
             [
-              -1.5374752673372474,
-              53.79925613849984
+              -1.5325121952829002,
+              53.79807144855265
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 18,
-        "intersection_kind": "MapEdge",
+        "id": 92,
+        "intersection_kind": "Terminus",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          4361246658
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -23815,24 +29962,24 @@
         "coordinates": [
           [
             [
-              -1.5374560481450257,
-              53.79953342725471
+              -1.5322704137947614,
+              53.798977314602865
             ],
             [
-              -1.5374108100368673,
-              53.79952969147242
+              -1.5322833128676046,
+              53.79892389669334
             ],
             [
-              -1.5374171332013524,
-              53.7995029717258
+              -1.5323737510200854,
+              53.798931515746666
             ],
             [
-              -1.537462371309511,
-              53.79950670750808
+              -1.5323608519472423,
+              53.79898493365619
             ],
             [
-              -1.5374560481450257,
-              53.79953342725471
+              -1.5322704137947614,
+              53.798977314602865
             ]
           ]
         ],
@@ -23841,7 +29988,7 @@
       "properties": {
         "control": "Uncontrolled",
         "crossing": null,
-        "id": 19,
+        "id": 93,
         "intersection_kind": "MapEdge",
         "movements": [],
         "osm_node_ids": [],
@@ -23854,24 +30001,32 @@
         "coordinates": [
           [
             [
-              -1.533235627420181,
-              53.79996106281044
+              -1.533278511660703,
+              53.79621227093801
             ],
             [
-              -1.533282980355084,
-              53.79996625189657
+              -1.5332514863369344,
+              53.796160727214875
             ],
             [
-              -1.5332980901755393,
-              53.79997308674139
+              -1.5332503048354558,
+              53.79615746357648
             ],
             [
-              -1.5332967396706274,
-              53.800001170759
+              -1.5333396330464704,
+              53.79614616090152
             ],
             [
-              -1.533235627420181,
-              53.79996106281044
+              -1.5333621028903113,
+              53.79619846095419
+            ],
+            [
+              -1.5333172865294589,
+              53.796205177987865
+            ],
+            [
+              -1.533278511660703,
+              53.79621227093801
             ]
           ]
         ],
@@ -23880,11 +30035,18 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 20,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "id": 94,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #58 -> Road #102",
+          "Road #58 -> Road #57",
+          "Road #102 -> Road #58",
+          "Road #102 -> Road #57",
+          "Road #57 -> Road #58",
+          "Road #57 -> Road #102"
+        ],
         "osm_node_ids": [
-          26298442
+          342579559
         ],
         "type": "intersection"
       },
@@ -23895,36 +30057,38 @@
         "coordinates": [
           [
             [
-              -1.5329794273508541,
-              53.80016983314534
+              -1.5332239357322248,
+              53.796084751619496
             ],
             [
-              -1.5329183211906214,
-              53.80012972159949
+              -1.5333132639432394,
+              53.79607344894454
             ],
             [
-              -1.5329862301196766,
-              53.80009362912225
+              -1.5333323978724676,
+              53.796126211248556
             ],
             [
-              -1.5330473362799093,
-              53.80013374066811
+              -1.5332430696614532,
+              53.79613751392351
             ],
             [
-              -1.5329794273508541,
-              53.80016983314534
+              -1.5332239357322248,
+              53.796084751619496
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 21,
-        "intersection_kind": "MapEdge",
+        "id": 95,
+        "intersection_kind": "Terminus",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          1591164975
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -23934,65 +30098,44 @@
         "coordinates": [
           [
             [
-              -1.535440555832837,
-              53.79600028822604
+              -1.5339036690628869,
+              53.79958764466121
             ],
             [
-              -1.5354717666560447,
-              53.79599646341091
+              -1.5338890342791087,
+              53.79958045728229
             ],
             [
-              -1.5354796321671764,
-              53.79602304016538
+              -1.5338836261692481,
+              53.799581858425476
             ],
             [
-              -1.5354512380678547,
-              53.79602651964098
+              -1.5338654225201789,
+              53.7995571144886
             ],
             [
-              -1.535440555832837,
-              53.79600028822604
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 22,
-        "intersection_kind": "Connection",
-        "movements": [],
-        "osm_node_ids": [
-          60197213
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.5338743690442613,
+              53.799554818520335
+            ],
             [
-              -1.5344712815573616,
-              53.79618271293214
+              -1.5338693567982982,
+              53.79955530145608
             ],
             [
-              -1.534441526295254,
-              53.796187802193565
+              -1.5338619998200194,
+              53.79952867433959
             ],
             [
-              -1.5344293275969985,
-              53.79616180280361
+              -1.5339470481332809,
+              53.79952047702242
             ],
             [
-              -1.5344580688385072,
-              53.79615688621195
+              -1.533965790766272,
+              53.79954508066512
             ],
             [
-              -1.5344712815573616,
-              53.79618271293214
+              -1.5339036690628869,
+              53.79958764466121
             ]
           ]
         ],
@@ -24001,11 +30144,14 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 23,
-        "intersection_kind": "Connection",
-        "movements": [],
+        "id": 96,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #224 -> Road #522",
+          "Road #103 -> Road #522"
+        ],
         "osm_node_ids": [
-          60197210
+          1569783677
         ],
         "type": "intersection"
       },
@@ -24016,24 +30162,24 @@
         "coordinates": [
           [
             [
-              -1.531951871251799,
-              53.79660100093827
+              -1.5323720351023453,
+              53.79974578498381
             ],
             [
-              -1.5319394167645635,
-              53.79657504291711
+              -1.5323973795271033,
+              53.79969394448453
             ],
             [
-              -1.5319833622248415,
-              53.79656768646572
+              -1.5324851471208296,
+              53.799708915492644
             ],
             [
-              -1.5319958167120769,
-              53.796593644486876
+              -1.5324598026960718,
+              53.799760755991926
             ],
             [
-              -1.531951871251799,
-              53.79660100093827
+              -1.5323720351023453,
+              53.79974578498381
             ]
           ]
         ],
@@ -24042,7 +30188,7 @@
       "properties": {
         "control": "Uncontrolled",
         "crossing": null,
-        "id": 24,
+        "id": 97,
         "intersection_kind": "MapEdge",
         "movements": [],
         "osm_node_ids": [],
@@ -24055,28 +30201,28 @@
         "coordinates": [
           [
             [
-              -1.534798067204712,
-              53.79655094199524
+              -1.5343166007845375,
+              53.8000554915875
             ],
             [
-              -1.5347708469941015,
-              53.796529275537175
+              -1.5342946577441907,
+              53.8001078716798
             ],
             [
-              -1.5347650095241674,
-              53.79647542505392
+              -1.5342309541077694,
+              53.80012337058974
             ],
             [
-              -1.5348409818963031,
-              53.79647255172114
+              -1.5342207590898564,
+              53.80009707082635
             ],
             [
-              -1.534846819366237,
-              53.796526401305066
+              -1.534242702130203,
+              53.80004469073405
             ],
             [
-              -1.534798067204712,
-              53.79655094199524
+              -1.5343166007845375,
+              53.8000554915875
             ]
           ]
         ],
@@ -24085,14 +30231,14 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 25,
+        "id": 98,
         "intersection_kind": "Fork",
         "movements": [
-          "Road #270 -> Road #23",
-          "Road #270 -> Road #272"
+          "Road #126 -> Road #107",
+          "Road #126 -> Road #127"
         ],
         "osm_node_ids": [
-          643911
+          1591373171
         ],
         "type": "intersection"
       },
@@ -24103,47 +30249,36 @@
         "coordinates": [
           [
             [
-              -1.5363346966631286,
-              53.79981791328102
-            ],
-            [
-              -1.5363284206978005,
-              53.79987174487852
+              -1.5337915406139324,
+              53.80021547102296
             ],
             [
-              -1.5362373750464926,
-              53.799867309423966
+              -1.5337734953104223,
+              53.80019068571728
             ],
             [
-              -1.5362680758142937,
-              53.79981459028739
+              -1.533815455360999,
+              53.80018002605733
             ],
             [
-              -1.5363135605761113,
-              53.79981705263017
+              -1.5338335006645094,
+              53.80020481136301
             ],
             [
-              -1.5363346966631286,
-              53.79981791328102
+              -1.5337915406139324,
+              53.80021547102296
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
+        "control": "Uncontrolled",
         "crossing": null,
-        "id": 26,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #26 -> Road #229",
-          "Road #229 -> Road #26",
-          "Road #56 -> Road #26",
-          "Road #56 -> Road #229"
-        ],
-        "osm_node_ids": [
-          9791722
-        ],
+        "id": 99,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
         "type": "intersection"
       },
       "type": "Feature"
@@ -24153,24 +30288,24 @@
         "coordinates": [
           [
             [
-              -1.5365631512409041,
-              53.79982720597201
+              -1.5336281584481315,
+              53.8001923242814
             ],
             [
-              -1.536556875275576,
-              53.799881037569506
+              -1.5335587239205175,
+              53.80019774719116
             ],
             [
-              -1.536465738271061,
-              53.799877330565515
+              -1.5335495429232036,
+              53.8001567354243
             ],
             [
-              -1.536472014236389,
-              53.79982349896802
+              -1.5336189774508173,
+              53.80015131251454
             ],
             [
-              -1.5365631512409041,
-              53.79982720597201
+              -1.5336281584481315,
+              53.8001923242814
             ]
           ]
         ],
@@ -24179,7 +30314,7 @@
       "properties": {
         "control": "Uncontrolled",
         "crossing": null,
-        "id": 27,
+        "id": 100,
         "intersection_kind": "MapEdge",
         "movements": [],
         "osm_node_ids": [],
@@ -24192,56 +30327,45 @@
         "coordinates": [
           [
             [
-              -1.5350960080769187,
-              53.79772509459024
-            ],
-            [
-              -1.5350167652599687,
-              53.79775194293987
-            ],
-            [
-              -1.5349755268997278,
-              53.79770947876848
+              -1.5358126892121944,
+              53.79868649195595
             ],
             [
-              -1.5348858043473692,
-              53.79762069143636
+              -1.5357982066837612,
+              53.79870231462169
             ],
             [
-              -1.5349642463012036,
-              53.79759303549586
+              -1.5357963902774934,
+              53.79870353859851
             ],
             [
-              -1.5350101010435102,
-              53.797588806885294
+              -1.5357620536520493,
+              53.79868574821691
             ],
             [
-              -1.5350974514575908,
-              53.79770712704227
+              -1.5357841763537035,
+              53.79867338793966
             ],
             [
-              -1.5350960080769187,
-              53.79772509369092
+              -1.5357972809712626,
+              53.79868157086768
             ],
             [
-              -1.5350960080769187,
-              53.79772509459024
+              -1.5358126892121944,
+              53.79868649195595
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
+        "control": "Signed",
         "crossing": null,
-        "id": 28,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #311 -> Road #29",
-          "Road #372 -> Road #29"
-        ],
+        "id": 101,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          5452444899
+          2014304901
         ],
         "type": "intersection"
       },
@@ -24252,28 +30376,24 @@
         "coordinates": [
           [
             [
-              -1.5348179776362005,
-              53.79679609888557
-            ],
-            [
-              -1.534771573252098,
-              53.796796374078006
+              -1.5356570492306956,
+              53.79880180837849
             ],
             [
-              -1.5347325593424501,
-              53.79678152987425
+              -1.535658378419859,
+              53.79882470061202
             ],
             [
-              -1.534777802018269,
-              53.7967399128639
+              -1.5355834170232152,
+              53.79879385927411
             ],
             [
-              -1.5348172696488454,
-              53.79675433258782
+              -1.5356189001314084,
+              53.79878696957067
             ],
             [
-              -1.5348179776362005,
-              53.79679609888557
+              -1.5356570492306956,
+              53.79880180837849
             ]
           ]
         ],
@@ -24282,11 +30402,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 29,
+        "id": 102,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          342579517
+          7237437076
         ],
         "type": "intersection"
       },
@@ -24297,131 +30417,103 @@
         "coordinates": [
           [
             [
-              -1.5347667726410645,
-              53.79583903445175
+              -1.5353840066750855,
+              53.79757536922065
             ],
             [
-              -1.5347797661122218,
-              53.79585530138242
+              -1.535387368473107,
+              53.79762929254896
             ],
             [
-              -1.53475222768794,
-              53.79586297709301
+              -1.5355129547720214,
+              53.79761439978184
             ],
             [
-              -1.5347392342167827,
-              53.795846710162344
+              -1.5354700279000026,
+              53.79766203145563
             ],
             [
-              -1.5347667726410645,
-              53.79583903445175
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Uncontrolled",
-        "crossing": null,
-        "id": 31,
-        "intersection_kind": "MapEdge",
-        "movements": [],
-        "osm_node_ids": [],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.5354309561333237,
+              53.79767681900212
+            ],
             [
-              -1.5341773038917899,
-              53.79596955660537
+              -1.5354160549026914,
+              53.79751627569197
             ],
             [
-              -1.5340863282779404,
-              53.79597445251263
+              -1.5353775586612173,
+              53.79756616106591
             ],
             [
-              -1.5340840094290336,
-              53.79595393988429
+              -1.5353334457200596,
+              53.79762856229976
             ],
             [
-              -1.5341751616590833,
-              53.795950374973124
+              -1.5352874311096405,
+              53.79762500997909
             ],
             [
-              -1.5341877653565568,
-              53.795966747124425
+              -1.535288840994137,
+              53.79738521394533
             ],
             [
-              -1.5341773038917899,
-              53.79596955660537
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 32,
-        "intersection_kind": "Connection",
-        "movements": [
-          "Road #81 -> Road #82"
-        ],
-        "osm_node_ids": [
-          26661442
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.5352666787060931,
+              53.79736113011057
+            ],
             [
-              -1.5328624221631937,
-              53.79726751432032
+              -1.5352874432900683,
+              53.797354463438914
             ],
             [
-              -1.5328674404993705,
-              53.797213635958094
+              -1.5353338354937431,
+              53.79735376556529
             ],
             [
-              -1.5328682352722725,
-              53.797207798461024
+              -1.5353820090849568,
+              53.79742329302418
             ],
             [
-              -1.5329289394783938,
-              53.797210687082284
+              -1.5353406382625656,
+              53.7974723690086
             ],
             [
-              -1.5329449613083668,
-              53.79726380911497
+              -1.535382444535244,
+              53.79746468520411
             ],
             [
-              -1.5328624221631937,
-              53.79726751432032
+              -1.5353434154000616,
+              53.797514424887936
+            ],
+            [
+              -1.5353804012685117,
+              53.79738277138764
+            ],
+            [
+              -1.5353373921786064,
+              53.79743135274513
+            ],
+            [
+              -1.5353840066750855,
+              53.79757536922065
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
+        "control": "Signalled",
         "crossing": null,
-        "id": 33,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #9 -> Road #32",
-          "Road #9 -> Road #10",
-          "Road #32 -> Road #10"
-        ],
+        "id": 103,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          26661452
+          1606819535,
+          2275824763,
+          2275824760,
+          342579529,
+          2275824794,
+          7237437116,
+          5452444894
         ],
         "type": "intersection"
       },
@@ -24432,24 +30524,28 @@
         "coordinates": [
           [
             [
-              -1.5328234782910046,
-              53.796811998892984
+              -1.5349552678034988,
+              53.79669903959258
             ],
             [
-              -1.5328271308967354,
-              53.796794595219716
+              -1.5349091344339105,
+              53.796696071831015
             ],
             [
-              -1.5328721619376244,
-              53.796790071631634
+              -1.534881239732121,
+              53.79667416525406
             ],
             [
-              -1.532884057647743,
-              53.79680829188899
+              -1.5349434345180717,
+              53.79665030445108
             ],
             [
-              -1.5328234782910046,
-              53.796811998892984
+              -1.5349595126825222,
+              53.79667601785673
+            ],
+            [
+              -1.5349552678034988,
+              53.79669903959258
             ]
           ]
         ],
@@ -24458,11 +30554,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 34,
-        "intersection_kind": "Terminus",
+        "id": 104,
+        "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          342529328
+          342579521
         ],
         "type": "intersection"
       },
@@ -24473,48 +30569,28 @@
         "coordinates": [
           [
             [
-              -1.5352612294872894,
-              53.79769013166104
-            ],
-            [
-              -1.5352401360317687,
-              53.797714062611114
-            ],
-            [
-              -1.535269947628354,
-              53.79768590574844
-            ],
-            [
-              -1.5351919868014103,
-              53.7977140329335
-            ],
-            [
-              -1.5351905205824363,
-              53.7977144682052
-            ],
-            [
-              -1.5351768754584016,
-              53.797698388333444
+              -1.5339793521498668,
+              53.797159923970376
             ],
             [
-              -1.5351645016664992,
-              53.79768492818577
+              -1.5339234622577598,
+              53.797174215990616
             ],
             [
-              -1.5352447828649034,
-              53.79765918060589
+              -1.5339105814555578,
+              53.79712079628245
             ],
             [
-              -1.535280206593512,
-              53.797676890048535
+              -1.533926674845543,
+              53.797119442803314
             ],
             [
-              -1.5352612310098428,
-              53.79769013256036
+              -1.5339387426042015,
+              53.79717292906128
             ],
             [
-              -1.5352612294872894,
-              53.79769013166104
+              -1.5339793521498668,
+              53.797159923970376
             ]
           ]
         ],
@@ -24523,14 +30599,15 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 35,
-        "intersection_kind": "Fork",
+        "id": 105,
+        "intersection_kind": "Intersection",
         "movements": [
-          "Road #73 -> Road #521",
-          "Road #73 -> Road #372"
+          "Road #119 -> Road #515",
+          "Road #514 -> Road #119",
+          "Road #514 -> Road #515"
         ],
         "osm_node_ids": [
-          5452444896
+          26661454
         ],
         "type": "intersection"
       },
@@ -24541,28 +30618,24 @@
         "coordinates": [
           [
             [
-              -1.5359282479740757,
-              53.79784526015532
-            ],
-            [
-              -1.535905199559923,
-              53.79782196772365
+              -1.532266246565964,
+              53.79830458870661
             ],
             [
-              -1.5359323954096782,
-              53.79780029137304
+              -1.5322621539422856,
+              53.798322411463786
             ],
             [
-              -1.5359441556125397,
-              53.79779635863931
+              -1.5322319784554252,
+              53.798319994087095
             ],
             [
-              -1.5359490430091198,
-              53.79785024059882
+              -1.5322360710791036,
+              53.798302171329915
             ],
             [
-              -1.5359282479740757,
-              53.79784526015532
+              -1.532266246565964,
+              53.79830458870661
             ]
           ]
         ],
@@ -24571,13 +30644,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 36,
+        "id": 107,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #422 -> Road #420"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          342579667
+          6584937059
         ],
         "type": "intersection"
       },
@@ -24588,64 +30659,36 @@
         "coordinates": [
           [
             [
-              -1.5326793153174252,
-              53.79632473111488
-            ],
-            [
-              -1.5325902703013528,
-              53.79633678022683
-            ],
-            [
-              -1.5325673513042435,
-              53.79628454582465
-            ],
-            [
-              -1.5325883747223052,
-              53.79628132715233
-            ],
-            [
-              -1.5326319258412393,
-              53.79627319548565
+              -1.532171629004258,
+              53.798315158434384
             ],
             [
-              -1.5326323475885455,
-              53.79627398329144
+              -1.5321757216279364,
+              53.798297335677205
             ],
             [
-              -1.5326512592249697,
-              53.79627052450024
+              -1.5322058955922433,
+              53.7982997530539
             ],
             [
-              -1.5326782845487383,
-              53.79632206822336
+              -1.532201802968565,
+              53.798317575811076
             ],
             [
-              -1.5326793153174252,
-              53.79632473111488
+              -1.532171629004258,
+              53.798315158434384
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
+        "control": "Uncontrolled",
         "crossing": null,
-        "id": 37,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #38 -> Road #59",
-          "Road #38 -> Road #58",
-          "Road #59 -> Road #38",
-          "Road #59 -> Road #58",
-          "Road #212 -> Road #38",
-          "Road #212 -> Road #59",
-          "Road #212 -> Road #58",
-          "Road #58 -> Road #38",
-          "Road #58 -> Road #59"
-        ],
-        "osm_node_ids": [
-          342579565
-        ],
+        "id": 108,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
         "type": "intersection"
       },
       "type": "Feature"
@@ -24655,24 +30698,24 @@
         "coordinates": [
           [
             [
-              -1.5327598233762936,
-              53.796532309848544
+              -1.5335096824738366,
+              53.798403124685805
             ],
             [
-              -1.5327332791794157,
-              53.79655432704207
+              -1.5335397787879175,
+              53.79840563109535
             ],
             [
-              -1.5327110377185924,
-              53.79655739013173
+              -1.5335355826306043,
+              53.79842344665796
             ],
             [
-              -1.5326707783602211,
-              53.796544358960496
+              -1.5335053736475681,
+              53.798420929456555
             ],
             [
-              -1.5327598233762936,
-              53.796532309848544
+              -1.5335096824738366,
+              53.798403124685805
             ]
           ]
         ],
@@ -24681,11 +30724,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 38,
-        "intersection_kind": "Terminus",
+        "id": 109,
+        "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          7241259895
+          1675168033
         ],
         "type": "intersection"
       },
@@ -24696,28 +30739,24 @@
         "coordinates": [
           [
             [
-              -1.537059521936818,
-              53.79921102492677
-            ],
-            [
-              -1.537014168114597,
-              53.79920782334157
+              -1.5331849172549168,
+              53.79839387516226
             ],
             [
-              -1.5370132439246518,
-              53.79920774779855
+              -1.5331547722191254,
+              53.79839132918257
             ],
             [
-              -1.5370195868823318,
-              53.799181028951246
+              -1.533159084090501,
+              53.79837352441182
             ],
             [
-              -1.5370649437496595,
-              53.79918422963713
+              -1.5331892260811852,
+              53.79837607039152
             ],
             [
-              -1.537059521936818,
-              53.79921102492677
+              -1.5331849172549168,
+              53.79839387516226
             ]
           ]
         ],
@@ -24726,14 +30765,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 39,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #14 -> Road #15",
-          "Road #14 -> Road #39"
-        ],
+        "id": 110,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          342579576
+          1675168031
         ],
         "type": "intersection"
       },
@@ -24744,49 +30780,36 @@
         "coordinates": [
           [
             [
-              -1.5364549403219812,
-              53.799134251633056
-            ],
-            [
-              -1.5364485973643012,
-              53.79916097048036
-            ],
-            [
-              -1.5364032450646337,
-              53.7991577500094
+              -1.535267901316515,
+              53.80023020910675
             ],
             [
-              -1.536405999363828,
-              53.79914421791598
+              -1.5352379557352258,
+              53.800281186257216
             ],
             [
-              -1.5364080746041826,
-              53.79913154017817
+              -1.535151649792813,
+              53.800263498398294
             ],
             [
-              -1.536453538050252,
-              53.799134135620555
+              -1.5351815953741021,
+              53.80021252124783
             ],
             [
-              -1.5364549403219812,
-              53.799134251633056
+              -1.535267901316515,
+              53.80023020910675
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
+        "control": "Uncontrolled",
         "crossing": null,
-        "id": 40,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #39 -> Road #53",
-          "Road #52 -> Road #53"
-        ],
-        "osm_node_ids": [
-          342579578
-        ],
+        "id": 111,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
         "type": "intersection"
       },
       "type": "Feature"
@@ -24796,32 +30819,24 @@
         "coordinates": [
           [
             [
-              -1.5363419653333075,
-              53.79963400559346
-            ],
-            [
-              -1.5362964805714896,
-              53.79963154325068
-            ],
-            [
-              -1.536294321590695,
-              53.799631365184986
+              -1.5358855738459298,
+              53.79767797193252
             ],
             [
-              -1.5363068613409236,
-              53.799577916698524
+              -1.535916024914965,
+              53.797678027690466
             ],
             [
-              -1.536352119242277,
-              53.79958156974322
+              -1.535915930516651,
+              53.79769601412419
             ],
             [
-              -1.5363459955322942,
-              53.79960803767977
+              -1.535885479447616,
+              53.79769595836625
             ],
             [
-              -1.5363419653333075,
-              53.79963400559346
+              -1.5358855738459298,
+              53.79767797193252
             ]
           ]
         ],
@@ -24830,15 +30845,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 41,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #40 -> Road #56",
-          "Road #55 -> Road #56",
-          "Road #55 -> Road #40"
-        ],
+        "id": 112,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          342579580
+          1877939967
         ],
         "type": "intersection"
       },
@@ -24849,24 +30860,24 @@
         "coordinates": [
           [
             [
-              -1.535129129704708,
-              53.79968706917024
+              -1.5357628255866493,
+              53.79774369346204
             ],
             [
-              -1.5350720704915501,
-              53.799644930553306
+              -1.5357771223635615,
+              53.797744716890115
             ],
             [
-              -1.535143412778639,
-              53.799611227573784
+              -1.535716320714019,
+              53.79774263945702
             ],
             [
-              -1.535200471991797,
-              53.79965336619072
+              -1.5357628255866493,
+              53.79772570702831
             ],
             [
-              -1.535129129704708,
-              53.79968706917024
+              -1.5357628255866493,
+              53.79774369346204
             ]
           ]
         ],
@@ -24875,11 +30886,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 42,
+        "id": 113,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          342579596
+          1877939969
         ],
         "type": "intersection"
       },
@@ -24890,28 +30901,28 @@
         "coordinates": [
           [
             [
-              -1.5357956624969433,
-              53.79967584563559
+              -1.5345456902671024,
+              53.796563690779465
             ],
             [
-              -1.5357062155267598,
-              53.79966487570966
+              -1.5345444813596616,
+              53.796581662824046
             ],
             [
-              -1.5357260026314188,
-              53.79961219704256
+              -1.5345000288890842,
+              53.79657546290034
             ],
             [
-              -1.5357696877350564,
-              53.79961379333856
+              -1.5345115287353053,
+              53.79656155938707
             ],
             [
-              -1.5357995480533524,
-              53.79966478847546
+              -1.5345417849174987,
+              53.79656359904865
             ],
             [
-              -1.5357956624969433,
-              53.79967584563559
+              -1.5345456902671024,
+              53.796563690779465
             ]
           ]
         ],
@@ -24920,18 +30931,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 43,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #42 -> Road #41",
-          "Road #42 -> Road #40",
-          "Road #41 -> Road #42",
-          "Road #41 -> Road #40",
-          "Road #40 -> Road #42",
-          "Road #40 -> Road #41"
-        ],
+        "id": 114,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          342579586
+          1877939944
         ],
         "type": "intersection"
       },
@@ -24942,24 +30946,24 @@
         "coordinates": [
           [
             [
-              -1.5354284515328955,
-              53.80001287992736
+              -1.5345645760201179,
+              53.796377048254655
             ],
             [
-              -1.535391547882332,
-              53.799963519757284
+              -1.5345950240440462,
+              53.796377352225385
             ],
             [
-              -1.5354751162736384,
-              53.79994172199825
+              -1.5345945094209794,
+              53.79639533596115
             ],
             [
-              -1.5355120168790952,
-              53.799991082168326
+              -1.5345640613970513,
+              53.79639503199042
             ],
             [
-              -1.5354284515328955,
-              53.80001287992736
+              -1.5345645760201179,
+              53.796377048254655
             ]
           ]
         ],
@@ -24968,11 +30972,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 44,
-        "intersection_kind": "Terminus",
+        "id": 115,
+        "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          342579609
+          1877939939
         ],
         "type": "intersection"
       },
@@ -24983,28 +30987,40 @@
         "coordinates": [
           [
             [
-              -1.53684213784519,
-              53.79780478438419
+              -1.5346598970015186,
+              53.796615419762865
             ],
             [
-              -1.5368161752637308,
-              53.797814184094456
+              -1.5346355940033216,
+              53.796626256589185
             ],
             [
-              -1.5368105296355317,
-              53.79781867980356
+              -1.5345988974200275,
+              53.79661019290522
             ],
             [
-              -1.5368108706875048,
-              53.797764720502386
+              -1.5346055342305236,
+              53.796604903095066
             ],
             [
-              -1.5368411329599119,
-              53.79777781192817
+              -1.5346050926900225,
+              53.79660462880195
             ],
             [
-              -1.53684213784519,
-              53.79780478438419
+              -1.5346271788503938,
+              53.79659224514233
+            ],
+            [
+              -1.5346294687707853,
+              53.79659124239865
+            ],
+            [
+              -1.5346566889813957,
+              53.796612908856716
+            ],
+            [
+              -1.5346598970015186,
+              53.796615419762865
             ]
           ]
         ],
@@ -25012,51 +31028,45 @@
       },
       "properties": {
         "control": "Signed",
-        "crossing": null,
-        "id": 47,
-        "intersection_kind": "Fork",
+        "crossing": {
+          "has_island": false,
+          "kind": "Signalized"
+        },
+        "id": 116,
+        "intersection_kind": "Connection",
         "movements": [
-          "Road #287 -> Road #45",
-          "Road #158 -> Road #45"
+          "Road #23 -> Road #24"
         ],
         "osm_node_ids": [
-          26109191
+          301689312
         ],
         "type": "intersection"
       },
       "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
-            [
-              -1.5364075249623865,
-              53.79777817975074
-            ],
-            [
-              -1.5364040657209441,
-              53.79783209948177
-            ],
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
             [
-              -1.5363412877970213,
-              53.79783069474129
+              -1.5346690779988326,
+              53.79662260444382
             ],
             [
-              -1.5363209830241888,
-              53.797778084422646
+              -1.5346853419148043,
+              53.79664090743878
             ],
             [
-              -1.5363731989948166,
-              53.797759732864314
+              -1.5346564377600762,
+              53.796646565970825
             ],
             [
-              -1.53640752648494,
-              53.79777817975074
+              -1.5346447750006358,
+              53.79663344127014
             ],
             [
-              -1.5364075249623865,
-              53.79777817975074
+              -1.5346690779988326,
+              53.79662260444382
             ]
           ]
         ],
@@ -25065,13 +31075,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 48,
+        "id": 117,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #46 -> Road #422"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          342579538
+          1877939948
         ],
         "type": "intersection"
       },
@@ -25082,56 +31090,56 @@
         "coordinates": [
           [
             [
-              -1.5360317800862415,
-              53.796433515764015
+              -1.5357794853665185,
+              53.79778066097927
             ],
             [
-              -1.5360313355006336,
-              53.79651445471578
+              -1.5357747167291076,
+              53.79780749314111
             ],
             [
-              -1.5360012437542132,
-              53.79653531987823
+              -1.5357140186132,
+              53.79781043212438
             ],
             [
-              -1.5358983648174782,
-              53.79648355312332
+              -1.5357129589159975,
+              53.79780279958123
             ],
             [
-              -1.5358981729757433,
-              53.79651398796783
+              -1.5357058364109502,
+              53.79780212149267
             ],
             [
-              -1.535867721906708,
-              53.796513921418025
+              -1.5357131050811288,
+              53.79777548538297
             ],
             [
-              -1.5358716835907895,
-              53.796433016640485
+              -1.5357739067306713,
+              53.79777756101742
             ],
             [
-              -1.535884337532527,
-              53.79643323337701
+              -1.5357736387612637,
+              53.79778029855264
             ],
             [
-              -1.5360317800862415,
-              53.796433515764015
+              -1.5357794853665185,
+              53.79778066097927
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
+        "control": "Signalled",
         "crossing": null,
-        "id": 49,
+        "id": 118,
         "intersection_kind": "Connection",
         "movements": [
-          "Road #620 -> Road #343",
-          "Road #343 -> Road #620"
+          "Road #137 -> Road #136",
+          "Road #136 -> Road #137"
         ],
         "osm_node_ids": [
-          342579666
+          8174077588
         ],
         "type": "intersection"
       },
@@ -25142,28 +31150,28 @@
         "coordinates": [
           [
             [
-              -1.5358978547620719,
-              53.796593644486876
+              -1.5358646905027857,
+              53.79795596755423
             ],
             [
-              -1.5358674036930366,
-              53.79659380096885
+              -1.5357994369069503,
+              53.79791820323798
             ],
             [
-              -1.535867333655578,
-              53.79657557981216
+              -1.5358498882381277,
+              53.79789805123763
             ],
             [
-              -1.535897784724613,
-              53.796575646361966
+              -1.535866697228235,
+              53.79791273266416
             ],
             [
-              -1.5358989784065191,
-              53.79659361840655
+              -1.5358788487273336,
+              53.797924154948895
             ],
             [
-              -1.5358978547620719,
-              53.796593644486876
+              -1.5358646905027857,
+              53.79795596755423
             ]
           ]
         ],
@@ -25172,11 +31180,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 50,
-        "intersection_kind": "Connection",
+        "id": 119,
+        "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          6500031459
+          1877939977
         ],
         "type": "intersection"
       },
@@ -25187,28 +31195,32 @@
         "coordinates": [
           [
             [
-              -1.5363815227945374,
-              53.79875998722212
+              -1.5368034482394275,
+              53.79890694178159
             ],
             [
-              -1.5363365922421761,
-              53.798764845357866
+              -1.5367839504199243,
+              53.7989596582202
             ],
             [
-              -1.5362299967524653,
-              53.798713983320575
+              -1.536798306576421,
+              53.79894651283511
             ],
             [
-              -1.536265728036871,
-              53.79866156545677
+              -1.536789092082931,
+              53.79892008716668
             ],
             [
-              -1.5363998528155431,
-              53.79867814715002
+              -1.536783945852264,
+              53.79895965732088
             ],
             [
-              -1.5363815227945374,
-              53.79875998722212
+              -1.536803452807088,
+              53.79890694268091
+            ],
+            [
+              -1.5368034482394275,
+              53.79890694178159
             ]
           ]
         ],
@@ -25217,14 +31229,14 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 51,
+        "id": 120,
         "intersection_kind": "Fork",
         "movements": [
-          "Road #527 -> Road #48",
-          "Road #527 -> Road #528"
+          "Road #274 -> Road #140",
+          "Road #274 -> Road #275"
         ],
         "osm_node_ids": [
-          643946
+          2014304918
         ],
         "type": "intersection"
       },
@@ -25235,24 +31247,32 @@
         "coordinates": [
           [
             [
-              -1.5334537073187362,
-              53.7961290620983
+              -1.5364684682093999,
+              53.79904292551581
             ],
             [
-              -1.5334864239473076,
-              53.79613728099919
+              -1.5364230047633305,
+              53.79904032827478
             ],
             [
-              -1.5335016799328942,
-              53.79616271201784
+              -1.53640787058202,
+              53.79900253877752
             ],
             [
-              -1.5334761771625771,
-              53.79618136305029
+              -1.5364523200074907,
+              53.79899632806195
             ],
             [
-              -1.5334537073187362,
-              53.7961290620983
+              -1.536494009043553,
+              53.799007364537694
+            ],
+            [
+              -1.5364685062732362,
+              53.79904269349082
+            ],
+            [
+              -1.5364684682093999,
+              53.79904292551581
             ]
           ]
         ],
@@ -25261,11 +31281,14 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 52,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "id": 121,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #51 -> Road #52",
+          "Road #141 -> Road #52"
+        ],
         "osm_node_ids": [
-          342579557
+          9791699
         ],
         "type": "intersection"
       },
@@ -25276,36 +31299,50 @@
         "coordinates": [
           [
             [
-              -1.5319323399361198,
-              53.796437491665195
+              -1.5358774388428371,
+              53.79847120693475
             ],
             [
-              -1.531909422461564,
-              53.79638525726301
+              -1.535880694062117,
+              53.798489090845806
             ],
             [
-              -1.5319978538885954,
-              53.79637172067299
+              -1.5358618159218687,
+              53.79849028964161
             ],
             [
-              -1.5320207713631513,
-              53.79642395507517
+              -1.535845655539532,
+              53.798494554225044
             ],
             [
-              -1.5319323399361198,
-              53.796437491665195
+              -1.5358332345484724,
+              53.79847813261105
+            ],
+            [
+              -1.5358327640794558,
+              53.79847682679597
+            ],
+            [
+              -1.5358774388428371,
+              53.79847120603543
+            ],
+            [
+              -1.5358774388428371,
+              53.79847120693475
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 53,
-        "intersection_kind": "MapEdge",
+        "id": 122,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2014304864
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -25315,71 +31352,59 @@
         "coordinates": [
           [
             [
-              -1.5341867239299958,
-              53.79656201354452
-            ],
-            [
-              -1.5340541338852032,
-              53.79658244793188
-            ],
-            [
-              -1.5340434303344372,
-              53.79655821930633
-            ],
-            [
-              -1.534029648180592,
-              53.79655908265515
+              -1.5365182998613225,
+              53.798994587874496
             ],
             [
-              -1.5340248277763637,
-              53.7965322540906
+              -1.53648792491996,
+              53.798974439471436
             ],
             [
-              -1.5340875493658088,
-              53.79649302208136
+              -1.5364933558681224,
+              53.79897158322576
             ],
             [
-              -1.534090542705895,
-              53.796494692121726
+              -1.5364928747412316,
+              53.79897114075949
             ],
             [
-              -1.5341360366030334,
-              53.79649709780724
+              -1.536531331396316,
+              53.798956584338676
             ],
             [
-              -1.53413385173883,
-              53.796511511235906
+              -1.5365359934549854,
+              53.79895523175886
             ],
             [
-              -1.5341754874855218,
-              53.79650846343471
+              -1.5365561246567243,
+              53.798979448693224
             ],
             [
-              -1.5341867239299958,
-              53.796562012645204
+              -1.5365359645264698,
+              53.79898529608283
             ],
             [
-              -1.5341867239299958,
-              53.79656201354452
+              -1.5365182998613225,
+              53.798994587874496
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 54,
-        "intersection_kind": "Intersection",
+        "control": "Signalled",
+        "crossing": {
+          "has_island": false,
+          "kind": "Unmarked"
+        },
+        "id": 123,
+        "intersection_kind": "Connection",
         "movements": [
-          "Road #118 -> Road #271",
-          "Road #118 -> Road #60",
-          "Road #489 -> Road #281",
-          "Road #489 -> Road #271",
-          "Road #489 -> Road #60"
+          "Road #140 -> Road #141"
         ],
         "osm_node_ids": [
-          342628235
+          2014304926,
+          2014304923
         ],
         "type": "intersection"
       },
@@ -25390,40 +31415,32 @@
         "coordinates": [
           [
             [
-              -1.5341400302607373,
-              53.79647074948048
-            ],
-            [
-              -1.534094536363599,
-              53.79646834469428
-            ],
-            [
-              -1.5340887460928219,
-              53.79646928268681
+              -1.5365161667639364,
+              53.798942607980344
             ],
             [
-              -1.5340684017335995,
-              53.79642550370711
+              -1.536477710108852,
+              53.79895716440116
             ],
             [
-              -1.5341570767691832,
-              53.79641253638772
+              -1.5364691320427049,
+              53.798930664988355
             ],
             [
-              -1.5341613444865085,
-              53.796422719407175
+              -1.5364697943534564,
+              53.79893059034465
             ],
             [
-              -1.5341687699796926,
-              53.796449778198074
+              -1.5365142346436063,
+              53.798936825341904
             ],
             [
-              -1.5341428317590886,
-              53.79645226212457
+              -1.536513060754895,
+              53.79893974543942
             ],
             [
-              -1.5341400302607373,
-              53.79647074948048
+              -1.5365161667639364,
+              53.798942607980344
             ]
           ]
         ],
@@ -25432,14 +31449,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 55,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #60 -> Road #629",
-          "Road #425 -> Road #629"
-        ],
+        "id": 125,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          5728993836
+          2014304919
         ],
         "type": "intersection"
       },
@@ -25450,28 +31464,24 @@
         "coordinates": [
           [
             [
-              -1.5334532475075937,
-              53.79979992414933
-            ],
-            [
-              -1.5334235089935742,
-              53.79985094446724
+              -1.5362857359117805,
+              53.79891829122127
             ],
             [
-              -1.5333398416362933,
-              53.79988982394238
+              -1.53630042855259,
+              53.7989388614062
             ],
             [
-              -1.5333515287565889,
-              53.79983630710747
+              -1.5362117976710565,
+              53.79892578886617
             ],
             [
-              -1.5333812657480552,
-              53.799785285890245
+              -1.5362415300948624,
+              53.79891150134254
             ],
             [
-              -1.5334532475075937,
-              53.79979992414933
+              -1.5362857359117805,
+              53.79891829122127
             ]
           ]
         ],
@@ -25480,14 +31490,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 56,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #628 -> Road #61",
-          "Road #628 -> Road #223"
-        ],
+        "id": 126,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          358204009
+          2014304916
         ],
         "type": "intersection"
       },
@@ -25498,24 +31505,32 @@
         "coordinates": [
           [
             [
-              -1.5332779574512467,
-              53.799885108798776
+              -1.5363208140207556,
+              53.798838782190984
             ],
             [
-              -1.5332440029867191,
-              53.799881612236064
+              -1.5362766234293719,
+              53.79883195813803
             ],
             [
-              -1.5332636591517812,
-              53.79982891738118
+              -1.5363040156885224,
+              53.79881036902163
             ],
             [
-              -1.5332896445715423,
-              53.79983159196387
+              -1.5363080032560126,
+              53.7988121343901
             ],
             [
-              -1.5332779574512467,
-              53.799885108798776
+              -1.5363116604294036,
+              53.79881167663536
+            ],
+            [
+              -1.5363211307118736,
+              53.79883806992821
+            ],
+            [
+              -1.5363208140207556,
+              53.798838782190984
             ]
           ]
         ],
@@ -25524,13 +31539,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 57,
+        "id": 127,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #61 -> Road #106"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          358204012
+          2014304912
         ],
         "type": "intersection"
       },
@@ -25541,69 +31554,107 @@
         "coordinates": [
           [
             [
-              -1.533861564369732,
-              53.79998852719542
+              -1.5359456233540671,
+              53.798195651172776
             ],
             [
-              -1.5338388296015906,
-              53.80004078857725
+              -1.535890178047568,
+              53.79823853622671
             ],
             [
-              -1.5337749143302393,
-              53.80003108759422
+              -1.5358543812933638,
+              53.79822178006505
             ],
             [
-              -1.5337733613257185,
-              53.80003499514695
+              -1.5358559449557587,
+              53.79822061454414
             ],
             [
-              -1.5336844228883877,
-              53.80002266904392
+              -1.5359226967441906,
+              53.79818377652923
             ],
             [
-              -1.5336412828588855,
-              53.80003061634966
+              -1.5359311682315961,
+              53.79818913109055
             ],
             [
-              -1.5336276834114544,
-              53.800004859776564
+              -1.5359456233540671,
+              53.798195651172776
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 128,
+        "intersection_kind": "Connection",
+        "movements": [],
+        "osm_node_ids": [
+          2014304855
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5358878972624972,
+              53.79825078318944
             ],
             [
-              -1.5336557029626272,
-              53.79995350041438
+              -1.5358203750620187,
+              53.79828712837607
             ],
             [
-              -1.5336770278462724,
-              53.79995755905315
+              -1.535786779920106,
+              53.79826885056211
             ],
             [
-              -1.5337094110356377,
-              53.799928785255794
+              -1.5357896057793123,
+              53.79826703842892
             ],
             [
-              -1.5338615689373924,
-              53.79998852719542
+              -1.5357812682766105,
+              53.79826153817748
             ],
             [
-              -1.533861564369732,
-              53.79998852719542
+              -1.535849329461011,
+              53.79822554552495
+            ],
+            [
+              -1.5358851277377685,
+              53.79824230258593
+            ],
+            [
+              -1.535880330171842,
+              53.79824587828896
+            ],
+            [
+              -1.5358878972624972,
+              53.79825078318944
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 58,
-        "intersection_kind": "Intersection",
+        "control": "Signalled",
+        "crossing": {
+          "has_island": true,
+          "kind": "Signalized"
+        },
+        "id": 129,
+        "intersection_kind": "Connection",
         "movements": [
-          "Road #129 -> Road #62",
-          "Road #129 -> Road #104",
-          "Road #234 -> Road #104"
+          "Road #66 -> Road #67"
         ],
         "osm_node_ids": [
-          3381506666
+          2014304856
         ],
         "type": "intersection"
       },
@@ -25614,88 +31665,103 @@
         "coordinates": [
           [
             [
-              -1.5335967131516923,
-              53.79994227328245
-            ],
-            [
-              -1.5335686951230731,
-              53.79999363174531
+              -1.5365429347761719,
+              53.7988481468277
             ],
             [
-              -1.5335009186561683,
-              53.80000405758162
+              -1.536497544412668,
+              53.79889497450791
             ],
             [
-              -1.5334387330055381,
-              53.799916371019236
+              -1.5365304224319054,
+              53.798896578897796
             ],
             [
-              -1.5334130323032726,
-              53.79990672489483
+              -1.5364859851868624,
+              53.79889033760529
             ],
             [
-              -1.5334083002071446,
-              53.79988828340433
+              -1.5365422313564772,
+              53.798847821273256
             ],
             [
-              -1.5333932086573308,
-              53.799881434170366
+              -1.5365429439114926,
+              53.79884815042499
             ],
             [
-              -1.5333973713184679,
-              53.79987823528313
-            ],
+              -1.5365429347761719,
+              53.7988481468277
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 130,
+        "intersection_kind": "Connection",
+        "movements": [],
+        "osm_node_ids": [
+          7261942269
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
             [
-              -1.5334419258001266,
-              53.7998311288132
+              -1.5364384145268157,
+              53.79896160345301
             ],
             [
-              -1.5334487361817162,
-              53.79983337531878
+              -1.5363939651013452,
+              53.79896781416857
             ],
             [
-              -1.5334651325598383,
-              53.799839082414195
+              -1.5363935037676493,
+              53.798966663036815
             ],
             [
-              -1.5334748936500173,
-              53.799849656638585
+              -1.5363849485398038,
+              53.79894016092604
             ],
             [
-              -1.5335004816833275,
-              53.79985940888295
+              -1.536384659254648,
+              53.79893898731124
             ],
             [
-              -1.533510736080825,
-              53.799882722898346
+              -1.5364298608215237,
+              53.79893510044291
             ],
             [
-              -1.5335666777397496,
-              53.79990608727576
+              -1.5364384388876708,
+              53.798961599855716
             ],
             [
-              -1.5335967131516923,
-              53.79994227328245
+              -1.5364384145268157,
+              53.79896160345301
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
-        "crossing": null,
-        "id": 59,
-        "intersection_kind": "Intersection",
+        "control": "Signed",
+        "crossing": {
+          "has_island": false,
+          "kind": "Unmarked"
+        },
+        "id": 131,
+        "intersection_kind": "Connection",
         "movements": [
-          "Road #62 -> Road #627",
-          "Road #62 -> Road #97",
-          "Road #112 -> Road #627",
-          "Road #112 -> Road #97"
+          "Road #50 -> Road #51"
         ],
         "osm_node_ids": [
-          3381506667,
-          6211582997,
-          1591373158
+          2014304920
         ],
         "type": "intersection"
       },
@@ -25706,24 +31772,24 @@
         "coordinates": [
           [
             [
-              -1.5343090717577186,
-              53.799918036563
+              -1.5363578257726143,
+              53.79897067131357
             ],
             [
-              -1.5342800199153057,
-              53.799912572284434
+              -1.5363534225480318,
+              53.79898615763301
             ],
             [
-              -1.5343077699745173,
-              53.79986116345956
+              -1.5362992561864321,
+              53.79894270600641
             ],
             [
-              -1.5343367487343647,
-              53.799866613348975
+              -1.5363492903379639,
+              53.79894416650483
             ],
             [
-              -1.5343090717577186,
-              53.799918036563
+              -1.5363578257726143,
+              53.79897067131357
             ]
           ]
         ],
@@ -25732,13 +31798,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 60,
+        "id": 132,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #160 -> Road #63"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          9823112
+          2014304921
         ],
         "type": "intersection"
       },
@@ -25749,32 +31813,36 @@
         "coordinates": [
           [
             [
-              -1.5354267234347279,
-              53.800072542726674
+              -1.5361147059599916,
+              53.79862833552046
             ],
             [
-              -1.5354172653326856,
-              53.80009893781817
+              -1.536106959208029,
+              53.79864573020051
             ],
             [
-              -1.5354267249572813,
-              53.800072542726674
+              -1.53610474541531,
+              53.79864538665963
             ],
             [
-              -1.535398204486023,
-              53.80012380406279
+              -1.5360780276473387,
+              53.79863675676873
             ],
             [
-              -1.5353258816745112,
-              53.80010976475195
+              -1.5360825907400335,
+              53.79863182758657
             ],
             [
-              -1.5353544021457695,
-              53.800058503415826
+              -1.536084789307218,
+              53.79862498284921
             ],
             [
-              -1.5354267234347279,
-              53.800072542726674
+              -1.536114707482545,
+              53.79862833552046
+            ],
+            [
+              -1.5361147059599916,
+              53.79862833552046
             ]
           ]
         ],
@@ -25783,14 +31851,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 61,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #63 -> Road #74",
-          "Road #63 -> Road #161"
-        ],
+        "id": 133,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          370191920
+          2014304895
         ],
         "type": "intersection"
       },
@@ -25801,28 +31866,24 @@
         "coordinates": [
           [
             [
-              -1.535336440582699,
-              53.797750613742416
-            ],
-            [
-              -1.5352545576580636,
-              53.797774537497915
+              -1.5361555027797313,
+              53.798723311984425
             ],
             [
-              -1.5353325169624539,
-              53.79774640941353
+              -1.536181439477782,
+              53.79873560751052
             ],
             [
-              -1.53527152499373,
-              53.79776005662012
+              -1.5361440607905412,
+              53.798751111816394
             ],
             [
-              -1.5353176735888527,
-              53.797762943442734
+              -1.5361325213579304,
+              53.79873511108495
             ],
             [
-              -1.535336440582699,
-              53.797750613742416
+              -1.5361555027797313,
+              53.798723311984425
             ]
           ]
         ],
@@ -25831,13 +31892,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 62,
+        "id": 134,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #521 -> Road #64"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          26660391
+          6309394782
         ],
         "type": "intersection"
       },
@@ -25848,45 +31907,36 @@
         "coordinates": [
           [
             [
-              -1.5360666754888024,
-              53.79835242722439
-            ],
-            [
-              -1.5360284593971634,
-              53.798430155597735
+              -1.5369471940333612,
+              53.79777643326803
             ],
             [
-              -1.53593751727949,
-              53.7984237389375
+              -1.5369481989186393,
+              53.79780340572404
             ],
             [
-              -1.5359090059435525,
-              53.79834457164946
+              -1.5369025329729609,
+              53.797803999276354
             ],
             [
-              -1.5359765235763705,
-              53.7983082255635
+              -1.5369015280876828,
+              53.79777702682034
             ],
             [
-              -1.5360666754888024,
-              53.79835242722439
+              -1.5369471940333612,
+              53.79777643326803
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
+        "control": "Uncontrolled",
         "crossing": null,
-        "id": 63,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #525 -> Road #531",
-          "Road #67 -> Road #531"
-        ],
-        "osm_node_ids": [
-          643907
-        ],
+        "id": 135,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
         "type": "intersection"
       },
       "type": "Feature"
@@ -25896,32 +31946,24 @@
         "coordinates": [
           [
             [
-              -1.535662530423122,
-              53.79810230338038
-            ],
-            [
-              -1.5355944692387216,
-              53.79813829603291
-            ],
-            [
-              -1.5355278879762764,
-              53.79807230650554
+              -1.5333145824745287,
+              53.79977166476398
             ],
             [
-              -1.5356066862076185,
-              53.79804500669643
+              -1.5333430648819506,
+              53.799777517549515
             ],
             [
-              -1.5356086152828419,
-              53.79804120076705
+              -1.5333133263679308,
+              53.79982853786743
             ],
             [
-              -1.535652318657121,
-              53.798049042852156
+              -1.5332842897510526,
+              53.79982257176736
             ],
             [
-              -1.535662530423122,
-              53.79810230338038
+              -1.5333145824745287,
+              53.79977166476398
             ]
           ]
         ],
@@ -25930,14 +31972,13 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 65,
-        "intersection_kind": "Fork",
+        "id": 136,
+        "intersection_kind": "Connection",
         "movements": [
-          "Road #65 -> Road #66",
-          "Road #68 -> Road #66"
+          "Road #223 -> Road #159"
         ],
         "osm_node_ids": [
-          26300437
+          2165840660
         ],
         "type": "intersection"
       },
@@ -25948,55 +31989,36 @@
         "coordinates": [
           [
             [
-              -1.5352836460417596,
-              53.79664120151697
-            ],
-            [
-              -1.5353032656655388,
-              53.79669478490168
-            ],
-            [
-              -1.5353006148999793,
-              53.79668935839462
-            ],
-            [
-              -1.5352570378976367,
-              53.79669902700208
-            ],
-            [
-              -1.535163469375259,
-              53.7966553523437
+              -1.5323532955144612,
+              53.79962928865121
             ],
             [
-              -1.5351805950564843,
-              53.79662987635897
+              -1.5323835882379373,
+              53.79957838164784
             ],
             [
-              -1.5352042524920178,
-              53.79661716264829
+              -1.5324697723760738,
+              53.79959627455211
             ],
             [
-              -1.5352667106797155,
-              53.79665771486177
+              -1.5324394796525977,
+              53.799647181555486
             ],
             [
-              -1.5352836460417596,
-              53.79664120151697
+              -1.5323532955144612,
+              53.79962928865121
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signed",
+        "control": "Uncontrolled",
         "crossing": null,
-        "id": 66,
-        "intersection_kind": "Connection",
+        "id": 137,
+        "intersection_kind": "MapEdge",
         "movements": [],
-        "osm_node_ids": [
-          342579525,
-          2275824778
-        ],
+        "osm_node_ids": [],
         "type": "intersection"
       },
       "type": "Feature"
@@ -26006,47 +32028,39 @@
         "coordinates": [
           [
             [
-              -1.5348674195144394,
-              53.79728712762697
-            ],
-            [
-              -1.5347897083862618,
-              53.79731549403161
-            ],
-            [
-              -1.534744132271237,
-              53.79731032922716
+              -1.5333819295813602,
+              53.79974343685489
             ],
             [
-              -1.5346917016205723,
-              53.797221338648335
+              -1.5333526782844449,
+              53.79973786825501
             ],
             [
-              -1.5347696137258056,
-              53.79719316469855
+              -1.5333809673275787,
+              53.799686561952804
             ],
             [
-              -1.5348158886928647,
-              53.79719524303096
+              -1.5334096796405718,
+              53.799692028030016
             ],
             [
-              -1.5348674195144394,
-              53.79728712762697
+              -1.5333819295813602,
+              53.79974343685489
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
+        "control": "Signed",
         "crossing": null,
-        "id": 67,
+        "id": 138,
         "intersection_kind": "Connection",
         "movements": [
-          "Road #72 -> Road #73"
+          "Road #520 -> Road #160"
         ],
         "osm_node_ids": [
-          319558919
+          2165840661
         ],
         "type": "intersection"
       },
@@ -26057,24 +32071,24 @@
         "coordinates": [
           [
             [
-              -1.5356645980507093,
-              53.800102280596874
+              -1.5356171019957818,
+              53.80010949855273
             ],
             [
-              -1.535655139948667,
-              53.80012867568837
+              -1.5355885815245236,
+              53.80016075988885
             ],
             [
-              -1.535610453004858,
-              53.80012308910205
+              -1.53550179445522,
+              53.8001439128957
             ],
             [
-              -1.5356199111069004,
-              53.80009669401056
+              -1.5355303149264783,
+              53.80009265155958
             ],
             [
-              -1.5356645980507093,
-              53.800102280596874
+              -1.5356171019957818,
+              53.80010949855273
             ]
           ]
         ],
@@ -26083,7 +32097,7 @@
       "properties": {
         "control": "Uncontrolled",
         "crossing": null,
-        "id": 68,
+        "id": 139,
         "intersection_kind": "MapEdge",
         "movements": [],
         "osm_node_ids": [],
@@ -26096,36 +32110,38 @@
         "coordinates": [
           [
             [
-              -1.5319849121842555,
-              53.79680932341097
+              -1.5360987602576912,
+              53.797081850257506
             ],
             [
-              -1.531961002004849,
-              53.796756351565
+              -1.5361648390774973,
+              53.797043350296114
             ],
             [
-              -1.5320506834482643,
-              53.79674222771792
+              -1.5362300180682136,
+              53.7970823808573
             ],
             [
-              -1.5320745936276707,
-              53.79679519956389
+              -1.5361639392484074,
+              53.79712087902004
             ],
             [
-              -1.5319849121842555,
-              53.79680932341097
+              -1.5360987602576912,
+              53.797081850257506
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 69,
-        "intersection_kind": "MapEdge",
+        "id": 140,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824774
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -26135,36 +32151,262 @@
         "coordinates": [
           [
             [
-              -1.5323388008056005,
-              53.799450386588155
+              -1.5363057239934952,
+              53.7971940999931
+            ],
+            [
+              -1.5363059736922613,
+              53.797191279720295
+            ],
+            [
+              -1.5363067227885596,
+              53.797188490923745
+            ],
+            [
+              -1.5363079591019624,
+              53.797185762381744
+            ],
+            [
+              -1.536309673497149,
+              53.79718312646988
+            ],
+            [
+              -1.5363118431358178,
+              53.79718061016781
+            ],
+            [
+              -1.5363144467022203,
+              53.79717824135449
+            ],
+            [
+              -1.5363174567903946,
+              53.79717604700957
+            ],
+            [
+              -1.5363208368590573,
+              53.79717405051542
+            ],
+            [
+              -1.5363245518894797,
+              53.79717227255645
+            ],
+            [
+              -1.5363285622952716,
+              53.79717073471637
+            ],
+            [
+              -1.5363328223998296,
+              53.79716945318297
+            ],
+            [
+              -1.5363372850039967,
+              53.79716844054675
+            ],
+            [
+              -1.5363419044311692,
+              53.797167710297536
+            ],
+            [
+              -1.5363466258694232,
+              53.79716726783127
+            ],
+            [
+              -1.536351400597048,
+              53.797167120342515
+            ],
+            [
+              -1.5363561753246726,
+              53.79716726783127
+            ],
+            [
+              -1.5363608967629265,
+              53.797167710297536
+            ],
+            [
+              -1.536365516190099,
+              53.79716844054675
+            ],
+            [
+              -1.5363699787942662,
+              53.79716945318297
+            ],
+            [
+              -1.5363742388988242,
+              53.79717073471637
+            ],
+            [
+              -1.536378249304616,
+              53.79717227255645
+            ],
+            [
+              -1.5363819643350385,
+              53.79717405051542
+            ],
+            [
+              -1.5363853444037014,
+              53.79717604700957
+            ],
+            [
+              -1.5363883544918755,
+              53.79717824135449
+            ],
+            [
+              -1.536390958058278,
+              53.79718061016781
+            ],
+            [
+              -1.5363931276969467,
+              53.79718312646988
+            ],
+            [
+              -1.5363948420921334,
+              53.797185762381744
+            ],
+            [
+              -1.5363960784055362,
+              53.797188490923745
+            ],
+            [
+              -1.5363968275018345,
+              53.797191279720295
+            ],
+            [
+              -1.5363970772006006,
+              53.7971940999931
+            ],
+            [
+              -1.5363968275018345,
+              53.79719692026591
+            ],
+            [
+              -1.5363960784055362,
+              53.79719970906246
+            ],
+            [
+              -1.5363948420921334,
+              53.797202437604454
+            ],
+            [
+              -1.5363931276969467,
+              53.79720507351632
+            ],
+            [
+              -1.536390958058278,
+              53.7972075898184
+            ],
+            [
+              -1.5363883544918755,
+              53.79720995863172
+            ],
+            [
+              -1.5363853444037014,
+              53.797212152976634
+            ],
+            [
+              -1.5363819643350385,
+              53.797214149470776
+            ],
+            [
+              -1.536378249304616,
+              53.79721592742975
+            ],
+            [
+              -1.5363742388988242,
+              53.79721746526983
+            ],
+            [
+              -1.5363699787942662,
+              53.79721874680324
+            ],
+            [
+              -1.536365516190099,
+              53.79721975943946
+            ],
+            [
+              -1.5363608967629265,
+              53.79722048968866
+            ],
+            [
+              -1.5363561753246726,
+              53.797220932154936
+            ],
+            [
+              -1.536351400597048,
+              53.79722107964369
+            ],
+            [
+              -1.5363466258694232,
+              53.797220932154936
+            ],
+            [
+              -1.5363419044311692,
+              53.79722048968866
+            ],
+            [
+              -1.5363372850039967,
+              53.79721975943946
+            ],
+            [
+              -1.5363328223998296,
+              53.79721874680324
+            ],
+            [
+              -1.5363285622952716,
+              53.79721746526983
+            ],
+            [
+              -1.5363245518894797,
+              53.79721592742975
+            ],
+            [
+              -1.5363208368590573,
+              53.797214149470776
+            ],
+            [
+              -1.5363174567903946,
+              53.797212152976634
+            ],
+            [
+              -1.5363144467022203,
+              53.79720995863172
+            ],
+            [
+              -1.5363118431358178,
+              53.7972075898184
+            ],
+            [
+              -1.536309673497149,
+              53.79720507351632
             ],
             [
-              -1.5323514227737154,
-              53.799424457345296
+              -1.5363079591019624,
+              53.797202437604454
             ],
             [
-              -1.5323953210348364,
-              53.79943191182276
+              -1.5363067227885596,
+              53.79719970906246
             ],
             [
-              -1.5323826990667215,
-              53.79945784106562
+              -1.5363059736922613,
+              53.79719692026591
             ],
             [
-              -1.5323388008056005,
-              53.799450386588155
+              -1.5363057239934952,
+              53.7971940999931
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 70,
-        "intersection_kind": "MapEdge",
+        "id": 141,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824791
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -26174,28 +32416,24 @@
         "coordinates": [
           [
             [
-              -1.5334312831514987,
-              53.79960576959047
-            ],
-            [
-              -1.5334208780212095,
-              53.799632040575574
+              -1.5357072234571447,
+              53.797226731880485
             ],
             [
-              -1.5333458618126414,
-              53.79962140160003
+              -1.5356653775980766,
+              53.79727566757073
             ],
             [
-              -1.5333584837807566,
-              53.79959547235717
+              -1.5355825308971063,
+              53.7972509506135
             ],
             [
-              -1.5334126044657526,
-              53.79958114796135
+              -1.5356243767561744,
+              53.797202014923265
             ],
             [
-              -1.5334312831514987,
-              53.79960576959047
+              -1.5357072234571447,
+              53.797226731880485
             ]
           ]
         ],
@@ -26204,14 +32442,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 71,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #76 -> Road #269",
-          "Road #76 -> Road #96"
-        ],
+        "id": 142,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          1152092910
+          2275824810
         ],
         "type": "intersection"
       },
@@ -26222,63 +32457,54 @@
         "coordinates": [
           [
             [
-              -1.5368498221724611,
-              53.79868768265786
-            ],
-            [
-              -1.5368434974854226,
-              53.79871440150516
+              -1.5353244200231975,
+              53.79715159535224
             ],
             [
-              -1.5367931405525592,
-              53.79876558999622
+              -1.5352819712329626,
+              53.797200347580855
             ],
             [
-              -1.5367690568020593,
-              53.79875458409742
+              -1.5353254690625258,
+              53.79717495253508
             ],
             [
-              -1.5367851654175788,
-              53.79870146925931
+              -1.535279131670775,
+              53.79717644720772
             ],
             [
-              -1.5367496914447063,
-              53.79869771549059
+              -1.5352762114132545,
+              53.79711273026624
             ],
             [
-              -1.5368053499086887,
-              53.79870902086351
+              -1.5353226005718226,
+              53.79711198382925
             ],
             [
-              -1.5368202039401642,
-              53.79868350710727
+              -1.5353672920832921,
+              53.797125317172565
             ],
             [
-              -1.5368202480942141,
-              53.79868340008799
+              -1.535325446224224,
+              53.79717425106416
             ],
             [
-              -1.5368498221724611,
-              53.79868768265786
+              -1.5353244200231975,
+              53.79715159535224
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
-        "crossing": {
-          "has_island": true,
-          "kind": "Signalized"
-        },
-        "id": 72,
+        "control": "Signed",
+        "crossing": null,
+        "id": 143,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #12 -> Road #13"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          7261942276,
-          632541753
+          2275824742,
+          2275824781
         ],
         "type": "intersection"
       },
@@ -26289,62 +32515,37 @@
         "coordinates": [
           [
             [
-              -1.5368295478506975,
-              53.798607822892116
-            ],
-            [
-              -1.536822020346432,
-              53.798634433820816
-            ],
-            [
-              -1.5368210596152039,
-              53.79863433849271
-            ],
-            [
-              -1.5367911444849838,
-              53.79863098492215
-            ],
-            [
-              -1.5367913713454482,
-              53.79863027535733
-            ],
-            [
-              -1.5367864748135474,
-              53.79862938502887
+              -1.5357097417605539,
+              53.79734444589465
             ],
             [
-              -1.5367999067800988,
-              53.79860359787883
+              -1.5356658587249674,
+              53.797392753858354
             ],
             [
-              -1.536829832568193,
-              53.79860692716772
+              -1.535584073243753,
+              53.79736683360871
             ],
             [
-              -1.536829546328144,
-              53.798607821992796
+              -1.5356279562793396,
+              53.79731852564501
             ],
             [
-              -1.5368295478506975,
-              53.798607822892116
+              -1.5357097417605539,
+              53.79734444589465
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
-        "crossing": {
-          "has_island": true,
-          "kind": "Signalized"
-        },
-        "id": 74,
+        "control": "Signed",
+        "crossing": null,
+        "id": 144,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #0 -> Road #1"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          9319419251
+          2275824747
         ],
         "type": "intersection"
       },
@@ -26355,24 +32556,24 @@
         "coordinates": [
           [
             [
-              -1.5368064202637652,
-              53.79858317338402
+              -1.5360977736430546,
+              53.79698073682235
             ],
             [
-              -1.5367970748306785,
-              53.7985994951733
+              -1.5361642270110099,
+              53.79694246349002
             ],
             [
-              -1.5368220355719666,
-              53.798547589922855
+              -1.5362290223182562,
+              53.796981716183666
             ],
             [
-              -1.536836344529306,
-              53.7985865026729
+              -1.536162568950301,
+              53.79701998951599
             ],
             [
-              -1.5368064202637652,
-              53.79858317338402
+              -1.5360977736430546,
+              53.79698073682235
             ]
           ]
         ],
@@ -26381,11 +32582,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 75,
+        "id": 146,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          9319419252
+          2275824755
         ],
         "type": "intersection"
       },
@@ -26396,44 +32597,261 @@
         "coordinates": [
           [
             [
-              -1.5344726381524871,
-              53.79955551189735
+              -1.5363065233340574,
+              53.79709559998676
             ],
             [
-              -1.5343559618363722,
-              53.799472463136915
+              -1.5363067730328235,
+              53.79709277971396
             ],
             [
-              -1.5343547026846676,
-              53.79944549607683
+              -1.5363075221291218,
+              53.79708999091741
             ],
             [
-              -1.5344217818220915,
-              53.79944896565989
+              -1.5363087584425246,
+              53.79708726237541
             ],
             [
-              -1.5345239847450942,
-              53.79952157869149
+              -1.5363104728377113,
+              53.79708462646355
             ],
             [
-              -1.5344726381524871,
-              53.79955551189735
+              -1.53631264247638,
+              53.79708211016147
+            ],
+            [
+              -1.5363152460427825,
+              53.79707974134815
+            ],
+            [
+              -1.5363182561309567,
+              53.797077547003234
+            ],
+            [
+              -1.5363216361996195,
+              53.79707555050909
+            ],
+            [
+              -1.5363253512300419,
+              53.797073772550114
+            ],
+            [
+              -1.5363293616358338,
+              53.79707223471003
+            ],
+            [
+              -1.5363336217403918,
+              53.79707095317663
+            ],
+            [
+              -1.5363380843445589,
+              53.79706994054041
+            ],
+            [
+              -1.5363427037717314,
+              53.7970692102912
+            ],
+            [
+              -1.5363474252099854,
+              53.79706876782493
+            ],
+            [
+              -1.5363521999376102,
+              53.79706862033618
+            ],
+            [
+              -1.5363569746652348,
+              53.79706876782493
+            ],
+            [
+              -1.5363616961034887,
+              53.7970692102912
+            ],
+            [
+              -1.5363663155306613,
+              53.79706994054041
+            ],
+            [
+              -1.5363707781348284,
+              53.79707095317663
+            ],
+            [
+              -1.5363750382393864,
+              53.79707223471003
+            ],
+            [
+              -1.5363790486451783,
+              53.797073772550114
+            ],
+            [
+              -1.5363827636756007,
+              53.79707555050909
+            ],
+            [
+              -1.5363861437442634,
+              53.797077547003234
+            ],
+            [
+              -1.5363891538324377,
+              53.79707974134815
+            ],
+            [
+              -1.5363917573988402,
+              53.79708211016147
+            ],
+            [
+              -1.5363939270375089,
+              53.79708462646355
+            ],
+            [
+              -1.5363956414326956,
+              53.79708726237541
+            ],
+            [
+              -1.5363968777460983,
+              53.79708999091741
+            ],
+            [
+              -1.5363976268423967,
+              53.79709277971396
+            ],
+            [
+              -1.5363978765411628,
+              53.79709559998676
+            ],
+            [
+              -1.5363976268423967,
+              53.79709842025957
+            ],
+            [
+              -1.5363968777460983,
+              53.79710120905612
+            ],
+            [
+              -1.5363956414326956,
+              53.797103937598116
+            ],
+            [
+              -1.5363939270375089,
+              53.79710657350998
+            ],
+            [
+              -1.5363917573988402,
+              53.79710908981206
+            ],
+            [
+              -1.5363891538324377,
+              53.79711145862538
+            ],
+            [
+              -1.5363861437442634,
+              53.797113652970296
+            ],
+            [
+              -1.5363827636756007,
+              53.79711564946444
+            ],
+            [
+              -1.5363790486451783,
+              53.797117427423416
+            ],
+            [
+              -1.5363750382393864,
+              53.79711896526349
+            ],
+            [
+              -1.5363707781348284,
+              53.7971202467969
+            ],
+            [
+              -1.5363663155306613,
+              53.79712125943312
+            ],
+            [
+              -1.5363616961034887,
+              53.797121989682324
+            ],
+            [
+              -1.5363569746652348,
+              53.7971224321486
+            ],
+            [
+              -1.5363521999376102,
+              53.79712257963735
+            ],
+            [
+              -1.5363474252099854,
+              53.7971224321486
+            ],
+            [
+              -1.5363427037717314,
+              53.797121989682324
+            ],
+            [
+              -1.5363380843445589,
+              53.79712125943312
+            ],
+            [
+              -1.5363336217403918,
+              53.7971202467969
+            ],
+            [
+              -1.5363293616358338,
+              53.79711896526349
+            ],
+            [
+              -1.5363253512300419,
+              53.797117427423416
+            ],
+            [
+              -1.5363216361996195,
+              53.79711564946444
+            ],
+            [
+              -1.5363182561309567,
+              53.797113652970296
+            ],
+            [
+              -1.5363152460427825,
+              53.79711145862538
+            ],
+            [
+              -1.53631264247638,
+              53.79710908981206
+            ],
+            [
+              -1.5363104728377113,
+              53.79710657350998
+            ],
+            [
+              -1.5363087584425246,
+              53.797103937598116
+            ],
+            [
+              -1.5363075221291218,
+              53.79710120905612
+            ],
+            [
+              -1.5363067730328235,
+              53.79709842025957
+            ],
+            [
+              -1.5363065233340574,
+              53.79709559998676
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
+        "control": "Signed",
         "crossing": null,
-        "id": 76,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #105 -> Road #80",
-          "Road #523 -> Road #80"
-        ],
+        "id": 147,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          643951
+          2275824797
         ],
         "type": "intersection"
       },
@@ -26444,28 +32862,24 @@
         "coordinates": [
           [
             [
-              -1.5348615759542916,
-              53.7993558004298
-            ],
-            [
-              -1.5347593486704338,
-              53.79928319998871
+              -1.535710685743694,
+              53.79751996201156
             ],
             [
-              -1.5348702651668407,
-              53.79935120399666
+              -1.535669314921303,
+              53.797569037995984
             ],
             [
-              -1.534791046710746,
-              53.799294644756486
+              -1.535586230701994,
+              53.79754460162712
             ],
             [
-              -1.5348343542211276,
-              53.799342155921174
+              -1.5356276015243853,
+              53.7974955256427
             ],
             [
-              -1.5348615759542916,
-              53.7993558004298
+              -1.535710685743694,
+              53.79751996201156
             ]
           ]
         ],
@@ -26474,14 +32888,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 77,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #80 -> Road #318",
-          "Road #80 -> Road #315"
-        ],
+        "id": 148,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          659971029
+          2275824745
         ],
         "type": "intersection"
       },
@@ -26492,36 +32903,38 @@
         "coordinates": [
           [
             [
-              -1.5340681154935507,
-              53.79581215912248
+              -1.5360967900735247,
+              53.79687952536113
             ],
             [
-              -1.5341592677236005,
-              53.795808594211316
+              -1.5361636088543085,
+              53.796841475060575
             ],
             [
-              -1.5341653031254832,
-              53.79586243570135
+              -1.5362280280908522,
+              53.796880942692106
             ],
             [
-              -1.5340741508954334,
-              53.79586600061252
+              -1.5361612093100685,
+              53.79691899299265
             ],
             [
-              -1.5340681154935507,
-              53.79581215912248
+              -1.5360967900735247,
+              53.79687952536113
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 78,
-        "intersection_kind": "MapEdge",
+        "id": 150,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824801
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -26531,329 +32944,248 @@
         "coordinates": [
           [
             [
-              -1.5343417625028812,
-              53.796410846562274
+              -1.5363073226746196,
+              53.79699700015572
             ],
             [
-              -1.5343412143836386,
-              53.79643825608863
+              -1.5363075723733857,
+              53.796994179882915
             ],
             [
-              -1.534251124895898,
-              53.79644719714483
+              -1.536308321469684,
+              53.796991391086365
             ],
             [
-              -1.5342496556318173,
-              53.79644203323971
+              -1.5363095577830868,
+              53.796988662544365
             ],
             [
-              -1.5342474555420795,
-              53.796442244580305
+              -1.5363112721782735,
+              53.7969860266325
             ],
             [
-              -1.5342400315714486,
-              53.79641518578941
+              -1.5363134418169422,
+              53.79698351033043
             ],
             [
-              -1.5343286761559634,
-              53.796402149222246
+              -1.5363160453833447,
+              53.79698114151711
             ],
             [
-              -1.5343323150587131,
-              53.79641078091179
+              -1.536319055471519,
+              53.79697894717219
             ],
             [
-              -1.5343417625028812,
-              53.796410846562274
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signalled",
-        "crossing": null,
-        "id": 79,
-        "intersection_kind": "Connection",
-        "movements": [
-          "Road #82 -> Road #291"
-        ],
-        "osm_node_ids": [
-          5728993833
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.5363224355401817,
+              53.796976950678044
+            ],
             [
-              -1.5340890993252227,
-              53.80014255761792
+              -1.536326150570604,
+              53.79697517271907
             ],
             [
-              -1.534063374262102,
-              53.80015218035996
+              -1.536330160976396,
+              53.79697363487899
             ],
             [
-              -1.534058605624691,
-              53.800147733214224
+              -1.536334421080954,
+              53.79697235334559
             ],
             [
-              -1.534052404264482,
-              53.80014930342989
+              -1.536338883685121,
+              53.79697134070937
             ],
             [
-              -1.5340344015924685,
-              53.80012450733235
+              -1.5363435031122936,
+              53.79697061046016
             ],
             [
-              -1.5340605072939522,
-              53.80011524431898
+              -1.5363482245505475,
+              53.79697016799389
             ],
             [
-              -1.5340636407089558,
-              53.80011832269712
+              -1.5363529992781721,
+              53.796970020505135
             ],
             [
-              -1.5340789043073098,
-              53.800116257854526
+              -1.536357774005797,
+              53.79697016799389
             ],
             [
-              -1.5340890993252227,
-              53.80014255761792
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signed",
-        "crossing": {
-          "has_island": false,
-          "kind": "Signalized"
-        },
-        "id": 80,
-        "intersection_kind": "Connection",
-        "movements": [
-          "Road #107 -> Road #108"
-        ],
-        "osm_node_ids": [
-          1591373175
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.536362495444051,
+              53.79697061046016
+            ],
             [
-              -1.5336054921948952,
-              53.80006447671047
+              -1.5363671148712235,
+              53.79697134070937
             ],
             [
-              -1.5336035585520114,
-              53.800082427171326
+              -1.5363715774753905,
+              53.79697235334559
             ],
             [
-              -1.5335341240243976,
-              53.8000878500811
+              -1.5363758375799486,
+              53.79697363487899
             ],
             [
-              -1.533533923047342,
-              53.80008694986009
+              -1.5363798479857405,
+              53.79697517271907
             ],
             [
-              -1.5335138740634893,
-              53.800057786656446
+              -1.5363835630161629,
+              53.796976950678044
             ],
             [
-              -1.533523114440388,
-              53.80005557072781
+              -1.5363869430848256,
+              53.79697894717219
             ],
             [
-              -1.5335911756247882,
-              53.8000458166848
+              -1.5363899531729999,
+              53.79698114151711
             ],
             [
-              -1.5335987366252297,
-              53.80006422310176
+              -1.5363925567394023,
+              53.79698351033043
             ],
             [
-              -1.5336054921948952,
-              53.80006447671047
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signalled",
-        "crossing": null,
-        "id": 81,
-        "intersection_kind": "Connection",
-        "movements": [
-          "Road #110 -> Road #111"
-        ],
-        "osm_node_ids": [
-          1591373161
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.536394726378071,
+              53.7969860266325
+            ],
             [
-              -1.5337145435633237,
-              53.79962975719781
+              -1.5363964407732578,
+              53.796988662544365
             ],
             [
-              -1.5336486504950386,
-              53.79964084763285
+              -1.5363976770866605,
+              53.796991391086365
             ],
             [
-              -1.5336328128940335,
-              53.79961554341856
+              -1.5363984261829589,
+              53.796994179882915
             ],
             [
-              -1.5336509586860714,
-              53.799611580107886
+              -1.536398675881725,
+              53.79699700015572
             ],
             [
-              -1.533650151732742,
-              53.799601998734644
+              -1.5363984261829589,
+              53.79699982042853
             ],
             [
-              -1.5336957704792635,
-              53.79960065874533
+              -1.5363976770866605,
+              53.79700260922508
             ],
             [
-              -1.5337139741283328,
-              53.79962540178288
+              -1.5363964407732578,
+              53.797005337767075
             ],
             [
-              -1.5337126114429933,
-              53.79962575161902
+              -1.536394726378071,
+              53.79700797367894
             ],
             [
-              -1.5337145435633237,
-              53.79962975719781
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signalled",
-        "crossing": null,
-        "id": 82,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #99 -> Road #87",
-          "Road #99 -> Road #224",
-          "Road #269 -> Road #87",
-          "Road #269 -> Road #224"
-        ],
-        "osm_node_ids": [
-          615978081
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.5363925567394023,
+              53.79701048998101
+            ],
+            [
+              -1.5363899531729999,
+              53.79701285879434
+            ],
+            [
+              -1.5363869430848256,
+              53.797015053139255
+            ],
+            [
+              -1.5363835630161629,
+              53.797017049633396
+            ],
+            [
+              -1.5363798479857405,
+              53.79701882759237
+            ],
+            [
+              -1.5363758375799486,
+              53.79702036543245
+            ],
+            [
+              -1.5363715774753905,
+              53.79702164696586
+            ],
+            [
+              -1.5363671148712235,
+              53.79702265960208
+            ],
+            [
+              -1.536362495444051,
+              53.79702338985128
+            ],
+            [
+              -1.536357774005797,
+              53.79702383231756
+            ],
+            [
+              -1.5363529992781721,
+              53.79702397980631
+            ],
             [
-              -1.533741884055657,
-              53.79947189206764
+              -1.5363482245505475,
+              53.79702383231756
             ],
             [
-              -1.5337010034954772,
-              53.799483926790444
+              -1.5363435031122936,
+              53.79702338985128
             ],
             [
-              -1.5336958618324705,
-              53.79951296858567
+              -1.536338883685121,
+              53.79702265960208
             ],
             [
-              -1.5336504318825772,
-              53.799510162702
+              -1.536334421080954,
+              53.79702164696586
             ],
             [
-              -1.5336113250971688,
-              53.79949622321586
+              -1.536330160976396,
+              53.79702036543245
             ],
             [
-              -1.5336383717366857,
-              53.79944859424003
+              -1.536326150570604,
+              53.79701882759237
             ],
             [
-              -1.533729228591366,
-              53.79945420600736
+              -1.5363224355401817,
+              53.797017049633396
             ],
             [
-              -1.533741884055657,
-              53.79947189206764
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 83,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #87 -> Road #103",
-          "Road #87 -> Road #100",
-          "Road #96 -> Road #103",
-          "Road #96 -> Road #100",
-          "Road #100 -> Road #103"
-        ],
-        "osm_node_ids": [
-          1569761300
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.536319055471519,
+              53.797015053139255
+            ],
             [
-              -1.5324546488526376,
-              53.79773097705339
+              -1.5363160453833447,
+              53.79701285879434
             ],
             [
-              -1.5324330133680881,
-              53.797783402111776
+              -1.5363134418169422,
+              53.79701048998101
             ],
             [
-              -1.5323423346521619,
-              53.79777686674108
+              -1.5363112721782735,
+              53.79700797367894
             ],
             [
-              -1.5323536228634533,
-              53.79772279322605
+              -1.5363095577830868,
+              53.797005337767075
             ],
             [
-              -1.5324442726508638,
-              53.79772948238075
+              -1.536308321469684,
+              53.79700260922508
             ],
             [
-              -1.5324546488526376,
-              53.79773097705339
+              -1.5363075723733857,
+              53.79699982042853
+            ],
+            [
+              -1.5363073226746196,
+              53.79699700015572
             ]
           ]
         ],
@@ -26862,18 +33194,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 84,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #203 -> Road #88",
-          "Road #203 -> Road #202",
-          "Road #88 -> Road #203",
-          "Road #88 -> Road #202",
-          "Road #202 -> Road #203",
-          "Road #202 -> Road #88"
-        ],
+        "id": 151,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          26661448
+          2275824783
         ],
         "type": "intersection"
       },
@@ -26884,32 +33209,24 @@
         "coordinates": [
           [
             [
-              -1.5323874859747737,
-              53.79799879415225
-            ],
-            [
-              -1.5323348878432295,
-              53.798042911276895
-            ],
-            [
-              -1.532331364654542,
-              53.798041445382545
+              -1.5357080425909018,
+              53.79730118312561
             ],
             [
-              -1.5323262625779253,
-              53.798042464314015
+              -1.5356645584643196,
+              53.797349616994346
             ],
             [
-              -1.5322970021456894,
-              53.79799134686937
+              -1.5355825598256219,
+              53.79732393326631
             ],
             [
-              -1.532387621482031,
-              53.79799816732504
+              -1.535626043952204,
+              53.79727549939757
             ],
             [
-              -1.5323874859747737,
-              53.79799879415225
+              -1.5357080425909018,
+              53.79730118312561
             ]
           ]
         ],
@@ -26918,18 +33235,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 85,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #95 -> Road #94",
-          "Road #95 -> Road #89",
-          "Road #94 -> Road #95",
-          "Road #94 -> Road #89",
-          "Road #89 -> Road #95",
-          "Road #89 -> Road #94"
-        ],
+        "id": 152,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          394143337
+          2275824789
         ],
         "type": "intersection"
       },
@@ -26940,32 +33250,40 @@
         "coordinates": [
           [
             [
-              -1.5337406629677885,
-              53.79911202130029
+              -1.535328559846033,
+              53.79722363641525
             ],
             [
-              -1.5336666303287503,
-              53.79914363515553
+              -1.5352846768104464,
+              53.79727194437895
             ],
             [
-              -1.5336537693197434,
-              53.79913312838027
+              -1.5353288963303457,
+              53.797247132093624
             ],
             [
-              -1.5336178020395526,
-              53.799117508961224
+              -1.5352825041266707,
+              53.79724786773876
             ],
             [
-              -1.5336719166343349,
-              53.799074035750905
+              -1.5352819027180573,
+              53.79720643508935
             ],
             [
-              -1.5337517167058483,
-              53.79910030313872
+              -1.535328240109808,
+              53.797204940416705
             ],
             [
-              -1.5337406629677885,
-              53.79911202130029
+              -1.5353723423930916,
+              53.797196034434045
+            ],
+            [
+              -1.5353288582665094,
+              53.797244468302786
+            ],
+            [
+              -1.535328559846033,
+              53.79722363641525
             ]
           ]
         ],
@@ -26974,18 +33292,12 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 86,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #100 -> Road #101",
-          "Road #100 -> Road #90",
-          "Road #101 -> Road #100",
-          "Road #101 -> Road #90",
-          "Road #90 -> Road #100",
-          "Road #90 -> Road #101"
-        ],
+        "id": 153,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          1296601330
+          2275824765,
+          2275824753
         ],
         "type": "intersection"
       },
@@ -26996,32 +33308,24 @@
         "coordinates": [
           [
             [
-              -1.534019372467346,
-              53.7987798505402
-            ],
-            [
-              -1.5339839548289513,
-              53.79880911446787
-            ],
-            [
-              -1.534007167678877,
-              53.79881891617494
+              -1.5357060663165214,
+              53.797004047240456
             ],
             [
-              -1.5339711273161203,
-              53.79881777583503
+              -1.5356609347871044,
+              53.79705195230804
             ],
             [
-              -1.5339760147127006,
-              53.798763893875524
+              -1.5355798314098363,
+              53.79702529551394
             ],
             [
-              -1.5340214933843044,
-              53.79876639398981
+              -1.5356249629392533,
+              53.79697739044635
             ],
             [
-              -1.534019372467346,
-              53.7987798505402
+              -1.5357060663165214,
+              53.797004047240456
             ]
           ]
         ],
@@ -27030,14 +33334,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 87,
+        "id": 154,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #478 -> Road #90",
-          "Road #90 -> Road #478"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          7237437098
+          2275824762
         ],
         "type": "intersection"
       },
@@ -27048,36 +33349,42 @@
         "coordinates": [
           [
             [
-              -1.536140412752471,
-              53.7959274161898
+              -1.5353120660244899,
+              53.796874547615595
             ],
             [
-              -1.5361482782636027,
-              53.79595399294427
+              -1.5352669344950731,
+              53.79692245268318
             ],
             [
-              -1.5361032837639963,
-              53.795958638840105
+              -1.535312696361619,
+              53.79689813232682
             ],
             [
-              -1.5360954182528646,
-              53.795932062085626
+              -1.535266304157944,
+              53.796898867971954
             ],
             [
-              -1.536140412752471,
-              53.7959274161898
+              -1.5353126948390656,
+              53.79689813052817
+            ],
+            [
+              -1.5353120660244899,
+              53.796874547615595
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 88,
-        "intersection_kind": "MapEdge",
+        "id": 155,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824814
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -27087,24 +33394,24 @@
         "coordinates": [
           [
             [
-              -1.5341256192923165,
-              53.799438007425145
+              -1.536095814116762,
+              53.79677831659787
             ],
             [
-              -1.5341555800991402,
-              53.79943479324944
+              -1.5361629861299466,
+              53.79674048393317
             ],
             [
-              -1.5341610217051767,
-              53.79945249010158
+              -1.5362270384311085,
+              53.79678015930801
             ],
             [
-              -1.5341310608983532,
-              53.799455704277285
+              -1.536159866417924,
+              53.7968179919727
             ],
             [
-              -1.5341256192923165,
-              53.799438007425145
+              -1.536095814116762,
+              53.79677831659787
             ]
           ]
         ],
@@ -27113,11 +33420,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 89,
+        "id": 156,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          6211583011
+          2275824788
         ],
         "type": "intersection"
       },
@@ -27128,36 +33435,28 @@
         "coordinates": [
           [
             [
-              -1.534172491100329,
-              53.799547521424174
-            ],
-            [
-              -1.534143985854605,
-              53.799568603323145
-            ],
-            [
-              -1.5341404489629367,
-              53.799566935081415
+              -1.5363770038558926,
+              53.79689846597516
             ],
             [
-              -1.5341257121680771,
-              53.79955119515326
+              -1.5363305964266831,
+              53.7968983346742
             ],
             [
-              -1.5341380006969862,
-              53.79954718148058
+              -1.536263847683358,
+              53.7968824022912
             ],
             [
-              -1.5341458509825834,
-              53.799538808795674
+              -1.5363310196965427,
+              53.7968445696265
             ],
             [
-              -1.5341724895777753,
-              53.799547521424174
+              -1.5363774271257522,
+              53.79684469733018
             ],
             [
-              -1.534172491100329,
-              53.799547521424174
+              -1.5363770038558926,
+              53.79689846597516
             ]
           ]
         ],
@@ -27166,11 +33465,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 90,
+        "id": 157,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          1591373154
+          2275824799
         ],
         "type": "intersection"
       },
@@ -27181,36 +33480,38 @@
         "coordinates": [
           [
             [
-              -1.5321435972726578,
-              53.79811245222561
+              -1.5360997560076486,
+              53.79718306531601
             ],
             [
-              -1.5320785233381298,
-              53.7980745817894
+              -1.5361654450537712,
+              53.797144335128266
             ],
             [
-              -1.5321426395865365,
-              53.79803614478053
+              -1.5362310153407246,
+              53.7971831354631
             ],
             [
-              -1.5322077135210646,
-              53.79807401521674
+              -1.536165326294602,
+              53.79722186565084
             ],
             [
-              -1.5321435972726578,
-              53.79811245222561
+              -1.5360997560076486,
+              53.79718306531601
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 91,
-        "intersection_kind": "MapEdge",
+        "id": 158,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824744
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -27220,24 +33521,248 @@
         "coordinates": [
           [
             [
-              -1.5325121952829002,
-              53.79807144855265
+              -1.5363049231303796,
+              53.79729269982414
             ],
             [
-              -1.5324837692099558,
-              53.79807860805259
+              -1.5363051728291457,
+              53.797289879551336
             ],
             [
-              -1.5324969027560307,
-              53.798094835413096
+              -1.536305921925444,
+              53.797287090754786
             ],
             [
-              -1.5324286710456436,
-              53.79809330566691
+              -1.5363071582388468,
+              53.79728436221279
             ],
             [
-              -1.5325121952829002,
-              53.79807144855265
+              -1.5363088726340335,
+              53.79728172630093
+            ],
+            [
+              -1.5363110422727022,
+              53.79727920999885
+            ],
+            [
+              -1.5363136458391047,
+              53.79727684118553
+            ],
+            [
+              -1.536316655927279,
+              53.79727464684061
+            ],
+            [
+              -1.5363200359959417,
+              53.79727265034647
+            ],
+            [
+              -1.536323751026364,
+              53.79727087238749
+            ],
+            [
+              -1.536327761432156,
+              53.797269334547416
+            ],
+            [
+              -1.536332021536714,
+              53.79726805301401
+            ],
+            [
+              -1.536336484140881,
+              53.79726704037779
+            ],
+            [
+              -1.5363411035680536,
+              53.797266310128585
+            ],
+            [
+              -1.5363458250063076,
+              53.79726586766231
+            ],
+            [
+              -1.5363505997339322,
+              53.797265720173556
+            ],
+            [
+              -1.536355374461557,
+              53.79726586766231
+            ],
+            [
+              -1.536360095899811,
+              53.797266310128585
+            ],
+            [
+              -1.5363647153269835,
+              53.79726704037779
+            ],
+            [
+              -1.5363691779311506,
+              53.79726805301401
+            ],
+            [
+              -1.5363734380357086,
+              53.797269334547416
+            ],
+            [
+              -1.5363774484415005,
+              53.79727087238749
+            ],
+            [
+              -1.5363811634719229,
+              53.79727265034647
+            ],
+            [
+              -1.5363845435405856,
+              53.79727464684061
+            ],
+            [
+              -1.53638755362876,
+              53.79727684118553
+            ],
+            [
+              -1.5363901571951624,
+              53.79727920999885
+            ],
+            [
+              -1.536392326833831,
+              53.79728172630093
+            ],
+            [
+              -1.5363940412290178,
+              53.79728436221279
+            ],
+            [
+              -1.5363952775424206,
+              53.797287090754786
+            ],
+            [
+              -1.5363960266387189,
+              53.797289879551336
+            ],
+            [
+              -1.536396276337485,
+              53.79729269982414
+            ],
+            [
+              -1.5363960266387189,
+              53.79729552009695
+            ],
+            [
+              -1.5363952775424206,
+              53.7972983088935
+            ],
+            [
+              -1.5363940412290178,
+              53.797301037435496
+            ],
+            [
+              -1.536392326833831,
+              53.79730367334736
+            ],
+            [
+              -1.5363901571951624,
+              53.79730618964944
+            ],
+            [
+              -1.53638755362876,
+              53.79730855846276
+            ],
+            [
+              -1.5363845435405856,
+              53.797310752807675
+            ],
+            [
+              -1.5363811634719229,
+              53.79731274930182
+            ],
+            [
+              -1.5363774484415005,
+              53.797314527260795
+            ],
+            [
+              -1.5363734380357086,
+              53.79731606510087
+            ],
+            [
+              -1.5363691779311506,
+              53.79731734663428
+            ],
+            [
+              -1.5363647153269835,
+              53.7973183592705
+            ],
+            [
+              -1.536360095899811,
+              53.7973190895197
+            ],
+            [
+              -1.536355374461557,
+              53.79731953198598
+            ],
+            [
+              -1.5363505997339322,
+              53.79731967947473
+            ],
+            [
+              -1.5363458250063076,
+              53.79731953198598
+            ],
+            [
+              -1.5363411035680536,
+              53.7973190895197
+            ],
+            [
+              -1.536336484140881,
+              53.7973183592705
+            ],
+            [
+              -1.536332021536714,
+              53.79731734663428
+            ],
+            [
+              -1.536327761432156,
+              53.79731606510087
+            ],
+            [
+              -1.536323751026364,
+              53.797314527260795
+            ],
+            [
+              -1.5363200359959417,
+              53.79731274930182
+            ],
+            [
+              -1.536316655927279,
+              53.797310752807675
+            ],
+            [
+              -1.5363136458391047,
+              53.79730855846276
+            ],
+            [
+              -1.5363110422727022,
+              53.79730618964944
+            ],
+            [
+              -1.5363088726340335,
+              53.79730367334736
+            ],
+            [
+              -1.5363071582388468,
+              53.797301037435496
+            ],
+            [
+              -1.536305921925444,
+              53.7972983088935
+            ],
+            [
+              -1.5363051728291457,
+              53.79729552009695
+            ],
+            [
+              -1.5363049231303796,
+              53.79729269982414
             ]
           ]
         ],
@@ -27246,11 +33771,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 92,
-        "intersection_kind": "Terminus",
+        "id": 159,
+        "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          4361246658
+          2275824777
         ],
         "type": "intersection"
       },
@@ -27261,36 +33786,38 @@
         "coordinates": [
           [
             [
-              -1.5322704137947614,
-              53.798977314602865
+              -1.5360972757680758,
+              53.79693007713244
             ],
             [
-              -1.5322833128676046,
-              53.79892389669334
+              -1.5361639240228728,
+              53.79689192251057
             ],
             [
-              -1.5323737510200854,
-              53.798931515746666
+              -1.5362285183530637,
+              53.79693129031739
             ],
             [
-              -1.5323608519472423,
-              53.79898493365619
+              -1.5361618700982664,
+              53.79696944493925
             ],
             [
-              -1.5322704137947614,
-              53.798977314602865
+              -1.5360972757680758,
+              53.79693007713244
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 93,
-        "intersection_kind": "MapEdge",
+        "id": 160,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824756
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -27300,141 +33827,248 @@
         "coordinates": [
           [
             [
-              -1.533278511660703,
-              53.79621227093801
+              -1.5363069237656153,
+              53.797046300071244
             ],
             [
-              -1.5332514863369344,
-              53.796160727214875
+              -1.5363071734643814,
+              53.79704347979843
             ],
             [
-              -1.5332503048354558,
-              53.79615746357648
+              -1.5363079225606795,
+              53.79704069100188
             ],
             [
-              -1.5333396330464704,
-              53.79614616090152
+              -1.5363091588740825,
+              53.79703796245989
             ],
             [
-              -1.5333621028903113,
-              53.79619846095419
+              -1.5363108732692692,
+              53.79703532654803
             ],
             [
-              -1.5333172865294589,
-              53.796205177987865
+              -1.536313042907938,
+              53.797032810245945
             ],
             [
-              -1.533278511660703,
-              53.79621227093801
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 94,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #58 -> Road #102",
-          "Road #58 -> Road #57",
-          "Road #102 -> Road #58",
-          "Road #102 -> Road #57",
-          "Road #57 -> Road #58",
-          "Road #57 -> Road #102"
-        ],
-        "osm_node_ids": [
-          342579559
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.5363156464743404,
+              53.797030441432625
+            ],
             [
-              -1.5332239357322248,
-              53.796084751619496
+              -1.5363186565625144,
+              53.79702824708771
             ],
             [
-              -1.5333132639432394,
-              53.79607344894454
+              -1.5363220366311774,
+              53.79702625059357
+            ],
+            [
+              -1.5363257516615996,
+              53.7970244726346
+            ],
+            [
+              -1.5363297620673915,
+              53.79702293479451
+            ],
+            [
+              -1.5363340221719495,
+              53.797021653261105
+            ],
+            [
+              -1.5363384847761166,
+              53.797020640624886
+            ],
+            [
+              -1.5363431042032893,
+              53.79701991037568
+            ],
+            [
+              -1.5363478256415433,
+              53.79701946790941
+            ],
+            [
+              -1.5363526003691679,
+              53.79701932042065
+            ],
+            [
+              -1.5363573750967925,
+              53.79701946790941
+            ],
+            [
+              -1.5363620965350464,
+              53.79701991037568
+            ],
+            [
+              -1.5363667159622192,
+              53.797020640624886
+            ],
+            [
+              -1.5363711785663863,
+              53.797021653261105
+            ],
+            [
+              -1.5363754386709443,
+              53.79702293479451
+            ],
+            [
+              -1.5363794490767362,
+              53.7970244726346
+            ],
+            [
+              -1.5363831641071584,
+              53.79702625059357
+            ],
+            [
+              -1.5363865441758213,
+              53.79702824708771
+            ],
+            [
+              -1.5363895542639954,
+              53.797030441432625
+            ],
+            [
+              -1.5363921578303978,
+              53.797032810245945
+            ],
+            [
+              -1.5363943274690668,
+              53.79703532654803
+            ],
+            [
+              -1.5363960418642533,
+              53.79703796245989
+            ],
+            [
+              -1.5363972781776563,
+              53.79704069100188
+            ],
+            [
+              -1.5363980272739544,
+              53.79704347979843
+            ],
+            [
+              -1.5363982769727205,
+              53.797046300071244
+            ],
+            [
+              -1.5363980272739544,
+              53.79704912034405
+            ],
+            [
+              -1.5363972781776563,
+              53.7970519091406
+            ],
+            [
+              -1.5363960418642533,
+              53.7970546376826
+            ],
+            [
+              -1.5363943274690668,
+              53.79705727359446
+            ],
+            [
+              -1.5363921578303978,
+              53.79705978989654
+            ],
+            [
+              -1.5363895542639954,
+              53.797062158709856
+            ],
+            [
+              -1.5363865441758213,
+              53.79706435305477
+            ],
+            [
+              -1.5363831641071584,
+              53.79706634954892
+            ],
+            [
+              -1.5363794490767362,
+              53.79706812750789
+            ],
+            [
+              -1.5363754386709443,
+              53.797069665347976
+            ],
+            [
+              -1.5363711785663863,
+              53.79707094688138
+            ],
+            [
+              -1.5363667159622192,
+              53.797071959517595
+            ],
+            [
+              -1.5363620965350464,
+              53.79707268976681
+            ],
+            [
+              -1.5363573750967925,
+              53.79707313223307
+            ],
+            [
+              -1.5363526003691679,
+              53.79707327972183
+            ],
+            [
+              -1.5363478256415433,
+              53.79707313223307
+            ],
+            [
+              -1.5363431042032893,
+              53.79707268976681
             ],
             [
-              -1.5333323978724676,
-              53.796126211248556
+              -1.5363384847761166,
+              53.797071959517595
             ],
             [
-              -1.5332430696614532,
-              53.79613751392351
+              -1.5363340221719495,
+              53.79707094688138
             ],
             [
-              -1.5332239357322248,
-              53.796084751619496
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 95,
-        "intersection_kind": "Terminus",
-        "movements": [],
-        "osm_node_ids": [
-          1591164975
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.5363297620673915,
+              53.797069665347976
+            ],
             [
-              -1.5339036690628869,
-              53.79958764466121
+              -1.5363257516615996,
+              53.79706812750789
             ],
             [
-              -1.5338890342791087,
-              53.79958045728229
+              -1.5363220366311774,
+              53.79706634954892
             ],
             [
-              -1.5338836261692481,
-              53.799581858425476
+              -1.5363186565625144,
+              53.79706435305477
             ],
             [
-              -1.5338654225201789,
-              53.7995571144886
+              -1.5363156464743404,
+              53.797062158709856
             ],
             [
-              -1.5338743690442613,
-              53.799554818520335
+              -1.536313042907938,
+              53.79705978989654
             ],
             [
-              -1.5338693567982982,
-              53.79955530145608
+              -1.5363108732692692,
+              53.79705727359446
             ],
             [
-              -1.5338619998200194,
-              53.79952867433959
+              -1.5363091588740825,
+              53.7970546376826
             ],
             [
-              -1.5339470481332809,
-              53.79952047702242
+              -1.5363079225606795,
+              53.7970519091406
             ],
             [
-              -1.533965790766272,
-              53.79954508066512
+              -1.5363071734643814,
+              53.79704912034405
             ],
             [
-              -1.5339036690628869,
-              53.79958764466121
+              -1.5363069237656153,
+              53.797046300071244
             ]
           ]
         ],
@@ -27443,14 +34077,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 96,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #224 -> Road #522",
-          "Road #103 -> Road #522"
-        ],
+        "id": 161,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          1569783677
+          2275824790
         ],
         "type": "intersection"
       },
@@ -27461,36 +34092,38 @@
         "coordinates": [
           [
             [
-              -1.5323720351023453,
-              53.79974578498381
+              -1.5357062018237786,
+              53.79707490209815
             ],
             [
-              -1.5323973795271033,
-              53.79969394448453
+              -1.5356625989380273,
+              53.79712329819538
             ],
             [
-              -1.5324851471208296,
-              53.799708915492644
+              -1.5355806642465746,
+              53.79709754342093
             ],
             [
-              -1.5324598026960718,
-              53.799760755991926
+              -1.535624267132326,
+              53.797049147323705
             ],
             [
-              -1.5323720351023453,
-              53.79974578498381
+              -1.5357062018237786,
+              53.79707490209815
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 97,
-        "intersection_kind": "MapEdge",
+        "id": 162,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824775
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -27500,28 +34133,40 @@
         "coordinates": [
           [
             [
-              -1.5343166007845375,
-              53.8000554915875
+              -1.535317225958138,
+              53.79699639311358
             ],
             [
-              -1.5342946577441907,
-              53.8001078716798
+              -1.5352752643850076,
+              53.79704529283095
             ],
             [
-              -1.5342309541077694,
-              53.80012337058974
+              -1.5353182947906612,
+              53.79702011721967
             ],
             [
-              -1.5342207590898564,
-              53.80009707082635
+              -1.535271905632093,
+              53.797020883441746
             ],
             [
-              -1.534242702130203,
-              53.80004469073405
+              -1.53526878135241,
+              53.79695275352876
             ],
             [
-              -1.5343166007845375,
-              53.8000554915875
+              -1.5353151705109782,
+              53.79695198730668
+            ],
+            [
+              -1.5353616677708413,
+              53.7969666021834
+            ],
+            [
+              -1.53531806488509,
+              53.79701499828063
+            ],
+            [
+              -1.535317225958138,
+              53.79699639311358
             ]
           ]
         ],
@@ -27530,14 +34175,12 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 98,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #126 -> Road #107",
-          "Road #126 -> Road #127"
-        ],
+        "id": 163,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          1591373171
+          2275824769,
+          2275824740
         ],
         "type": "intersection"
       },
@@ -27548,36 +34191,38 @@
         "coordinates": [
           [
             [
-              -1.5337915406139324,
-              53.80021547102296
+              -1.5357054375019459,
+              53.797035319353455
             ],
             [
-              -1.5337734953104223,
-              53.80019068571728
+              -1.5356623614196887,
+              53.79708388092587
             ],
             [
-              -1.533815455360999,
-              53.80018002605733
+              -1.5355801481009543,
+              53.79705843731672
             ],
             [
-              -1.5338335006645094,
-              53.80020481136301
+              -1.5356232241832115,
+              53.7970098757443
             ],
             [
-              -1.5337915406139324,
-              53.80021547102296
+              -1.5357054375019459,
+              53.797035319353455
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 99,
-        "intersection_kind": "MapEdge",
+        "id": 164,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824812
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -27587,36 +34232,46 @@
         "coordinates": [
           [
             [
-              -1.5336281584481315,
-              53.8001923242814
+              -1.5353134180519552,
+              53.79691399905933
             ],
             [
-              -1.5335587239205175,
-              53.80019774719116
+              -1.535270341969698,
+              53.79696256063174
             ],
             [
-              -1.5335495429232036,
-              53.8001567354243
+              -1.5353144944972454,
+              53.79693771687016
             ],
             [
-              -1.5336189774508173,
-              53.80015131251454
+              -1.5352681053386774,
+              53.796938483092234
             ],
             [
-              -1.5336281584481315,
-              53.8001923242814
+              -1.5352670258482801,
+              53.796914732905826
+            ],
+            [
+              -1.5353134180519552,
+              53.79691399726068
+            ],
+            [
+              -1.5353134180519552,
+              53.79691399905933
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 100,
-        "intersection_kind": "MapEdge",
+        "id": 165,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824785
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -27626,32 +34281,24 @@
         "coordinates": [
           [
             [
-              -1.5358126892121944,
-              53.79868649195595
-            ],
-            [
-              -1.5357982066837612,
-              53.79870231462169
-            ],
-            [
-              -1.5357963902774934,
-              53.79870353859851
+              -1.5361002599728413,
+              53.79723372680456
             ],
             [
-              -1.5357620536520493,
-              53.79868574821691
+              -1.5361657389065875,
+              53.79719487251043
             ],
             [
-              -1.5357841763537035,
-              53.79867338793966
+              -1.5362315208284705,
+              53.79723354783955
             ],
             [
-              -1.5357972809712626,
-              53.79868157086768
+              -1.5361660418947243,
+              53.797272402133686
             ],
             [
-              -1.5358126892121944,
-              53.79868649195595
+              -1.5361002599728413,
+              53.79723372680456
             ]
           ]
         ],
@@ -27660,11 +34307,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 101,
+        "id": 166,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2014304901
+          2275824806
         ],
         "type": "intersection"
       },
@@ -27675,24 +34322,32 @@
         "coordinates": [
           [
             [
-              -1.5356570492306956,
-              53.79880180837849
+              -1.5363734030169791,
+              53.797342067188794
             ],
             [
-              -1.535658378419859,
-              53.79882470061202
+              -1.5363269955877696,
+              53.797341932290536
             ],
             [
-              -1.5355834170232152,
-              53.79879385927411
+              -1.5363174598355014,
+              53.79736142688673
             ],
             [
-              -1.5356189001314084,
-              53.79878696957067
+              -1.5363829387692476,
+              53.7973225725926
             ],
             [
-              -1.5356570492306956,
-              53.79880180837849
+              -1.5363269955877696,
+              53.79734193408918
+            ],
+            [
+              -1.5363734030169791,
+              53.79734206539015
+            ],
+            [
+              -1.5363734030169791,
+              53.797342067188794
             ]
           ]
         ],
@@ -27701,11 +34356,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 102,
+        "id": 167,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          7237437076
+          2275824757
         ],
         "type": "intersection"
       },
@@ -27716,28 +34371,24 @@
         "coordinates": [
           [
             [
-              -1.5349552678034988,
-              53.79669903959258
-            ],
-            [
-              -1.5349091344339105,
-              53.796696071831015
+              -1.5360993510084304,
+              53.797283425119595
             ],
             [
-              -1.534881239732121,
-              53.79667416525406
+              -1.5361674487341137,
+              53.79724617521535
             ],
             [
-              -1.5349434345180717,
-              53.79665030445108
+              -1.5362305128980855,
+              53.79728639917641
             ],
             [
-              -1.5349595126825222,
-              53.79667601785673
+              -1.5361624151724023,
+              53.79732364908066
             ],
             [
-              -1.5349552678034988,
-              53.79669903959258
+              -1.5360993510084304,
+              53.797283425119595
             ]
           ]
         ],
@@ -27746,11 +34397,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 104,
+        "id": 168,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          342579521
+          2275824768
         ],
         "type": "intersection"
       },
@@ -27761,28 +34412,28 @@
         "coordinates": [
           [
             [
-              -1.5339793521498668,
-              53.797159923970376
+              -1.5363731304799113,
+              53.79737496887269
             ],
             [
-              -1.5339234622577598,
-              53.797174215990616
+              -1.5363316987553821,
+              53.79738731835808
             ],
             [
-              -1.5339105814555578,
-              53.79712079628245
+              -1.5362889469770105,
+              53.797392072172514
             ],
             [
-              -1.533926674845543,
-              53.797119442803314
+              -1.5363269955877696,
+              53.79734206808811
             ],
             [
-              -1.5339387426042015,
-              53.79717292906128
+              -1.5363734014944257,
+              53.797342226368734
             ],
             [
-              -1.5339793521498668,
-              53.797159923970376
+              -1.5363731304799113,
+              53.79737496887269
             ]
           ]
         ],
@@ -27791,15 +34442,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 105,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #119 -> Road #515",
-          "Road #514 -> Road #119",
-          "Road #514 -> Road #515"
-        ],
+        "id": 169,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          26661454
+          342579547
         ],
         "type": "intersection"
       },
@@ -27810,24 +34457,24 @@
         "coordinates": [
           [
             [
-              -1.532266246565964,
-              53.79830458870661
+              -1.535703995643827,
+              53.79696385475565
             ],
             [
-              -1.5322621539422856,
-              53.798322411463786
+              -1.5356620036196276,
+              53.797012745479805
             ],
             [
-              -1.5322319784554252,
-              53.798319994087095
+              -1.535579230001223,
+              53.79698794308702
             ],
             [
-              -1.5322360710791036,
-              53.798302171329915
+              -1.5356212220254224,
+              53.796939052362866
             ],
             [
-              -1.532266246565964,
-              53.79830458870661
+              -1.535703995643827,
+              53.79696385475565
             ]
           ]
         ],
@@ -27836,11 +34483,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 107,
+        "id": 170,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          6584937059
+          2275824741
         ],
         "type": "intersection"
       },
@@ -27851,36 +34498,38 @@
         "coordinates": [
           [
             [
-              -1.532171629004258,
-              53.798315158434384
+              -1.5357061926884579,
+              53.79718857725862
             ],
             [
-              -1.5321757216279364,
-              53.798297335677205
+              -1.5356654065265922,
+              53.79723782231552
             ],
             [
-              -1.5322058955922433,
-              53.7982997530539
+              -1.5355820345446811,
+              53.79721373038687
             ],
             [
-              -1.532201802968565,
-              53.798317575811076
+              -1.5356228207065468,
+              53.79716448532997
             ],
             [
-              -1.532171629004258,
-              53.798315158434384
+              -1.5357061926884579,
+              53.79718857725862
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 108,
-        "intersection_kind": "MapEdge",
+        "id": 172,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824795
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -27890,24 +34539,24 @@
         "coordinates": [
           [
             [
-              -1.5335096824738366,
-              53.798403124685805
+              -1.5360982730405868,
+              53.79703129578823
             ],
             [
-              -1.5335397787879175,
-              53.79840563109535
+              -1.5361645284765932,
+              53.79699290374544
             ],
             [
-              -1.5335355826306043,
-              53.79842344665796
+              -1.5362295262834487,
+              53.79703203862794
             ],
             [
-              -1.5335053736475681,
-              53.798420929456555
+              -1.5361632708474422,
+              53.79707043067073
             ],
             [
-              -1.5335096824738366,
-              53.798403124685805
+              -1.5360982730405868,
+              53.79703129578823
             ]
           ]
         ],
@@ -27916,11 +34565,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 109,
+        "id": 174,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          1675168033
+          2275824792
         ],
         "type": "intersection"
       },
@@ -27931,24 +34580,248 @@
         "coordinates": [
           [
             [
-              -1.5331849172549168,
-              53.79839387516226
+              -1.5363061229024997,
+              53.79714480007758
             ],
             [
-              -1.5331547722191254,
-              53.79839132918257
+              -1.5363063726012658,
+              53.79714197980477
             ],
             [
-              -1.533159084090501,
-              53.79837352441182
+              -1.536307121697564,
+              53.79713919100822
             ],
             [
-              -1.5331892260811852,
-              53.79837607039152
+              -1.5363083580109669,
+              53.79713646246623
             ],
             [
-              -1.5331849172549168,
-              53.79839387516226
+              -1.5363100724061534,
+              53.797133826554365
+            ],
+            [
+              -1.5363122420448223,
+              53.79713131025228
+            ],
+            [
+              -1.5363148456112248,
+              53.79712894143896
+            ],
+            [
+              -1.5363178556993988,
+              53.79712674709405
+            ],
+            [
+              -1.5363212357680618,
+              53.797124750599906
+            ],
+            [
+              -1.536324950798484,
+              53.79712297264093
+            ],
+            [
+              -1.5363289612042759,
+              53.79712143480085
+            ],
+            [
+              -1.5363332213088339,
+              53.79712015326744
+            ],
+            [
+              -1.536337683913001,
+              53.797119140631224
+            ],
+            [
+              -1.5363423033401737,
+              53.79711841038202
+            ],
+            [
+              -1.5363470247784277,
+              53.797117967915746
+            ],
+            [
+              -1.5363517995060523,
+              53.79711782042699
+            ],
+            [
+              -1.5363565742336769,
+              53.797117967915746
+            ],
+            [
+              -1.5363612956719308,
+              53.79711841038202
+            ],
+            [
+              -1.5363659150991036,
+              53.797119140631224
+            ],
+            [
+              -1.5363703777032707,
+              53.79712015326744
+            ],
+            [
+              -1.5363746378078287,
+              53.79712143480085
+            ],
+            [
+              -1.5363786482136206,
+              53.79712297264093
+            ],
+            [
+              -1.5363823632440428,
+              53.797124750599906
+            ],
+            [
+              -1.5363857433127057,
+              53.79712674709405
+            ],
+            [
+              -1.5363887534008798,
+              53.79712894143896
+            ],
+            [
+              -1.5363913569672822,
+              53.79713131025228
+            ],
+            [
+              -1.536393526605951,
+              53.797133826554365
+            ],
+            [
+              -1.5363952410011377,
+              53.79713646246623
+            ],
+            [
+              -1.5363964773145407,
+              53.79713919100822
+            ],
+            [
+              -1.5363972264108388,
+              53.79714197980477
+            ],
+            [
+              -1.5363974761096049,
+              53.79714480007758
+            ],
+            [
+              -1.5363972264108388,
+              53.79714762035039
+            ],
+            [
+              -1.5363964773145407,
+              53.79715040914694
+            ],
+            [
+              -1.5363952410011377,
+              53.79715313768893
+            ],
+            [
+              -1.536393526605951,
+              53.79715577360079
+            ],
+            [
+              -1.5363913569672822,
+              53.797158289902875
+            ],
+            [
+              -1.5363887534008798,
+              53.797160658716194
+            ],
+            [
+              -1.5363857433127057,
+              53.79716285306111
+            ],
+            [
+              -1.5363823632440428,
+              53.79716484955525
+            ],
+            [
+              -1.5363786482136206,
+              53.79716662751423
+            ],
+            [
+              -1.5363746378078287,
+              53.797168165354314
+            ],
+            [
+              -1.5363703777032707,
+              53.797169446887715
+            ],
+            [
+              -1.5363659150991036,
+              53.79717045952393
+            ],
+            [
+              -1.5363612956719308,
+              53.797171189773145
+            ],
+            [
+              -1.5363565742336769,
+              53.79717163223941
+            ],
+            [
+              -1.5363517995060523,
+              53.79717177972817
+            ],
+            [
+              -1.5363470247784277,
+              53.79717163223941
+            ],
+            [
+              -1.5363423033401737,
+              53.797171189773145
+            ],
+            [
+              -1.536337683913001,
+              53.79717045952393
+            ],
+            [
+              -1.5363332213088339,
+              53.797169446887715
+            ],
+            [
+              -1.5363289612042759,
+              53.797168165354314
+            ],
+            [
+              -1.536324950798484,
+              53.79716662751423
+            ],
+            [
+              -1.5363212357680618,
+              53.79716484955525
+            ],
+            [
+              -1.5363178556993988,
+              53.79716285306111
+            ],
+            [
+              -1.5363148456112248,
+              53.797160658716194
+            ],
+            [
+              -1.5363122420448223,
+              53.797158289902875
+            ],
+            [
+              -1.5363100724061534,
+              53.79715577360079
+            ],
+            [
+              -1.5363083580109669,
+              53.79715313768893
+            ],
+            [
+              -1.536307121697564,
+              53.79715040914694
+            ],
+            [
+              -1.5363063726012658,
+              53.79714762035039
+            ],
+            [
+              -1.5363061229024997,
+              53.79714480007758
             ]
           ]
         ],
@@ -27957,11 +34830,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 110,
+        "id": 175,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          1675168031
+          2275824787
         ],
         "type": "intersection"
       },
@@ -27972,36 +34845,38 @@
         "coordinates": [
           [
             [
-              -1.535267901316515,
-              53.80023020910675
+              -1.536096308946634,
+              53.79682897358982
             ],
             [
-              -1.5352379557352258,
-              53.800281186257216
+              -1.5361632921631905,
+              53.79679102581194
             ],
             [
-              -1.535151649792813,
-              53.800263498398294
+              -1.5362275393511942,
+              53.79683059146953
             ],
             [
-              -1.5351815953741021,
-              53.80021252124783
+              -1.5361605561346376,
+              53.796868539247406
             ],
             [
-              -1.535267901316515,
-              53.80023020910675
+              -1.536096308946634,
+              53.79682897358982
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 111,
-        "intersection_kind": "MapEdge",
+        "id": 176,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824771
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -28011,24 +34886,248 @@
         "coordinates": [
           [
             [
-              -1.5358855738459298,
-              53.79767797193252
+              -1.5363077231061775,
+              53.7969477002402
+            ],
+            [
+              -1.5363079728049436,
+              53.79694487996739
+            ],
+            [
+              -1.5363087219012417,
+              53.79694209117084
+            ],
+            [
+              -1.5363099582146447,
+              53.79693936262885
+            ],
+            [
+              -1.5363116726098311,
+              53.796936726716986
+            ],
+            [
+              -1.5363138422485,
+              53.7969342104149
+            ],
+            [
+              -1.5363164458149026,
+              53.796931841601584
+            ],
+            [
+              -1.5363194559030766,
+              53.79692964725667
+            ],
+            [
+              -1.5363228359717396,
+              53.79692765076253
+            ],
+            [
+              -1.5363265510021618,
+              53.79692587280355
+            ],
+            [
+              -1.5363305614079537,
+              53.79692433496347
+            ],
+            [
+              -1.5363348215125117,
+              53.79692305343006
+            ],
+            [
+              -1.5363392841166787,
+              53.796922040793845
+            ],
+            [
+              -1.5363439035438515,
+              53.79692131054464
+            ],
+            [
+              -1.5363486249821054,
+              53.79692086807837
+            ],
+            [
+              -1.53635339970973,
+              53.79692072058961
+            ],
+            [
+              -1.5363581744373547,
+              53.79692086807837
+            ],
+            [
+              -1.5363628958756086,
+              53.79692131054464
+            ],
+            [
+              -1.5363675153027814,
+              53.796922040793845
+            ],
+            [
+              -1.5363719779069485,
+              53.79692305343006
+            ],
+            [
+              -1.5363762380115065,
+              53.79692433496347
+            ],
+            [
+              -1.5363802484172984,
+              53.79692587280355
+            ],
+            [
+              -1.5363839634477205,
+              53.79692765076253
+            ],
+            [
+              -1.5363873435163835,
+              53.79692964725667
+            ],
+            [
+              -1.5363903536045576,
+              53.796931841601584
+            ],
+            [
+              -1.53639295717096,
+              53.7969342104149
+            ],
+            [
+              -1.536395126809629,
+              53.796936726716986
+            ],
+            [
+              -1.5363968412048155,
+              53.79693936262885
+            ],
+            [
+              -1.5363980775182184,
+              53.79694209117084
+            ],
+            [
+              -1.5363988266145165,
+              53.79694487996739
+            ],
+            [
+              -1.5363990763132827,
+              53.7969477002402
+            ],
+            [
+              -1.5363988266145165,
+              53.79695052051301
+            ],
+            [
+              -1.5363980775182184,
+              53.79695330930956
+            ],
+            [
+              -1.5363968412048155,
+              53.79695603785155
+            ],
+            [
+              -1.536395126809629,
+              53.79695867376341
+            ],
+            [
+              -1.53639295717096,
+              53.796961190065495
+            ],
+            [
+              -1.5363903536045576,
+              53.796963558878815
+            ],
+            [
+              -1.5363873435163835,
+              53.79696575322373
+            ],
+            [
+              -1.5363839634477205,
+              53.79696774971787
+            ],
+            [
+              -1.5363802484172984,
+              53.79696952767685
+            ],
+            [
+              -1.5363762380115065,
+              53.79697106551693
+            ],
+            [
+              -1.5363719779069485,
+              53.796972347050335
+            ],
+            [
+              -1.5363675153027814,
+              53.796973359686554
+            ],
+            [
+              -1.5363628958756086,
+              53.796974089935766
+            ],
+            [
+              -1.5363581744373547,
+              53.79697453240203
+            ],
+            [
+              -1.53635339970973,
+              53.79697467989079
+            ],
+            [
+              -1.5363486249821054,
+              53.79697453240203
+            ],
+            [
+              -1.5363439035438515,
+              53.796974089935766
+            ],
+            [
+              -1.5363392841166787,
+              53.796973359686554
+            ],
+            [
+              -1.5363348215125117,
+              53.796972347050335
+            ],
+            [
+              -1.5363305614079537,
+              53.79697106551693
+            ],
+            [
+              -1.5363265510021618,
+              53.79696952767685
+            ],
+            [
+              -1.5363228359717396,
+              53.79696774971787
+            ],
+            [
+              -1.5363194559030766,
+              53.79696575322373
+            ],
+            [
+              -1.5363164458149026,
+              53.796963558878815
+            ],
+            [
+              -1.5363138422485,
+              53.796961190065495
             ],
             [
-              -1.535916024914965,
-              53.797678027690466
+              -1.5363116726098311,
+              53.79695867376341
             ],
             [
-              -1.535915930516651,
-              53.79769601412419
+              -1.5363099582146447,
+              53.79695603785155
             ],
             [
-              -1.535885479447616,
-              53.79769595836625
+              -1.5363087219012417,
+              53.79695330930956
             ],
             [
-              -1.5358855738459298,
-              53.79767797193252
+              -1.5363079728049436,
+              53.79695052051301
+            ],
+            [
+              -1.5363077231061775,
+              53.7969477002402
             ]
           ]
         ],
@@ -28037,11 +35136,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 112,
+        "id": 177,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          1877939967
+          2275824808
         ],
         "type": "intersection"
       },
@@ -28052,24 +35151,24 @@
         "coordinates": [
           [
             [
-              -1.5357628255866493,
-              53.79774369346204
+              -1.5357039545348838,
+              53.79689598654527
             ],
             [
-              -1.5357771223635615,
-              53.797744716890115
+              -1.5356604460474466,
+              53.796944413219435
             ],
             [
-              -1.535716320714019,
-              53.79774263945702
+              -1.5355784611117298,
+              53.79691871420293
             ],
             [
-              -1.5357628255866493,
-              53.79772570702831
+              -1.535621969599167,
+              53.79687028752876
             ],
             [
-              -1.5357628255866493,
-              53.79774369346204
+              -1.5357039545348838,
+              53.79689598654527
             ]
           ]
         ],
@@ -28078,11 +35177,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 113,
-        "intersection_kind": "Terminus",
+        "id": 178,
+        "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          1877939969
+          2275824793
         ],
         "type": "intersection"
       },
@@ -28093,28 +35192,24 @@
         "coordinates": [
           [
             [
-              -1.5345456902671024,
-              53.796563690779465
-            ],
-            [
-              -1.5345444813596616,
-              53.796581662824046
+              -1.5357037444225075,
+              53.79685181096472
             ],
             [
-              -1.5345000288890842,
-              53.79657546290034
+              -1.5356594563877028,
+              53.796899989426095
             ],
             [
-              -1.5345115287353053,
-              53.79656155938707
+              -1.5355778901541854,
+              53.79687382905757
             ],
             [
-              -1.5345417849174987,
-              53.79656359904865
+              -1.53562217818899,
+              53.79682565059618
             ],
             [
-              -1.5345456902671024,
-              53.796563690779465
+              -1.5357037444225075,
+              53.79685181096472
             ]
           ]
         ],
@@ -28123,11 +35218,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 114,
+        "id": 180,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          1877939944
+          2275824800
         ],
         "type": "intersection"
       },
@@ -28138,24 +35233,40 @@
         "coordinates": [
           [
             [
-              -1.5345645760201179,
-              53.796377048254655
+              -1.5353067964669935,
+              53.79677149434356
             ],
             [
-              -1.5345950240440462,
-              53.796377352225385
+              -1.535263287979556,
+              53.79681992101772
             ],
             [
-              -1.5345945094209794,
-              53.79639533596115
+              -1.5353078942280323,
+              53.79679522654354
             ],
             [
-              -1.5345640613970513,
-              53.79639503199042
+              -1.535261505069464,
+              53.79679597298054
             ],
             [
-              -1.5345645760201179,
-              53.796377048254655
+              -1.5352593049797263,
+              53.796748282850835
+            ],
+            [
+              -1.5353056941382943,
+              53.796747516628756
+            ],
+            [
+              -1.5353518092372411,
+              53.79673893709987
+            ],
+            [
+              -1.5353075212024365,
+              53.79678711556125
+            ],
+            [
+              -1.5353067964669935,
+              53.79677149434356
             ]
           ]
         ],
@@ -28164,11 +35275,12 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 115,
+        "id": 181,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          1877939939
+          2275824784,
+          2275824798
         ],
         "type": "intersection"
       },
@@ -28179,40 +35291,24 @@
         "coordinates": [
           [
             [
-              -1.5346598970015186,
-              53.796615419762865
-            ],
-            [
-              -1.5346355940033216,
-              53.796626256589185
-            ],
-            [
-              -1.5345988974200275,
-              53.79661019290522
-            ],
-            [
-              -1.5346055342305236,
-              53.796604903095066
-            ],
-            [
-              -1.5346050926900225,
-              53.79660462880195
+              -1.5357014499344557,
+              53.796699485656134
             ],
             [
-              -1.5346271788503938,
-              53.79659224514233
+              -1.5356579505823391,
+              53.79674791412894
             ],
             [
-              -1.5346294687707853,
-              53.79659124239865
+              -1.5355759595564085,
+              53.796722220508364
             ],
             [
-              -1.5346566889813957,
-              53.796612908856716
+              -1.5356194589085252,
+              53.796673792035556
             ],
             [
-              -1.5346598970015186,
-              53.796615419762865
+              -1.5357014499344557,
+              53.796699485656134
             ]
           ]
         ],
@@ -28220,17 +35316,12 @@
       },
       "properties": {
         "control": "Signed",
-        "crossing": {
-          "has_island": false,
-          "kind": "Signalized"
-        },
-        "id": 116,
+        "crossing": null,
+        "id": 182,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #23 -> Road #24"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          301689312
+          2275824761
         ],
         "type": "intersection"
       },
@@ -28241,24 +35332,24 @@
         "coordinates": [
           [
             [
-              -1.5346690779988326,
-              53.79662260444382
+              -1.535702401530363,
+              53.79681394682376
             ],
             [
-              -1.5346853419148043,
-              53.79664090743878
+              -1.535659797439676,
+              53.79686265228765
             ],
             [
-              -1.5346564377600762,
-              53.796646565970825
+              -1.5355773374672823,
+              53.796837488367544
             ],
             [
-              -1.5346447750006358,
-              53.79663344127014
+              -1.5356199415579694,
+              53.796788782903654
             ],
             [
-              -1.5346690779988326,
-              53.79662260444382
+              -1.535702401530363,
+              53.79681394682376
             ]
           ]
         ],
@@ -28267,11 +35358,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 117,
+        "id": 183,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          1877939948
+          2275824758
         ],
         "type": "intersection"
       },
@@ -28282,56 +35373,41 @@
         "coordinates": [
           [
             [
-              -1.5357794853665185,
-              53.79778066097927
-            ],
-            [
-              -1.5357747167291076,
-              53.79780749314111
-            ],
-            [
-              -1.5357140186132,
-              53.79781043212438
-            ],
-            [
-              -1.5357129589159975,
-              53.79780279958123
+              -1.5353023018892038,
+              53.79669184771706
             ],
             [
-              -1.5357058364109502,
-              53.79780212149267
+              -1.535259697798517,
+              53.79674055318094
             ],
             [
-              -1.5357131050811288,
-              53.79777548538297
+              -1.5353041944231445,
+              53.79671581733796
             ],
             [
-              -1.5357739067306713,
-              53.79777756101742
+              -1.5352578052645762,
+              53.796716583560034
             ],
             [
-              -1.5357736387612637,
-              53.79778029855264
+              -1.535304195945698,
+              53.79671584341829
             ],
             [
-              -1.5357794853665185,
-              53.79778066097927
+              -1.5353023018892038,
+              53.79669184771706
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
+        "control": "Signed",
         "crossing": null,
-        "id": 118,
+        "id": 184,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #137 -> Road #136",
-          "Road #136 -> Road #137"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          8174077588
+          2275824776
         ],
         "type": "intersection"
       },
@@ -28342,28 +35418,24 @@
         "coordinates": [
           [
             [
-              -1.5358646905027857,
-              53.79795596755423
-            ],
-            [
-              -1.5357994369069503,
-              53.79791820323798
+              -1.5360992642228837,
+              53.79713251084674
             ],
             [
-              -1.5358498882381277,
-              53.79789805123763
+              -1.5361651359754205,
+              53.79709388857759
             ],
             [
-              -1.535866697228235,
-              53.79791273266416
+              -1.536230522033406,
+              53.797132797730356
             ],
             [
-              -1.5358788487273336,
-              53.797924154948895
+              -1.5361646502808695,
+              53.79717141999949
             ],
             [
-              -1.5358646905027857,
-              53.79795596755423
+              -1.5360992642228837,
+              53.79713251084674
             ]
           ]
         ],
@@ -28372,11 +35444,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 119,
-        "intersection_kind": "Terminus",
+        "id": 185,
+        "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          1877939977
+          2275824802
         ],
         "type": "intersection"
       },
@@ -28387,140 +35459,248 @@
         "coordinates": [
           [
             [
-              -1.5368034482394275,
-              53.79890694178159
+              -1.5363053235619375,
+              53.79724339990862
             ],
             [
-              -1.5367839504199243,
-              53.7989596582202
+              -1.5363055732607036,
+              53.79724057963581
             ],
             [
-              -1.536798306576421,
-              53.79894651283511
+              -1.5363063223570017,
+              53.79723779083926
             ],
             [
-              -1.536789092082931,
-              53.79892008716668
+              -1.5363075586704047,
+              53.79723506229727
             ],
             [
-              -1.536783945852264,
-              53.79895965732088
+              -1.5363092730655914,
+              53.797232426385406
             ],
             [
-              -1.536803452807088,
-              53.79890694268091
+              -1.5363114427042601,
+              53.79722991008333
             ],
             [
-              -1.5368034482394275,
-              53.79890694178159
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 120,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #274 -> Road #140",
-          "Road #274 -> Road #275"
-        ],
-        "osm_node_ids": [
-          2014304918
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.5363140462706626,
+              53.797227541270004
+            ],
             [
-              -1.5364684682093999,
-              53.79904292551581
+              -1.5363170563588366,
+              53.79722534692509
             ],
             [
-              -1.5364230047633305,
-              53.79904032827478
+              -1.5363204364274996,
+              53.79722335043095
             ],
             [
-              -1.53640787058202,
-              53.79900253877752
+              -1.5363241514579218,
+              53.797221572471976
             ],
             [
-              -1.5364523200074907,
-              53.79899632806195
+              -1.5363281618637137,
+              53.79722003463189
             ],
             [
-              -1.536494009043553,
-              53.799007364537694
+              -1.5363324219682717,
+              53.797218753098484
             ],
             [
-              -1.5364685062732362,
-              53.79904269349082
+              -1.5363368845724388,
+              53.797217740462266
             ],
             [
-              -1.5364684682093999,
-              53.79904292551581
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 121,
-        "intersection_kind": "Fork",
-        "movements": [
-          "Road #51 -> Road #52",
-          "Road #141 -> Road #52"
-        ],
-        "osm_node_ids": [
-          9791699
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
+              -1.5363415039996116,
+              53.79721701021306
+            ],
             [
-              -1.5358774388428371,
-              53.79847120693475
+              -1.5363462254378655,
+              53.79721656774679
             ],
             [
-              -1.535880694062117,
-              53.798489090845806
+              -1.53635100016549,
+              53.79721642025803
             ],
             [
-              -1.5358618159218687,
-              53.79849028964161
+              -1.5363557748931147,
+              53.79721656774679
             ],
             [
-              -1.535845655539532,
-              53.798494554225044
+              -1.5363604963313686,
+              53.79721701021306
             ],
             [
-              -1.5358332345484724,
-              53.79847813261105
+              -1.5363651157585414,
+              53.797217740462266
             ],
             [
-              -1.5358327640794558,
-              53.79847682679597
+              -1.5363695783627085,
+              53.797218753098484
             ],
             [
-              -1.5358774388428371,
-              53.79847120603543
+              -1.5363738384672665,
+              53.79722003463189
             ],
             [
-              -1.5358774388428371,
-              53.79847120693475
+              -1.5363778488730584,
+              53.797221572471976
+            ],
+            [
+              -1.5363815639034806,
+              53.79722335043095
+            ],
+            [
+              -1.5363849439721435,
+              53.79722534692509
+            ],
+            [
+              -1.5363879540603176,
+              53.797227541270004
+            ],
+            [
+              -1.53639055762672,
+              53.79722991008333
+            ],
+            [
+              -1.536392727265389,
+              53.797232426385406
+            ],
+            [
+              -1.5363944416605755,
+              53.79723506229727
+            ],
+            [
+              -1.5363956779739785,
+              53.79723779083926
+            ],
+            [
+              -1.5363964270702766,
+              53.79724057963581
+            ],
+            [
+              -1.5363966767690427,
+              53.79724339990862
+            ],
+            [
+              -1.5363964270702766,
+              53.79724622018143
+            ],
+            [
+              -1.5363956779739785,
+              53.79724900897798
+            ],
+            [
+              -1.5363944416605755,
+              53.79725173751998
+            ],
+            [
+              -1.536392727265389,
+              53.79725437343184
+            ],
+            [
+              -1.53639055762672,
+              53.797256889733916
+            ],
+            [
+              -1.5363879540603176,
+              53.797259258547236
+            ],
+            [
+              -1.5363849439721435,
+              53.79726145289215
+            ],
+            [
+              -1.5363815639034806,
+              53.7972634493863
+            ],
+            [
+              -1.5363778488730584,
+              53.79726522734527
+            ],
+            [
+              -1.5363738384672665,
+              53.797266765185356
+            ],
+            [
+              -1.5363695783627085,
+              53.797268046718756
+            ],
+            [
+              -1.5363651157585414,
+              53.797269059354974
+            ],
+            [
+              -1.5363604963313686,
+              53.79726978960419
+            ],
+            [
+              -1.5363557748931147,
+              53.79727023207045
+            ],
+            [
+              -1.53635100016549,
+              53.79727037955921
+            ],
+            [
+              -1.5363462254378655,
+              53.79727023207045
+            ],
+            [
+              -1.5363415039996116,
+              53.79726978960419
+            ],
+            [
+              -1.5363368845724388,
+              53.797269059354974
+            ],
+            [
+              -1.5363324219682717,
+              53.797268046718756
+            ],
+            [
+              -1.5363281618637137,
+              53.797266765185356
+            ],
+            [
+              -1.5363241514579218,
+              53.79726522734527
+            ],
+            [
+              -1.5363204364274996,
+              53.7972634493863
+            ],
+            [
+              -1.5363170563588366,
+              53.79726145289215
+            ],
+            [
+              -1.5363140462706626,
+              53.797259258547236
+            ],
+            [
+              -1.5363114427042601,
+              53.797256889733916
+            ],
+            [
+              -1.5363092730655914,
+              53.79725437343184
+            ],
+            [
+              -1.5363075586704047,
+              53.79725173751998
+            ],
+            [
+              -1.5363063223570017,
+              53.79724900897798
+            ],
+            [
+              -1.5363055732607036,
+              53.79724622018143
+            ],
+            [
+              -1.5363053235619375,
+              53.79724339990862
             ]
           ]
         ],
@@ -28529,11 +35709,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 122,
+        "id": 186,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2014304864
+          2275824804
         ],
         "type": "intersection"
       },
@@ -28544,59 +35724,37 @@
         "coordinates": [
           [
             [
-              -1.5365182998613225,
-              53.798994587874496
-            ],
-            [
-              -1.53648792491996,
-              53.798974439471436
-            ],
-            [
-              -1.5364933558681224,
-              53.79897158322576
-            ],
-            [
-              -1.5364928747412316,
-              53.79897114075949
-            ],
-            [
-              -1.536531331396316,
-              53.798956584338676
+              -1.5357096016856364,
+              53.79737747798019
             ],
             [
-              -1.5365359934549854,
-              53.79895523175886
+              -1.5356667996630007,
+              53.797426122290204
             ],
             [
-              -1.5365561246567243,
-              53.798979448693224
+              -1.5355844432242418,
+              53.79740084055896
             ],
             [
-              -1.5365359645264698,
-              53.79898529608283
+              -1.5356272452468775,
+              53.797352196248944
             ],
             [
-              -1.5365182998613225,
-              53.798994587874496
+              -1.5357096016856364,
+              53.79737747798019
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
-        "crossing": {
-          "has_island": false,
-          "kind": "Unmarked"
-        },
-        "id": 123,
+        "control": "Signed",
+        "crossing": null,
+        "id": 187,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #140 -> Road #141"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          2014304926,
-          2014304923
+          2275824752
         ],
         "type": "intersection"
       },
@@ -28607,32 +35765,32 @@
         "coordinates": [
           [
             [
-              -1.5365161667639364,
-              53.798942607980344
+              -1.5353295160096005,
+              53.79726079728665
             ],
             [
-              -1.536477710108852,
-              53.79895716440116
+              -1.5352867139869648,
+              53.79730944159665
             ],
             [
-              -1.5364691320427049,
-              53.798930664988355
+              -1.5353305954999978,
+              53.7972845366812
             ],
             [
-              -1.5364697943534564,
-              53.79893059034465
+              -1.5352842032963228,
+              53.79728526333312
             ],
             [
-              -1.5365142346436063,
-              53.798936825341904
+              -1.535283125328479,
+              53.797261532931785
             ],
             [
-              -1.536513060754895,
-              53.79893974543942
+              -1.535329517532154,
+              53.79726079728665
             ],
             [
-              -1.5365161667639364,
-              53.798942607980344
+              -1.5353295160096005,
+              53.79726079728665
             ]
           ]
         ],
@@ -28641,11 +35799,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 125,
+        "id": 188,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2014304919
+          2275824807
         ],
         "type": "intersection"
       },
@@ -28656,24 +35814,24 @@
         "coordinates": [
           [
             [
-              -1.5362857359117805,
-              53.79891829122127
+              -1.5357101041282755,
+              53.79748460967607
             ],
             [
-              -1.53630042855259,
-              53.7989388614062
+              -1.5356670950383702,
+              53.797533191033565
             ],
             [
-              -1.5362117976710565,
-              53.79892578886617
+              -1.5355848467009066,
+              53.79750778609525
             ],
             [
-              -1.5362415300948624,
-              53.79891150134254
+              -1.5356278557908116,
+              53.797459204737756
             ],
             [
-              -1.5362857359117805,
-              53.79891829122127
+              -1.5357101041282755,
+              53.79748460967607
             ]
           ]
         ],
@@ -28682,11 +35840,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 126,
+        "id": 189,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2014304916
+          2275824767
         ],
         "type": "intersection"
       },
@@ -28697,32 +35855,24 @@
         "coordinates": [
           [
             [
-              -1.5363208140207556,
-              53.798838782190984
-            ],
-            [
-              -1.5362766234293719,
-              53.79883195813803
-            ],
-            [
-              -1.5363040156885224,
-              53.79881036902163
+              -1.535709913809094,
+              53.79755433048913
             ],
             [
-              -1.5363080032560126,
-              53.7988121343901
+              -1.5356708846739118,
+              53.79760407017295
             ],
             [
-              -1.5363116604294036,
-              53.79881167663536
+              -1.5355866737650485,
+              53.79758101696084
             ],
             [
-              -1.5363211307118736,
-              53.79883806992821
+              -1.535625702900231,
+              53.79753127727702
             ],
             [
-              -1.5363208140207556,
-              53.798838782190984
+              -1.535709913809094,
+              53.79755433048913
             ]
           ]
         ],
@@ -28731,11 +35881,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 127,
+        "id": 191,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2014304912
+          2275824766
         ],
         "type": "intersection"
       },
@@ -28746,32 +35896,24 @@
         "coordinates": [
           [
             [
-              -1.5359456233540671,
-              53.798195651172776
-            ],
-            [
-              -1.535890178047568,
-              53.79823853622671
-            ],
-            [
-              -1.5358543812933638,
-              53.79822178006505
+              -1.5357020041439122,
+              53.79673910257506
             ],
             [
-              -1.5358559449557587,
-              53.79822061454414
+              -1.535658395167947,
+              53.79678749687364
             ],
             [
-              -1.5359226967441906,
-              53.79818377652923
+              -1.5355764635216012,
+              53.79676173850191
             ],
             [
-              -1.5359311682315961,
-              53.79818913109055
+              -1.5356200724975664,
+              53.79671334420332
             ],
             [
-              -1.5359456233540671,
-              53.798195651172776
+              -1.5357020041439122,
+              53.79673910257506
             ]
           ]
         ],
@@ -28780,11 +35922,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 128,
+        "id": 193,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2014304855
+          2275824782
         ],
         "type": "intersection"
       },
@@ -28795,58 +35937,41 @@
         "coordinates": [
           [
             [
-              -1.5358878972624972,
-              53.79825078318944
-            ],
-            [
-              -1.5358203750620187,
-              53.79828712837607
-            ],
-            [
-              -1.535786779920106,
-              53.79826885056211
-            ],
-            [
-              -1.5357896057793123,
-              53.79826703842892
+              -1.5352850239526334,
+              53.796669705517814
             ],
             [
-              -1.5357812682766105,
-              53.79826153817748
+              -1.5352430014773648,
+              53.79668133554586
             ],
             [
-              -1.535849329461011,
-              53.79822554552495
+              -1.5352690082128744,
+              53.796658633069214
             ],
             [
-              -1.5358851277377685,
-              53.79824230258593
+              -1.5352514912354118,
+              53.79664530871911
             ],
             [
-              -1.535880330171842,
-              53.79824587828896
+              -1.5352711078140844,
+              53.79669889210382
             ],
             [
-              -1.5358878972624972,
-              53.79825078318944
+              -1.5352850239526334,
+              53.796669705517814
             ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signalled",
-        "crossing": {
-          "has_island": true,
-          "kind": "Signalized"
-        },
-        "id": 129,
-        "intersection_kind": "Connection",
-        "movements": [
-          "Road #66 -> Road #67"
+          ]
         ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 194,
+        "intersection_kind": "Connection",
+        "movements": [],
         "osm_node_ids": [
-          2014304856
+          2275824778
         ],
         "type": "intersection"
       },
@@ -28857,32 +35982,24 @@
         "coordinates": [
           [
             [
-              -1.5365429347761719,
-              53.7988481468277
-            ],
-            [
-              -1.536497544412668,
-              53.79889497450791
-            ],
-            [
-              -1.5365304224319054,
-              53.798896578897796
+              -1.535704228594505,
+              53.796929346883225
             ],
             [
-              -1.5364859851868624,
-              53.79889033760529
+              -1.5356609728509407,
+              53.7969778526977
             ],
             [
-              -1.5365422313564772,
-              53.798847821273256
+              -1.5355788539305204,
+              53.79695230296859
             ],
             [
-              -1.5365429439114926,
-              53.79884815042499
+              -1.5356221096740847,
+              53.796903797154116
             ],
             [
-              -1.5365429347761719,
-              53.7988481468277
+              -1.535704228594505,
+              53.796929346883225
             ]
           ]
         ],
@@ -28891,11 +36008,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 130,
+        "id": 195,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          7261942269
+          2275824770
         ],
         "type": "intersection"
       },
@@ -28906,36 +36023,40 @@
         "coordinates": [
           [
             [
-              -1.5364384145268157,
-              53.79896160345301
+              -1.5353102587535428,
+              53.796845872743624
             ],
             [
-              -1.5363939651013452,
-              53.79896781416857
+              -1.5352682667293434,
+              53.796894763467776
             ],
             [
-              -1.5363935037676493,
-              53.798966663036815
+              -1.5353113945784178,
+              53.79686963012461
             ],
             [
-              -1.5363849485398038,
-              53.79894016092604
+              -1.5352650054198498,
+              53.796870369367035
             ],
             [
-              -1.536384659254648,
-              53.79893898731124
+              -1.5352620105572101,
+              53.796806941107825
             ],
             [
-              -1.5364298608215237,
-              53.79893510044291
+              -1.5353083997157781,
+              53.79680619467082
             ],
             [
-              -1.5364384388876708,
-              53.798961599855716
+              -1.53535462291602,
+              53.79682057482459
             ],
             [
-              -1.5364384145268157,
-              53.79896160345301
+              -1.5353113671724556,
+              53.79686908063906
+            ],
+            [
+              -1.5353102587535428,
+              53.796845872743624
             ]
           ]
         ],
@@ -28943,17 +36064,13 @@
       },
       "properties": {
         "control": "Signed",
-        "crossing": {
-          "has_island": false,
-          "kind": "Unmarked"
-        },
-        "id": 131,
+        "crossing": null,
+        "id": 196,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #50 -> Road #51"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          2014304920
+          2275824749,
+          2275824811
         ],
         "type": "intersection"
       },
@@ -28964,24 +36081,24 @@
         "coordinates": [
           [
             [
-              -1.5363578257726143,
-              53.79897067131357
+              -1.5357026771125377,
+              53.796780357158774
             ],
             [
-              -1.5363534225480318,
-              53.79898615763301
+              -1.5356587240394926,
+              53.79682864353876
             ],
             [
-              -1.5362992561864321,
-              53.79894270600641
+              -1.535576975099561,
+              53.79680268281964
             ],
             [
-              -1.5363492903379639,
-              53.79894416650483
+              -1.535620928172606,
+              53.79675439643966
             ],
             [
-              -1.5363578257726143,
-              53.79897067131357
+              -1.5357026771125377,
+              53.796780357158774
             ]
           ]
         ],
@@ -28990,11 +36107,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 132,
+        "id": 197,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2014304921
+          2275824803
         ],
         "type": "intersection"
       },
@@ -29005,36 +36122,28 @@
         "coordinates": [
           [
             [
-              -1.5361147059599916,
-              53.79862833552046
-            ],
-            [
-              -1.536106959208029,
-              53.79864573020051
-            ],
-            [
-              -1.53610474541531,
-              53.79864538665963
+              -1.535285036133061,
+              53.79666854449352
             ],
             [
-              -1.5360780276473387,
-              53.79863675676873
+              -1.5352751638964799,
+              53.79672305597821
             ],
             [
-              -1.5360825907400335,
-              53.79863182758657
+              -1.5353034224885445,
+              53.7966983066454
             ],
             [
-              -1.536084789307218,
-              53.79862498284921
+              -1.5352570302848694,
+              53.796699020706825
             ],
             [
-              -1.536114707482545,
-              53.79862833552046
+              -1.5352990527601378,
+              53.79668738977946
             ],
             [
-              -1.5361147059599916,
-              53.79862833552046
+              -1.535285036133061,
+              53.79666854449352
             ]
           ]
         ],
@@ -29043,11 +36152,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 133,
+        "id": 198,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2014304895
+          2275824748
         ],
         "type": "intersection"
       },
@@ -29058,24 +36167,24 @@
         "coordinates": [
           [
             [
-              -1.5361555027797313,
-              53.798723311984425
+              -1.5357080243202603,
+              53.79726812406042
             ],
             [
-              -1.536181439477782,
-              53.79873560751052
+              -1.5356655755300255,
+              53.79731687628904
             ],
             [
-              -1.5361440607905412,
-              53.798751111816394
+              -1.5355830363848524,
+              53.79729180320042
             ],
             [
-              -1.5361325213579304,
-              53.79873511108495
+              -1.5356254851750872,
+              53.79724305097181
             ],
             [
-              -1.5361555027797313,
-              53.798723311984425
+              -1.5357080243202603,
+              53.79726812406042
             ]
           ]
         ],
@@ -29084,11 +36193,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 134,
+        "id": 199,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          6309394782
+          2275824754
         ],
         "type": "intersection"
       },
@@ -29099,36 +36208,38 @@
         "coordinates": [
           [
             [
-              -1.5369471940333612,
-              53.79777643326803
+              -1.53571071923987,
+              53.79741580257385
             ],
             [
-              -1.5369481989186393,
-              53.79780340572404
+              -1.5356664799267759,
+              53.79746399722302
             ],
             [
-              -1.5369025329729609,
-              53.797803999276354
+              -1.5355848862872963,
+              53.79743786653211
             ],
             [
-              -1.5369015280876828,
-              53.79777702682034
+              -1.5356291256003904,
+              53.79738967188293
             ],
             [
-              -1.5369471940333612,
-              53.79777643326803
+              -1.53571071923987,
+              53.79741580257385
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 135,
-        "intersection_kind": "MapEdge",
+        "id": 201,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824759
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -29138,24 +36249,32 @@
         "coordinates": [
           [
             [
-              -1.5333145824745287,
-              53.79977166476398
+              -1.535331030950285,
+              53.79729420618797
             ],
             [
-              -1.5333430648819506,
-              53.799777517549515
+              -1.5352867916371908,
+              53.79734240083714
             ],
             [
-              -1.5333133263679308,
-              53.79982853786743
+              -1.535332095215148,
+              53.79731790601237
             ],
             [
-              -1.5332842897510526,
-              53.79982257176736
+              -1.5352857060565797,
+              53.79731869381816
             ],
             [
-              -1.5333145824745287,
-              53.79977166476398
+              -1.5352846372240565,
+              53.79729493194057
+            ],
+            [
+              -1.5353310294277316,
+              53.797294205288644
+            ],
+            [
+              -1.535331030950285,
+              53.79729420618797
             ]
           ]
         ],
@@ -29164,13 +36283,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 136,
+        "id": 202,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #223 -> Road #159"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          2165840660
+          2275824786
         ],
         "type": "intersection"
       },
@@ -29181,36 +36298,38 @@
         "coordinates": [
           [
             [
-              -1.5323532955144612,
-              53.79962928865121
+              -1.5357058805650003,
+              53.79711275005132
             ],
             [
-              -1.5323835882379373,
-              53.79957838164784
+              -1.53566391899187,
+              53.7971616497687
             ],
             [
-              -1.5324697723760738,
-              53.79959627455211
+              -1.5355811316704842,
+              53.79713686446302
             ],
             [
-              -1.5324394796525977,
-              53.799647181555486
+              -1.5356230932436146,
+              53.79708796474565
             ],
             [
-              -1.5323532955144612,
-              53.79962928865121
+              -1.5357058805650003,
+              53.79711275005132
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 137,
-        "intersection_kind": "MapEdge",
+        "id": 203,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824746
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -29220,24 +36339,24 @@
         "coordinates": [
           [
             [
-              -1.5333819295813602,
-              53.79974343685489
+              -1.5357101482823257,
+              53.79759545736916
             ],
             [
-              -1.5333526782844449,
-              53.79973786825501
+              -1.5356716520408513,
+              53.7976453427431
             ],
             [
-              -1.5333809673275787,
-              53.799686561952804
+              -1.5355871975234359,
+              53.797622604293586
             ],
             [
-              -1.5334096796405718,
-              53.799692028030016
+              -1.5356256937649102,
+              53.797572718919646
             ],
             [
-              -1.5333819295813602,
-              53.79974343685489
+              -1.5357101482823257,
+              53.79759545736916
             ]
           ]
         ],
@@ -29246,13 +36365,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 138,
+        "id": 205,
         "intersection_kind": "Connection",
-        "movements": [
-          "Road #520 -> Road #160"
-        ],
+        "movements": [],
         "osm_node_ids": [
-          2165840661
+          2275824764
         ],
         "type": "intersection"
       },
@@ -29263,36 +36380,38 @@
         "coordinates": [
           [
             [
-              -1.5356171019957818,
-              53.80010949855273
+              -1.535706125696106,
+              53.79714920315656
             ],
             [
-              -1.5355885815245236,
-              53.80016075988885
+              -1.53566447472388,
+              53.79719819640338
             ],
             [
-              -1.53550179445522,
-              53.8001439128957
+              -1.535581529056935,
+              53.79717359455933
             ],
             [
-              -1.5355303149264783,
-              53.80009265155958
+              -1.5356231800291613,
+              53.797124601312504
             ],
             [
-              -1.5356171019957818,
-              53.80010949855273
+              -1.535706125696106,
+              53.79714920315656
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Uncontrolled",
+        "control": "Signed",
         "crossing": null,
-        "id": 139,
-        "intersection_kind": "MapEdge",
+        "id": 207,
+        "intersection_kind": "Connection",
         "movements": [],
-        "osm_node_ids": [],
+        "osm_node_ids": [
+          2275824813
+        ],
         "type": "intersection"
       },
       "type": "Feature"
@@ -29302,24 +36421,40 @@
         "coordinates": [
           [
             [
-              -1.5357014499344557,
-              53.796699485656134
+              -1.5353209881877172,
+              53.79707726641487
             ],
             [
-              -1.5356579505823391,
-              53.79674791412894
+              -1.5352802020258516,
+              53.79712651147177
             ],
             [
-              -1.5355759595564085,
-              53.796722220508364
+              -1.5353220950840767,
+              53.79710102649382
             ],
             [
-              -1.5356194589085252,
-              53.796673792035556
+              -1.5352757059255087,
+              53.797101772930816
             ],
             [
-              -1.5357014499344557,
-              53.796699485656134
+              -1.535272580123272,
+              53.79703513948912
+            ],
+            [
+              -1.5353189692818403,
+              53.79703437326704
+            ],
+            [
+              -1.53536353746648,
+              53.79704759149718
+            ],
+            [
+              -1.5353218864942537,
+              53.79709658474401
+            ],
+            [
+              -1.5353209881877172,
+              53.79707726641487
             ]
           ]
         ],
@@ -29328,11 +36463,12 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 182,
+        "id": 208,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2275824761
+          2275824750,
+          2275824779
         ],
         "type": "intersection"
       },
@@ -29343,24 +36479,24 @@
         "coordinates": [
           [
             [
-              -1.5357020041439122,
-              53.79673910257506
+              -1.5357121580528819,
+              53.7974501827426
             ],
             [
-              -1.535658395167947,
-              53.79678749687364
+              -1.535668040544064,
+              53.79749841696192
             ],
             [
-              -1.5355764635216012,
-              53.79676173850191
+              -1.5355863799122325,
+              53.797472359116064
             ],
             [
-              -1.5356200724975664,
-              53.79671334420332
+              -1.5356304974210504,
+              53.797424124896736
             ],
             [
-              -1.5357020041439122,
-              53.79673910257506
+              -1.5357121580528819,
+              53.7974501827426
             ]
           ]
         ],
@@ -29369,11 +36505,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 193,
+        "id": 209,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2275824782
+          2275824780
         ],
         "type": "intersection"
       },
@@ -29384,64 +36520,41 @@
         "coordinates": [
           [
             [
-              -1.5353985531507635,
-              53.79759613545771
-            ],
-            [
-              -1.5353594783389777,
-              53.79761092210488
-            ],
-            [
-              -1.5353334457200596,
-              53.79762856229976
-            ],
-            [
-              -1.5352874311096405,
-              53.79762500997909
-            ],
-            [
-              -1.535288840994137,
-              53.79738521394533
+              -1.535332658559925,
+              53.797329082782284
             ],
             [
-              -1.5352666787060931,
-              53.79736113011057
+              -1.535288541051107,
+              53.79737731700161
             ],
             [
-              -1.5352874250194268,
-              53.79735446883485
+              -1.5353337959073534,
+              53.797352851854455
             ],
             [
-              -1.5352869667308378,
-              53.797344585289515
+              -1.5352874037036786,
+              53.79735354792944
             ],
             [
-              -1.5353333558894058,
-              53.79734383525523
+              -1.5353337943848,
+              53.79735280598905
             ],
             [
-              -1.5353985531507635,
-              53.79759613545771
+              -1.535332658559925,
+              53.797329082782284
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "control": "Signalled",
+        "control": "Signed",
         "crossing": null,
         "id": 210,
         "intersection_kind": "Connection",
         "movements": [],
         "osm_node_ids": [
-          2275824805,
-          1606819535,
-          2275824763,
-          2275824760,
-          342579529,
-          2275824794,
-          7237437116,
-          5452444894
+          2275824805
         ],
         "type": "intersection"
       },
@@ -31686,32 +38799,32 @@
         "coordinates": [
           [
             [
-              -1.533280455961461,
-              53.79770653348996
+              -1.5332811654713694,
+              53.79770656136893
             ],
             [
-              -1.5332784126947288,
-              53.79772447855489
+              -1.5332791191595303,
+              53.79772450643386
             ],
             [
               -1.5332767500663593,
-              53.7977244129044
+              53.79772441200508
             ],
             [
               -1.5332467892595358,
               53.79772119962802
             ],
             [
-              -1.5332500825426518,
-              53.797705272640954
+              -1.533249132469298,
+              53.79771357607808
             ],
             [
-              -1.5332804574840144,
-              53.79770653348996
+              -1.533250918424497,
+              53.797704487533125
             ],
             [
-              -1.533280455961461,
-              53.79770653348996
+              -1.5332811654713694,
+              53.79770656136893
             ]
           ]
         ],
@@ -36264,6 +43377,92 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.533319460735788,
+              53.79759509674116
+            ],
+            [
+              -1.533380338513003,
+              53.797596103981455
+            ],
+            [
+              -1.5333786347756906,
+              53.79763206335908
+            ],
+            [
+              -1.5333177569984755,
+              53.79763105611879
+            ],
+            [
+              -1.533319460735788,
+              53.79759509674116
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 369,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          7105816303
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5332861670594584,
+              53.79768110786724
+            ],
+            [
+              -1.533255920012586,
+              53.79767903403143
+            ],
+            [
+              -1.5332608515632162,
+              53.79764392361348
+            ],
+            [
+              -1.5332912569556478,
+              53.79764489847819
+            ],
+            [
+              -1.5332948075502972,
+              53.797680810191764
+            ],
+            [
+              -1.5332861670594584,
+              53.79768110786724
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 370,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          7105816305
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -37934,6 +45133,88 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5356566640246723,
+              53.79765958440132
+            ],
+            [
+              -1.5356137371526535,
+              53.79770721607512
+            ],
+            [
+              -1.5355330966316347,
+              53.797681861498816
+            ],
+            [
+              -1.5355760235036535,
+              53.79763422982502
+            ],
+            [
+              -1.5356566640246723,
+              53.79765958440132
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 408,
+        "intersection_kind": "Connection",
+        "movements": [],
+        "osm_node_ids": [
+          7237437115
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.535710618751342,
+              53.79762493713404
+            ],
+            [
+              -1.5356735811160747,
+              53.79767426312989
+            ],
+            [
+              -1.535590072104353,
+              53.797652386230546
+            ],
+            [
+              -1.5356271097396204,
+              53.7976030602347
+            ],
+            [
+              -1.535710618751342,
+              53.79762493713404
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 409,
+        "intersection_kind": "Connection",
+        "movements": [],
+        "osm_node_ids": [
+          6500031460
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -38493,24 +45774,24 @@
         "coordinates": [
           [
             [
-              -1.53632310089604,
-              53.79919498822246
+              -1.5363246067014038,
+              53.79919512222139
             ],
             [
-              -1.53633209918694,
-              53.79915941105655
+              -1.5363079591019624,
+              53.79919362575011
             ],
             [
-              -1.536338900433209,
-              53.79916001090412
+              -1.5363171370541695,
+              53.79915806297334
             ],
             [
-              -1.5363298990972023,
-              53.79919558807003
+              -1.5363336049923038,
+              53.79915954325684
             ],
             [
-              -1.53632310089604,
-              53.79919498822246
+              -1.5363246067014038,
+              53.79919512222139
             ]
           ]
         ],
@@ -38520,10 +45801,54 @@
         "control": "Signed",
         "crossing": null,
         "id": 424,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #510 -> Road #511",
+          "Road #511 -> Road #510"
+        ],
+        "osm_node_ids": [
+          7261942280
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5361517907944158,
+              53.799141871585704
+            ],
+            [
+              -1.536212409737544,
+              53.79914532857826
+            ],
+            [
+              -1.5362096310774946,
+              53.79914838177539
+            ],
+            [
+              -1.5362004531252875,
+              53.799183944552155
+            ],
+            [
+              -1.5361517907944158,
+              53.799141871585704
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 425,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          7261942280
+          7261942279
         ],
         "type": "intersection"
       },
@@ -40641,6 +47966,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5358800378415793,
+              53.800037082472585
+            ],
+            [
+              -1.535868244142542,
+              53.800072373654196
+            ],
+            [
+              -1.535801640041795,
+              53.80003778844011
+            ],
+            [
+              -1.5358617748129255,
+              53.800043486542314
+            ],
+            [
+              -1.5358800378415793,
+              53.800037082472585
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 472,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -1.5358209323165821,
+              53.79996675102011
+            ],
+            [
+              -1.5358810670877128,
+              53.79997244912231
+            ],
+            [
+              -1.5358714201890424,
+              53.80000796783231
+            ],
+            [
+              -1.5358112854179118,
+              53.80000226973011
+            ],
+            [
+              -1.5358209323165821,
+              53.79996675102011
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 473,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          9319419279
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -40927,8 +48332,12 @@
         "coordinates": [
           [
             [
-              -1.5353801622276197,
-              53.79926397518902
+              -1.53537887871506,
+              53.79926454895625
+            ],
+            [
+              -1.5353650965612147,
+              53.799253793068885
             ],
             [
               -1.5353663800737745,
@@ -40947,8 +48356,8 @@
               53.799243191864846
             ],
             [
-              -1.5353801622276197,
-              53.79926397518902
+              -1.53537887871506,
+              53.79926454895625
             ]
           ]
         ],
@@ -40964,7 +48373,8 @@
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          9319419265
+          9319419265,
+          9319419292
         ],
         "type": "intersection"
       },
@@ -41136,8 +48546,12 @@
               53.79690792414134
             ],
             [
-              -1.5338239024875495,
-              53.7968925457405
+              -1.5337549521319334,
+              53.79688263071891
+            ],
+            [
+              -1.5338151995720193,
+              53.79687737508297
             ],
             [
               -1.5338463555833024,
@@ -41154,57 +48568,14 @@
         "intersection_kind": "Intersection",
         "movements": [
           "Road #615 -> Road #616",
-          "Road #615 -> Road #617",
+          "Road #615 -> Road #618",
           "Road #616 -> Road #615",
-          "Road #616 -> Road #617",
-          "Road #617 -> Road #615",
-          "Road #617 -> Road #616"
-        ],
-        "osm_node_ids": [
-          9740274258
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
-    {
-      "geometry": {
-        "coordinates": [
-          [
-            [
-              -1.5337662799296143,
-              53.79690471805952
-            ],
-            [
-              -1.5337540644832708,
-              53.79688454087817
-            ],
-            [
-              -1.533813145647413,
-              53.79687581026324
-            ],
-            [
-              -1.5338213385075368,
-              53.79688934145733
-            ],
-            [
-              -1.5337662799296143,
-              53.79690471805952
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 486,
-        "intersection_kind": "Connection",
-        "movements": [
-          "Road #617 -> Road #618",
-          "Road #618 -> Road #617"
+          "Road #616 -> Road #618",
+          "Road #618 -> Road #615",
+          "Road #618 -> Road #616"
         ],
         "osm_node_ids": [
+          9740274258,
           9740274264
         ],
         "type": "intersection"
@@ -41216,24 +48587,24 @@
         "coordinates": [
           [
             [
-              -1.5337239590338694,
-              53.79681346568666
+              -1.5337193761479795,
+              53.7967403274512
             ],
             [
-              -1.5337830401980113,
-              53.796804735071724
+              -1.5337796235880654,
+              53.79673507181526
             ],
             [
-              -1.533797821146921,
-              53.79683963235044
+              -1.533788519867884,
+              53.79677065887371
             ],
             [
-              -1.5337387399827789,
-              53.79684836296537
+              -1.533728272427798,
+              53.796775914509645
             ],
             [
-              -1.5337239590338694,
-              53.79681346568666
+              -1.5337193761479795,
+              53.7967403274512
             ]
           ]
         ],
@@ -41242,11 +48613,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 487,
+        "id": 488,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          9740274265
+          9740274268
         ],
         "type": "intersection"
       },
@@ -41304,16 +48675,16 @@
               53.79774650474163
             ],
             [
-              -1.5363627786389928,
-              53.79768729789841
+              -1.5363673097580652,
+              53.797696008728266
             ],
             [
-              -1.5363918868158835,
-              53.797682015282824
+              -1.5363964179349558,
+              53.79769072611268
             ],
             [
-              -1.536438291199986,
-              53.79768239659522
+              -1.5364427461913859,
+              53.79769232420732
             ],
             [
               -1.5364279012952313,
@@ -41603,12 +48974,8 @@
               53.79659060927618
             ],
             [
-              -1.536143792821134,
-              53.796571039136964
-            ],
-            [
-              -1.5361138076534548,
-              53.796591960956675
+              -1.5361529494575927,
+              53.79661153199521
             ],
             [
               -1.5360749749276679,
diff --git a/tests/src/neukolln/geometry.json b/tests/src/neukolln/geometry.json
index 50b5b546..57ad88bc 100644
--- a/tests/src/neukolln/geometry.json
+++ b/tests/src/neukolln/geometry.json
@@ -3162,23 +3162,23 @@
         "coordinates": [
           [
             [
-              13.440394627203643,
+              13.440394628679991,
               52.474334234636565
             ],
             [
-              13.440407723884439,
-              52.4743370171376
+              13.440409784865883,
+              52.47433745510722
             ],
             [
-              13.440388277432017,
-              52.474370982715804
+              13.440390335460766,
+              52.47437142068542
             ],
             [
-              13.440375180751223,
+              13.440375179274875,
               52.47436820021477
             ],
             [
-              13.440394627203643,
+              13.440394628679991,
               52.474334234636565
             ]
           ]
@@ -3197,6 +3197,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440438886632517,
+              52.47434418742872
+            ],
+            [
+              13.440543020820304,
+              52.47437028124495
+            ],
+            [
+              13.440520553760408,
+              52.474403548949596
+            ],
+            [
+              13.440416419572623,
+              52.47437745513336
+            ],
+            [
+              13.440438886632517,
+              52.47434418742872
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 67,
+        "id": 88,
+        "layer": 0,
+        "osm_way_ids": [
+          674864365
+        ],
+        "src_i": 66,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440585978110471,
+              52.474119072842996
+            ],
+            [
+              13.440688758487381,
+              52.474142823926464
+            ],
+            [
+              13.440667812065657,
+              52.47417645855432
+            ],
+            [
+              13.440565031688747,
+              52.47415270747085
+            ],
+            [
+              13.440585978110471,
+              52.474119072842996
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 69,
+        "id": 89,
+        "layer": 0,
+        "osm_way_ids": [
+          674864898
+        ],
+        "src_i": 68,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -3246,12 +3326,12 @@
               52.47410801298596
             ],
             [
-              13.440552144649333,
-              52.47411171549299
+              13.440557249859815,
+              52.47411277489383
             ],
             [
-              13.440533096810801,
-              52.47414576560742
+              13.440538202021283,
+              52.47414682500826
             ],
             [
               13.440515259577415,
@@ -3790,6 +3870,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439993800268793,
+              52.47447537326921
+            ],
+            [
+              13.439994293368938,
+              52.47447545690612
+            ],
+            [
+              13.439978452157696,
+              52.474510111364665
+            ],
+            [
+              13.43997795905755,
+              52.47451002772776
+            ],
+            [
+              13.439993800268793,
+              52.47447537326921
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 218,
+        "id": 104,
+        "layer": 0,
+        "osm_way_ids": [
+          773834760
+        ],
+        "src_i": 80,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -3830,6 +3950,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440078251788519,
+              52.47432325391983
+            ],
+            [
+              13.440080730576375,
+              52.47432369458741
+            ],
+            [
+              13.440064186623609,
+              52.474358226738225
+            ],
+            [
+              13.440061707835754,
+              52.47435778607064
+            ],
+            [
+              13.440078251788519,
+              52.47432325391983
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 219,
+        "id": 106,
+        "layer": 0,
+        "osm_way_ids": [
+          773834763
+        ],
+        "src_i": 82,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -3899,7 +4059,7 @@
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 209,
+        "dst_i": 122,
         "id": 108,
         "layer": 0,
         "osm_way_ids": [
@@ -3945,7 +4105,7 @@
         "osm_way_ids": [
           777345620
         ],
-        "src_i": 209,
+        "src_i": 122,
         "type": "road"
       },
       "type": "Feature"
@@ -4112,6 +4272,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439139684382178,
+              52.474086715251815
+            ],
+            [
+              13.439148388928448,
+              52.474097177959315
+            ],
+            [
+              13.439095712841112,
+              52.47411343949249
+            ],
+            [
+              13.439087008294843,
+              52.474102976785
+            ],
+            [
+              13.439139684382178,
+              52.474086715251815
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 94,
+        "id": 118,
+        "layer": 0,
+        "osm_way_ids": [
+          777345626
+        ],
+        "src_i": 93,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -4373,36 +4573,28 @@
               52.47240732569256
             ],
             [
-              13.438835663044935,
-              52.472459959388544
-            ],
-            [
-              13.438816164920343,
-              52.47257913478906
-            ],
-            [
-              13.439114515605919,
-              52.4726535122827
+              13.438834272325366,
+              52.47245888559855
             ],
             [
-              13.439366071973554,
-              52.472698932520125
+              13.438838555210156,
+              52.47253371545095
             ],
             [
-              13.439349288852453,
-              52.4727334215035
+              13.438819476368323,
+              52.47257996126561
             ],
             [
-              13.439094883133683,
-              52.47268748685411
+              13.438762202934127,
+              52.47257119467865
             ],
             [
-              13.438753036291015,
-              52.47260226534062
+              13.43877924441608,
+              52.472529884340936
             ],
             [
-              13.438774536343141,
-              52.472470841179906
+              13.43877592706271,
+              52.472471914969894
             ],
             [
               13.438734694146703,
@@ -4421,11 +4613,10 @@
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 101,
-        "id": 127,
+        "dst_i": 100,
+        "id": 125,
         "layer": 0,
         "osm_way_ids": [
-          795966613,
           795966611
         ],
         "src_i": 98,
@@ -4433,6 +4624,110 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.438790296355258,
+              52.47261155443343
+            ],
+            [
+              13.438732361517275,
+              52.47264239127178
+            ],
+            [
+              13.438638972188334,
+              52.47266700570399
+            ],
+            [
+              13.438559869476467,
+              52.472677454921666
+            ],
+            [
+              13.438547355953029,
+              52.47264229864166
+            ],
+            [
+              13.438620827874619,
+              52.47263259406227
+            ],
+            [
+              13.438700439926457,
+              52.47261160929205
+            ],
+            [
+              13.438751438882761,
+              52.47258446506819
+            ],
+            [
+              13.438790296355258,
+              52.47261155443343
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 99,
+        "id": 126,
+        "layer": 0,
+        "osm_way_ids": [
+          795966611
+        ],
+        "src_i": 100,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.438819473415627,
+              52.47257995946697
+            ],
+            [
+              13.439114515605919,
+              52.4726535122827
+            ],
+            [
+              13.439366071973554,
+              52.472698932520125
+            ],
+            [
+              13.439349288852453,
+              52.4727334215035
+            ],
+            [
+              13.439094883133683,
+              52.47268748685411
+            ],
+            [
+              13.438797106747378,
+              52.472613252352616
+            ],
+            [
+              13.438819473415627,
+              52.47257995946697
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 101,
+        "id": 127,
+        "layer": 0,
+        "osm_way_ids": [
+          795966613
+        ],
+        "src_i": 100,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -5899,24 +6194,24 @@
         "coordinates": [
           [
             [
-              13.441343347453389,
-              52.47290021868072
+              13.441439293816613,
+              52.47291957208156
             ],
             [
-              13.441242357886287,
-              52.47288483128814
+              13.441241250625483,
+              52.472884968884344
             ],
             [
-              13.441256687317443,
-              52.47284993401276
+              13.44125753178835,
+              52.472850389968805
             ],
             [
-              13.441357676884545,
-              52.47286532140534
+              13.44145557497948,
+              52.472884993166026
             ],
             [
-              13.441343347453389,
-              52.47290021868072
+              13.441439293816613,
+              52.47291957208156
             ]
           ]
         ],
@@ -5924,12 +6219,13 @@
       },
       "properties": {
         "dst_i": 135,
-        "id": 169,
+        "id": 170,
         "layer": 0,
         "osm_way_ids": [
+          858527792,
           858527791
         ],
-        "src_i": 136,
+        "src_i": 137,
         "type": "road"
       },
       "type": "Feature"
@@ -6140,24 +6436,24 @@
         "coordinates": [
           [
             [
-              13.441268188066331,
-              52.47310218652709
+              13.441348888186454,
+              52.47311829067899
             ],
             [
               13.441156034357627,
               52.47307979341924
             ],
             [
-              13.441174426697762,
-              52.47304561020521
+              13.441174423745066,
+              52.473045608406565
             ],
             [
-              13.441286580406468,
-              52.47306800331306
+              13.441367277573892,
+              52.47308410566632
             ],
             [
-              13.441268188066331,
-              52.47310218652709
+              13.441348888186454,
+              52.47311829067899
             ]
           ]
         ],
@@ -6165,12 +6461,13 @@
       },
       "properties": {
         "dst_i": 143,
-        "id": 178,
+        "id": 179,
         "layer": 0,
         "osm_way_ids": [
+          858527803,
           858527802
         ],
-        "src_i": 145,
+        "src_i": 146,
         "type": "road"
       },
       "type": "Feature"
@@ -6180,37 +6477,37 @@
         "coordinates": [
           [
             [
-              13.43999959345732,
-              52.4736459298565
+              13.440218268608108,
+              52.47353592214038
             ],
             [
-              13.439999098880829,
-              52.4736477365936
+              13.440038213237832,
+              52.473507008051605
             ],
             [
-              13.43994084810443,
-              52.47364181905747
+              13.440053266079381,
+              52.47347222409075
             ],
             [
-              13.439941342680923,
-              52.473640012320374
+              13.440233321449657,
+              52.47350113817952
             ],
             [
-              13.43999959345732,
-              52.4736459298565
+              13.440218268608108,
+              52.47353592214038
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 244,
-        "id": 182,
+        "dst_i": 152,
+        "id": 180,
         "layer": 0,
         "osm_way_ids": [
-          858527806
+          858527804
         ],
-        "src_i": 149,
+        "src_i": 147,
         "type": "road"
       },
       "type": "Feature"
@@ -6220,15 +6517,95 @@
         "coordinates": [
           [
             [
-              13.439994178213814,
-              52.47366575270322
+              13.439980877797032,
+              52.47349780079706
             ],
             [
-              13.43999218957341,
-              52.47367305969122
+              13.439792577024633,
+              52.47346756200757
             ],
             [
-              13.439933929938924,
+              13.439807629866182,
+              52.47343277804671
+            ],
+            [
+              13.439995930638581,
+              52.4734630168362
+            ],
+            [
+              13.439980877797032,
+              52.47349780079706
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 148,
+        "id": 181,
+        "layer": 0,
+        "osm_way_ids": [
+          858527804
+        ],
+        "src_i": 152,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.43999959345732,
+              52.4736459298565
+            ],
+            [
+              13.439999098880829,
+              52.4736477365936
+            ],
+            [
+              13.43994084810443,
+              52.47364181905747
+            ],
+            [
+              13.439941342680923,
+              52.473640012320374
+            ],
+            [
+              13.43999959345732,
+              52.4736459298565
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 244,
+        "id": 182,
+        "layer": 0,
+        "osm_way_ids": [
+          858527806
+        ],
+        "src_i": 149,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439994178213814,
+              52.47366575270322
+            ],
+            [
+              13.43999218957341,
+              52.47367305969122
+            ],
+            [
+              13.439933929938924,
               52.47366717632931
             ],
             [
@@ -6260,8 +6637,8 @@
         "coordinates": [
           [
             [
-              13.440033742856878,
-              52.473523072633355
+              13.440038213237832,
+              52.473507007152286
             ],
             [
               13.440004478691991,
@@ -6272,12 +6649,12 @@
               52.473622229135046
             ],
             [
-              13.439975518654737,
-              52.473517061567776
+              13.439979989035692,
+              52.473500996086706
             ],
             [
-              13.440033742856878,
-              52.473523072633355
+              13.440038213237832,
+              52.473507007152286
             ]
           ]
         ],
@@ -6296,6 +6673,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439499632724477,
+              52.47359649504745
+            ],
+            [
+              13.439498705578098,
+              52.473599054516725
+            ],
+            [
+              13.439441039435403,
+              52.47359130236453
+            ],
+            [
+              13.439441966581784,
+              52.47358874289525
+            ],
+            [
+              13.439499632724477,
+              52.47359649504745
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 243,
+        "id": 186,
+        "layer": 0,
+        "osm_way_ids": [
+          858527809
+        ],
+        "src_i": 153,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6336,6 +6753,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.441156261715179,
+              52.47385681897315
+            ],
+            [
+              13.441156478738296,
+              52.47385626589036
+            ],
+            [
+              13.441213914570742,
+              52.47386462958125
+            ],
+            [
+              13.441213697547624,
+              52.47386518266403
+            ],
+            [
+              13.441156261715179,
+              52.47385681897315
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 303,
+        "id": 188,
+        "layer": 0,
+        "osm_way_ids": [
+          858659607
+        ],
+        "src_i": 155,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6376,6 +6833,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440744855272428,
+              52.47224003478778
+            ],
+            [
+              13.440744570337314,
+              52.47224076953353
+            ],
+            [
+              13.440687099072521,
+              52.47223249937209
+            ],
+            [
+              13.440687384007635,
+              52.47223176462634
+            ],
+            [
+              13.440744855272428,
+              52.47224003478778
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 266,
+        "id": 190,
+        "layer": 0,
+        "osm_way_ids": [
+          859834441
+        ],
+        "src_i": 156,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6416,6 +6913,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.438233735402786,
+              52.47324843870235
+            ],
+            [
+              13.438204178921048,
+              52.473290907366284
+            ],
+            [
+              13.438149807986507,
+              52.47327686715746
+            ],
+            [
+              13.438179364468246,
+              52.473234398493524
+            ],
+            [
+              13.438233735402786,
+              52.47324843870235
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 248,
+        "id": 192,
+        "layer": 0,
+        "osm_way_ids": [
+          859834444,
+          1151204863
+        ],
+        "src_i": 304,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6451,7 +6989,7 @@
         "osm_way_ids": [
           859834444
         ],
-        "src_i": 158,
+        "src_i": 248,
         "type": "road"
       },
       "type": "Feature"
@@ -6461,24 +6999,24 @@
         "coordinates": [
           [
             [
-              13.438428666452882,
-              52.47336823913138
+              13.438468459929846,
+              52.473309935212704
             ],
             [
-              13.438428121680566,
-              52.47336894869613
+              13.438428579348365,
+              52.473367539459176
             ],
             [
-              13.438374627696584,
-              52.47335370879228
+              13.43837416707609,
+              52.47335356040422
             ],
             [
-              13.438375172468898,
-              52.473352999227544
+              13.438414047657568,
+              52.47329595615775
             ],
             [
-              13.438428666452882,
-              52.47336823913138
+              13.438468459929846,
+              52.473309935212704
             ]
           ]
         ],
@@ -6489,9 +7027,10 @@
         "id": 194,
         "layer": 0,
         "osm_way_ids": [
-          859834445
+          859834445,
+          1151204866
         ],
-        "src_i": 160,
+        "src_i": 305,
         "type": "road"
       },
       "type": "Feature"
@@ -6542,23 +7081,23 @@
           [
             [
               13.438700565416015,
-              52.47346886332593
+              52.47346886422525
             ],
             [
               13.438692197477028,
-              52.47348079102831
+              52.473480791927635
             ],
             [
               13.438637894454486,
-              52.47346665549139
+              52.47346665639072
             ],
             [
               13.43864626239347,
-              52.47345472778901
+              52.47345472868833
             ],
             [
               13.438700565416015,
-              52.47346886332593
+              52.47346886422525
             ]
           ]
         ],
@@ -6571,7 +7110,47 @@
         "osm_way_ids": [
           859834446
         ],
-        "src_i": 250,
+        "src_i": 162,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439160771056937,
+              52.473551633288736
+            ],
+            [
+              13.439159536830227,
+              52.473555196400916
+            ],
+            [
+              13.439101755532409,
+              52.47354776980314
+            ],
+            [
+              13.43910298975912,
+              52.47354420669096
+            ],
+            [
+              13.439160771056937,
+              52.473551633288736
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 241,
+        "id": 198,
+        "layer": 0,
+        "osm_way_ids": [
+          859834447
+        ],
+        "src_i": 164,
         "type": "road"
       },
       "type": "Feature"
@@ -6656,6 +7235,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440182495226038,
+              52.47471033362781
+            ],
+            [
+              13.440172296615856,
+              52.47470850350835
+            ],
+            [
+              13.4401889852507,
+              52.47467399653855
+            ],
+            [
+              13.440199183860882,
+              52.474675826658
+            ],
+            [
+              13.440182495226038,
+              52.47471033362781
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 215,
+        "id": 201,
+        "layer": 0,
+        "osm_way_ids": [
+          862829127
+        ],
+        "src_i": 166,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -7901,8 +8520,8 @@
         "coordinates": [
           [
             [
-              13.439129419336346,
-              52.47407474707996
+              13.439130327290206,
+              52.47407448897466
             ],
             [
               13.439171885002718,
@@ -7913,12 +8532,12 @@
               52.47407491435378
             ],
             [
-              13.439138776428319,
-              52.47408697425644
+              13.439139684382178,
+              52.47408671615114
             ],
             [
-              13.439129419336346,
-              52.47407474707996
+              13.439130327290206,
+              52.47407448897466
             ]
           ]
         ],
@@ -8565,7 +9184,7 @@
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 209,
+        "dst_i": 122,
         "id": 253,
         "layer": 0,
         "osm_way_ids": [
@@ -8611,7 +9230,7 @@
         "osm_way_ids": [
           951803977
         ],
-        "src_i": 209,
+        "src_i": 122,
         "type": "road"
       },
       "type": "Feature"
@@ -8969,12 +9588,12 @@
               52.47436823259035
             ],
             [
-              13.44018847591073,
-              52.474674836504924
+              13.440188983774352,
+              52.47467399653855
             ],
             [
-              13.440167697792647,
-              52.47467016902581
+              13.44016820565627,
+              52.47466932905944
             ],
             [
               13.4403533189939,
@@ -9049,12 +9668,12 @@
               52.47480191964027
             ],
             [
-              13.439978745950896,
-              52.474509605046606
+              13.439978474302912,
+              52.47451011406263
             ],
             [
-              13.439999804575049,
-              52.474513779697475
+              13.439999532927065,
+              52.4745142887135
             ],
             [
               13.439843637987542,
@@ -9089,12 +9708,12 @@
               52.474475235673005
             ],
             [
-              13.440064552757848,
-              52.4743575846226
+              13.440064188099957,
+              52.474358226738225
             ],
             [
-              13.440085478510703,
-              52.47436199669437
+              13.440085113852811,
+              52.47436263880999
             ],
             [
               13.440018626532376,
@@ -10354,12 +10973,12 @@
               52.47353246784611
             ],
             [
-              13.43910206851813,
-              52.47354781297058
+              13.439101755532409,
+              52.4735477680045
             ],
             [
-              13.43909807942654,
-              52.47355832783873
+              13.439097766440819,
+              52.47355828287265
             ],
             [
               13.438989089531038,
@@ -10470,24 +11089,24 @@
         "coordinates": [
           [
             [
-              13.439498250862993,
-              52.47359900055743
+              13.439498705578098,
+              52.473599054516725
             ],
             [
-              13.43966930051206,
-              52.473619205615826
+              13.439662504883415,
+              52.47361840342096
             ],
             [
-              13.439665928533824,
-              52.47362979962428
+              13.439659132905179,
+              52.47362899742941
             ],
             [
-              13.439494878884757,
-              52.47360959456588
+              13.439495333599861,
+              52.473609648525176
             ],
             [
-              13.439498250862993,
-              52.47359900055743
+              13.439498705578098,
+              52.473599054516725
             ]
           ]
         ],
@@ -10510,8 +11129,8 @@
         "coordinates": [
           [
             [
-              13.439720227127324,
-              52.47362093770923
+              13.439721991362873,
+              52.47362110768101
             ],
             [
               13.439940518878885,
@@ -10522,12 +11141,12 @@
               52.47365987024063
             ],
             [
-              13.439715626827768,
-              52.473638704706765
+              13.439717391063317,
+              52.47363887467855
             ],
             [
-              13.439720227127324,
-              52.47362093770923
+              13.439721991362873,
+              52.47362110768101
             ]
           ]
         ],
@@ -10625,6 +11244,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439722156713819,
+              52.473620643631065
+            ],
+            [
+              13.43972198693383,
+              52.473621113976264
+            ],
+            [
+              13.439664311933049,
+              52.47361338880371
+            ],
+            [
+              13.43966448171304,
+              52.473612918458514
+            ],
+            [
+              13.439722156713819,
+              52.473620643631065
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 247,
+        "id": 307,
+        "layer": 0,
+        "osm_way_ids": [
+          1008961851
+        ],
+        "src_i": 246,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -10634,12 +11293,12 @@
               52.47320375950592
             ],
             [
-              13.438150228745613,
-              52.47327702184078
+              13.438149807986507,
+              52.47327686715746
             ],
             [
-              13.438138816577588,
-              52.47328858351927
+              13.438138395818482,
+              52.47328842883596
             ],
             [
               13.43793880098588,
@@ -10654,7 +11313,7 @@
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 158,
+        "dst_i": 248,
         "id": 309,
         "layer": 0,
         "osm_way_ids": [
@@ -10674,12 +11333,12 @@
               52.47329559732843
             ],
             [
-              13.438374624743888,
-              52.47335371508753
+              13.438374165599742,
+              52.4733535595049
             ],
             [
-              13.43836386807426,
-              52.47336550699236
+              13.438363408930114,
+              52.47336535140972
             ],
             [
               13.43819218802471,
@@ -10700,7 +11359,7 @@
         "osm_way_ids": [
           1008961852
         ],
-        "src_i": 158,
+        "src_i": 248,
         "type": "road"
       },
       "type": "Feature"
@@ -10714,12 +11373,12 @@
               52.473370789607436
             ],
             [
-              13.43865711650205,
-              52.47344144840626
+              13.438655808457952,
+              52.473441045510185
             ],
             [
-              13.438647133438637,
-              52.473453488523845
+              13.43864582539454,
+              52.47345308562777
             ],
             [
               13.438417490500496,
@@ -10734,7 +11393,7 @@
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 250,
+        "dst_i": 162,
         "id": 311,
         "layer": 0,
         "osm_way_ids": [
@@ -10780,7 +11439,7 @@
         "osm_way_ids": [
           1008961852
         ],
-        "src_i": 250,
+        "src_i": 162,
         "type": "road"
       },
       "type": "Feature"
@@ -10945,6 +11604,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440720164832838,
+              52.472413724365744
+            ],
+            [
+              13.440696277526417,
+              52.47247835681052
+            ],
+            [
+              13.440638664532242,
+              52.47247045537094
+            ],
+            [
+              13.440662551838662,
+              52.47240582292616
+            ],
+            [
+              13.440720164832838,
+              52.472413724365744
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 259,
+        "id": 318,
+        "layer": 0,
+        "osm_way_ids": [
+          1009973418
+        ],
+        "src_i": 258,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -10985,6 +11684,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440724028434872,
+              52.47240330392636
+            ],
+            [
+              13.440723705114717,
+              52.4724041591812
+            ],
+            [
+              13.440666157079841,
+              52.47239608687052
+            ],
+            [
+              13.440666480399996,
+              52.47239523161568
+            ],
+            [
+              13.440724028434872,
+              52.47240330392636
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 258,
+        "id": 320,
+        "layer": 0,
+        "osm_way_ids": [
+          1009973419
+        ],
+        "src_i": 262,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -11230,8 +11969,8 @@
         "coordinates": [
           [
             [
-              13.4407443843175,
-              52.47224073985591
+              13.44074457329001,
+              52.47224076593624
             ],
             [
               13.44101668927626,
@@ -11242,12 +11981,12 @@
               52.47229629095117
             ],
             [
-              13.4407377879958,
-              52.47225827123119
+              13.440737976968311,
+              52.47225829731152
             ],
             [
-              13.4407443843175,
-              52.47224073985591
+              13.44074457329001,
+              52.47224076593624
             ]
           ]
         ],
@@ -12822,8 +13561,8 @@
         "coordinates": [
           [
             [
-              13.44115659389342,
-              52.47385629287001
+              13.4411564757856,
+              52.4738562757829
             ],
             [
               13.440775570687142,
@@ -12834,12 +13573,12 @@
               52.47378902811091
             ],
             [
-              13.44116162233382,
-              52.47384315558007
+              13.441161504226,
+              52.47384313849296
             ],
             [
-              13.44115659389342,
-              52.47385629287001
+              13.4411564757856,
+              52.4738562757829
             ]
           ]
         ],
@@ -15694,24 +16433,24 @@
         "coordinates": [
           [
             [
-              13.440404273659771,
-              52.47437438305077
+              13.440390333984418,
+              52.47437142068542
             ],
             [
-              13.440423726017583,
-              52.47434041747257
+              13.440416419572623,
+              52.47437745513336
             ],
             [
-              13.440407725360787,
-              52.4743370171376
+              13.440438886632517,
+              52.47434418742872
             ],
             [
-              13.440388273002974,
-              52.474370982715804
+              13.44040978634223,
+              52.47433745510722
             ],
             [
-              13.440404273659771,
-              52.47437438305077
+              13.440390333984418,
+              52.47437142068542
             ]
           ]
         ],
@@ -15721,10 +16460,54 @@
         "control": "Signed",
         "crossing": null,
         "id": 66,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #88 -> Road #87",
+          "Road #87 -> Road #88"
+        ],
+        "osm_node_ids": [
+          6320139597
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440575166815977,
+              52.47441723392639
+            ],
+            [
+              13.440597633875873,
+              52.474383966221744
+            ],
+            [
+              13.440543019343956,
+              52.47437028124495
+            ],
+            [
+              13.440520555236755,
+              52.474403548949596
+            ],
+            [
+              13.440575166815977,
+              52.47441723392639
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 67,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          6320139597
+          6320139598
         ],
         "type": "intersection"
       },
@@ -15735,24 +16518,24 @@
         "coordinates": [
           [
             [
-              13.440552175652634,
-              52.47414972532042
+              13.440585976634125,
+              52.474119072842996
             ],
             [
-              13.440571223491165,
-              52.474115675205994
+              13.440557248383467,
+              52.47411277489383
             ],
             [
-              13.440552143172985,
-              52.47411171459366
+              13.440538200544935,
+              52.47414682500826
             ],
             [
-              13.44053309828715,
-              52.4741457647081
+              13.440565030212401,
+              52.47415270747085
             ],
             [
-              13.440552175652634,
-              52.47414972532042
+              13.440585976634125,
+              52.474119072842996
             ]
           ]
         ],
@@ -15762,10 +16545,54 @@
         "control": "Signed",
         "crossing": null,
         "id": 68,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #89 -> Road #91",
+          "Road #91 -> Road #89"
+        ],
+        "osm_node_ids": [
+          6320148742
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440723027471105,
+              52.47418921722986
+            ],
+            [
+              13.440743973892827,
+              52.47415558260201
+            ],
+            [
+              13.440688759963729,
+              52.474142823926464
+            ],
+            [
+              13.440667813542005,
+              52.47417645855432
+            ],
+            [
+              13.440723027471105,
+              52.47418921722986
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 69,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          6320148742
+          6320148743
         ],
         "type": "intersection"
       },
@@ -16171,6 +16998,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439985497289108,
+              52.47447396942819
+            ],
+            [
+              13.439969703320994,
+              52.474508631081314
+            ],
+            [
+              13.439977982679116,
+              52.474510032224366
+            ],
+            [
+              13.43999377664723,
+              52.4744753687726
+            ],
+            [
+              13.439985497289108,
+              52.47447396942819
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 80,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          6331736871
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -16231,6 +17099,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440068568423698,
+              52.47432153261828
+            ],
+            [
+              13.440052030376323,
+              52.474356066567736
+            ],
+            [
+              13.440061710788449,
+              52.47435778696996
+            ],
+            [
+              13.440078248835825,
+              52.47432325302051
+            ],
+            [
+              13.440068568423698,
+              52.47432153261828
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 82,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          4853583605
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -16522,12 +17431,16 @@
               52.47410217548945
             ],
             [
-              13.439138776428319,
-              52.47408697425644
+              13.439087008294843,
+              52.47410297588567
+            ],
+            [
+              13.439139684382178,
+              52.47408671615114
             ],
             [
-              13.439129419336346,
-              52.47407474707996
+              13.439130327290206,
+              52.47407448897466
             ],
             [
               13.439133367090202,
@@ -16559,7 +17472,11 @@
         "id": 93,
         "intersection_kind": "Intersection",
         "movements": [
+          "Road #118 -> Road #120",
+          "Road #118 -> Road #115",
+          "Road #120 -> Road #118",
           "Road #120 -> Road #115",
+          "Road #115 -> Road #118",
           "Road #115 -> Road #120"
         ],
         "osm_node_ids": [
@@ -16571,6 +17488,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439151976453454,
+              52.47414523950428
+            ],
+            [
+              13.43917182447246,
+              52.474111360260956
+            ],
+            [
+              13.4391483874521,
+              52.474097178858635
+            ],
+            [
+              13.439095711364764,
+              52.47411343859317
+            ],
+            [
+              13.439151976453454,
+              52.47414523950428
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 94,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          7253667186
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -16760,8 +17718,8 @@
         "id": 98,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #127 -> Road #128",
-          "Road #128 -> Road #127"
+          "Road #125 -> Road #128",
+          "Road #128 -> Road #125"
         ],
         "osm_node_ids": [
           7445027393
@@ -16775,24 +17733,24 @@
         "coordinates": [
           [
             [
-              13.4394059082646,
-              52.47274364409213
+              13.438489642567207,
+              52.47264992219087
             ],
             [
-              13.4394226913857,
-              52.47270915510875
+              13.438502156090646,
+              52.47268507847087
             ],
             [
-              13.439366071973554,
-              52.472698932520125
+              13.438559869476467,
+              52.472677454921666
             ],
             [
-              13.439349288852453,
-              52.4727334215035
+              13.438547355953029,
+              52.47264229864166
             ],
             [
-              13.4394059082646,
-              52.47274364409213
+              13.438489642567207,
+              52.47264992219087
             ]
           ]
         ],
@@ -16801,11 +17759,108 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 101,
+        "id": 99,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          7445025264
+          7618615341
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.438751437406413,
+              52.47258446506819
+            ],
+            [
+              13.43879029487891,
+              52.47261155443343
+            ],
+            [
+              13.438797108223726,
+              52.472613252352616
+            ],
+            [
+              13.438819474891975,
+              52.47257995946697
+            ],
+            [
+              13.438762202934127,
+              52.472571192880004
+            ],
+            [
+              13.438758215318883,
+              52.47258085698992
+            ],
+            [
+              13.438751437406413,
+              52.47258446506819
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 100,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #126 -> Road #127",
+          "Road #126 -> Road #125",
+          "Road #127 -> Road #126",
+          "Road #127 -> Road #125",
+          "Road #125 -> Road #126",
+          "Road #125 -> Road #127"
+        ],
+        "osm_node_ids": [
+          7445025281
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.4394059082646,
+              52.47274364409213
+            ],
+            [
+              13.4394226913857,
+              52.47270915510875
+            ],
+            [
+              13.439366071973554,
+              52.472698932520125
+            ],
+            [
+              13.439349288852453,
+              52.4727334215035
+            ],
+            [
+              13.4394059082646,
+              52.47274364409213
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 101,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          7445025264
         ],
         "type": "intersection"
       },
@@ -17589,6 +18644,68 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.438397673484793,
+              52.47417180276639
+            ],
+            [
+              13.438475060680588,
+              52.47426888093587
+            ],
+            [
+              13.43846983440959,
+              52.474262479564715
+            ],
+            [
+              13.438492741421113,
+              52.47429069488061
+            ],
+            [
+              13.43854842630514,
+              52.474271974602175
+            ],
+            [
+              13.43852158630324,
+              52.47424507769175
+            ],
+            [
+              13.438528232820763,
+              52.47425322824341
+            ],
+            [
+              13.438451436164064,
+              52.474155977404195
+            ],
+            [
+              13.438397673484793,
+              52.47417180276639
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 122,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #108 -> Road #109",
+          "Road #109 -> Road #108"
+        ],
+        "osm_node_ids": [
+          7997479989,
+          8809882484,
+          7997479994
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -17936,12 +19053,12 @@
               52.47288045968584
             ],
             [
-              13.441242357886287,
-              52.47288483128814
+              13.441241250625483,
+              52.472884968884344
             ],
             [
-              13.441256687317443,
-              52.47284993401276
+              13.44125753178835,
+              52.472850389968805
             ],
             [
               13.441228059458432,
@@ -17961,8 +19078,8 @@
         "id": 135,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #169 -> Road #167",
-          "Road #167 -> Road #169"
+          "Road #170 -> Road #167",
+          "Road #167 -> Road #170"
         ],
         "osm_node_ids": [
           8003428163
@@ -17976,24 +19093,24 @@
         "coordinates": [
           [
             [
-              13.44140063565106,
-              52.47290894839549
+              13.441496059387186,
+              52.47292948980017
             ],
             [
-              13.441414965082219,
-              52.472874051120115
+              13.441512340550053,
+              52.472894910884634
             ],
             [
-              13.441357676884545,
-              52.47286532140534
+              13.44145557497948,
+              52.472884993166026
             ],
             [
-              13.441343347453389,
-              52.47290021868072
+              13.441439293816613,
+              52.47291957208156
             ],
             [
-              13.44140063565106,
-              52.47290894839549
+              13.441496059387186,
+              52.47292948980017
             ]
           ]
         ],
@@ -18002,11 +19119,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 136,
+        "id": 137,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          8003428166
+          8003428164
         ],
         "type": "intersection"
       },
@@ -18203,12 +19320,12 @@
               52.4730741834511
             ],
             [
-              13.44115603288128,
+              13.441156034357627,
               52.47307979341924
             ],
             [
-              13.441174425221414,
-              52.47304561020521
+              13.441174423745066,
+              52.473045608406565
             ],
             [
               13.441146383472455,
@@ -18228,8 +19345,8 @@
         "id": 143,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #178 -> Road #176",
-          "Road #176 -> Road #178"
+          "Road #179 -> Road #176",
+          "Road #176 -> Road #179"
         ],
         "osm_node_ids": [
           8003428182
@@ -18295,24 +19412,24 @@
         "coordinates": [
           [
             [
-              13.4413243040439,
-              52.473113391174905
+              13.44140500564037,
+              52.47312949262884
             ],
             [
-              13.441342696384035,
-              52.47307920796088
+              13.441423395027808,
+              52.47309530761617
             ],
             [
-              13.441286580406468,
-              52.47306800331306
+              13.441367277573892,
+              52.47308410566632
             ],
             [
-              13.441268188066331,
-              52.47310218652709
+              13.441348888186454,
+              52.47311829067899
             ],
             [
-              13.4413243040439,
-              52.473113391174905
+              13.44140500564037,
+              52.47312949262884
             ]
           ]
         ],
@@ -18321,11 +19438,93 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 145,
+        "id": 146,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8003428183
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440275373738661,
+              52.473545091623414
+            ],
+            [
+              13.44029042658021,
+              52.47351030766256
+            ],
+            [
+              13.440233322926003,
+              52.47350113817952
+            ],
+            [
+              13.440218270084456,
+              52.47353592214038
+            ],
+            [
+              13.440275373738661,
+              52.473545091623414
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 147,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8003429385
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439750526211975,
+              52.47342360766435
+            ],
+            [
+              13.439735473370428,
+              52.47345839162521
+            ],
+            [
+              13.439792577024633,
+              52.47346756200757
+            ],
+            [
+              13.439807629866182,
+              52.47343277804671
+            ],
+            [
+              13.439750526211975,
+              52.47342360766435
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 148,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          8003428181
+          8003428184
         ],
         "type": "intersection"
       },
@@ -18432,24 +19631,28 @@
         "coordinates": [
           [
             [
-              13.440043612241514,
-              52.473487605188076
+              13.439979989035692,
+              52.473500996986026
             ],
             [
-              13.439985388039375,
-              52.473481594122504
+              13.440038213237832,
+              52.473507008051605
             ],
             [
-              13.439975518654737,
-              52.473517061567776
+              13.440053266079381,
+              52.47347222409075
             ],
             [
-              13.440033742856878,
-              52.473523072633355
+              13.439995930638581,
+              52.4734630168362
             ],
             [
-              13.440043612241514,
-              52.473487605188076
+              13.439980877797032,
+              52.47349780079706
+            ],
+            [
+              13.439979989035692,
+              52.473500996986026
             ]
           ]
         ],
@@ -18459,10 +19662,58 @@
         "control": "Signed",
         "crossing": null,
         "id": 152,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #184 -> Road #180",
+          "Road #184 -> Road #181",
+          "Road #180 -> Road #184",
+          "Road #180 -> Road #181",
+          "Road #181 -> Road #184",
+          "Road #181 -> Road #180"
+        ],
+        "osm_node_ids": [
+          8003429393
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439501633175665,
+              52.47359097681011
+            ],
+            [
+              13.43944396703297,
+              52.473583222859276
+            ],
+            [
+              13.439441966581784,
+              52.47358874379458
+            ],
+            [
+              13.439499632724477,
+              52.47359649594677
+            ],
+            [
+              13.439501633175665,
+              52.47359097681011
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 153,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          8003429393
+          8003429395
         ],
         "type": "intersection"
       },
@@ -18525,36 +19776,65 @@
         "coordinates": [
           [
             [
-              13.440673605254185,
-              52.47237614081674
+              13.441154379371811,
+              52.4738616258471
             ],
             [
-              13.440731215295665,
-              52.47238404405497
+              13.441211821109649,
+              52.4738699733502
             ],
             [
-              13.44076812841819,
-              52.472287707825814
+              13.44121370050032,
+              52.473865173670816
             ],
             [
-              13.440728546058953,
-              52.47228209875699
+              13.441156258762483,
+              52.47385682616772
             ],
             [
-              13.44067107479416,
-              52.472273828595554
+              13.441154379371811,
+              52.4738616258471
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 155,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8004389052
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440747337012978,
+              52.47223363161798
             ],
             [
-              13.440671020169294,
-              52.47227397158769
+              13.440689862795491,
+              52.47222536865112
             ],
             [
-              13.440634077519816,
-              52.47237030242091
+              13.440687382531289,
+              52.47223176912295
             ],
             [
-              13.440673605254185,
-              52.47237614081674
+              13.440744856748776,
+              52.47224003029117
+            ],
+            [
+              13.440747337012978,
+              52.47223363161798
             ]
           ]
         ],
@@ -18563,25 +19843,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 157,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #319 -> Road #211",
-          "Road #319 -> Road #191",
-          "Road #319 -> Road #209",
-          "Road #211 -> Road #319",
-          "Road #211 -> Road #191",
-          "Road #211 -> Road #209",
-          "Road #191 -> Road #319",
-          "Road #191 -> Road #211",
-          "Road #191 -> Road #209",
-          "Road #209 -> Road #319",
-          "Road #209 -> Road #211",
-          "Road #209 -> Road #191"
-        ],
+        "id": 156,
+        "intersection_kind": "Terminus",
+        "movements": [],
         "osm_node_ids": [
-          8014357660,
-          9318634520
+          8014357661
         ],
         "type": "intersection"
       },
@@ -18592,36 +19858,36 @@
         "coordinates": [
           [
             [
-              13.438138655655685,
-              52.4732921987921
+              13.440673605254185,
+              52.47237614081674
             ],
             [
-              13.43819218802471,
-              52.473307388333936
+              13.440731215295665,
+              52.47238404405497
             ],
             [
-              13.438202944694337,
-              52.47329559732843
+              13.44076812841819,
+              52.472287707825814
             ],
             [
-              13.438176554978499,
-              52.473286664366974
+              13.440728546058953,
+              52.47228209875699
             ],
             [
-              13.438150228745613,
-              52.47327702184078
+              13.44067107479416,
+              52.472273828595554
             ],
             [
-              13.438138816577588,
-              52.47328858351927
+              13.440671020169294,
+              52.47227397158769
             ],
             [
-              13.438140850984773,
-              52.473289328157556
+              13.440634077519816,
+              52.47237030242091
             ],
             [
-              13.438138655655685,
-              52.4732921987921
+              13.440673605254185,
+              52.47237614081674
             ]
           ]
         ],
@@ -18630,12 +19896,25 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 158,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "id": 157,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #319 -> Road #211",
+          "Road #319 -> Road #191",
+          "Road #319 -> Road #209",
+          "Road #211 -> Road #319",
+          "Road #211 -> Road #191",
+          "Road #211 -> Road #209",
+          "Road #191 -> Road #319",
+          "Road #191 -> Road #211",
+          "Road #191 -> Road #209",
+          "Road #209 -> Road #319",
+          "Road #209 -> Road #211",
+          "Road #209 -> Road #191"
+        ],
         "osm_node_ids": [
-          8014357663,
-          9309412065
+          8014357660,
+          9318634520
         ],
         "type": "intersection"
       },
@@ -18698,24 +19977,28 @@
         "coordinates": [
           [
             [
-              13.438432751507076,
-              52.473362912449545
+              13.438354338249603,
+              52.47345934580543
+            ],
+            [
+              13.438407988726446,
+              52.47339524935633
             ],
             [
-              13.438379248665008,
-              52.47334768693485
+              13.438409373540626,
+              52.47339343632398
             ],
             [
-              13.438375166563509,
-              52.473353007321435
+              13.438355847076993,
+              52.473378239587575
             ],
             [
-              13.438428672358274,
-              52.47336823103748
+              13.438298397957416,
+              52.47344110126812
             ],
             [
-              13.438432751507076,
-              52.473362912449545
+              13.438354338249603,
+              52.47345934580543
             ]
           ]
         ],
@@ -18724,11 +20007,18 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 160,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "id": 161,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #48 -> Road #195",
+          "Road #48 -> Road #49",
+          "Road #195 -> Road #48",
+          "Road #195 -> Road #49",
+          "Road #49 -> Road #48",
+          "Road #49 -> Road #195"
+        ],
         "osm_node_ids": [
-          8014357662
+          8014357665
         ],
         "type": "intersection"
       },
@@ -18739,28 +20029,36 @@
         "coordinates": [
           [
             [
-              13.438354338249603,
-              52.47345934580543
+              13.43864626239347,
+              52.47345472778901
             ],
             [
-              13.438407988726446,
-              52.47339524935633
+              13.438700565416015,
+              52.47346886332593
             ],
             [
-              13.438409373540626,
-              52.47339343632398
+              13.438709503225228,
+              52.47345652013696
             ],
             [
-              13.438355847076993,
-              52.473378239587575
+              13.438682595311333,
+              52.473449289591294
             ],
             [
-              13.438298397957416,
-              52.47344110126812
+              13.438655808457952,
+              52.473441046409505
             ],
             [
-              13.438354338249603,
-              52.47345934580543
+              13.43864582539454,
+              52.47345308652709
+            ],
+            [
+              13.43864713196229,
+              52.473453489423164
+            ],
+            [
+              13.43864626239347,
+              52.47345472778901
             ]
           ]
         ],
@@ -18769,18 +20067,12 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 161,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #48 -> Road #195",
-          "Road #48 -> Road #49",
-          "Road #195 -> Road #48",
-          "Road #195 -> Road #49",
-          "Road #49 -> Road #48",
-          "Road #49 -> Road #195"
-        ],
+        "id": 162,
+        "intersection_kind": "Terminus",
+        "movements": [],
         "osm_node_ids": [
-          8014357665
+          8014357668,
+          9309412064
         ],
         "type": "intersection"
       },
@@ -18838,6 +20130,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439162891092291,
+              52.47354551340525
+            ],
+            [
+              13.439105109794474,
+              52.47353808680747
+            ],
+            [
+              13.43910298975912,
+              52.47354420669096
+            ],
+            [
+              13.439160771056937,
+              52.473551633288736
+            ],
+            [
+              13.439162891092291,
+              52.47354551340525
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 164,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8014357670
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -18890,6 +20223,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440197658793668,
+              52.47471305317633
+            ],
+            [
+              13.44021434152312,
+              52.47467854620652
+            ],
+            [
+              13.440199182384534,
+              52.474675826658
+            ],
+            [
+              13.440182496702386,
+              52.47471033362781
+            ],
+            [
+              13.440197658793668,
+              52.47471305317633
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 166,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          2823022532
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -20637,67 +22011,6 @@
       },
       "type": "Feature"
     },
-    {
-      "geometry": {
-        "coordinates": [
-          [
-            [
-              13.438397673484793,
-              52.47417180276639
-            ],
-            [
-              13.438475060680588,
-              52.47426888093587
-            ],
-            [
-              13.43846983440959,
-              52.474262479564715
-            ],
-            [
-              13.438492741421113,
-              52.47429069488061
-            ],
-            [
-              13.43854842630514,
-              52.474271975501495
-            ],
-            [
-              13.43852158630324,
-              52.47424507859107
-            ],
-            [
-              13.438528232820763,
-              52.47425322824341
-            ],
-            [
-              13.438451436164064,
-              52.474155977404195
-            ],
-            [
-              13.438397673484793,
-              52.47417180276639
-            ]
-          ]
-        ],
-        "type": "Polygon"
-      },
-      "properties": {
-        "control": "Signed",
-        "crossing": null,
-        "id": 209,
-        "intersection_kind": "Intersection",
-        "movements": [
-          "Road #108 -> Road #109",
-          "Road #109 -> Road #108"
-        ],
-        "osm_node_ids": [
-          8809882484,
-          7997479994
-        ],
-        "type": "intersection"
-      },
-      "type": "Feature"
-    },
     {
       "geometry": {
         "coordinates": [
@@ -21010,12 +22323,24 @@
               52.47470853228664
             ],
             [
-              13.44018847591073,
-              52.474674836504924
+              13.440168979262486,
+              52.474707908157455
+            ],
+            [
+              13.440172299568552,
+              52.47470850350835
+            ],
+            [
+              13.4401889852507,
+              52.47467399653855
+            ],
+            [
+              13.44016820565627,
+              52.47466932905944
             ],
             [
               13.440167697792647,
-              52.47467016902581
+              52.474670168126494
             ],
             [
               13.440164488212663,
@@ -21037,8 +22362,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 215,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #201 -> Road #202",
+          "Road #202 -> Road #201"
+        ],
         "osm_node_ids": [
           8951180886
         ],
@@ -21129,12 +22457,16 @@
         "coordinates": [
           [
             [
-              13.439978745950896,
-              52.474509605046606
+              13.439978474302912,
+              52.47451011406263
+            ],
+            [
+              13.439999532927065,
+              52.4745142887135
             ],
             [
               13.439999804575049,
-              52.474513779697475
+              52.474513780596794
             ],
             [
               13.440002299602728,
@@ -21149,8 +22481,20 @@
               52.474475234773685
             ],
             [
-              13.439978745950896,
-              52.474509605046606
+              13.439997287402154,
+              52.47447596232486
+            ],
+            [
+              13.439994268271025,
+              52.47447545151019
+            ],
+            [
+              13.439978477255607,
+              52.47451011496195
+            ],
+            [
+              13.439978474302912,
+              52.47451011406263
             ]
           ]
         ],
@@ -21160,8 +22504,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 218,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #105 -> Road #104",
+          "Road #104 -> Road #105"
+        ],
         "osm_node_ids": [
           8974789740
         ],
@@ -21174,8 +22521,12 @@
         "coordinates": [
           [
             [
-              13.440064552757848,
-              52.4743575846226
+              13.440064188099957,
+              52.474358226738225
+            ],
+            [
+              13.440085113852811,
+              52.47436263880999
             ],
             [
               13.440085478510703,
@@ -21194,8 +22545,16 @@
               52.4743235857695
             ],
             [
-              13.440064552757848,
-              52.4743575846226
+              13.440083376191522,
+              52.47432416493261
+            ],
+            [
+              13.440080729100027,
+              52.47432369458741
+            ],
+            [
+              13.440064188099957,
+              52.474358226738225
             ]
           ]
         ],
@@ -21205,8 +22564,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 219,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #107 -> Road #106",
+          "Road #106 -> Road #107"
+        ],
         "osm_node_ids": [
           8974789741
         ],
@@ -22102,12 +23464,24 @@
               52.473555901469055
             ],
             [
-              13.43910206851813,
-              52.47354781297058
+              13.439159307996327,
+              52.473555859200935
+            ],
+            [
+              13.439159536830227,
+              52.473555196400916
+            ],
+            [
+              13.439101755532409,
+              52.47354776980314
+            ],
+            [
+              13.439097766440819,
+              52.47355828287265
             ],
             [
               13.43909807942654,
-              52.47355832783873
+              52.47355832693941
             ],
             [
               13.439097874214204,
@@ -22121,8 +23495,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 241,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #199 -> Road #198",
+          "Road #198 -> Road #199"
+        ],
         "osm_node_ids": [
           9309412063
         ],
@@ -22188,8 +23565,20 @@
               52.47360959456588
             ],
             [
-              13.439498250862993,
-              52.47359900055743
+              13.439495333599861,
+              52.473609648525176
+            ],
+            [
+              13.439498705578098,
+              52.473599054516725
+            ],
+            [
+              13.439441039435403,
+              52.473591301465206
+            ],
+            [
+              13.439440707257162,
+              52.47359221967256
             ],
             [
               13.43944023777858,
@@ -22211,8 +23600,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 243,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #187 -> Road #186",
+          "Road #186 -> Road #187"
+        ],
         "osm_node_ids": [
           9309412062
         ],
@@ -22325,6 +23717,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.439724639930716,
+              52.47361375752557
+            ],
+            [
+              13.439666959024546,
+              52.47360604314488
+            ],
+            [
+              13.439664478760344,
+              52.473612923854446
+            ],
+            [
+              13.439722159666514,
+              52.47362063643649
+            ],
+            [
+              13.439724639930716,
+              52.47361375752557
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 246,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          9309412050
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -22350,20 +23783,24 @@
               52.47365519286899
             ],
             [
-              13.439715626827768,
-              52.473638704706765
+              13.439717391063317,
+              52.47363887467855
+            ],
+            [
+              13.439721991362873,
+              52.47362110768101
             ],
             [
-              13.439720227127324,
-              52.47362093770923
+              13.439664308980353,
+              52.47361339330032
             ],
             [
-              13.439669301988408,
-              52.473619205615826
+              13.43966250340707,
+              52.47361840252164
             ],
             [
-              13.439665930010172,
-              52.47362979962428
+              13.439659132905179,
+              52.47362899742941
             ],
             [
               13.43958039042216,
@@ -22383,7 +23820,11 @@
         "intersection_kind": "Intersection",
         "movements": [
           "Road #45 -> Road #43",
-          "Road #43 -> Road #45"
+          "Road #45 -> Road #307",
+          "Road #43 -> Road #45",
+          "Road #43 -> Road #307",
+          "Road #307 -> Road #45",
+          "Road #307 -> Road #43"
         ],
         "osm_node_ids": [
           9309412049,
@@ -22399,40 +23840,40 @@
         "coordinates": [
           [
             [
-              13.438363962560516,
-              52.4733676320893
+              13.438138655655685,
+              52.4732921987921
             ],
             [
-              13.438417489024149,
-              52.473382828825706
+              13.43819218802471,
+              52.473307388333936
             ],
             [
-              13.438427473563909,
-              52.473370789607436
+              13.438202944694337,
+              52.47329559732843
             ],
             [
-              13.438426856450555,
-              52.47337059985058
+              13.438201302995651,
+              52.47329504154768
             ],
             [
-              13.438428127585958,
-              52.47336894150155
+              13.438204178921048,
+              52.47329090826561
             ],
             [
-              13.438374624743888,
-              52.47335371598685
+              13.438149807986507,
+              52.47327686625814
             ],
             [
-              13.43836386807426,
-              52.47336550699236
+              13.438138395818482,
+              52.47328842883596
             ],
             [
-              13.438365235172267,
-              52.47336596924366
+              13.438140850984773,
+              52.473289328157556
             ],
             [
-              13.438363962560516,
-              52.4733676320893
+              13.438138655655685,
+              52.4732921987921
             ]
           ]
         ],
@@ -22441,14 +23882,14 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 249,
+        "id": 248,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #195 -> Road #194",
-          "Road #194 -> Road #195"
+          "Road #193 -> Road #192",
+          "Road #192 -> Road #193"
         ],
         "osm_node_ids": [
-          9309412068
+          9309412065
         ],
         "type": "intersection"
       },
@@ -22459,32 +23900,40 @@
         "coordinates": [
           [
             [
-              13.43864626239347,
-              52.47345472688969
+              13.438363962560516,
+              52.4733676320893
             ],
             [
-              13.438700565416015,
-              52.47346886242661
+              13.438417489024149,
+              52.473382828825706
             ],
             [
-              13.438709503225228,
-              52.47345652013696
+              13.438427473563909,
+              52.473370789607436
             ],
             [
-              13.438682618932896,
-              52.473449295886546
+              13.438426530177704,
+              52.47337049912656
             ],
             [
-              13.43865711650205,
-              52.47344144840626
+              13.438428579348365,
+              52.473367539459176
             ],
             [
-              13.438647133438637,
-              52.473453488523845
+              13.43837416707609,
+              52.47335356040422
             ],
             [
-              13.43864626239347,
-              52.47345472688969
+              13.438363410406462,
+              52.47336535140972
+            ],
+            [
+              13.438365235172267,
+              52.47336596924366
+            ],
+            [
+              13.438363962560516,
+              52.4733676320893
             ]
           ]
         ],
@@ -22493,11 +23942,14 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 250,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "id": 249,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #195 -> Road #194",
+          "Road #194 -> Road #195"
+        ],
         "osm_node_ids": [
-          9309412064
+          9309412068
         ],
         "type": "intersection"
       },
@@ -22782,6 +24234,91 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440720164832838,
+              52.472413724365744
+            ],
+            [
+              13.440723708067411,
+              52.47240415198663
+            ],
+            [
+              13.440666154127145,
+              52.47239609406509
+            ],
+            [
+              13.440662551838662,
+              52.47240582292616
+            ],
+            [
+              13.440720164832838,
+              52.472413724365744
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 258,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #318 -> Road #320",
+          "Road #320 -> Road #318"
+        ],
+        "osm_node_ids": [
+          9318634535
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.440625693341005,
+              52.47250554959775
+            ],
+            [
+              13.44068330633518,
+              52.47251345103733
+            ],
+            [
+              13.440696277526417,
+              52.47247835681052
+            ],
+            [
+              13.440638664532242,
+              52.47247045537094
+            ],
+            [
+              13.440625693341005,
+              52.47250554959775
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 259,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          9318634537
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -22836,8 +24373,12 @@
         "coordinates": [
           [
             [
-              13.440724031387566,
-              52.47240329763111
+              13.44066647892365,
+              52.472395236112284
+            ],
+            [
+              13.44072402991122,
+              52.47240329942975
             ],
             [
               13.44073081372908,
@@ -22860,8 +24401,12 @@
               52.47239499239613
             ],
             [
-              13.440724031387566,
-              52.47240329763111
+              13.44066655717008,
+              52.472395026570354
+            ],
+            [
+              13.44066647892365,
+              52.472395236112284
             ]
           ]
         ],
@@ -22871,11 +24416,13 @@
         "control": "Signed",
         "crossing": null,
         "id": 262,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #320 -> Road #319",
+          "Road #319 -> Road #320"
+        ],
         "osm_node_ids": [
-          9318634536,
-          9318634535
+          9318634536
         ],
         "type": "intersection"
       },
@@ -23044,8 +24591,20 @@
               52.47225827033187
             ],
             [
-              13.4407443843175,
-              52.47224073985591
+              13.440737976968311,
+              52.47225829731152
+            ],
+            [
+              13.44074457329001,
+              52.47224076593624
+            ],
+            [
+              13.440687099072521,
+              52.472232503868696
+            ],
+            [
+              13.440687010491658,
+              52.4722327331957
             ],
             [
               13.440686812661061,
@@ -23067,8 +24626,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 266,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #191 -> Road #190",
+          "Road #190 -> Road #191"
+        ],
         "osm_node_ids": [
           9318634550
         ],
@@ -24565,8 +26127,16 @@
         "coordinates": [
           [
             [
-              13.44121404744204,
-              52.47386449198504
+              13.441156474309253,
+              52.4738562757829
+            ],
+            [
+              13.44121391604709,
+              52.47386462148735
+            ],
+            [
+              13.441213970671956,
+              52.47386448119318
             ],
             [
               13.441219120172871,
@@ -24581,12 +26151,52 @@
               52.47384315558007
             ],
             [
-              13.44115659389342,
-              52.47385629287001
+              13.441156474309253,
+              52.4738562757829
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 303,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #188 -> Road #189",
+          "Road #189 -> Road #188"
+        ],
+        "osm_node_ids": [
+          8709507808
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.43825678562004,
+              52.47321532028509
             ],
             [
-              13.44121404744204,
-              52.47386449198504
+              13.438202414685499,
+              52.47320128007627
+            ],
+            [
+              13.438179364468246,
+              52.47323439939285
+            ],
+            [
+              13.438233735402786,
+              52.473248439601676
+            ],
+            [
+              13.43825678562004,
+              52.47321532028509
             ]
           ]
         ],
@@ -24595,11 +26205,52 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 303,
+        "id": 304,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          8709507808
+          8014357664
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              13.438491406802756,
+              52.473276789815806
+            ],
+            [
+              13.438436994530479,
+              52.47326281076084
+            ],
+            [
+              13.438414047657568,
+              52.47329595615775
+            ],
+            [
+              13.438468459929846,
+              52.473309935212704
+            ],
+            [
+              13.438491406802756,
+              52.473276789815806
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 305,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8014357666
         ],
         "type": "intersection"
       },
diff --git a/tests/src/northgate_dual_carriageway/geometry.json b/tests/src/northgate_dual_carriageway/geometry.json
index 3520c895..0189cfab 100644
--- a/tests/src/northgate_dual_carriageway/geometry.json
+++ b/tests/src/northgate_dual_carriageway/geometry.json
@@ -2113,6 +2113,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32379517153753,
+              47.70794369958651
+            ],
+            [
+              -122.32379656946074,
+              47.70803850336428
+            ],
+            [
+              -122.32382329839398,
+              47.70803832529861
+            ],
+            [
+              -122.32382190047076,
+              47.707943521520846
+            ],
+            [
+              -122.32379517153753,
+              47.70794369958651
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 52,
+        "id": 54,
+        "layer": 0,
+        "osm_way_ids": [
+          39765317
+        ],
+        "src_i": 51,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -2278,35 +2318,34 @@
         "coordinates": [
           [
             [
-              -122.32360263100337,
-              47.70794822497245
+              -122.32360262432114,
+              47.70794808557761
             ],
             [
-              -122.32402411420586,
-              47.707943021498075
+              -122.32379517153753,
+              47.70794369958651
             ],
             [
-              -122.32402362506637,
-              47.707925038664754
+              -122.32379426809958,
+              47.70792572394776
             ],
             [
-              -122.3236021418639,
-              47.70793024213913
+              -122.32360172088319,
+              47.707930109938864
             ],
             [
-              -122.32360263100337,
-              47.70794822497245
+              -122.32360262432114,
+              47.70794808557761
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 54,
+        "dst_i": 51,
         "id": 59,
         "layer": 0,
         "osm_way_ids": [
-          39765322,
           39765322
         ],
         "src_i": 58,
@@ -2314,6 +2353,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32382189779787,
+              47.70794335424704
+            ],
+            [
+              -122.32402373198211,
+              47.70794277148669
+            ],
+            [
+              -122.3240236170477,
+              47.70792478505608
+            ],
+            [
+              -122.32382178286346,
+              47.707925367816436
+            ],
+            [
+              -122.32382189779787,
+              47.70794335424704
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 54,
+        "id": 60,
+        "layer": 0,
+        "osm_way_ids": [
+          39765322
+        ],
+        "src_i": 51,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -4191,35 +4270,34 @@
         "coordinates": [
           [
             [
-              -122.3221307314628,
-              47.708479562119024
+              -122.32213072878992,
+              47.7084795612197
             ],
             [
-              -122.32213082501407,
-              47.708055467266306
+              -122.32213072878992,
+              47.70818871614017
             ],
             [
-              -122.3220773671476,
-              47.70805546187037
+              -122.32207727092343,
+              47.70818871614017
             ],
             [
-              -122.32207727359634,
-              47.70847955672309
+              -122.32207727092343,
+              47.7084795612197
             ],
             [
-              -122.3221307314628,
-              47.708479562119024
+              -122.32213072878992,
+              47.7084795612197
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 291,
+        "dst_i": 289,
         "id": 106,
         "layer": 0,
         "osm_way_ids": [
-          367192712,
           367192712
         ],
         "src_i": 257,
@@ -4227,6 +4305,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32213074215439,
+              47.70815274327896
+            ],
+            [
+              -122.32213081565895,
+              47.70805548075612
+            ],
+            [
+              -122.32207735779247,
+              47.70805546276969
+            ],
+            [
+              -122.3220772842879,
+              47.70815272529253
+            ],
+            [
+              -122.32213074215439,
+              47.70815274327896
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 291,
+        "id": 107,
+        "layer": 0,
+        "osm_way_ids": [
+          367192712
+        ],
+        "src_i": 289,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6477,6 +6595,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32235445931627,
+              47.71036378821387
+            ],
+            [
+              -122.32240791718274,
+              47.71036368748986
+            ],
+            [
+              -122.32240776750072,
+              47.71032771462865
+            ],
+            [
+              -122.32235430963424,
+              47.710327815352656
+            ],
+            [
+              -122.32235445931627,
+              47.71036378821387
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 126,
+        "id": 168,
+        "layer": 0,
+        "osm_way_ids": [
+          562271725
+        ],
+        "src_i": 125,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6486,12 +6644,20 @@
               47.71002458481701
             ],
             [
-              -122.32252895381114,
-              47.71029440735645
+              -122.32253017398695,
+              47.71034788461193
+            ],
+            [
+              -122.3227361418007,
+              47.71034947371307
             ],
             [
-              -122.32258240633183,
-              47.71029385517303
+              -122.32273675389328,
+              47.7103135026505
+            ],
+            [
+              -122.32258282731253,
+              47.71031231464676
             ],
             [
               -122.32257624932207,
@@ -6506,10 +6672,11 @@
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 127,
-        "id": 170,
+        "dst_i": 128,
+        "id": 169,
         "layer": 0,
         "osm_way_ids": [
+          562271728,
           562271730
         ],
         "src_i": 129,
@@ -7509,34 +7676,35 @@
         "coordinates": [
           [
             [
-              -122.32321838788712,
-              47.71015511504189
+              -122.3232184012516,
+              47.71015511324325
             ],
             [
-              -122.3229272429818,
-              47.710157395721296
+              -122.32286854758085,
+              47.71015780311395
             ],
             [
-              -122.32292786576595,
-              47.71019336678387
+              -122.32286915700054,
+              47.71019377417652
             ],
             [
               -122.32321901067127,
-              47.710191086104466
+              47.71019108430582
             ],
             [
-              -122.32321838788712,
-              47.71015511504189
+              -122.3232184012516,
+              47.71015511324325
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 150,
-        "id": 202,
+        "dst_i": 151,
+        "id": 201,
         "layer": 0,
         "osm_way_ids": [
+          746014066,
           746014067,
           562271732,
           562271734
@@ -8235,6 +8403,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32820885479765,
+              47.70915803546253
+            ],
+            [
+              -122.32803505792793,
+              47.709158477928725
+            ],
+            [
+              -122.32803526106782,
+              47.70919445078994
+            ],
+            [
+              -122.32820905793754,
+              47.70919400832375
+            ],
+            [
+              -122.32820885479765,
+              47.70915803546253
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 171,
+        "id": 223,
+        "layer": 0,
+        "osm_way_ids": [
+          853194010
+        ],
+        "src_i": 170,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -8523,6 +8731,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32432376559419,
+              47.70871517446744
+            ],
+            [
+              -122.3243243816961,
+              47.708758899480245
+            ],
+            [
+              -122.32435111062934,
+              47.708758728609155
+            ],
+            [
+              -122.32435049452742,
+              47.708715003596346
+            ],
+            [
+              -122.32432376559419,
+              47.70871517446744
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 179,
+        "id": 232,
+        "layer": 0,
+        "osm_way_ids": [
+          969918200
+        ],
+        "src_i": 255,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -9460,12 +9708,12 @@
               47.70800282368188
             ],
             [
-              -122.32407757474523,
-              47.70794234251032
+              -122.324077568063,
+              47.70794209070029
             ],
             [
-              -122.32402412757033,
-              47.707943020598755
+              -122.32402412088808,
+              47.707942768788726
             ],
             [
               -122.32402582352114,
@@ -9496,8 +9744,8 @@
         "coordinates": [
           [
             [
-              -122.32407707491419,
-              47.70792436687157
+              -122.32407706823194,
+              47.70792411236358
             ],
             [
               -122.32407587612153,
@@ -9508,12 +9756,12 @@
               47.70788179388964
             ],
             [
-              -122.32402362506637,
-              47.707925037765435
+              -122.32402361838415,
+              47.70792478325744
             ],
             [
-              -122.32407707491419,
-              47.70792436687157
+              -122.32407706823194,
+              47.70792411236358
             ]
           ]
         ],
@@ -12364,12 +12612,12 @@
               47.70869729775406
             ],
             [
-              -122.324350241939,
-              47.70869701446778
+              -122.32435081928396,
+              47.708697018964386
             ],
             [
-              -122.32434991584601,
-              47.70871499909974
+              -122.32435049319098,
+              47.708715003596346
             ],
             [
               -122.32438447502025,
@@ -12492,11 +12740,11 @@
               47.70847952974344
             ],
             [
-              -122.32213073279925,
+              -122.32213073012636,
               47.7084795612197
             ],
             [
-              -122.32213079962159,
+              -122.3221307969487,
               47.7084975476503
             ],
             [
@@ -13827,6 +14075,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32213072878992,
+              47.70818871614017
+            ],
+            [
+              -122.32213939698296,
+              47.70818872603271
+            ],
+            [
+              -122.32213948786134,
+              47.70815275317149
+            ],
+            [
+              -122.32213081966829,
+              47.70815274327896
+            ],
+            [
+              -122.32213072878992,
+              47.70818871614017
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 290,
+        "id": 378,
+        "layer": 0,
+        "osm_way_ids": [
+          1053158846
+        ],
+        "src_i": 289,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -13867,6 +14155,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32199721108614,
+              47.70801911579073
+            ],
+            [
+              -122.32199139219738,
+              47.708019055536184
+            ],
+            [
+              -122.32199056894623,
+              47.70805502480011
+            ],
+            [
+              -122.321996387835,
+              47.70805508505465
+            ],
+            [
+              -122.32199721108614,
+              47.70801911579073
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 292,
+        "id": 380,
+        "layer": 0,
+        "osm_way_ids": [
+          1053158848
+        ],
+        "src_i": 304,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -13912,37 +14240,37 @@
         "coordinates": [
           [
             [
-              -122.3220030179469,
-              47.70841912591354
+              -122.32274197806328,
+              47.70735987353882
             ],
             [
-              -122.32200633367106,
-              47.70808853891626
+              -122.32274164662451,
+              47.707391500878394
             ],
             [
-              -122.32198628697112,
-              47.70808844718547
+              -122.322795104491,
+              47.70739175448707
             ],
             [
-              -122.32198297124697,
-              47.70841903418274
+              -122.32279543592976,
+              47.70736012714749
             ],
             [
-              -122.3220030179469,
-              47.70841912591354
+              -122.32274197806328,
+              47.70735987353882
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 296,
-        "id": 383,
+        "dst_i": 294,
+        "id": 382,
         "layer": 0,
         "osm_way_ids": [
-          1054161096
+          1054064606
         ],
-        "src_i": 295,
+        "src_i": 312,
         "type": "road"
       },
       "type": "Feature"
@@ -13952,8 +14280,48 @@
         "coordinates": [
           [
             [
-              -122.32195454235357,
-              47.70760339182281
+              -122.3220030179469,
+              47.70841912591354
+            ],
+            [
+              -122.32200633367106,
+              47.70808853891626
+            ],
+            [
+              -122.32198628697112,
+              47.70808844718547
+            ],
+            [
+              -122.32198297124697,
+              47.70841903418274
+            ],
+            [
+              -122.3220030179469,
+              47.70841912591354
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 296,
+        "id": 383,
+        "layer": 0,
+        "osm_way_ids": [
+          1054161096
+        ],
+        "src_i": 295,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32195454235357,
+              47.70760339182281
             ],
             [
               -122.32195398772821,
@@ -14506,24 +14874,24 @@
         "coordinates": [
           [
             [
-              -122.32226743792832,
-              47.70736570743758
+              -122.32226798988079,
+              47.707365714632154
             ],
             [
-              -122.32226950407485,
-              47.707365731719264
+              -122.32226950140196,
+              47.707365732618584
             ],
             [
-              -122.32226997183119,
-              47.707347748885944
+              -122.32226997450408,
+              47.707347749785264
             ],
             [
-              -122.32226790568464,
-              47.70734772460426
+              -122.3222684629829,
+              47.70734773179883
             ],
             [
-              -122.32226743792832,
-              47.70736570743758
+              -122.32226798988079,
+              47.707365714632154
             ]
           ]
         ],
@@ -14606,11 +14974,11 @@
               47.707359852854424
             ],
             [
-              -122.32274200078287,
+              -122.32274197939972,
               47.70735987443814
             ],
             [
-              -122.32274217452094,
+              -122.3227421531378,
               47.707341888007534
             ],
             [
@@ -20897,6 +21265,95 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32382190047076,
+              47.707943521520846
+            ],
+            [
+              -122.32379517153753,
+              47.70794369958651
+            ],
+            [
+              -122.32379426809958,
+              47.70792572394776
+            ],
+            [
+              -122.32382178286346,
+              47.707925367816436
+            ],
+            [
+              -122.32382189779787,
+              47.70794335424704
+            ],
+            [
+              -122.32382190047076,
+              47.707943521520846
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 51,
+        "intersection_kind": "Fork",
+        "movements": [
+          "Road #59 -> Road #54",
+          "Road #59 -> Road #60"
+        ],
+        "osm_node_ids": [
+          476715060
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32382356434685,
+              47.708056310829896
+            ],
+            [
+              -122.32379683541362,
+              47.70805648889556
+            ],
+            [
+              -122.32379656946074,
+              47.70803850336428
+            ],
+            [
+              -122.32382329839398,
+              47.70803832529861
+            ],
+            [
+              -122.32382356434685,
+              47.708056310829896
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 52,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          476715063
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -20941,24 +21398,28 @@
         "coordinates": [
           [
             [
-              -122.32407757474523,
-              47.70794234251032
+              -122.324077568063,
+              47.70794209070029
             ],
             [
-              -122.32402412757033,
-              47.707943020598755
+              -122.32402412088808,
+              47.707942768788726
             ],
             [
-              -122.32402362506637,
-              47.707925038664754
+              -122.32402373331855,
+              47.707942770587366
             ],
             [
-              -122.32407707491419,
-              47.70792436687157
+              -122.32402361838415,
+              47.70792478415676
             ],
             [
-              -122.32407757474523,
-              47.70794234251032
+              -122.32407706823194,
+              47.70792411236358
+            ],
+            [
+              -122.324077568063,
+              47.70794209070029
             ]
           ]
         ],
@@ -20971,8 +21432,8 @@
         "intersection_kind": "Intersection",
         "movements": [
           "Road #256 -> Road #257",
-          "Road #59 -> Road #256",
-          "Road #59 -> Road #257",
+          "Road #60 -> Road #256",
+          "Road #60 -> Road #257",
           "Road #257 -> Road #256"
         ],
         "osm_node_ids": [
@@ -21142,12 +21603,12 @@
               47.707932009305935
             ],
             [
-              -122.3236021418639,
-              47.70793024213913
+              -122.32360172088319,
+              47.707930109938864
             ],
             [
-              -122.32360263100337,
-              47.70794822497245
+              -122.32360262432114,
+              47.70794808557761
             ],
             [
               -122.32360267510612,
@@ -24072,24 +24533,63 @@
         "coordinates": [
           [
             [
-              -122.32258322691008,
-              47.710329823537634
+              -122.32230100144979,
+              47.710363888937884
+            ],
+            [
+              -122.32230085176776,
+              47.710327916076665
+            ],
+            [
+              -122.32235430963424,
+              47.710327815352656
+            ],
+            [
+              -122.32235445931627,
+              47.71036378821387
+            ],
+            [
+              -122.32230100144979,
+              47.710363888937884
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 125,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3224612253672,
+              47.71032761390463
             ],
             [
-              -122.3225297743894,
-              47.71033037572106
+              -122.32246137504923,
+              47.71036358676585
             ],
             [
-              -122.32252895381114,
-              47.71029440735645
+              -122.32240791718274,
+              47.71036368748986
             ],
             [
-              -122.32258240633183,
-              47.71029385517303
+              -122.32240776750072,
+              47.71032771462865
             ],
             [
-              -122.32258322691008,
-              47.710329823537634
+              -122.3224612253672,
+              47.71032761390463
             ]
           ]
         ],
@@ -24098,11 +24598,52 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 127,
+        "id": 126,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          5420646988
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32279020641397,
+              47.71031391453976
+            ],
+            [
+              -122.3227895943214,
+              47.710349885602334
+            ],
+            [
+              -122.32273614046426,
+              47.71034947281375
+            ],
+            [
+              -122.32273675255684,
+              47.71031350175118
+            ],
+            [
+              -122.32279020641397,
+              47.71031391453976
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 128,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          5420650300
+          5420650299
         ],
         "type": "intersection"
       },
@@ -24146,12 +24687,12 @@
         "id": 129,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #3 -> Road #170",
+          "Road #3 -> Road #169",
           "Road #3 -> Road #4",
-          "Road #170 -> Road #3",
-          "Road #170 -> Road #4",
+          "Road #169 -> Road #3",
+          "Road #169 -> Road #4",
           "Road #4 -> Road #3",
-          "Road #4 -> Road #170"
+          "Road #4 -> Road #169"
         ],
         "osm_node_ids": [
           5420650301
@@ -24928,24 +25469,24 @@
         "coordinates": [
           [
             [
-              -122.32287441190881,
-              47.7101937858677
+              -122.32281570447984,
+              47.71019418516646
             ],
             [
-              -122.32287378912466,
-              47.71015781480513
+              -122.32281509506016,
+              47.710158214103885
             ],
             [
-              -122.3229272429818,
-              47.710157395721296
+              -122.3228685489173,
+              47.71015780311395
             ],
             [
-              -122.32292786576595,
-              47.71019336678387
+              -122.32286915833699,
+              47.71019377417652
             ],
             [
-              -122.32287441190881,
-              47.7101937858677
+              -122.32281570447984,
+              47.71019418516646
             ]
           ]
         ],
@@ -24954,11 +25495,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 150,
+        "id": 151,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          6981738608
+          5420650302
         ],
         "type": "intersection"
       },
@@ -25562,6 +26103,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32826231400058,
+              47.70915789966498
+            ],
+            [
+              -122.32826251714047,
+              47.7091938725262
+            ],
+            [
+              -122.32820905927399,
+              47.70919400832375
+            ],
+            [
+              -122.3282088561341,
+              47.70915803546253
+            ],
+            [
+              -122.32826231400058,
+              47.70915789966498
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 170,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3279818018649,
+              47.70919458658749
+            ],
+            [
+              -122.327981598725,
+              47.709158613726274
+            ],
+            [
+              -122.32803505659149,
+              47.709158477928725
+            ],
+            [
+              -122.32803525973138,
+              47.70919445078994
+            ],
+            [
+              -122.3279818018649,
+              47.70919458658749
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 171,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          7958622190
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -25863,6 +26484,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3243513645542,
+              47.70877671414044
+            ],
+            [
+              -122.32432463562095,
+              47.70877688501153
+            ],
+            [
+              -122.3243243816961,
+              47.708758899480245
+            ],
+            [
+              -122.32435111062934,
+              47.708758728609155
+            ],
+            [
+              -122.3243513645542,
+              47.70877671414044
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 179,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8975595235
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -29049,12 +29711,20 @@
         "coordinates": [
           [
             [
-              -122.32435024327545,
-              47.70869701446778
+              -122.32435082062041,
+              47.708697018964386
+            ],
+            [
+              -122.32435049452742,
+              47.708715003596346
             ],
             [
-              -122.32434991718246,
-              47.70871499909974
+              -122.32432376559419,
+              47.70871517446744
+            ],
+            [
+              -122.32432376024839,
+              47.70871480484629
             ],
             [
               -122.32432324170709,
@@ -29070,7 +29740,11 @@
             ],
             [
               -122.32435024327545,
-              47.70869701446778
+              47.708697013568454
+            ],
+            [
+              -122.32435082062041,
+              47.708697018964386
             ]
           ]
         ],
@@ -29083,8 +29757,10 @@
           "kind": "Unmarked"
         },
         "id": 255,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #231 -> Road #232"
+        ],
         "osm_node_ids": [
           9384044304
         ],
@@ -29150,15 +29826,15 @@
               47.708479688923354
             ],
             [
-              -122.32207727359634,
-              47.70847955672309
+              -122.32207727092343,
+              47.7084795612197
             ],
             [
-              -122.3221307314628,
-              47.708479562119024
+              -122.32213072878992,
+              47.7084795612197
             ],
             [
-              -122.32213080095804,
+              -122.32213079828514,
               47.7084975476503
             ],
             [
@@ -30166,11 +30842,11 @@
             ],
             [
               -122.32321900933482,
-              47.710191086104466
+              47.71019108430582
             ],
             [
-              -122.32321838788712,
-              47.71015511504189
+              -122.3232183985787,
+              47.71015511324325
             ],
             [
               -122.32321824087799,
@@ -30201,8 +30877,8 @@
         "id": 281,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #202 -> Road #172",
-          "Road #172 -> Road #202"
+          "Road #201 -> Road #172",
+          "Road #172 -> Road #201"
         ],
         "osm_node_ids": [
           9384570976
@@ -30440,12 +31116,105 @@
         "coordinates": [
           [
             [
-              -122.32213082501407,
-              47.708055467266306
+              -122.32213081966829,
+              47.70815274327896
             ],
             [
-              -122.3220773671476,
-              47.70805546187037
+              -122.32213072878992,
+              47.70818871614017
+            ],
+            [
+              -122.32207727092343,
+              47.70818871614017
+            ],
+            [
+              -122.3220772842879,
+              47.70815272529253
+            ],
+            [
+              -122.32213074215439,
+              47.70815274327896
+            ],
+            [
+              -122.32213081966829,
+              47.70815274327896
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 289,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #378 -> Road #106",
+          "Road #378 -> Road #107",
+          "Road #106 -> Road #378",
+          "Road #106 -> Road #107",
+          "Road #107 -> Road #378",
+          "Road #107 -> Road #106"
+        ],
+        "osm_node_ids": [
+          9678521971
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32219294439138,
+              47.70815281342603
+            ],
+            [
+              -122.3221928561859,
+              47.70818878628725
+            ],
+            [
+              -122.32213939831941,
+              47.70818872603271
+            ],
+            [
+              -122.32213948652489,
+              47.70815275317149
+            ],
+            [
+              -122.32219294439138,
+              47.70815281342603
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 290,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          9678521972
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32213081565895,
+              47.70805548075612
+            ],
+            [
+              -122.32207735779247,
+              47.70805546276969
             ],
             [
               -122.32207699561542,
@@ -30460,8 +31229,8 @@
               47.70801948181459
             ],
             [
-              -122.32213082501407,
-              47.708055467266306
+              -122.32213081565895,
+              47.70805548075612
             ]
           ]
         ],
@@ -30473,11 +31242,11 @@
         "id": 291,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #106 -> Road #379",
-          "Road #106 -> Road #108",
-          "Road #379 -> Road #106",
+          "Road #107 -> Road #379",
+          "Road #107 -> Road #108",
+          "Road #379 -> Road #107",
           "Road #379 -> Road #108",
-          "Road #108 -> Road #106",
+          "Road #108 -> Road #107",
           "Road #108 -> Road #379"
         ],
         "osm_node_ids": [
@@ -30487,6 +31256,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32198668656868,
+              47.70805498433064
+            ],
+            [
+              -122.32198751249273,
+              47.70801901506671
+            ],
+            [
+              -122.32199139219738,
+              47.708019055536184
+            ],
+            [
+              -122.32199056894623,
+              47.70805502480011
+            ],
+            [
+              -122.32198668656868,
+              47.70805498433064
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 292,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          9687405767
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -30535,6 +31345,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.32279472894948,
+              47.70742772644896
+            ],
+            [
+              -122.32274127108299,
+              47.70742747284029
+            ],
+            [
+              -122.32274164662451,
+              47.707391500878394
+            ],
+            [
+              -122.322795104491,
+              47.70739175448707
+            ],
+            [
+              -122.32279472894948,
+              47.70742772644896
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 294,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          9686618322
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -30899,6 +31750,14 @@
               -122.32198326526523,
               47.70805503559197
             ],
+            [
+              -122.32199638649855,
+              47.70805508505465
+            ],
+            [
+              -122.32199721242259,
+              47.70801911579073
+            ],
             [
               -122.32198360605912,
               47.70801906093211
@@ -30922,8 +31781,11 @@
           "kind": "Unmarked"
         },
         "id": 304,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #379 -> Road #380",
+          "Road #380 -> Road #379"
+        ],
         "osm_node_ids": [
           9687585565
         ],
@@ -31100,12 +31962,12 @@
         "coordinates": [
           [
             [
-              -122.32226790969399,
-              47.70734772460426
+              -122.3222684629829,
+              47.70734773179883
             ],
             [
-              -122.32226743391898,
-              47.70736570743758
+              -122.32226798988079,
+              47.707365714632154
             ],
             [
               -122.3222140936598,
@@ -31121,11 +31983,11 @@
             ],
             [
               -122.32226790835755,
-              47.70734772460426
+              47.70734772550358
             ],
             [
-              -122.32226790969399,
-              47.70734772460426
+              -122.3222684629829,
+              47.70734773179883
             ]
           ]
         ],
@@ -31141,7 +32003,8 @@
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          9687585573
+          9687585573,
+          9818059539
         ],
         "type": "intersection"
       },
@@ -31242,11 +32105,11 @@
               47.70736011545631
             ],
             [
-              -122.32274199944642,
-              47.70735987443814
+              -122.32274197806328,
+              47.70735987353882
             ],
             [
-              -122.32274217585739,
+              -122.32274215447424,
               47.707341888007534
             ],
             [
@@ -31268,8 +32131,11 @@
           "kind": "Unmarked"
         },
         "id": 312,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #382 -> Road #381",
+          "Road #381 -> Road #382"
+        ],
         "osm_node_ids": [
           9687585576
         ],
diff --git a/tests/src/oneway_loop/geometry.json b/tests/src/oneway_loop/geometry.json
index 1eff68bb..38955277 100644
--- a/tests/src/oneway_loop/geometry.json
+++ b/tests/src/oneway_loop/geometry.json
@@ -2259,8 +2259,84 @@
               51.503277865914406
             ],
             [
-              -0.10249173123407297,
-              51.50326776473362
+              -0.10249274398947489,
+              51.50326825936053
+            ],
+            [
+              -0.10245707650678927,
+              51.50329656281153
+            ],
+            [
+              -0.1024767493888263,
+              51.5033061693654
+            ],
+            [
+              -0.10251241687151191,
+              51.503277865914406
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 43,
+        "id": 51,
+        "layer": 0,
+        "osm_way_ids": [
+          958202228
+        ],
+        "src_i": 41,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10242751734056488,
+              51.50326081117862
+            ],
+            [
+              -0.10234003174375558,
+              51.50326147577732
+            ],
+            [
+              -0.1023407367717672,
+              51.50329744684471
+            ],
+            [
+              -0.10242822236857649,
+              51.50329678224601
+            ],
+            [
+              -0.10242751734056488,
+              51.50326081117862
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 42,
+        "id": 52,
+        "layer": 0,
+        "osm_way_ids": [
+          958202228
+        ],
+        "src_i": 43,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10248258031721738,
+              51.50324988891717
             ],
             [
               -0.1024537175106274,
@@ -2271,16 +2347,12 @@
               51.503204429107036
             ],
             [
-              -0.10244207010114055,
-              51.503289235138716
-            ],
-            [
-              -0.1024767493888263,
-              51.5033061693654
+              -0.10242751878529441,
+              51.5032608102793
             ],
             [
-              -0.10251241687151191,
-              51.503277865914406
+              -0.10248258031721738,
+              51.50324988891717
             ]
           ]
         ],
@@ -2288,13 +2360,12 @@
       },
       "properties": {
         "dst_i": 24,
-        "id": 51,
+        "id": 53,
         "layer": 0,
         "osm_way_ids": [
-          958202228,
           958202229
         ],
-        "src_i": 41,
+        "src_i": 43,
         "type": "road"
       },
       "type": "Feature"
@@ -2346,32 +2417,64 @@
         "coordinates": [
           [
             [
-              -0.10299695026194872,
-              51.50353750816891
+              -0.10299538995405418,
+              51.50353749467909
             ],
+            [
+              -0.10378711762960627,
+              51.503544236893504
+            ],
+            [
+              -0.10378790934138979,
+              51.50350826762475
+            ],
+            [
+              -0.1029961816658377,
+              51.503501525410336
+            ],
+            [
+              -0.10299538995405418,
+              51.50353749467909
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 49,
+        "id": 57,
+        "layer": 0,
+        "osm_way_ids": [
+          958202233
+        ],
+        "src_i": 47,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
             [
               -0.10378711762960627,
               51.50354423779282
             ],
             [
-              -0.10378505600056413,
+              -0.10378505455583459,
               51.503619835670115
             ],
             [
-              -0.10384283651346629,
+              -0.10384283506873676,
               51.50362044720884
             ],
             [
-              -0.10384588344804925,
-              51.503508761352336
-            ],
-            [
-              -0.10299774197373224,
-              51.50350153890016
+              -0.10384489814250844,
+              51.50354484933155
             ],
             [
-              -0.10299695026194872,
-              51.50353750816891
+              -0.10378711762960627,
+              51.50354423779282
             ]
           ]
         ],
@@ -2382,10 +2485,49 @@
         "id": 58,
         "layer": 0,
         "osm_way_ids": [
-          958202233,
           958202233
         ],
-        "src_i": 47,
+        "src_i": 49,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10384489958723797,
+              51.50354480796275
+            ],
+            [
+              -0.10395430028631793,
+              51.5035460355368
+            ],
+            [
+              -0.10395534049158095,
+              51.503510068066696
+            ],
+            [
+              -0.103845939792501,
+              51.50350884049264
+            ],
+            [
+              -0.10384489958723797,
+              51.50354480796275
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 50,
+        "id": 59,
+        "layer": 0,
+        "osm_way_ids": [
+          958202234
+        ],
+        "src_i": 49,
         "type": "road"
       },
       "type": "Feature"
@@ -2678,6 +2820,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10297043369611868,
+              51.503500844623844
+            ],
+            [
+              -0.102872518596818,
+              51.50349669695239
+            ],
+            [
+              -0.10286859471140913,
+              51.503532587080834
+            ],
+            [
+              -0.10296650981070982,
+              51.50353673475229
+            ],
+            [
+              -0.10297043369611868,
+              51.503500844623844
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 63,
+        "id": 67,
+        "layer": 0,
+        "osm_way_ids": [
+          1135054739
+        ],
+        "src_i": 47,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -2687,12 +2869,12 @@
               51.50361028847147
             ],
             [
-              -0.1029963261387909,
-              51.50352898799559
+              -0.10299533794379102,
+              51.50353796412499
             ],
             [
-              -0.10296749800570969,
-              51.50352775772357
+              -0.10296650981070982,
+              51.50353673385297
             ],
             [
               -0.10295854357207045,
@@ -2763,7 +2945,7 @@
         "coordinates": [
           [
             [
-              -0.10378505455583459,
+              -0.10378505600056413,
               51.503619835670115
             ],
             [
@@ -2775,11 +2957,11 @@
               51.50366513630031
             ],
             [
-              -0.1037833613328231,
+              -0.10378336277755264,
               51.503674683498964
             ],
             [
-              -0.10378505455583459,
+              -0.10378505600056413,
               51.503619835670115
             ]
           ]
@@ -4673,6 +4855,103 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10228295192467643,
+              51.50329788571368
+            ],
+            [
+              -0.10228224689666482,
+              51.50326191464629
+            ],
+            [
+              -0.10234003174375558,
+              51.50326147577732
+            ],
+            [
+              -0.1023407367717672,
+              51.50329744684471
+            ],
+            [
+              -0.10228295192467643,
+              51.50329788571368
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 42,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8865982300
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10249274398947489,
+              51.50326825936053
+            ],
+            [
+              -0.10245707650678927,
+              51.50329656281153
+            ],
+            [
+              -0.10242822381330602,
+              51.50329678224601
+            ],
+            [
+              -0.10242751878529441,
+              51.50326081117862
+            ],
+            [
+              -0.10248258031721738,
+              51.50324988981649
+            ],
+            [
+              -0.10249173123407297,
+              51.50326776473362
+            ],
+            [
+              -0.10249274398947489,
+              51.50326825936053
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 43,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #51 -> Road #52",
+          "Road #51 -> Road #53",
+          "Road #52 -> Road #51",
+          "Road #52 -> Road #53",
+          "Road #53 -> Road #51",
+          "Road #53 -> Road #52"
+        ],
+        "osm_node_ids": [
+          1701265000
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -4726,24 +5005,32 @@
         "coordinates": [
           [
             [
-              -0.10299695026194872,
-              51.50353750816891
+              -0.1029961816658377,
+              51.503501525410336
             ],
             [
-              -0.1029963261387909,
-              51.50352898799559
+              -0.10299538995405418,
+              51.50353749467909
             ],
             [
-              -0.10296749800570969,
-              51.50352775772357
+              -0.10299533794379102,
+              51.50353796412499
             ],
             [
-              -0.10299774197373224,
-              51.50350153890016
+              -0.10296650981070982,
+              51.50353673385297
             ],
             [
-              -0.10299695026194872,
-              51.50353750816891
+              -0.10297043369611868,
+              51.503500843724524
+            ],
+            [
+              -0.10298411384005704,
+              51.503501422887666
+            ],
+            [
+              -0.1029961816658377,
+              51.503501525410336
             ]
           ]
         ],
@@ -4753,9 +5040,12 @@
         "control": "Signed",
         "crossing": null,
         "id": 47,
-        "intersection_kind": "Connection",
+        "intersection_kind": "Intersection",
         "movements": [
-          "Road #68 -> Road #58"
+          "Road #57 -> Road #67",
+          "Road #68 -> Road #57",
+          "Road #68 -> Road #67",
+          "Road #67 -> Road #57"
         ],
         "osm_node_ids": [
           8865982303
@@ -4777,17 +5067,21 @@
               51.50367557652536
             ],
             [
-              -0.1037833613328231,
+              -0.10378336277755264,
               51.503674683498964
             ],
             [
-              -0.10378505455583459,
+              -0.10378505600056413,
               51.503619835670115
             ],
             [
               -0.10384283651346629,
               51.50362044720884
             ],
+            [
+              -0.10384282928981864,
+              51.50362074488431
+            ],
             [
               -0.10384282495563003,
               51.50362074488431
@@ -4813,6 +5107,95 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.103845939792501,
+              51.50350884049264
+            ],
+            [
+              -0.10384489958723797,
+              51.50354480796275
+            ],
+            [
+              -0.10378711762960627,
+              51.50354423779282
+            ],
+            [
+              -0.10378790934138979,
+              51.50350826762475
+            ],
+            [
+              -0.103845939792501,
+              51.50350884049264
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 49,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #59 -> Road #58",
+          "Road #59 -> Road #57",
+          "Road #58 -> Road #59",
+          "Road #58 -> Road #57",
+          "Road #57 -> Road #59",
+          "Road #57 -> Road #58"
+        ],
+        "osm_node_ids": [
+          8865982305
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10401312100448312,
+              51.50351071647761
+            ],
+            [
+              -0.10401207935449057,
+              51.50354668394771
+            ],
+            [
+              -0.10395429739685887,
+              51.5035460355368
+            ],
+            [
+              -0.10395534049158095,
+              51.503510068066696
+            ],
+            [
+              -0.10401312100448312,
+              51.50351071647761
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 50,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8865982308
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -5356,6 +5739,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.1028109384452467,
+              51.50353014542255
+            ],
+            [
+              -0.10281486233065558,
+              51.50349425529411
+            ],
+            [
+              -0.102872518596818,
+              51.50349669695239
+            ],
+            [
+              -0.10286859471140913,
+              51.503532587080834
+            ],
+            [
+              -0.1028109384452467,
+              51.50353014542255
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 63,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          10580797111
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/quad_intersection/geometry.json b/tests/src/quad_intersection/geometry.json
index ab4d2c21..3f69d418 100644
--- a/tests/src/quad_intersection/geometry.json
+++ b/tests/src/quad_intersection/geometry.json
@@ -1949,6 +1949,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.30266422487635,
+              47.64351744284051
+            ],
+            [
+              -122.30266247894174,
+              47.64358298269957
+            ],
+            [
+              -122.30271586342879,
+              47.643583628412465
+            ],
+            [
+              -122.30271760936341,
+              47.643518088553414
+            ],
+            [
+              -122.30266422487635,
+              47.64351744284051
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 57,
+        "id": 56,
+        "layer": 0,
+        "osm_way_ids": [
+          684264999
+        ],
+        "src_i": 56,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6121,6 +6161,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.30266518193685,
+              47.64348147537309
+            ],
+            [
+              -122.30271856642389,
+              47.643482121085995
+            ],
+            [
+              -122.3027176080286,
+              47.643518088553414
+            ],
+            [
+              -122.30266422354154,
+              47.64351744284051
+            ],
+            [
+              -122.30266518193685,
+              47.64348147537309
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 56,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3027156925728,
+              47.643590022588924
+            ],
+            [
+              -122.30266230808574,
+              47.64358937687603
+            ],
+            [
+              -122.30266247894174,
+              47.64358298359889
+            ],
+            [
+              -122.30271586342879,
+              47.643583627513145
+            ],
+            [
+              -122.3027156925728,
+              47.643590022588924
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 57,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          6410412614
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/roosevelt_cycletrack/geometry.json b/tests/src/roosevelt_cycletrack/geometry.json
index 701b24ed..5da7a043 100644
--- a/tests/src/roosevelt_cycletrack/geometry.json
+++ b/tests/src/roosevelt_cycletrack/geometry.json
@@ -1422,12 +1422,12 @@
               47.665103806233596
             ],
             [
-              -122.31817055065203,
-              47.665153964998275
+              -122.31817054931676,
+              47.66515373207397
             ],
             [
-              -122.3182239608876,
-              47.66515384808646
+              -122.31822395955234,
+              47.66515361516216
             ],
             [
               -122.31822389145428,
@@ -1457,6 +1457,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31817063744366,
+              47.665171720305246
+            ],
+            [
+              -122.31817162152724,
+              47.66537478533101
+            ],
+            [
+              -122.31822503176282,
+              47.6653746684192
+            ],
+            [
+              -122.31822404767922,
+              47.66517160339343
+            ],
+            [
+              -122.31817063744366,
+              47.665171720305246
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 21,
+        "id": 37,
+        "layer": 0,
+        "osm_way_ids": [
+          296557979
+        ],
+        "src_i": 45,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -1617,6 +1657,54 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31757158824146,
+              47.66203028642416
+            ],
+            [
+              -122.3176426078317,
+              47.66203366067892
+            ],
+            [
+              -122.31765725158304,
+              47.662039140245625
+            ],
+            [
+              -122.31768319293447,
+              47.66200769456545
+            ],
+            [
+              -122.31765819293845,
+              47.66199833892252
+            ],
+            [
+              -122.31757534565153,
+              47.661994403491065
+            ],
+            [
+              -122.31757158824146,
+              47.66203028642416
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 25,
+        "id": 42,
+        "layer": 0,
+        "osm_way_ids": [
+          330585389
+        ],
+        "src_i": 136,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -1897,6 +1985,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3175411924764,
+              47.66365095033914
+            ],
+            [
+              -122.31755924780653,
+              47.66365106545231
+            ],
+            [
+              -122.31755975253326,
+              47.66361509438569
+            ],
+            [
+              -122.31754169720313,
+              47.663614979272516
+            ],
+            [
+              -122.3175411924764,
+              47.66365095033914
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 31,
+        "id": 52,
+        "layer": 0,
+        "osm_way_ids": [
+          351272182
+        ],
+        "src_i": 172,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -2598,8 +2726,8 @@
         "coordinates": [
           [
             [
-              -122.31818407545893,
-              47.66515382020749
+              -122.31817054931676,
+              47.665153732973295
             ],
             [
               -122.31808712119354,
@@ -2610,12 +2738,12 @@
               47.665171180712264
             ],
             [
-              -122.3181838190898,
-              47.665171806640124
+              -122.31817029294763,
+              47.665171719405926
             ],
             [
-              -122.31818407545893,
-              47.66515382020749
+              -122.31817054931676,
+              47.665153732973295
             ]
           ]
         ],
@@ -2753,6 +2881,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31798866610055,
+              47.66725385762564
+            ],
+            [
+              -122.31798610107398,
+              47.66718940234499
+            ],
+            [
+              -122.31793270953199,
+              47.66719036641778
+            ],
+            [
+              -122.31793527455855,
+              47.66725482169843
+            ],
+            [
+              -122.31798866610055,
+              47.66725385762564
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 80,
+        "id": 77,
+        "layer": 0,
+        "osm_way_ids": [
+          400030862
+        ],
+        "src_i": 48,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -2833,6 +3001,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31729341037627,
+              47.66573293477486
+            ],
+            [
+              -122.31698901876746,
+              47.665730535384746
+            ],
+            [
+              -122.3169883938677,
+              47.66576650645136
+            ],
+            [
+              -122.31729278547651,
+              47.665768905841475
+            ],
+            [
+              -122.31729341037627,
+              47.66573293477486
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 51,
+        "id": 80,
+        "layer": 0,
+        "osm_way_ids": [
+          400030863
+        ],
+        "src_i": 204,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -3385,6 +3593,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31748942994659,
+              47.669752386257386
+            ],
+            [
+              -122.31766958934746,
+              47.669752386257386
+            ],
+            [
+              -122.31766958934746,
+              47.66971641339212
+            ],
+            [
+              -122.31748942994659,
+              47.66971641339212
+            ],
+            [
+              -122.31748942994659,
+              47.669752386257386
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 60,
+        "id": 94,
+        "layer": 0,
+        "osm_way_ids": [
+          400030874
+        ],
+        "src_i": 262,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -5399,8 +5647,8 @@
         "coordinates": [
           [
             [
-              -122.31780098119748,
-              47.668516432351325
+              -122.31780123623136,
+              47.668516434149964
             ],
             [
               -122.31831724586979,
@@ -5411,12 +5659,12 @@
               47.66850658298081
             ],
             [
-              -122.31780119216792,
-              47.66850294252685
+              -122.31780144720179,
+              47.66850294432549
             ],
             [
-              -122.31780098119748,
-              47.668516432351325
+              -122.31780123623136,
+              47.668516434149964
             ]
           ]
         ],
@@ -5715,12 +5963,12 @@
               47.667181763507045
             ],
             [
-              -122.31798551489665,
-              47.66717589813137
+              -122.3179866031302,
+              47.6671759161178
             ],
             [
-              -122.31798501284042,
-              47.66718938435855
+              -122.31798610107398,
+              47.66718940234499
             ],
             [
               -122.31833261199456,
@@ -8441,8 +8689,8 @@
         "coordinates": [
           [
             [
-              -122.31755156474415,
-              47.66202985654842
+              -122.31755155940313,
+              47.66203007508358
             ],
             [
               -122.31752819376031,
@@ -8453,12 +8701,12 @@
               47.663035980717645
             ],
             [
-              -122.31757159091198,
-              47.662030066989686
+              -122.31757158557095,
+              47.66203028552484
             ],
             [
-              -122.31755156474415,
-              47.66202985654842
+              -122.31755155940313,
+              47.66203007508358
             ]
           ]
         ],
@@ -9819,8 +10067,8 @@
         "coordinates": [
           [
             [
-              -122.31752116230281,
-              47.66365067244875
+              -122.31752116096754,
+              47.66365088828595
             ],
             [
               -122.31751504683083,
@@ -9831,12 +10079,12 @@
               47.66454143793433
             ],
             [
-              -122.31754119114115,
-              47.66365073540127
+              -122.3175411898059,
+              47.66365095123846
             ],
             [
-              -122.31752116230281,
-              47.66365067244875
+              -122.31752116096754,
+              47.66365088828595
             ]
           ]
         ],
@@ -11588,8 +11836,8 @@
         "coordinates": [
           [
             [
-              -122.31731343787935,
-              47.66573309575343
+              -122.31731343921462,
+              47.665733048089386
             ],
             [
               -122.3173206896541,
@@ -11600,12 +11848,12 @@
               47.6651490645947
             ],
             [
-              -122.31729340904101,
-              47.665732982438904
+              -122.31729341037627,
+              47.66573293477486
             ],
             [
-              -122.31731343787935,
-              47.66573309575343
+              -122.31731343921462,
+              47.665733048089386
             ]
           ]
         ],
@@ -12929,12 +13177,12 @@
               47.665253903913225
             ],
             [
-              -122.31749898103197,
-              47.665981198806506
+              -122.31749898236723,
+              47.665981122364165
             ],
             [
-              -122.31751900719979,
-              47.665981396657266
+              -122.31751900853506,
+              47.665981320214925
             ],
             [
               -122.31753481662953,
@@ -14661,8 +14909,8 @@
         "coordinates": [
           [
             [
-              -122.317469399773,
-              47.669752275640825
+              -122.31746940110826,
+              47.66975244381397
             ],
             [
               -122.31747046931297,
@@ -14673,12 +14921,12 @@
               47.66991890285205
             ],
             [
-              -122.31748942861134,
-              47.66975221808424
+              -122.31748942994659,
+              47.669752386257386
             ],
             [
-              -122.317469399773,
-              47.669752275640825
+              -122.31746940110826,
+              47.66975244381397
             ]
           ]
         ],
@@ -16664,6 +16912,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31780144720179,
+              47.66850294432549
+            ],
+            [
+              -122.31780701121308,
+              47.66834739585745
+            ],
+            [
+              -122.31775361700058,
+              47.6683465289114
+            ],
+            [
+              -122.31774805298929,
+              47.668502077379436
+            ],
+            [
+              -122.31780144720179,
+              47.66850294432549
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 306,
+        "id": 450,
+        "layer": 0,
+        "osm_way_ids": [
+          565125023
+        ],
+        "src_i": 305,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -19265,6 +19553,126 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31701061386096,
+              47.660884319539875
+            ],
+            [
+              -122.3170525315491,
+              47.660876427093235
+            ],
+            [
+              -122.3171121614066,
+              47.66084213236214
+            ],
+            [
+              -122.31712840612975,
+              47.66078862902031
+            ],
+            [
+              -122.31708925909759,
+              47.660743565812
+            ],
+            [
+              -122.31702380485389,
+              47.66072388415809
+            ],
+            [
+              -122.31699519966698,
+              47.66072610548252
+            ],
+            [
+              -122.31699825740296,
+              47.660743973204696
+            ],
+            [
+              -122.31701959612732,
+              47.66074231665425
+            ],
+            [
+              -122.31707054148053,
+              47.6607576347996
+            ],
+            [
+              -122.31710019484332,
+              47.66079177125009
+            ],
+            [
+              -122.31708783838532,
+              47.66083246825188
+            ],
+            [
+              -122.31703966769385,
+              47.66086017275407
+            ],
+            [
+              -122.31700342484325,
+              47.66086699680661
+            ],
+            [
+              -122.31701061386096,
+              47.660884319539875
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 373,
+        "id": 516,
+        "layer": 0,
+        "osm_way_ids": [
+          737096041
+        ],
+        "src_i": 372,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31751971488542,
+              47.66601728858358
+            ],
+            [
+              -122.31780324712673,
+              47.66601476059048
+            ],
+            [
+              -122.3178025394411,
+              47.6659787913225
+            ],
+            [
+              -122.31751900719979,
+              47.665981319315605
+            ],
+            [
+              -122.31751971488542,
+              47.66601728858358
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 374,
+        "id": 517,
+        "layer": 0,
+        "osm_way_ids": [
+          744810333
+        ],
+        "src_i": 308,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -21417,6 +21825,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31822520534608,
+              47.66541064128447
+            ],
+            [
+              -122.31817179511052,
+              47.66541075819627
+            ],
+            [
+              -122.31817162019199,
+              47.66537478533101
+            ],
+            [
+              -122.31822503042756,
+              47.6653746684192
+            ],
+            [
+              -122.31822520534608,
+              47.66541064128447
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 21,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          3003528176
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -21565,6 +22014,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31772696929879,
+              47.66203928143912
+            ],
+            [
+              -122.31768343194527,
+              47.66206011872133
+            ],
+            [
+              -122.31765725158304,
+              47.662039140245625
+            ],
+            [
+              -122.31768319293447,
+              47.66200769456545
+            ],
+            [
+              -122.31772696929879,
+              47.66203928143912
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 25,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          3375583413
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -21694,6 +22184,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31757855427144,
+              47.66361521489479
+            ],
+            [
+              -122.3175780468742,
+              47.663651185961406
+            ],
+            [
+              -122.31755924780653,
+              47.66365106545231
+            ],
+            [
+              -122.31755975253326,
+              47.66361509438569
+            ],
+            [
+              -122.31757855427144,
+              47.66361521489479
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 31,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          5443485506
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -22341,24 +22872,28 @@
         "coordinates": [
           [
             [
-              -122.3182239608876,
-              47.66515384808646
+              -122.31822404767922,
+              47.66517160339343
+            ],
+            [
+              -122.31817063744366,
+              47.665171720305246
             ],
             [
-              -122.3181838190898,
-              47.665171806640124
+              -122.31817029294763,
+              47.665171719405926
             ],
             [
-              -122.31818407545893,
-              47.66515382020749
+              -122.31817054931676,
+              47.665153732973295
             ],
             [
-              -122.31817055065203,
-              47.665153964998275
+              -122.31822395955234,
+              47.66515361516216
             ],
             [
-              -122.3182239608876,
-              47.66515384808646
+              -122.31822404767922,
+              47.66517160339343
             ]
           ]
         ],
@@ -22368,8 +22903,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 45,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #37 -> Road #36",
+          "Road #36 -> Road #37"
+        ],
         "osm_node_ids": [
           3976726723
         ],
@@ -22459,6 +22997,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3179900961596,
+              47.667289817900404
+            ],
+            [
+              -122.31793670461761,
+              47.66729078197319
+            ],
+            [
+              -122.31793527455855,
+              47.66725482169843
+            ],
+            [
+              -122.31798866610055,
+              47.66725385762564
+            ],
+            [
+              -122.3179900961596,
+              47.667289817900404
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 48,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          4026632159
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -22560,6 +23139,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3169349876379,
+              47.66576608556884
+            ],
+            [
+              -122.31693561253765,
+              47.665730114502225
+            ],
+            [
+              -122.31698901876746,
+              47.665730535384746
+            ],
+            [
+              -122.3169883938677,
+              47.66576650645136
+            ],
+            [
+              -122.3169349876379,
+              47.66576608556884
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 51,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          4026632162
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -22923,6 +23543,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31772299958304,
+              47.66971641339212
+            ],
+            [
+              -122.31772299958304,
+              47.669752386257386
+            ],
+            [
+              -122.31766958934746,
+              47.669752386257386
+            ],
+            [
+              -122.31766958934746,
+              47.66971641339212
+            ],
+            [
+              -122.31772299958304,
+              47.66971641339212
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 60,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          4026632199
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -23674,12 +24335,20 @@
         "coordinates": [
           [
             [
-              -122.31798551356138,
-              47.66717589813137
+              -122.31798660179494,
+              47.6671759161178
+            ],
+            [
+              -122.31798609973872,
+              47.66718940234499
             ],
             [
-              -122.31798501150517,
-              47.66718938435855
+              -122.31793270953199,
+              47.66719036641778
+            ],
+            [
+              -122.31793264410445,
+              47.66718870986733
             ],
             [
               -122.31793178019389,
@@ -23696,6 +24365,10 @@
             [
               -122.31798551356138,
               47.66717589813137
+            ],
+            [
+              -122.31798660179494,
+              47.6671759161178
             ]
           ]
         ],
@@ -23705,8 +24378,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 80,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #77 -> Road #78",
+          "Road #78 -> Road #77"
+        ],
         "osm_node_ids": [
           4694379060
         ],
@@ -25862,8 +26538,16 @@
         "coordinates": [
           [
             [
-              -122.31757159091198,
-              47.662030066989686
+              -122.31757534431628,
+              47.661994403491065
+            ],
+            [
+              -122.31757158690621,
+              47.66203028642416
+            ],
+            [
+              -122.31755155940313,
+              47.6620300759829
             ],
             [
               -122.31755156474415,
@@ -25882,8 +26566,8 @@
               47.661994128298645
             ],
             [
-              -122.31757159091198,
-              47.662030066989686
+              -122.31757534431628,
+              47.661994403491065
             ]
           ]
         ],
@@ -25893,8 +26577,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 136,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #42 -> Road #41",
+          "Road #41 -> Road #42"
+        ],
         "osm_node_ids": [
           4829750343
         ],
@@ -27274,12 +27961,20 @@
         "coordinates": [
           [
             [
-              -122.31754119114115,
-              47.66365073540127
+              -122.31754169720313,
+              47.663614979272516
+            ],
+            [
+              -122.3175411898059,
+              47.66365095033914
+            ],
+            [
+              -122.31752116096754,
+              47.66365088828595
             ],
             [
               -122.31752116230281,
-              47.66365067244875
+              47.66365067334808
             ],
             [
               -122.31751966281044,
@@ -27294,8 +27989,12 @@
               47.66361474904618
             ],
             [
-              -122.31754119114115,
-              47.66365073540127
+              -122.31754143415772,
+              47.66361497747388
+            ],
+            [
+              -122.31754169720313,
+              47.663614979272516
             ]
           ]
         ],
@@ -27305,8 +28004,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 172,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #52 -> Road #51",
+          "Road #51 -> Road #52"
+        ],
         "osm_node_ids": [
           4831220177
         ],
@@ -28631,12 +29333,16 @@
               47.66576895350553
             ],
             [
-              -122.31729340904101,
-              47.665732982438904
+              -122.31729278547651,
+              47.665768905841475
             ],
             [
-              -122.31731343787935,
-              47.66573309575343
+              -122.31729341037627,
+              47.66573293477486
+            ],
+            [
+              -122.31731343921462,
+              47.665733048089386
             ],
             [
               -122.31731363816773,
@@ -28650,8 +29356,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 204,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #79 -> Road #80",
+          "Road #80 -> Road #79"
+        ],
         "osm_node_ids": [
           5154271085
         ],
@@ -31338,8 +32047,16 @@
         "coordinates": [
           [
             [
-              -122.31748942861134,
-              47.66975221808424
+              -122.31748942994659,
+              47.66971641339212
+            ],
+            [
+              -122.31748942994659,
+              47.669752386257386
+            ],
+            [
+              -122.31746940110826,
+              47.66975244381397
             ],
             [
               -122.317469399773,
@@ -31358,8 +32075,12 @@
               47.66971623712509
             ],
             [
-              -122.31748942861134,
-              47.66975221808424
+              -122.31748919894733,
+              47.66971641339212
+            ],
+            [
+              -122.31748942994659,
+              47.66971641339212
             ]
           ]
         ],
@@ -31369,8 +32090,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 262,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #94 -> Road #93",
+          "Road #93 -> Road #94"
+        ],
         "osm_node_ids": [
           5154405767
         ],
@@ -33318,11 +34042,15 @@
         "coordinates": [
           [
             [
-              -122.31780119216792,
-              47.66850294252685
+              -122.31780144720179,
+              47.66850294432549
             ],
             [
-              -122.31780098119748,
+              -122.31780123623136,
+              47.668516434149964
+            ],
+            [
+              -122.31780098253275,
               47.668516432351325
             ],
             [
@@ -33338,8 +34066,16 @@
               47.66850256571109
             ],
             [
-              -122.31780119216792,
-              47.66850294252685
+              -122.31774803563096,
+              47.66850256750973
+            ],
+            [
+              -122.31774805298929,
+              47.668502077379436
+            ],
+            [
+              -122.31780144720179,
+              47.66850294432549
             ]
           ]
         ],
@@ -33349,10 +34085,54 @@
         "control": "Signed",
         "crossing": null,
         "id": 305,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #449 -> Road #450",
+          "Road #450 -> Road #449"
+        ],
+        "osm_node_ids": [
+          5443485487
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.317754902852,
+              47.668310566837995
+            ],
+            [
+              -122.3178082970645,
+              47.66831143378405
+            ],
+            [
+              -122.31780701121308,
+              47.66834739585745
+            ],
+            [
+              -122.31775361700058,
+              47.6683465289114
+            ],
+            [
+              -122.317754902852,
+              47.668310566837995
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 306,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          5443485487
+          5443485486
         ],
         "type": "intersection"
       },
@@ -33428,8 +34208,16 @@
               47.665981199705826
             ],
             [
-              -122.31751900719979,
-              47.665981396657266
+              -122.31751900853506,
+              47.665981320214925
+            ],
+            [
+              -122.31751971488542,
+              47.66601728858358
+            ],
+            [
+              -122.31751822340459,
+              47.666017302073406
             ],
             [
               -122.31751822206934,
@@ -33443,8 +34231,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 308,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #452 -> Road #517",
+          "Road #517 -> Road #452"
+        ],
         "osm_node_ids": [
           5443485496
         ],
@@ -36636,6 +37427,129 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31698489416202,
+              47.66088916148754
+            ],
+            [
+              -122.31697770514431,
+              47.660871838754275
+            ],
+            [
+              -122.31700342484325,
+              47.66086699680661
+            ],
+            [
+              -122.31701061386096,
+              47.660884319539875
+            ],
+            [
+              -122.31698489416202,
+              47.66088916148754
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 372,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          6886226579
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31697172853895,
+              47.66074603355055
+            ],
+            [
+              -122.31696867080296,
+              47.660728165828374
+            ],
+            [
+              -122.31699519966698,
+              47.66072610548252
+            ],
+            [
+              -122.31699825740296,
+              47.660743973204696
+            ],
+            [
+              -122.31697172853895,
+              47.66074603355055
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 373,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          6900725446
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31785594567091,
+              47.665978315581356
+            ],
+            [
+              -122.31785665335653,
+              47.66601428484933
+            ],
+            [
+              -122.31780324846198,
+              47.66601476059048
+            ],
+            [
+              -122.31780254077636,
+              47.6659787913225
+            ],
+            [
+              -122.31785594567091,
+              47.665978315581356
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 374,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          5443485495
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/seattle_slip_lane/geometry.json b/tests/src/seattle_slip_lane/geometry.json
index 041344da..40e2790d 100644
--- a/tests/src/seattle_slip_lane/geometry.json
+++ b/tests/src/seattle_slip_lane/geometry.json
@@ -1878,12 +1878,12 @@
               47.66074215612323
             ],
             [
-              -122.31781919839047,
-              47.66084954320401
+              -122.3178192037315,
+              47.66084939931257
             ],
             [
-              -122.31783922191428,
-              47.66084985077196
+              -122.31783922725532,
+              47.66084970688052
             ],
             [
               -122.31784286316191,
@@ -4121,12 +4121,12 @@
               47.661407469671026
             ],
             [
-              -122.31667680134419,
-              47.66144885374841
+              -122.31667682003778,
+              47.66144849132185
             ],
             [
-              -122.31669681952697,
-              47.66144931779831
+              -122.31669683822058,
+              47.66144895537174
             ],
             [
               -122.31669893591035,
@@ -4161,12 +4161,12 @@
               47.661484815816486
             ],
             [
-              -122.31666896338174,
-              47.66160781242051
+              -122.31666898341061,
+              47.66160740053127
             ],
             [
-              -122.31668898156452,
-              47.66160825848398
+              -122.31668900159339,
+              47.661607846594734
             ],
             [
               -122.31669501826438,
@@ -6398,6 +6398,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31669653378184,
+              47.66148492823167
+            ],
+            [
+              -122.31670146755887,
+              47.66148494711742
+            ],
+            [
+              -122.31670177199761,
+              47.661448974257496
+            ],
+            [
+              -122.31669683822058,
+              47.66144895537174
+            ],
+            [
+              -122.31669653378184,
+              47.66148492823167
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 131,
+        "id": 178,
+        "layer": 0,
+        "osm_way_ids": [
+          869018040
+        ],
+        "src_i": 130,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6438,6 +6478,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31668875590599,
+              47.66164381945466
+            ],
+            [
+              -122.31669717737601,
+              47.66164384553498
+            ],
+            [
+              -122.31669742306343,
+              47.661607872675056
+            ],
+            [
+              -122.31668900159339,
+              47.661607846594734
+            ],
+            [
+              -122.31668875590599,
+              47.66164381945466
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 133,
+        "id": 180,
+        "layer": 0,
+        "osm_way_ids": [
+          869018041
+        ],
+        "src_i": 132,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -7337,6 +7417,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31794946746268,
+              47.66084964392802
+            ],
+            [
+              -122.31783922859057,
+              47.66084970688052
+            ],
+            [
+              -122.31783927398934,
+              47.66088567974045
+            ],
+            [
+              -122.31794951286145,
+              47.660885616787944
+            ],
+            [
+              -122.31794946746268,
+              47.66084964392802
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 168,
+        "id": 213,
+        "layer": 0,
+        "osm_way_ids": [
+          1175634457
+        ],
+        "src_i": 167,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -12637,6 +12757,18 @@
       "geometry": {
         "coordinates": [
           [
+            [
+              -122.31669683688531,
+              47.66144895537174
+            ],
+            [
+              -122.31669653511709,
+              47.66148492823167
+            ],
+            [
+              -122.31669503562274,
+              47.66148492283574
+            ],
             [
               -122.31669501826438,
               47.661485260980626
@@ -12654,12 +12786,16 @@
               47.66144885284909
             ],
             [
-              -122.31669681952697,
-              47.66144931689898
+              -122.31667682003778,
+              47.66144849132185
             ],
             [
-              -122.31669501826438,
-              47.661485260980626
+              -122.31669683822058,
+              47.66144895537174
+            ],
+            [
+              -122.31669683688531,
+              47.66144895537174
             ]
           ]
         ],
@@ -12669,10 +12805,54 @@
         "control": "Signed",
         "crossing": null,
         "id": 130,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #178 -> Road #177",
+          "Road #177 -> Road #178"
+        ],
+        "osm_node_ids": [
+          5457919977
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.3167122510997,
+              47.661449013827635
+            ],
+            [
+              -122.31671194933148,
+              47.66148498668757
+            ],
+            [
+              -122.31670146755887,
+              47.66148494711742
+            ],
+            [
+              -122.31670177199761,
+              47.661448974257496
+            ],
+            [
+              -122.3167122510997,
+              47.661449013827635
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 131,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          5457919977
+          8100069332
         ],
         "type": "intersection"
       },
@@ -12682,6 +12862,18 @@
       "geometry": {
         "coordinates": [
           [
+            [
+              -122.31668900292865,
+              47.661607846594734
+            ],
+            [
+              -122.31668875457072,
+              47.66164381945466
+            ],
+            [
+              -122.31668715760257,
+              47.661643814058735
+            ],
             [
               -122.31668713356792,
               47.66164427181337
@@ -12699,12 +12891,16 @@
               47.66160781331983
             ],
             [
-              -122.31668898156452,
-              47.66160825848398
+              -122.31666898341061,
+              47.66160740143059
             ],
             [
-              -122.31668713356792,
-              47.66164427181337
+              -122.31668900159339,
+              47.661607847494054
+            ],
+            [
+              -122.31668900292865,
+              47.661607846594734
             ]
           ]
         ],
@@ -12714,10 +12910,54 @@
         "control": "Signed",
         "crossing": null,
         "id": 132,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #180 -> Road #179",
+          "Road #179 -> Road #180"
+        ],
+        "osm_node_ids": [
+          5457919980
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31671022417858,
+              47.66160791314452
+            ],
+            [
+              -122.31670997582066,
+              47.661643886004455
+            ],
+            [
+              -122.31669717604076,
+              47.66164384643431
+            ],
+            [
+              -122.31669742439868,
+              47.661607873574376
+            ],
+            [
+              -122.31671022417858,
+              47.66160791314452
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 133,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          5457919980
+          8100069333
         ],
         "type": "intersection"
       },
@@ -13942,6 +14182,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -122.31800287776895,
+              47.66084961335108
+            ],
+            [
+              -122.3180029231677,
+              47.660885586211016
+            ],
+            [
+              -122.31794951286145,
+              47.660885616787944
+            ],
+            [
+              -122.31794946746268,
+              47.66084964392802
+            ],
+            [
+              -122.31800287776895,
+              47.66084961335108
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 167,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          10924197501
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -13963,8 +14244,20 @@
               47.66084954320401
             ],
             [
-              -122.31783922191428,
-              47.66084985077196
+              -122.3178192037315,
+              47.66084939931257
+            ],
+            [
+              -122.31783922725532,
+              47.66084970688052
+            ],
+            [
+              -122.31783927398934,
+              47.66088567974045
+            ],
+            [
+              -122.31783819109538,
+              47.66088568063977
             ],
             [
               -122.31783819109538,
@@ -13978,8 +14271,11 @@
         "control": "Signed",
         "crossing": null,
         "id": 168,
-        "intersection_kind": "Terminus",
-        "movements": [],
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #214 -> Road #213",
+          "Road #213 -> Road #214"
+        ],
         "osm_node_ids": [
           10924197494
         ],
diff --git a/tests/src/st_georges_cycletrack/geometry.json b/tests/src/st_georges_cycletrack/geometry.json
index 84f65e08..a7166a8e 100644
--- a/tests/src/st_georges_cycletrack/geometry.json
+++ b/tests/src/st_georges_cycletrack/geometry.json
@@ -6,24 +6,64 @@
         "coordinates": [
           [
             [
-              -0.10402168982098282,
-              51.495161372374916
+              -0.10402237594849723,
+              51.495161851713384
             ],
             [
-              -0.1036648269561026,
-              51.495707936937784
+              -0.10379846581768341,
+              51.49551552346241
             ],
             [
-              -0.10374511687559965,
-              51.49572825621231
+              -0.10387909663421918,
+              51.49553531033849
             ],
             [
-              -0.10410197974047986,
-              51.49518169164944
+              -0.10410300676503301,
+              51.495181638589465
             ],
             [
-              -0.10402168982098282,
-              51.495161372374916
+              -0.10402237594849723,
+              51.495161851713384
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 50,
+        "id": 1,
+        "layer": 0,
+        "osm_way_ids": [
+          4253572
+        ],
+        "src_i": 2,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10377649384795345,
+              51.495548910780585
+            ],
+            [
+              -0.10366643610568377,
+              51.49570843696065
+            ],
+            [
+              -0.10374607023172493,
+              51.495729732898546
+            ],
+            [
+              -0.10385612797399461,
+              51.49557020671848
+            ],
+            [
+              -0.10377649384795345,
+              51.495548910780585
             ]
           ]
         ],
@@ -34,10 +74,9 @@
         "id": 2,
         "layer": 0,
         "osm_way_ids": [
-          4253572,
           4253572
         ],
-        "src_i": 2,
+        "src_i": 50,
         "type": "road"
       },
       "type": "Feature"
@@ -795,8 +834,44 @@
               51.49570640899021
             ],
             [
-              -0.10255724236588486,
-              51.496369462693096
+              -0.10256809618092337,
+              51.49635603582009
+            ],
+            [
+              -0.10264551447621272,
+              51.496380294123675
+            ],
+            [
+              -0.10317065047512229,
+              51.49573066729379
+            ],
+            [
+              -0.10309323217983293,
+              51.49570640899021
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 182,
+        "id": 22,
+        "layer": 0,
+        "osm_way_ids": [
+          10873089
+        ],
+        "src_i": 101,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10253282633772462,
+              51.496415713009576
             ],
             [
               -0.10251433122889402,
@@ -815,16 +890,12 @@
               51.496434253425775
             ],
             [
-              -0.10263755828600349,
-              51.496390138099024
-            ],
-            [
-              -0.10317065047512229,
-              51.49573066729379
+              -0.1026151616394541,
+              51.496432560902335
             ],
             [
-              -0.10309323217983293,
-              51.49570640899021
+              -0.10253282633772462,
+              51.496415713009576
             ]
           ]
         ],
@@ -835,10 +906,9 @@
         "id": 23,
         "layer": 0,
         "osm_way_ids": [
-          10873089,
           10873089
         ],
-        "src_i": 101,
+        "src_i": 182,
         "type": "road"
       },
       "type": "Feature"
@@ -1652,6 +1722,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10379846437320443,
+              51.49551552346241
+            ],
+            [
+              -0.10352090051524254,
+              51.49542859682536
+            ],
+            [
+              -0.10349493745009719,
+              51.49546073318705
+            ],
+            [
+              -0.10377250130805907,
+              51.4955476598241
+            ],
+            [
+              -0.10379846437320443,
+              51.49551552346241
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 51,
+        "id": 45,
+        "layer": 0,
+        "osm_way_ids": [
+          52823949
+        ],
+        "src_i": 50,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -7936,6 +8046,54 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10251519069388576,
+              51.49636288415485
+            ],
+            [
+              -0.10251125737762945,
+              51.49636339317093
+            ],
+            [
+              -0.10247763279598632,
+              51.496354718313796
+            ],
+            [
+              -0.10244445311386831,
+              51.49640456771573
+            ],
+            [
+              -0.10250274361853483,
+              51.49641960617322
+            ],
+            [
+              -0.10253282489324564,
+              51.496415713908895
+            ],
+            [
+              -0.10251519069388576,
+              51.49636288415485
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 183,
+        "id": 193,
+        "layer": 0,
+        "osm_way_ids": [
+          616545425
+        ],
+        "src_i": 182,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -9747,20 +9905,12 @@
               51.49544782432335
             ],
             [
-              -0.10209741559499448,
-              51.49546429360167
-            ],
-            [
-              -0.10206834256661011,
-              51.49545927178929
+              -0.10209746904071666,
+              51.49546420097153
             ],
             [
-              -0.10205289530842249,
-              51.49549393524496
-            ],
-            [
-              -0.10213378468669528,
-              51.49550790710692
+              -0.10215189411963882,
+              51.49547628066063
             ],
             [
               -0.10216127167716212,
@@ -9774,15 +9924,54 @@
         ],
         "type": "Polygon"
       },
+      "properties": {
+        "dst_i": 230,
+        "id": 252,
+        "layer": 0,
+        "osm_way_ids": [
+          744806591
+        ],
+        "src_i": 227,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.1020974141505155,
+              51.49546429270235
+            ],
+            [
+              -0.10209466386254194,
+              51.49546381786049
+            ],
+            [
+              -0.10207922238227023,
+              51.49549848311481
+            ],
+            [
+              -0.10208197267024378,
+              51.49549895795666
+            ],
+            [
+              -0.1020974141505155,
+              51.49546429270235
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
       "properties": {
         "dst_i": 231,
         "id": 253,
         "layer": 0,
         "osm_way_ids": [
-          744806591,
           744806591
         ],
-        "src_i": 227,
+        "src_i": 230,
         "type": "road"
       },
       "type": "Feature"
@@ -9792,8 +9981,8 @@
         "coordinates": [
           [
             [
-              -0.10204449855212505,
-              51.495454137561694
+              -0.10204174537519353,
+              51.49545342170162
             ],
             [
               -0.10199450946814344,
@@ -9812,12 +10001,12 @@
               51.49545585256818
             ],
             [
-              -0.1020222420200365,
-              51.49548733512299
+              -0.10201949173206294,
+              51.49548661926292
             ],
             [
-              -0.10204449855212505,
-              51.495454137561694
+              -0.10204174537519353,
+              51.49545342170162
             ]
           ]
         ],
@@ -9836,6 +10025,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10218204617381954,
+              51.495484405132885
+            ],
+            [
+              -0.10215189267515984,
+              51.49547628066063
+            ],
+            [
+              -0.10212894568211994,
+              51.4955092947603
+            ],
+            [
+              -0.10215909918077964,
+              51.495517419232556
+            ],
+            [
+              -0.10218204617381954,
+              51.495484405132885
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 230,
+        "id": 255,
+        "layer": 0,
+        "osm_way_ids": [
+          744806592
+        ],
+        "src_i": 229,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10202167433979825,
+              51.49550170988107
+            ],
+            [
+              -0.10202394361627223,
+              51.495517385957655
+            ],
+            [
+              -0.10208148876978625,
+              51.49551415739275
+            ],
+            [
+              -0.10207921949331226,
+              51.49549848131616
+            ],
+            [
+              -0.10202167433979825,
+              51.49550170988107
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 232,
+        "id": 256,
+        "layer": 0,
+        "osm_way_ids": [
+          744806593
+        ],
+        "src_i": 231,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -10113,8 +10382,8 @@
         "coordinates": [
           [
             [
-              -0.10097793716487427,
-              51.495200053100625
+              -0.10097671513565912,
+              51.49519643602874
             ],
             [
               -0.1009355142617779,
@@ -10149,12 +10418,12 @@
               51.495079040372445
             ],
             [
-              -0.10095673510243944,
-              51.495202832004686
+              -0.1009555130732243,
+              51.4951992149328
             ],
             [
-              -0.10097793716487427,
-              51.495200053100625
+              -0.10097671513565912,
+              51.49519643602874
             ]
           ]
         ],
@@ -10534,6 +10803,54 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.1009555130732243,
+              51.4951992149328
+            ],
+            [
+              -0.10091498243758873,
+              51.49519766540151
+            ],
+            [
+              -0.10091266982674542,
+              51.495121028803375
+            ],
+            [
+              -0.10085490222346884,
+              51.4951217050933
+            ],
+            [
+              -0.10085821730272268,
+              51.495231533856796
+            ],
+            [
+              -0.10095197121077096,
+              51.495235119452424
+            ],
+            [
+              -0.1009555130732243,
+              51.4951992149328
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 247,
+        "id": 276,
+        "layer": 0,
+        "osm_way_ids": [
+          749628859
+        ],
+        "src_i": 246,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -10675,19 +10992,59 @@
         "coordinates": [
           [
             [
-              -0.10084466231199585,
-              51.49452847652597
+              -0.10191579258625313,
+              51.494476139600216
             ],
             [
-              -0.10093152461084147,
-              51.49469728910192
+              -0.1019164946030363,
+              51.494517020966136
             ],
             [
-              -0.10102306124365895,
-              51.49474584617857
+              -0.10197427087318674,
+              51.494516636056446
             ],
             [
-              -0.10103711313515412,
+              -0.10197356885640357,
+              51.49447575469053
+            ],
+            [
+              -0.10191579258625313,
+              51.494476139600216
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 256,
+        "id": 282,
+        "layer": 0,
+        "osm_way_ids": [
+          966551631
+        ],
+        "src_i": 255,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10084466231199585,
+              51.49452847652597
+            ],
+            [
+              -0.10093152461084147,
+              51.49469728910192
+            ],
+            [
+              -0.10102306124365895,
+              51.49474584617857
+            ],
+            [
+              -0.10103711313515412,
               51.494735577723375
             ],
             [
@@ -11728,12 +12085,12 @@
               51.49567497589809
             ],
             [
-              -0.10359610297978009,
-              51.49579360542376
+              -0.10359771212936127,
+              51.49579410544663
             ],
             [
-              -0.10366482840058158,
-              51.49570793603846
+              -0.10366643755016275,
+              51.49570843606133
             ],
             [
               -0.10328332994673653,
@@ -11921,6 +12278,46 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10238675773454062,
+              51.49636461355048
+            ],
+            [
+              -0.10241725357471804,
+              51.49638291114982
+            ],
+            [
+              -0.10245734653322336,
+              51.49635700888617
+            ],
+            [
+              -0.10242685069304594,
+              51.49633871128683
+            ],
+            [
+              -0.10238675773454062,
+              51.49636461355048
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 183,
+        "id": 322,
+        "layer": 0,
+        "osm_way_ids": [
+          1074416805
+        ],
+        "src_i": 284,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -13143,24 +13540,24 @@
         "coordinates": [
           [
             [
-              -0.10405432782348417,
-              51.49511138537677
+              -0.1040541573749648,
+              51.49511165157599
             ],
             [
-              -0.10413461774298122,
-              51.4951317046513
+              -0.10413478819150059,
+              51.49513143845207
             ],
             [
-              -0.10410197974047986,
-              51.49518169164944
+              -0.10410300676503301,
+              51.495181638589465
             ],
             [
-              -0.10402168982098282,
-              51.495161372374916
+              -0.10402237594849723,
+              51.495161851713384
             ],
             [
-              -0.10405432782348417,
-              51.49511138537677
+              -0.1040541573749648,
+              51.49511165157599
             ]
           ]
         ],
@@ -13195,23 +13592,23 @@
             ],
             [
               -0.10362720405664917,
-              51.49580327583002
+              51.49580327672935
             ],
             [
-              -0.10359610442425907,
-              51.49579360542376
+              -0.10359771212936127,
+              51.495794106345954
             ],
             [
-              -0.10366482984506056,
-              51.49570793603846
+              -0.10366643755016275,
+              51.49570843696065
             ],
             [
-              -0.10374511687559965,
-              51.49572825621231
+              -0.10374607023172493,
+              51.495729732898546
             ],
             [
-              -0.10374231891981982,
-              51.49573254237954
+              -0.103743798066293,
+              51.495733026214616
             ],
             [
               -0.1037632060858375,
@@ -15071,6 +15468,99 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10385612797399461,
+              51.49557020671848
+            ],
+            [
+              -0.10377649384795345,
+              51.495548910780585
+            ],
+            [
+              -0.10377250130805907,
+              51.4955476598241
+            ],
+            [
+              -0.10379846437320443,
+              51.49551552346241
+            ],
+            [
+              -0.10387909663421918,
+              51.49553531033849
+            ],
+            [
+              -0.10385612797399461,
+              51.49557020671848
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 50,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #2 -> Road #45",
+          "Road #2 -> Road #1",
+          "Road #45 -> Road #2",
+          "Road #45 -> Road #1",
+          "Road #1 -> Road #2",
+          "Road #1 -> Road #45"
+        ],
+        "osm_node_ids": [
+          669880037
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10344331899382872,
+              51.49544456787947
+            ],
+            [
+              -0.10346928205897407,
+              51.49541243151778
+            ],
+            [
+              -0.10352089907076358,
+              51.49542859682536
+            ],
+            [
+              -0.10349493600561821,
+              51.49546073318705
+            ],
+            [
+              -0.10344331899382872,
+              51.49544456787947
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 51,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          669880040
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -17373,8 +17863,8 @@
         "id": 101,
         "intersection_kind": "Connection",
         "movements": [
-          "Road #23 -> Road #21",
-          "Road #21 -> Road #23"
+          "Road #22 -> Road #21",
+          "Road #21 -> Road #22"
         ],
         "osm_node_ids": [
           3799274007
@@ -21255,6 +21745,106 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.1026151616394541,
+              51.496432560902335
+            ],
+            [
+              -0.10253282633772462,
+              51.496415713009576
+            ],
+            [
+              -0.10251519069388576,
+              51.49636288415485
+            ],
+            [
+              -0.10256809618092337,
+              51.49635603761873
+            ],
+            [
+              -0.10264551447621272,
+              51.496380295022995
+            ],
+            [
+              -0.10263753228538189,
+              51.496390171373925
+            ],
+            [
+              -0.1026151616394541,
+              51.496432560902335
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 182,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #23 -> Road #193",
+          "Road #23 -> Road #22",
+          "Road #193 -> Road #23",
+          "Road #193 -> Road #22",
+          "Road #22 -> Road #23",
+          "Road #22 -> Road #193"
+        ],
+        "osm_node_ids": [
+          96619953
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10244445455834729,
+              51.49640456771573
+            ],
+            [
+              -0.10241725357471804,
+              51.49638291114982
+            ],
+            [
+              -0.10245734653322336,
+              51.49635700888617
+            ],
+            [
+              -0.1024776342404653,
+              51.496354718313796
+            ],
+            [
+              -0.10244445455834729,
+              51.49640456771573
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 183,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #193 -> Road #322",
+          "Road #322 -> Road #193"
+        ],
+        "osm_node_ids": [
+          5828997785
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -22629,11 +23219,11 @@
         "id": 227,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #253 -> Road #254",
-          "Road #253 -> Road #251",
-          "Road #254 -> Road #253",
+          "Road #252 -> Road #254",
+          "Road #252 -> Road #251",
+          "Road #254 -> Road #252",
           "Road #254 -> Road #251",
-          "Road #251 -> Road #253",
+          "Road #251 -> Road #252",
           "Road #251 -> Road #254"
         ],
         "osm_node_ids": [
@@ -22648,24 +23238,133 @@
         "coordinates": [
           [
             [
-              -0.10205289530842249,
-              51.49549393524496
+              -0.10223507299709128,
+              51.49549869265676
             ],
             [
-              -0.10202224346451547,
-              51.49548733422367
+              -0.10221212600405137,
+              51.49553170675643
             ],
             [
-              -0.10204449710764607,
-              51.495454136662374
+              -0.10215909918077964,
+              51.495517419232556
             ],
             [
-              -0.10206834256661011,
-              51.49545927178929
+              -0.10218204617381954,
+              51.495484405132885
             ],
             [
-              -0.10205289530842249,
-              51.49549393524496
+              -0.10223507299709128,
+              51.49549869265676
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 229,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          6970680619
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10215189267515984,
+              51.49547628066063
+            ],
+            [
+              -0.10212894568211994,
+              51.4955092947603
+            ],
+            [
+              -0.10210595102127377,
+              51.4955030993331
+            ],
+            [
+              -0.1020819712257648,
+              51.49549895705734
+            ],
+            [
+              -0.10209741559499448,
+              51.49546429360167
+            ],
+            [
+              -0.10209746904071666,
+              51.49546420097153
+            ],
+            [
+              -0.10215189411963882,
+              51.49547628066063
+            ],
+            [
+              -0.10215189267515984,
+              51.49547628066063
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 230,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #255 -> Road #253",
+          "Road #255 -> Road #252",
+          "Road #253 -> Road #255",
+          "Road #253 -> Road #252",
+          "Road #252 -> Road #255",
+          "Road #252 -> Road #253"
+        ],
+        "osm_node_ids": [
+          6970648944
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10209466386254194,
+              51.49546381875981
+            ],
+            [
+              -0.10207921949331226,
+              51.49549848221548
+            ],
+            [
+              -0.10202167433979825,
+              51.49550170988107
+            ],
+            [
+              -0.10201949028758396,
+              51.49548661926292
+            ],
+            [
+              -0.10204174537519353,
+              51.49545342170162
+            ],
+            [
+              -0.10205616849778597,
+              51.495457170074474
+            ],
+            [
+              -0.10209466386254194,
+              51.49546381875981
             ]
           ]
         ],
@@ -22675,10 +23374,14 @@
         "control": "Signed",
         "crossing": null,
         "id": 231,
-        "intersection_kind": "Connection",
+        "intersection_kind": "Intersection",
         "movements": [
+          "Road #253 -> Road #256",
+          "Road #253 -> Road #254",
+          "Road #256 -> Road #253",
+          "Road #256 -> Road #254",
           "Road #254 -> Road #253",
-          "Road #253 -> Road #254"
+          "Road #254 -> Road #256"
         ],
         "osm_node_ids": [
           6970680616
@@ -22687,6 +23390,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10208667300483726,
+              51.49554998547002
+            ],
+            [
+              -0.10202912785132325,
+              51.49555321403493
+            ],
+            [
+              -0.10202394361627223,
+              51.495517386856974
+            ],
+            [
+              -0.10208148876978625,
+              51.49551415829207
+            ],
+            [
+              -0.10208667300483726,
+              51.49554998547002
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 232,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          6970680617
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -23169,11 +23913,19 @@
               51.495236728338945
             ],
             [
-              -0.10095673510243944,
-              51.495202832004686
+              -0.10095197121077096,
+              51.495235119452424
             ],
             [
-              -0.10097793716487427,
+              -0.1009555130732243,
+              51.4951992149328
+            ],
+            [
+              -0.10097671513565912,
+              51.49519643602874
+            ],
+            [
+              -0.10097793860935325,
               51.495200053100625
             ],
             [
@@ -23188,10 +23940,54 @@
         "control": "Signed",
         "crossing": null,
         "id": 246,
+        "intersection_kind": "Connection",
+        "movements": [
+          "Road #275 -> Road #276",
+          "Road #276 -> Road #275"
+        ],
+        "osm_node_ids": [
+          7009968815
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.1008538159752776,
+              51.49508573852048
+            ],
+            [
+              -0.10091158357855418,
+              51.49508506223056
+            ],
+            [
+              -0.10091266982674542,
+              51.495121028803375
+            ],
+            [
+              -0.10085490222346884,
+              51.4951217050933
+            ],
+            [
+              -0.1008538159752776,
+              51.49508573852048
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 247,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          7009968815
+          7009968816
         ],
         "type": "intersection"
       },
@@ -23486,6 +24282,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10191517579372965,
+              51.494440168530794
+            ],
+            [
+              -0.1019729520638801,
+              51.494439783621104
+            ],
+            [
+              -0.10197356885640357,
+              51.49447575469053
+            ],
+            [
+              -0.10191579258625313,
+              51.494476139600216
+            ],
+            [
+              -0.10191517579372965,
+              51.494440168530794
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 255,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10197488766571022,
+              51.49455260712587
+            ],
+            [
+              -0.10191711139555977,
+              51.49455299203556
+            ],
+            [
+              -0.1019164946030363,
+              51.494517020966136
+            ],
+            [
+              -0.10197427087318674,
+              51.494516636056446
+            ],
+            [
+              -0.10197488766571022,
+              51.49455260712587
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 256,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8942303240
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -24814,6 +25690,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -0.10234515240654564,
+              51.49633965107801
+            ],
+            [
+              -0.10238524825400891,
+              51.49631374881435
+            ],
+            [
+              -0.10242685213752492,
+              51.49633871128683
+            ],
+            [
+              -0.10238675629006164,
+              51.49636461355048
+            ],
+            [
+              -0.10234515240654564,
+              51.49633965107801
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 284,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          9854961902
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
diff --git a/tests/src/tempe_light_rail/geometry.json b/tests/src/tempe_light_rail/geometry.json
index a716cf00..97751eed 100644
--- a/tests/src/tempe_light_rail/geometry.json
+++ b/tests/src/tempe_light_rail/geometry.json
@@ -1800,33 +1800,34 @@
           [
             [
               -111.90837755668498,
-              33.41489970298332
+              33.41489970478196
             ],
             [
-              -111.90837781418338,
-              33.414916943878254
+              -111.90838081904971,
+              33.41511885417431
             ],
             [
-              -111.90842090584111,
-              33.41491649601608
+              -111.90842391070744,
+              33.41511840631214
             ],
             [
               -111.90842064834271,
-              33.41489925512115
+              33.41489925691979
             ],
             [
               -111.90837755668498,
-              33.41489970298332
+              33.41489970478196
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 24,
-        "id": 47,
+        "dst_i": 25,
+        "id": 48,
         "layer": 0,
         "osm_way_ids": [
+          595303018,
           595303014
         ],
         "src_i": 55,
@@ -1879,34 +1880,35 @@
         "coordinates": [
           [
             [
-              -111.90896674858931,
-              33.415526089490655
+              -111.90896704595148,
+              33.415526030135425
             ],
             [
-              -111.90894664001095,
-              33.415526512171816
+              -111.9086747206181,
+              33.415530201189135
             ],
             [
-              -111.90894772387453,
-              33.41556247424509
+              -111.90867545755914,
+              33.415566168658344
             ],
             [
-              -111.90896783245289,
-              33.415562051563924
+              -111.90896778289253,
+              33.41556199760463
             ],
             [
-              -111.90896674858931,
-              33.415526089490655
+              -111.90896704595148,
+              33.415526030135425
             ]
           ]
         ],
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 27,
-        "id": 51,
+        "dst_i": 28,
+        "id": 52,
         "layer": 0,
         "osm_way_ids": [
+          595303020,
           595303019
         ],
         "src_i": 74,
@@ -2618,6 +2620,54 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.90952640251764,
+              33.41576377030448
+            ],
+            [
+              -111.90949693134039,
+              33.415759328554955
+            ],
+            [
+              -111.90935629196059,
+              33.41575824667104
+            ],
+            [
+              -111.9093558954777,
+              33.41579421773753
+            ],
+            [
+              -111.90949286954546,
+              33.415795270843155
+            ],
+            [
+              -111.90951874436425,
+              33.41579917120106
+            ],
+            [
+              -111.90952640251764,
+              33.41576377030448
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 43,
+        "id": 70,
+        "layer": 0,
+        "osm_way_ids": [
+          906161451
+        ],
+        "src_i": 42,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -3306,6 +3356,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.90890310877435,
+              33.415153033792116
+            ],
+            [
+              -111.90880028826071,
+              33.41521999278395
+            ],
+            [
+              -111.9088267965902,
+              33.41524835558947
+            ],
+            [
+              -111.90892961710387,
+              33.41518139659763
+            ],
+            [
+              -111.90890310877435,
+              33.415153033792116
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 65,
+        "id": 88,
+        "layer": 0,
+        "osm_way_ids": [
+          1264390439
+        ],
+        "src_i": 62,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.90877662426504,
+              33.415252513153355
+            ],
+            [
+              -111.90877459983199,
+              33.415386202709335
+            ],
+            [
+              -111.90881769148972,
+              33.41538665776608
+            ],
+            [
+              -111.90881971592277,
+              33.4152529682101
+            ],
+            [
+              -111.90877662426504,
+              33.415252513153355
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "dst_i": 63,
+        "id": 89,
+        "layer": 0,
+        "osm_way_ids": [
+          1264390439
+        ],
+        "src_i": 65,
+        "type": "road"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -3323,16 +3453,8 @@
               33.41513641252978
             ],
             [
-              -111.90879631373512,
-              33.41526820721509
-            ],
-            [
-              -111.90892961818126,
-              33.41518139659763
-            ],
-            [
-              -111.90890310985175,
-              33.415153033792116
+              -111.90876937444594,
+              33.415245058676376
             ],
             [
               -111.90880028718331,
@@ -3359,12 +3481,11 @@
         "type": "Polygon"
       },
       "properties": {
-        "dst_i": 62,
+        "dst_i": 65,
         "id": 90,
         "layer": 0,
         "osm_way_ids": [
-          1264390440,
-          1264390439
+          1264390440
         ],
         "src_i": 64,
         "type": "road"
@@ -3685,11 +3806,11 @@
             ],
             [
               -111.90898399020844,
-              33.415561731405425
+              33.415561713418995
             ],
             [
               -111.90896783353028,
-              33.415562051563924
+              33.415562033577494
             ],
             [
               -111.9089738809719,
@@ -5404,24 +5525,24 @@
         "coordinates": [
           [
             [
-              -111.90842114610113,
-              33.414932575886795
+              -111.90842444617483,
+              33.415154377378634
             ],
             [
-              -111.9083780544434,
-              33.414933023748965
+              -111.9083813545171,
+              33.41515482344216
             ],
             [
-              -111.90837781418338,
-              33.414916943878254
+              -111.90838081904971,
+              33.41511885327499
             ],
             [
-              -111.90842090584111,
-              33.41491649601608
+              -111.90842391070744,
+              33.415118407211466
             ],
             [
-              -111.90842114610113,
-              33.414932575886795
+              -111.90842444617483,
+              33.415154377378634
             ]
           ]
         ],
@@ -5430,11 +5551,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 24,
+        "id": 25,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          5674141391
+          5674141378
         ],
         "type": "intersection"
       },
@@ -5497,24 +5618,24 @@
         "coordinates": [
           [
             [
-              -111.90890464299079,
-              33.41556338076129
+              -111.9086323680562,
+              33.41556678379433
             ],
             [
-              -111.90890355697242,
-              33.41552741868802
+              -111.90863163111517,
+              33.41553081632513
             ],
             [
-              -111.90894663893356,
-              33.415526512171816
+              -111.9086747206181,
+              33.415530201189135
             ],
             [
-              -111.90894772495193,
-              33.41556247424509
+              -111.90867545755914,
+              33.415566168658344
             ],
             [
-              -111.90890464299079,
-              33.41556338076129
+              -111.9086323680562,
+              33.41556678379433
             ]
           ]
         ],
@@ -5523,11 +5644,11 @@
       "properties": {
         "control": "Signed",
         "crossing": null,
-        "id": 27,
+        "id": 28,
         "intersection_kind": "Terminus",
         "movements": [],
         "osm_node_ids": [
-          5674141393
+          5674141394
         ],
         "type": "intersection"
       },
@@ -6125,6 +6246,86 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.90956881218169,
+              33.41577016268261
+            ],
+            [
+              -111.9095611540283,
+              33.41580556357919
+            ],
+            [
+              -111.90951874436425,
+              33.41579917120106
+            ],
+            [
+              -111.90952640251764,
+              33.41576377030448
+            ],
+            [
+              -111.90956881218169,
+              33.41577016268261
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Uncontrolled",
+        "crossing": null,
+        "id": 42,
+        "intersection_kind": "MapEdge",
+        "movements": [],
+        "osm_node_ids": [],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.90931280166517,
+              33.415793885887844
+            ],
+            [
+              -111.90931319814807,
+              33.415757914821356
+            ],
+            [
+              -111.90935629196059,
+              33.41575824667104
+            ],
+            [
+              -111.9093558954777,
+              33.41579421773753
+            ],
+            [
+              -111.90931280166517,
+              33.415793885887844
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 43,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          8414999149
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -6546,11 +6747,11 @@
           [
             [
               -111.90842064834271,
-              33.41489925602047
+              33.41489925781911
             ],
             [
               -111.90837755668498,
-              33.41489970388264
+              33.414899705681286
             ],
             [
               -111.90837723346523,
@@ -6570,7 +6771,7 @@
             ],
             [
               -111.90842064834271,
-              33.41489925602047
+              33.41489925781911
             ]
           ]
         ],
@@ -6582,8 +6783,8 @@
         "id": 55,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #47 -> Road #46",
-          "Road #46 -> Road #47"
+          "Road #48 -> Road #46",
+          "Road #46 -> Road #48"
         ],
         "osm_node_ids": [
           11751630985
@@ -6924,21 +7125,21 @@
               33.41517395381184
             ],
             [
-              -111.90892961818126,
+              -111.90894112372713,
+              33.415173903449826
+            ],
+            [
+              -111.90892961710387,
               33.41518139659763
             ],
             [
-              -111.90890310985175,
+              -111.90890310877435,
               33.415153033792116
             ],
             [
-              -111.9089357582792,
+              -111.90893575935661,
               33.41512955340372
             ],
-            [
-              -111.90894450568318,
-              33.41513802771143
-            ],
             [
               -111.90894450676058,
               33.41513802771143
@@ -6953,12 +7154,12 @@
         "id": 62,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #60 -> Road #90",
+          "Road #60 -> Road #88",
           "Road #60 -> Road #61",
-          "Road #90 -> Road #60",
-          "Road #90 -> Road #61",
+          "Road #88 -> Road #60",
+          "Road #88 -> Road #61",
           "Road #61 -> Road #60",
-          "Road #61 -> Road #90"
+          "Road #61 -> Road #88"
         ],
         "osm_node_ids": [
           7509154721
@@ -6967,6 +7168,47 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.90881714632573,
+              33.415422627933246
+            ],
+            [
+              -111.90877405466799,
+              33.415422172876504
+            ],
+            [
+              -111.90877459983199,
+              33.415386202709335
+            ],
+            [
+              -111.90881769148972,
+              33.41538665776608
+            ],
+            [
+              -111.90881714632573,
+              33.415422627933246
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 63,
+        "intersection_kind": "Terminus",
+        "movements": [],
+        "osm_node_ids": [
+          11747198236
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -7023,6 +7265,62 @@
       },
       "type": "Feature"
     },
+    {
+      "geometry": {
+        "coordinates": [
+          [
+            [
+              -111.90881971592277,
+              33.4152529682101
+            ],
+            [
+              -111.90877662426504,
+              33.415252513153355
+            ],
+            [
+              -111.90876937444594,
+              33.415245058676376
+            ],
+            [
+              -111.90880028718331,
+              33.41521999278395
+            ],
+            [
+              -111.9088267965902,
+              33.41524835558947
+            ],
+            [
+              -111.90881971592277,
+              33.41525296731078
+            ],
+            [
+              -111.90881971592277,
+              33.4152529682101
+            ]
+          ]
+        ],
+        "type": "Polygon"
+      },
+      "properties": {
+        "control": "Signed",
+        "crossing": null,
+        "id": 65,
+        "intersection_kind": "Intersection",
+        "movements": [
+          "Road #89 -> Road #90",
+          "Road #89 -> Road #88",
+          "Road #90 -> Road #89",
+          "Road #90 -> Road #88",
+          "Road #88 -> Road #89",
+          "Road #88 -> Road #90"
+        ],
+        "osm_node_ids": [
+          11747198235
+        ],
+        "type": "intersection"
+      },
+      "type": "Feature"
+    },
     {
       "geometry": {
         "coordinates": [
@@ -7427,19 +7725,15 @@
           [
             [
               -111.90898399020844,
-              33.415561731405425
+              33.415561713418995
             ],
             [
               -111.90896783353028,
-              33.415562051563924
-            ],
-            [
-              -111.90896674751191,
-              33.415526089490655
+              33.415562033577494
             ],
             [
-              -111.90896704810629,
-              33.4155260831954
+              -111.90896704702888,
+              33.415526030135425
             ],
             [
               -111.90896704487409,
@@ -7456,10 +7750,6 @@
             [
               -111.90898399020844,
               33.415561713418995
-            ],
-            [
-              -111.90898399020844,
-              33.415561731405425
             ]
           ]
         ],
@@ -7471,8 +7761,8 @@
         "id": 74,
         "intersection_kind": "Intersection",
         "movements": [
-          "Road #51 -> Road #50",
-          "Road #50 -> Road #51"
+          "Road #52 -> Road #50",
+          "Road #50 -> Road #52"
         ],
         "osm_node_ids": [
           11751454667